diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-08-07 06:05:25 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-08-07 06:06:47 -0400 |
commit | afd2fc02ab7bae6062671c5ca80dd34c34a63fb7 (patch) | |
tree | 6048ce3ba252a95ac2195b680caa2b55c384073e /arch/arm/mach-pxa/include/mach | |
parent | 1f4de5a0e3b4a4b8afa2cddb46429d32e1053c14 (diff) | |
parent | 214c6a7ed13e01cab2addeef56124067e4d20147 (diff) |
Merge branch 'for-rmk' of git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6
Conflicts:
arch/arm/mach-pxa/generic.c
arch/arm/mach-pxa/pxa25x.c
arch/arm/mach-pxa/pxa27x.c
arch/arm/mach-pxa/pxa2xx.c
arch/arm/mach-pxa/pxa3xx.c
arch/arm/mach-pxa/reset.c
arch/arm/mach-pxa/spitz.c
arch/arm/mach-pxa/tosa.c
drivers/watchdog/sa1100_wdt.c
Diffstat (limited to 'arch/arm/mach-pxa/include/mach')
-rw-r--r-- | arch/arm/mach-pxa/include/mach/hardware.h | 5 | ||||
-rw-r--r-- | arch/arm/mach-pxa/include/mach/reset.h | 18 |
2 files changed, 18 insertions, 5 deletions
diff --git a/arch/arm/mach-pxa/include/mach/hardware.h b/arch/arm/mach-pxa/include/mach/hardware.h index f8fb1e75997f..e89df4d0d239 100644 --- a/arch/arm/mach-pxa/include/mach/hardware.h +++ b/arch/arm/mach-pxa/include/mach/hardware.h | |||
@@ -224,11 +224,6 @@ extern void pxa_gpio_set_value(unsigned gpio, int value); | |||
224 | */ | 224 | */ |
225 | extern unsigned int get_memclk_frequency_10khz(void); | 225 | extern unsigned int get_memclk_frequency_10khz(void); |
226 | 226 | ||
227 | /* | ||
228 | * register GPIO as reset generator | ||
229 | */ | ||
230 | extern int init_gpio_reset(int gpio); | ||
231 | |||
232 | #endif | 227 | #endif |
233 | 228 | ||
234 | #if defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI) | 229 | #if defined(CONFIG_MACH_ARMCORE) && defined(CONFIG_PCI) |
diff --git a/arch/arm/mach-pxa/include/mach/reset.h b/arch/arm/mach-pxa/include/mach/reset.h new file mode 100644 index 000000000000..9489a48871a8 --- /dev/null +++ b/arch/arm/mach-pxa/include/mach/reset.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #ifndef __ASM_ARCH_RESET_H | ||
2 | #define __ASM_ARCH_RESET_H | ||
3 | |||
4 | #define RESET_STATUS_HARDWARE (1 << 0) /* Hardware Reset */ | ||
5 | #define RESET_STATUS_WATCHDOG (1 << 1) /* Watchdog Reset */ | ||
6 | #define RESET_STATUS_LOWPOWER (1 << 2) /* Low Power/Sleep Exit */ | ||
7 | #define RESET_STATUS_GPIO (1 << 3) /* GPIO Reset */ | ||
8 | #define RESET_STATUS_ALL (0xf) | ||
9 | |||
10 | extern unsigned int reset_status; | ||
11 | extern void clear_reset_status(unsigned int mask); | ||
12 | |||
13 | /* | ||
14 | * register GPIO as reset generator | ||
15 | */ | ||
16 | extern int init_gpio_reset(int gpio); | ||
17 | |||
18 | #endif /* __ASM_ARCH_RESET_H */ | ||