blob: 015b735811b436e87a99ffbc5bb27f4ede1226cc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pm.h - Power management interface
3 *
4 * Copyright (C) 2000 Andrew Henroid
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 as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _LINUX_PM_H
22#define _LINUX_PM_H
23
24#ifdef __KERNEL__
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/list.h>
27#include <asm/atomic.h>
Alexey Dobriyan80ba80a2007-07-30 23:08:46 +040028#include <asm/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
31 * Power management requests... these are passed to pm_send_all() and friends.
32 *
33 * these functions are old and deprecated, see below.
34 */
35typedef int __bitwise pm_request_t;
36
37#define PM_SUSPEND ((__force pm_request_t) 1) /* enter D1-D3 */
38#define PM_RESUME ((__force pm_request_t) 2) /* enter D0 */
39
40
41/*
42 * Device types... these are passed to pm_register
43 */
44typedef int __bitwise pm_dev_t;
45
46#define PM_UNKNOWN_DEV ((__force pm_dev_t) 0) /* generic */
47#define PM_SYS_DEV ((__force pm_dev_t) 1) /* system device (fan, KB controller, ...) */
48#define PM_PCI_DEV ((__force pm_dev_t) 2) /* PCI device */
49#define PM_USB_DEV ((__force pm_dev_t) 3) /* USB device */
50#define PM_SCSI_DEV ((__force pm_dev_t) 4) /* SCSI device */
51#define PM_ISA_DEV ((__force pm_dev_t) 5) /* ISA device */
52#define PM_MTD_DEV ((__force pm_dev_t) 6) /* Memory Technology Device */
53
54/*
55 * System device hardware ID (PnP) values
56 */
57enum
58{
59 PM_SYS_UNKNOWN = 0x00000000, /* generic */
60 PM_SYS_KBC = 0x41d00303, /* keyboard controller */
61 PM_SYS_COM = 0x41d00500, /* serial port */
62 PM_SYS_IRDA = 0x41d00510, /* IRDA controller */
63 PM_SYS_FDC = 0x41d00700, /* floppy controller */
64 PM_SYS_VGA = 0x41d00900, /* VGA controller */
65 PM_SYS_PCMCIA = 0x41d00e00, /* PCMCIA controller */
66};
67
68/*
69 * Device identifier
70 */
71#define PM_PCI_ID(dev) ((dev)->bus->number << 16 | (dev)->devfn)
72
73/*
74 * Request handler callback
75 */
76struct pm_dev;
77
78typedef int (*pm_callback)(struct pm_dev *dev, pm_request_t rqst, void *data);
79
80/*
81 * Dynamic device information
82 */
83struct pm_dev
84{
85 pm_dev_t type;
86 unsigned long id;
87 pm_callback callback;
88 void *data;
89
90 unsigned long flags;
91 unsigned long state;
92 unsigned long prev_state;
93
94 struct list_head entry;
95};
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* Functions above this comment are list-based old-style power
Joe Perchesfd3f8982008-02-03 17:45:46 +020098 * management. Please avoid using them. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * Callbacks for platform drivers to implement.
102 */
103extern void (*pm_idle)(void);
104extern void (*pm_power_off)(void);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -0700105extern void (*pm_power_off_prepare)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*
108 * Device power management
109 */
110
111struct device;
112
Pavel Machekca078ba2005-09-03 15:56:57 -0700113typedef struct pm_message {
114 int event;
115} pm_message_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/*
David Brownell82bb67f2006-08-14 23:11:04 -0700118 * Several driver power state transitions are externally visible, affecting
119 * the state of pending I/O queues and (for drivers that touch hardware)
120 * interrupts, wakeups, DMA, and other hardware state. There may also be
121 * internal transitions to various low power modes, which are transparent
122 * to the rest of the driver stack (such as a driver that's ON gating off
123 * clocks which are not in active use).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *
David Brownell82bb67f2006-08-14 23:11:04 -0700125 * One transition is triggered by resume(), after a suspend() call; the
126 * message is implicit:
127 *
128 * ON Driver starts working again, responding to hardware events
129 * and software requests. The hardware may have gone through
130 * a power-off reset, or it may have maintained state from the
131 * previous suspend() which the driver will rely on while
132 * resuming. On most platforms, there are no restrictions on
133 * availability of resources like clocks during resume().
134 *
135 * Other transitions are triggered by messages sent using suspend(). All
136 * these transitions quiesce the driver, so that I/O queues are inactive.
137 * That commonly entails turning off IRQs and DMA; there may be rules
138 * about how to quiesce that are specific to the bus or the device's type.
139 * (For example, network drivers mark the link state.) Other details may
140 * differ according to the message:
141 *
142 * SUSPEND Quiesce, enter a low power device state appropriate for
143 * the upcoming system state (such as PCI_D3hot), and enable
144 * wakeup events as appropriate.
145 *
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100146 * HIBERNATE Enter a low power device state appropriate for the hibernation
147 * state (eg. ACPI S4) and enable wakeup events as appropriate.
148 *
David Brownell82bb67f2006-08-14 23:11:04 -0700149 * FREEZE Quiesce operations so that a consistent image can be saved;
150 * but do NOT otherwise enter a low power device state, and do
151 * NOT emit system wakeup events.
152 *
153 * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring
154 * the system from a snapshot taken after an earlier FREEZE.
155 * Some drivers will need to reset their hardware state instead
156 * of preserving it, to ensure that it's never mistaken for the
157 * state which that earlier snapshot had set up.
158 *
159 * A minimally power-aware driver treats all messages as SUSPEND, fully
160 * reinitializes its device during resume() -- whether or not it was reset
161 * during the suspend/resume cycle -- and can't issue wakeup events.
162 *
163 * More power-aware drivers may also use low power states at runtime as
164 * well as during system sleep states like PM_SUSPEND_STANDBY. They may
165 * be able to use wakeup events to exit from runtime low-power states,
166 * or from system low-power states such as standby or suspend-to-RAM.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
168
Pavel Machekca078ba2005-09-03 15:56:57 -0700169#define PM_EVENT_ON 0
170#define PM_EVENT_FREEZE 1
171#define PM_EVENT_SUSPEND 2
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100172#define PM_EVENT_HIBERNATE 4
173#define PM_EVENT_PRETHAW 8
174
175#define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE)
Pavel Machekca078ba2005-09-03 15:56:57 -0700176
177#define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, })
David Brownell82bb67f2006-08-14 23:11:04 -0700178#define PMSG_PRETHAW ((struct pm_message){ .event = PM_EVENT_PRETHAW, })
Pavel Machekca078ba2005-09-03 15:56:57 -0700179#define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, })
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100180#define PMSG_HIBERNATE ((struct pm_message){ .event = PM_EVENT_HIBERNATE, })
Pavel Machekca078ba2005-09-03 15:56:57 -0700181#define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183struct dev_pm_info {
184 pm_message_t power_state;
David Brownell0ac85242005-09-12 19:39:34 -0700185 unsigned can_wakeup:1;
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200186#ifdef CONFIG_PM_SLEEP
David Brownell0ac85242005-09-12 19:39:34 -0700187 unsigned should_wakeup:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct list_head entry;
189#endif
190};
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192extern int device_power_down(pm_message_t state);
193extern void device_power_up(void);
194extern void device_resume(void);
195
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200196#ifdef CONFIG_PM_SLEEP
Pavel Machek620b0322005-06-25 14:55:11 -0700197extern int device_suspend(pm_message_t state);
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700198extern int device_prepare_suspend(pm_message_t state);
David Brownell0ac85242005-09-12 19:39:34 -0700199
200#define device_set_wakeup_enable(dev,val) \
201 ((dev)->power.should_wakeup = !!(val))
202#define device_may_wakeup(dev) \
203 (device_can_wakeup(dev) && (dev)->power.should_wakeup)
204
Andrew Morton02669492006-03-23 01:38:34 -0800205extern void __suspend_report_result(const char *function, void *fn, int ret);
206
207#define suspend_report_result(fn, ret) \
208 do { \
209 __suspend_report_result(__FUNCTION__, fn, ret); \
210 } while (0)
Andrew Morton9a7834d2005-10-23 23:02:20 -0700211
David Brownell075c1772007-04-26 00:12:06 -0700212/*
213 * Platform hook to activate device wakeup capability, if that's not already
214 * handled by enable_irq_wake() etc.
215 * Returns zero on success, else negative errno
216 */
217extern int (*platform_enable_wakeup)(struct device *dev, int is_on);
218
219static inline int call_platform_enable_wakeup(struct device *dev, int is_on)
220{
221 if (platform_enable_wakeup)
222 return (*platform_enable_wakeup)(dev, is_on);
223 return 0;
224}
225
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200226#else /* !CONFIG_PM_SLEEP */
David Brownell0ac85242005-09-12 19:39:34 -0700227
Pavel Machek620b0322005-06-25 14:55:11 -0700228static inline int device_suspend(pm_message_t state)
229{
230 return 0;
231}
David Brownell0ac85242005-09-12 19:39:34 -0700232
233#define device_set_wakeup_enable(dev,val) do{}while(0)
234#define device_may_wakeup(dev) (0)
235
Andrew Morton02669492006-03-23 01:38:34 -0800236#define suspend_report_result(fn, ret) do { } while (0)
237
David Brownell075c1772007-04-26 00:12:06 -0700238static inline int call_platform_enable_wakeup(struct device *dev, int is_on)
239{
David Rientjes14e38ac2007-04-30 15:09:56 -0700240 return 0;
David Brownell075c1772007-04-26 00:12:06 -0700241}
242
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200243#endif /* !CONFIG_PM_SLEEP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
David Brownell0ac85242005-09-12 19:39:34 -0700245/* changes to device_may_wakeup take effect on the next pm state change.
246 * by default, devices should wakeup if they can.
247 */
248#define device_can_wakeup(dev) \
249 ((dev)->power.can_wakeup)
250#define device_init_wakeup(dev,val) \
251 do { \
252 device_can_wakeup(dev) = !!(val); \
253 device_set_wakeup_enable(dev,val); \
254 } while(0)
255
Len Brown9f9adec2007-12-13 17:38:03 -0500256/*
257 * Global Power Management flags
258 * Used to keep APM and ACPI from both being active
259 */
260extern unsigned int pm_flags;
261
262#define PM_APM 1
263#define PM_ACPI 2
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#endif /* __KERNEL__ */
266
267#endif /* _LINUX_PM_H */