blob: a1520997ab82fbe3b282a985065a376b06363676 [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001/* linux/include/asm-arm/plat-s3c24xx/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (c) 2004 Simtec Electronics
Ben Dooks64197112008-12-12 00:24:06 +00004 * http://armlinux.simtec.co.uk/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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
12/* s3c2410_pm_init
13 *
14 * called from board at initialisation time to setup the power
15 * management
16*/
17
18#ifdef CONFIG_PM
19
20extern __init int s3c2410_pm_init(void);
21
22#else
23
24static inline int s3c2410_pm_init(void)
25{
26 return 0;
27}
28#endif
29
30/* configuration for the IRQ mask over sleep */
31extern unsigned long s3c_irqwake_intmask;
32extern unsigned long s3c_irqwake_eintmask;
33
34/* IRQ masks for IRQs allowed to go to sleep (see irq.c) */
35extern unsigned long s3c_irqwake_intallow;
36extern unsigned long s3c_irqwake_eintallow;
37
Ben Dooks0033a2f2006-09-19 09:51:32 +010038/* per-cpu sleep functions */
39
40extern void (*pm_cpu_prep)(void);
41extern void (*pm_cpu_sleep)(void);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* Flags for PM Control */
44
45extern unsigned long s3c_pm_flags;
46
47/* from sleep.S */
48
Ben Dooks58095d72006-09-16 00:04:23 +010049extern int s3c2410_cpu_save(unsigned long *saveblk);
50extern void s3c2410_cpu_suspend(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051extern void s3c2410_cpu_resume(void);
52
Ben Dooks64197112008-12-12 00:24:06 +000053extern unsigned long s3c_sleep_save_phys;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* sleep save info */
56
Ben Dooks64197112008-12-12 00:24:06 +000057/**
58 * struct sleep_save - save information for shared peripherals.
59 * @reg: Pointer to the register to save.
60 * @val: Holder for the value saved from reg.
61 *
62 * This describes a list of registers which is used by the pm core and
63 * other subsystem to save and restore register values over suspend.
64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065struct sleep_save {
66 void __iomem *reg;
67 unsigned long val;
68};
69
70#define SAVE_ITEM(x) \
71 { .reg = (x) }
72
Ben Dooks64197112008-12-12 00:24:06 +000073/* helper functions to save/restore lists of registers. */
74
75extern void s3c_pm_do_save(struct sleep_save *ptr, int count);
76extern void s3c_pm_do_restore(struct sleep_save *ptr, int count);
77extern void s3c_pm_do_restore_core(struct sleep_save *ptr, int count);
Ben Dooks1e582fc2006-09-16 00:01:39 +010078
79#ifdef CONFIG_PM
80extern int s3c24xx_irq_suspend(struct sys_device *dev, pm_message_t state);
81extern int s3c24xx_irq_resume(struct sys_device *dev);
82#else
83#define s3c24xx_irq_suspend NULL
84#define s3c24xx_irq_resume NULL
85#endif
Ben Dooks64197112008-12-12 00:24:06 +000086
87/* PM debug functions */
88
89#ifdef CONFIG_S3C2410_PM_DEBUG
90/**
91 * s3c_pm_dbg() - low level debug function for use in suspend/resume.
92 * @msg: The message to print.
93 *
94 * This function is used mainly to debug the resume process before the system
95 * can rely on printk/console output. It uses the low-level debugging output
96 * routine printascii() to do its work.
97 */
98extern void s3c_pm_dbg(const char *msg, ...);
99
100#define S3C_PMDBG(fmt...) s3c_pm_dbg(fmt)
101#else
102#define S3C_PMDBG(fmt...) printk(KERN_DEBUG fmt)
103#endif