spi-topcliff-pch: add recovery processing in case wait-event timeout
[zen-stable.git] / arch / arm / plat-samsung / include / plat / pm.h
blob61fc53740fbd8811a8d06659806ecfc6e5cc8c77
1 /* arch/arm/plat-samsung/include/plat/pm.h
3 * Copyright (c) 2004 Simtec Electronics
4 * http://armlinux.simtec.co.uk/
5 * Written by Ben Dooks, <ben@simtec.co.uk>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 /* s3c_pm_init
14 * called from board at initialisation time to setup the power
15 * management
18 #include <linux/irq.h>
20 struct device;
22 #ifdef CONFIG_PM
24 extern __init int s3c_pm_init(void);
25 extern __init int s3c64xx_pm_init(void);
27 #else
29 static inline int s3c_pm_init(void)
31 return 0;
34 static inline int s3c64xx_pm_init(void)
36 return 0;
38 #endif
40 /* configuration for the IRQ mask over sleep */
41 extern unsigned long s3c_irqwake_intmask;
42 extern unsigned long s3c_irqwake_eintmask;
44 /* IRQ masks for IRQs allowed to go to sleep (see irq.c) */
45 extern unsigned long s3c_irqwake_intallow;
46 extern unsigned long s3c_irqwake_eintallow;
48 /* per-cpu sleep functions */
50 extern void (*pm_cpu_prep)(void);
51 extern int (*pm_cpu_sleep)(unsigned long);
53 /* Flags for PM Control */
55 extern unsigned long s3c_pm_flags;
57 extern unsigned char pm_uart_udivslot; /* true to save UART UDIVSLOT */
59 /* from sleep.S */
61 extern void s3c_cpu_resume(void);
63 extern int s3c2410_cpu_suspend(unsigned long);
65 /* sleep save info */
67 /**
68 * struct sleep_save - save information for shared peripherals.
69 * @reg: Pointer to the register to save.
70 * @val: Holder for the value saved from reg.
72 * This describes a list of registers which is used by the pm core and
73 * other subsystem to save and restore register values over suspend.
75 struct sleep_save {
76 void __iomem *reg;
77 unsigned long val;
80 #define SAVE_ITEM(x) \
81 { .reg = (x) }
83 /**
84 * struct pm_uart_save - save block for core UART
85 * @ulcon: Save value for S3C2410_ULCON
86 * @ucon: Save value for S3C2410_UCON
87 * @ufcon: Save value for S3C2410_UFCON
88 * @umcon: Save value for S3C2410_UMCON
89 * @ubrdiv: Save value for S3C2410_UBRDIV
91 * Save block for UART registers to be held over sleep and restored if they
92 * are needed (say by debug).
94 struct pm_uart_save {
95 u32 ulcon;
96 u32 ucon;
97 u32 ufcon;
98 u32 umcon;
99 u32 ubrdiv;
100 u32 udivslot;
103 /* helper functions to save/restore lists of registers. */
105 extern void s3c_pm_do_save(struct sleep_save *ptr, int count);
106 extern void s3c_pm_do_restore(struct sleep_save *ptr, int count);
107 extern void s3c_pm_do_restore_core(struct sleep_save *ptr, int count);
109 #ifdef CONFIG_PM
110 extern int s3c_irqext_wake(struct irq_data *data, unsigned int state);
111 extern int s3c24xx_irq_suspend(void);
112 extern void s3c24xx_irq_resume(void);
113 #else
114 #define s3c_irqext_wake NULL
115 #define s3c24xx_irq_suspend NULL
116 #define s3c24xx_irq_resume NULL
117 #endif
119 extern struct syscore_ops s3c24xx_irq_syscore_ops;
121 /* PM debug functions */
123 #ifdef CONFIG_SAMSUNG_PM_DEBUG
125 * s3c_pm_dbg() - low level debug function for use in suspend/resume.
126 * @msg: The message to print.
128 * This function is used mainly to debug the resume process before the system
129 * can rely on printk/console output. It uses the low-level debugging output
130 * routine printascii() to do its work.
132 extern void s3c_pm_dbg(const char *msg, ...);
134 #define S3C_PMDBG(fmt...) s3c_pm_dbg(fmt)
135 #else
136 #define S3C_PMDBG(fmt...) printk(KERN_DEBUG fmt)
137 #endif
139 #ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
141 * s3c_pm_debug_smdkled() - Debug PM suspend/resume via SMDK Board LEDs
142 * @set: set bits for the state of the LEDs
143 * @clear: clear bits for the state of the LEDs.
145 extern void s3c_pm_debug_smdkled(u32 set, u32 clear);
147 #else
148 static inline void s3c_pm_debug_smdkled(u32 set, u32 clear) { }
149 #endif /* CONFIG_S3C_PM_DEBUG_LED_SMDK */
151 /* suspend memory checking */
153 #ifdef CONFIG_SAMSUNG_PM_CHECK
154 extern void s3c_pm_check_prepare(void);
155 extern void s3c_pm_check_restore(void);
156 extern void s3c_pm_check_cleanup(void);
157 extern void s3c_pm_check_store(void);
158 #else
159 #define s3c_pm_check_prepare() do { } while(0)
160 #define s3c_pm_check_restore() do { } while(0)
161 #define s3c_pm_check_cleanup() do { } while(0)
162 #define s3c_pm_check_store() do { } while(0)
163 #endif
166 * s3c_pm_configure_extint() - ensure pins are correctly set for IRQ
168 * Setup all the necessary GPIO pins for waking the system on external
169 * interrupt.
171 extern void s3c_pm_configure_extint(void);
174 * samsung_pm_restore_gpios() - restore the state of the gpios after sleep.
176 * Restore the state of the GPIO pins after sleep, which may involve ensuring
177 * that we do not glitch the state of the pins from that the bootloader's
178 * resume code has done.
180 extern void samsung_pm_restore_gpios(void);
183 * samsung_pm_save_gpios() - save the state of the GPIOs for restoring after sleep.
185 * Save the GPIO states for resotration on resume. See samsung_pm_restore_gpios().
187 extern void samsung_pm_save_gpios(void);
189 extern void s3c_pm_save_core(void);
190 extern void s3c_pm_restore_core(void);