blob: 3e4f3d308f5e1b51ae988309c490bb82e63bc166 [file] [log] [blame]
Rafael J. Wysockif7218892011-07-01 22:12:45 +02001/*
2 * pm_domain.h - Definitions and headers related to device power domains.
3 *
4 * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
5 *
6 * This file is released under the GPLv2.
7 */
8
9#ifndef _LINUX_PM_DOMAIN_H
10#define _LINUX_PM_DOMAIN_H
11
12#include <linux/device.h>
13
Rafael J. Wysocki17b75ec2011-07-12 00:39:29 +020014enum gpd_status {
15 GPD_STATE_ACTIVE = 0, /* PM domain is active */
16 GPD_STATE_BUSY, /* Something is happening to the PM domain */
Rafael J. Wysockic6d22b32011-07-12 00:39:36 +020017 GPD_STATE_REPEAT, /* Power off in progress, to be repeated */
Rafael J. Wysocki17b75ec2011-07-12 00:39:29 +020018 GPD_STATE_POWER_OFF, /* PM domain is off */
19};
Rafael J. Wysocki596ba342011-07-01 22:13:19 +020020
Rafael J. Wysockif7218892011-07-01 22:12:45 +020021struct dev_power_governor {
22 bool (*power_down_ok)(struct dev_pm_domain *domain);
23};
24
25struct generic_pm_domain {
26 struct dev_pm_domain domain; /* PM domain operations */
Rafael J. Wysocki5125bbf2011-07-13 12:31:52 +020027 struct list_head gpd_list_node; /* Node in the global PM domains list */
Rafael J. Wysockif7218892011-07-01 22:12:45 +020028 struct list_head sd_node; /* Node in the parent's subdomain list */
29 struct generic_pm_domain *parent; /* Parent PM domain */
30 struct list_head sd_list; /* List of dubdomains */
31 struct list_head dev_list; /* List of devices */
32 struct mutex lock;
33 struct dev_power_governor *gov;
34 struct work_struct power_off_work;
35 unsigned int in_progress; /* Number of devices being suspended now */
36 unsigned int sd_count; /* Number of subdomains with power "on" */
Rafael J. Wysocki17b75ec2011-07-12 00:39:29 +020037 enum gpd_status status; /* Current state of the domain */
38 wait_queue_head_t status_wait_queue;
Rafael J. Wysockic6d22b32011-07-12 00:39:36 +020039 struct task_struct *poweroff_task; /* Powering off task */
40 unsigned int resume_count; /* Number of devices being resumed */
Rafael J. Wysocki596ba342011-07-01 22:13:19 +020041 unsigned int device_count; /* Number of devices */
42 unsigned int suspended_count; /* System suspend device counter */
43 unsigned int prepared_count; /* Suspend counter of prepared devices */
44 bool suspend_power_off; /* Power status before system suspend */
Rafael J. Wysockif7218892011-07-01 22:12:45 +020045 int (*power_off)(struct generic_pm_domain *domain);
46 int (*power_on)(struct generic_pm_domain *domain);
47 int (*start_device)(struct device *dev);
48 int (*stop_device)(struct device *dev);
Rafael J. Wysockid4f2d872011-07-01 22:13:29 +020049 bool (*active_wakeup)(struct device *dev);
Rafael J. Wysockif7218892011-07-01 22:12:45 +020050};
51
Rafael J. Wysocki596ba342011-07-01 22:13:19 +020052static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd)
53{
54 return container_of(pd, struct generic_pm_domain, domain);
55}
56
Rafael J. Wysockif7218892011-07-01 22:12:45 +020057struct dev_list_entry {
58 struct list_head node;
59 struct device *dev;
60 bool need_restore;
61};
62
63#ifdef CONFIG_PM_GENERIC_DOMAINS
64extern int pm_genpd_add_device(struct generic_pm_domain *genpd,
65 struct device *dev);
66extern int pm_genpd_remove_device(struct generic_pm_domain *genpd,
67 struct device *dev);
68extern int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
69 struct generic_pm_domain *new_subdomain);
70extern int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
71 struct generic_pm_domain *target);
72extern void pm_genpd_init(struct generic_pm_domain *genpd,
73 struct dev_power_governor *gov, bool is_off);
Magnus Damm18b4f3f2011-07-10 10:39:14 +020074extern int pm_genpd_poweron(struct generic_pm_domain *genpd);
Rafael J. Wysocki5125bbf2011-07-13 12:31:52 +020075extern void pm_genpd_poweroff_unused(void);
Rafael J. Wysockif7218892011-07-01 22:12:45 +020076#else
77static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
78 struct device *dev)
79{
80 return -ENOSYS;
81}
82static inline int pm_genpd_remove_device(struct generic_pm_domain *genpd,
83 struct device *dev)
84{
85 return -ENOSYS;
86}
87static inline int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
88 struct generic_pm_domain *new_sd)
89{
90 return -ENOSYS;
91}
92static inline int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
93 struct generic_pm_domain *target)
94{
95 return -ENOSYS;
96}
97static inline void pm_genpd_init(struct generic_pm_domain *genpd,
98 struct dev_power_governor *gov, bool is_off) {}
Magnus Damm18b4f3f2011-07-10 10:39:14 +020099static inline int pm_genpd_poweron(struct generic_pm_domain *genpd)
100{
101 return -ENOSYS;
102}
Rafael J. Wysocki5125bbf2011-07-13 12:31:52 +0200103static inline void pm_genpd_poweroff_unused(void) {}
Rafael J. Wysockif7218892011-07-01 22:12:45 +0200104#endif
105
106#endif /* _LINUX_PM_DOMAIN_H */