Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
43a60c17
Commit
43a60c17
authored
Oct 04, 2012
by
Russell King
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'cleanup' into for-linus
Conflicts: arch/arm/mach-imx/mach-imx27_visstrim_m10.c
parents
0d7614f0
9fc31ddc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
70 deletions
+6
-70
arch/arm/include/asm/hardware/linkup-l1110.h
arch/arm/include/asm/hardware/linkup-l1110.h
+0
-48
arch/arm/include/asm/thread_info.h
arch/arm/include/asm/thread_info.h
+2
-0
arch/arm/kernel/asm-offsets.c
arch/arm/kernel/asm-offsets.c
+2
-0
arch/arm/mach-imx/mach-imx27_visstrim_m10.c
arch/arm/mach-imx/mach-imx27_visstrim_m10.c
+2
-4
arch/arm/mach-sa1100/include/mach/SA-1111.h
arch/arm/mach-sa1100/include/mach/SA-1111.h
+0
-5
arch/arm/mach-sa1100/include/mach/lart.h
arch/arm/mach-sa1100/include/mach/lart.h
+0
-13
No files found.
arch/arm/include/asm/hardware/linkup-l1110.h
deleted
100644 → 0
View file @
0d7614f0
/*
*
* Definitions for H3600 Handheld Computer
*
* Copyright 2001 Compaq Computer Corporation.
*
* Use consistent with the GNU GPL is permitted,
* provided that this copyright notice is
* preserved in its entirety in all copies and derived works.
*
* COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
* AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
* FITNESS FOR ANY PARTICULAR PURPOSE.
*
* Author: Jamey Hicks.
*
*/
/* LinkUp Systems PCCard/CompactFlash Interface for SA-1100 */
/* PC Card Status Register */
#define LINKUP_PRS_S1 (1 << 0)
/* voltage control bits S1-S4 */
#define LINKUP_PRS_S2 (1 << 1)
#define LINKUP_PRS_S3 (1 << 2)
#define LINKUP_PRS_S4 (1 << 3)
#define LINKUP_PRS_BVD1 (1 << 4)
#define LINKUP_PRS_BVD2 (1 << 5)
#define LINKUP_PRS_VS1 (1 << 6)
#define LINKUP_PRS_VS2 (1 << 7)
#define LINKUP_PRS_RDY (1 << 8)
#define LINKUP_PRS_CD1 (1 << 9)
#define LINKUP_PRS_CD2 (1 << 10)
/* PC Card Command Register */
#define LINKUP_PRC_S1 (1 << 0)
#define LINKUP_PRC_S2 (1 << 1)
#define LINKUP_PRC_S3 (1 << 2)
#define LINKUP_PRC_S4 (1 << 3)
#define LINKUP_PRC_RESET (1 << 4)
#define LINKUP_PRC_APOE (1 << 5)
/* Auto Power Off Enable: clears S1-S4 when either nCD goes high */
#define LINKUP_PRC_CFE (1 << 6)
/* CompactFlash mode Enable: addresses A[10:0] only, A[25:11] high */
#define LINKUP_PRC_SOE (1 << 7)
/* signal output driver enable */
#define LINKUP_PRC_SSP (1 << 8)
/* sock select polarity: 0 for socket 0, 1 for socket 1 */
#define LINKUP_PRC_MBZ (1 << 15)
/* must be zero */
struct
linkup_l1110
{
volatile
short
prc
;
};
arch/arm/include/asm/thread_info.h
View file @
43a60c17
...
@@ -59,7 +59,9 @@ struct thread_info {
...
@@ -59,7 +59,9 @@ struct thread_info {
__u32
syscall
;
/* syscall number */
__u32
syscall
;
/* syscall number */
__u8
used_cp
[
16
];
/* thread used copro */
__u8
used_cp
[
16
];
/* thread used copro */
unsigned
long
tp_value
;
unsigned
long
tp_value
;
#ifdef CONFIG_CRUNCH
struct
crunch_state
crunchstate
;
struct
crunch_state
crunchstate
;
#endif
union
fp_state
fpstate
__attribute__
((
aligned
(
8
)));
union
fp_state
fpstate
__attribute__
((
aligned
(
8
)));
union
vfp_state
vfpstate
;
union
vfp_state
vfpstate
;
#ifdef CONFIG_ARM_THUMBEE
#ifdef CONFIG_ARM_THUMBEE
...
...
arch/arm/kernel/asm-offsets.c
View file @
43a60c17
...
@@ -59,10 +59,12 @@ int main(void)
...
@@ -59,10 +59,12 @@ int main(void)
DEFINE
(
TI_USED_CP
,
offsetof
(
struct
thread_info
,
used_cp
));
DEFINE
(
TI_USED_CP
,
offsetof
(
struct
thread_info
,
used_cp
));
DEFINE
(
TI_TP_VALUE
,
offsetof
(
struct
thread_info
,
tp_value
));
DEFINE
(
TI_TP_VALUE
,
offsetof
(
struct
thread_info
,
tp_value
));
DEFINE
(
TI_FPSTATE
,
offsetof
(
struct
thread_info
,
fpstate
));
DEFINE
(
TI_FPSTATE
,
offsetof
(
struct
thread_info
,
fpstate
));
#ifdef CONFIG_VFP
DEFINE
(
TI_VFPSTATE
,
offsetof
(
struct
thread_info
,
vfpstate
));
DEFINE
(
TI_VFPSTATE
,
offsetof
(
struct
thread_info
,
vfpstate
));
#ifdef CONFIG_SMP
#ifdef CONFIG_SMP
DEFINE
(
VFP_CPU
,
offsetof
(
union
vfp_state
,
hard
.
cpu
));
DEFINE
(
VFP_CPU
,
offsetof
(
union
vfp_state
,
hard
.
cpu
));
#endif
#endif
#endif
#ifdef CONFIG_ARM_THUMBEE
#ifdef CONFIG_ARM_THUMBEE
DEFINE
(
TI_THUMBEE_STATE
,
offsetof
(
struct
thread_info
,
thumbee_state
));
DEFINE
(
TI_THUMBEE_STATE
,
offsetof
(
struct
thread_info
,
thumbee_state
));
#endif
#endif
...
...
arch/arm/mach-imx/mach-imx27_visstrim_m10.c
View file @
43a60c17
...
@@ -32,13 +32,13 @@
...
@@ -32,13 +32,13 @@
#include <linux/delay.h>
#include <linux/delay.h>
#include <linux/dma-mapping.h>
#include <linux/dma-mapping.h>
#include <linux/leds.h>
#include <linux/leds.h>
#include <linux/memblock.h>
#include <media/soc_camera.h>
#include <media/soc_camera.h>
#include <sound/tlv320aic32x4.h>
#include <sound/tlv320aic32x4.h>
#include <asm/mach-types.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/arch.h>
#include <asm/mach/time.h>
#include <asm/mach/time.h>
#include <asm/system_info.h>
#include <asm/system_info.h>
#include <asm/memblock.h>
#include <mach/common.h>
#include <mach/common.h>
#include <mach/hardware.h>
#include <mach/hardware.h>
#include <mach/iomux-mx27.h>
#include <mach/iomux-mx27.h>
...
@@ -233,10 +233,8 @@ static void __init visstrim_camera_init(void)
...
@@ -233,10 +233,8 @@ static void __init visstrim_camera_init(void)
static
void
__init
visstrim_reserve
(
void
)
static
void
__init
visstrim_reserve
(
void
)
{
{
/* reserve 4 MiB for mx2-camera */
/* reserve 4 MiB for mx2-camera */
mx2_camera_base
=
memblock_
alloc
(
MX2_CAMERA_BUF_SIZE
,
mx2_camera_base
=
memblock_
steal
(
MX2_CAMERA_BUF_SIZE
,
MX2_CAMERA_BUF_SIZE
);
MX2_CAMERA_BUF_SIZE
);
memblock_free
(
mx2_camera_base
,
MX2_CAMERA_BUF_SIZE
);
memblock_remove
(
mx2_camera_base
,
MX2_CAMERA_BUF_SIZE
);
}
}
/* GPIOs used as events for applications */
/* GPIOs used as events for applications */
...
...
arch/arm/mach-sa1100/include/mach/SA-1111.h
deleted
100644 → 0
View file @
0d7614f0
/*
* Moved to new location
*/
#warning using old SA-1111.h - update to <asm/hardware/sa1111.h>
#include <asm/hardware/sa1111.h>
arch/arm/mach-sa1100/include/mach/lart.h
deleted
100644 → 0
View file @
0d7614f0
#ifndef _INCLUDE_LART_H
#define _INCLUDE_LART_H
#define LART_GPIO_ETH0 GPIO_GPIO0
#define LART_IRQ_ETH0 IRQ_GPIO0
#define LART_GPIO_IDE GPIO_GPIO1
#define LART_IRQ_IDE IRQ_GPIO1
#define LART_GPIO_UCB1200 GPIO_GPIO18
#define LART_IRQ_UCB1200 IRQ_GPIO18
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment