[ARM] 3800/2: S3C2412: DMA channel mappings
[deliverable/linux.git] / arch / arm / mach-s3c2410 / pm.h
CommitLineData
1da177e4
LT
1/* linux/arch/arm/mach-s3c2410/pm.h
2 *
3 * Copyright (c) 2004 Simtec Electronics
4 * Written by Ben Dooks, <ben@simtec.co.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9*/
10
11/* s3c2410_pm_init
12 *
13 * called from board at initialisation time to setup the power
14 * management
15*/
16
17#ifdef CONFIG_PM
18
19extern __init int s3c2410_pm_init(void);
20
21#else
22
23static inline int s3c2410_pm_init(void)
24{
25 return 0;
26}
27#endif
28
29/* configuration for the IRQ mask over sleep */
30extern unsigned long s3c_irqwake_intmask;
31extern unsigned long s3c_irqwake_eintmask;
32
33/* IRQ masks for IRQs allowed to go to sleep (see irq.c) */
34extern unsigned long s3c_irqwake_intallow;
35extern unsigned long s3c_irqwake_eintallow;
36
37/* Flags for PM Control */
38
39extern unsigned long s3c_pm_flags;
40
41/* from sleep.S */
42
58095d7f
BD
43extern int s3c2410_cpu_save(unsigned long *saveblk);
44extern void s3c2410_cpu_suspend(void);
1da177e4
LT
45extern void s3c2410_cpu_resume(void);
46
47extern unsigned long s3c2410_sleep_save_phys;
48
49/* sleep save info */
50
51struct sleep_save {
52 void __iomem *reg;
53 unsigned long val;
54};
55
56#define SAVE_ITEM(x) \
57 { .reg = (x) }
58
59extern void s3c2410_pm_do_save(struct sleep_save *ptr, int count);
60extern void s3c2410_pm_do_restore(struct sleep_save *ptr, int count);
1e582fc7
BD
61
62#ifdef CONFIG_PM
63extern int s3c24xx_irq_suspend(struct sys_device *dev, pm_message_t state);
64extern int s3c24xx_irq_resume(struct sys_device *dev);
65#else
66#define s3c24xx_irq_suspend NULL
67#define s3c24xx_irq_resume NULL
68#endif
This page took 0.209879 seconds and 5 git commands to generate.