Merge branch 'nvmf-4.8-rc' of git://git.infradead.org/nvme-fabrics into for-linus
[deliverable/linux.git] / arch / arm / plat-samsung / include / plat / pm.h
CommitLineData
c116c1d7 1/* arch/arm/plat-samsung/include/plat/pm.h
1da177e4
LT
2 *
3 * Copyright (c) 2004 Simtec Electronics
6419711a 4 * http://armlinux.simtec.co.uk/
1da177e4
LT
5 * Written by Ben Dooks, <ben@simtec.co.uk>
6 *
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.
10*/
11
4e59c25d 12/* s3c_pm_init
1da177e4
LT
13 *
14 * called from board at initialisation time to setup the power
15 * management
16*/
17
72551f6c 18#include <plat/pm-common.h>
f5aeffb7 19
4a858cfc 20struct device;
a09e2b21 21
89693016 22#ifdef CONFIG_SAMSUNG_PM
1da177e4 23
4e59c25d 24extern __init int s3c_pm_init(void);
c656c306 25extern __init int s3c64xx_pm_init(void);
1da177e4
LT
26
27#else
28
4e59c25d 29static inline int s3c_pm_init(void)
1da177e4
LT
30{
31 return 0;
32}
c656c306
MB
33
34static inline int s3c64xx_pm_init(void)
35{
36 return 0;
37}
1da177e4
LT
38#endif
39
40/* configuration for the IRQ mask over sleep */
41extern unsigned long s3c_irqwake_intmask;
42extern unsigned long s3c_irqwake_eintmask;
43
0033a2f0
BD
44/* per-cpu sleep functions */
45
46extern void (*pm_cpu_prep)(void);
29cb3cd2 47extern int (*pm_cpu_sleep)(unsigned long);
0033a2f0 48
1da177e4
LT
49/* Flags for PM Control */
50
51extern unsigned long s3c_pm_flags;
52
53/* from sleep.S */
54
29cb3cd2 55extern int s3c2410_cpu_suspend(unsigned long);
1da177e4 56
484c213b 57#ifdef CONFIG_PM_SLEEP
3445513c 58extern int s3c_irq_wake(struct irq_data *data, unsigned int state);
89693016 59extern void s3c_cpu_resume(void);
1e582fc7 60#else
3445513c 61#define s3c_irq_wake NULL
89693016 62#define s3c_cpu_resume NULL
1e582fc7 63#endif
6419711a 64
4f506daf
AB
65#ifdef CONFIG_SAMSUNG_PM
66extern int s3c_irqext_wake(struct irq_data *data, unsigned int state);
67#else
68#define s3c_irqext_wake NULL
69#endif
70
bd117bd1
BD
71#ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
72/**
73 * s3c_pm_debug_smdkled() - Debug PM suspend/resume via SMDK Board LEDs
74 * @set: set bits for the state of the LEDs
75 * @clear: clear bits for the state of the LEDs.
76 */
77extern void s3c_pm_debug_smdkled(u32 set, u32 clear);
78
79#else
80static inline void s3c_pm_debug_smdkled(u32 set, u32 clear) { }
81#endif /* CONFIG_S3C_PM_DEBUG_LED_SMDK */
82
2261e0e6
BD
83/**
84 * s3c_pm_configure_extint() - ensure pins are correctly set for IRQ
85 *
86 * Setup all the necessary GPIO pins for waking the system on external
87 * interrupt.
88 */
89extern void s3c_pm_configure_extint(void);
90
880cf071 91#ifdef CONFIG_GPIO_SAMSUNG
2261e0e6 92/**
782d8a3c 93 * samsung_pm_restore_gpios() - restore the state of the gpios after sleep.
2261e0e6
BD
94 *
95 * Restore the state of the GPIO pins after sleep, which may involve ensuring
96 * that we do not glitch the state of the pins from that the bootloader's
97 * resume code has done.
98*/
782d8a3c 99extern void samsung_pm_restore_gpios(void);
2261e0e6
BD
100
101/**
782d8a3c 102 * samsung_pm_save_gpios() - save the state of the GPIOs for restoring after sleep.
2261e0e6 103 *
782d8a3c 104 * Save the GPIO states for resotration on resume. See samsung_pm_restore_gpios().
2261e0e6 105 */
782d8a3c 106extern void samsung_pm_save_gpios(void);
880cf071
TF
107#else
108static inline void samsung_pm_restore_gpios(void) {}
109static inline void samsung_pm_save_gpios(void) {}
110#endif
2261e0e6
BD
111
112extern void s3c_pm_save_core(void);
113extern void s3c_pm_restore_core(void);
This page took 0.752808 seconds and 5 git commands to generate.