afd2fc02ab
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
19 lines
525 B
C
19 lines
525 B
C
#ifndef __ASM_ARCH_RESET_H
|
|
#define __ASM_ARCH_RESET_H
|
|
|
|
#define RESET_STATUS_HARDWARE (1 << 0) /* Hardware Reset */
|
|
#define RESET_STATUS_WATCHDOG (1 << 1) /* Watchdog Reset */
|
|
#define RESET_STATUS_LOWPOWER (1 << 2) /* Low Power/Sleep Exit */
|
|
#define RESET_STATUS_GPIO (1 << 3) /* GPIO Reset */
|
|
#define RESET_STATUS_ALL (0xf)
|
|
|
|
extern unsigned int reset_status;
|
|
extern void clear_reset_status(unsigned int mask);
|
|
|
|
/*
|
|
* register GPIO as reset generator
|
|
*/
|
|
extern int init_gpio_reset(int gpio);
|
|
|
|
#endif /* __ASM_ARCH_RESET_H */
|