1
2
3
4
5
6
7
8#ifndef _LINUX_PM_DOMAIN_H
9#define _LINUX_PM_DOMAIN_H
10
11#include <linux/device.h>
12#include <linux/mutex.h>
13#include <linux/pm.h>
14#include <linux/err.h>
15#include <linux/of.h>
16#include <linux/notifier.h>
17#include <linux/spinlock.h>
18#include <linux/cpumask.h>
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59#define GENPD_FLAG_PM_CLK (1U << 0)
60#define GENPD_FLAG_IRQ_SAFE (1U << 1)
61#define GENPD_FLAG_ALWAYS_ON (1U << 2)
62#define GENPD_FLAG_ACTIVE_WAKEUP (1U << 3)
63#define GENPD_FLAG_CPU_DOMAIN (1U << 4)
64#define GENPD_FLAG_RPM_ALWAYS_ON (1U << 5)
65
66enum gpd_status {
67 GPD_STATE_ACTIVE = 0,
68 GPD_STATE_POWER_OFF,
69};
70
71struct dev_power_governor {
72 bool (*power_down_ok)(struct dev_pm_domain *domain);
73 bool (*suspend_ok)(struct device *dev);
74};
75
76struct gpd_dev_ops {
77 int (*start)(struct device *dev);
78 int (*stop)(struct device *dev);
79};
80
81struct genpd_power_state {
82 s64 power_off_latency_ns;
83 s64 power_on_latency_ns;
84 s64 residency_ns;
85 struct fwnode_handle *fwnode;
86 ktime_t idle_time;
87 void *data;
88};
89
90struct genpd_lock_ops;
91struct dev_pm_opp;
92struct opp_table;
93
94struct generic_pm_domain {
95 struct device dev;
96 struct dev_pm_domain domain;
97 struct list_head gpd_list_node;
98 struct list_head master_links;
99 struct list_head slave_links;
100 struct list_head dev_list;
101 struct dev_power_governor *gov;
102 struct work_struct power_off_work;
103 struct fwnode_handle *provider;
104 bool has_provider;
105 const char *name;
106 atomic_t sd_count;
107 enum gpd_status status;
108 unsigned int device_count;
109 unsigned int suspended_count;
110 unsigned int prepared_count;
111 unsigned int performance_state;
112 cpumask_var_t cpus;
113 int (*power_off)(struct generic_pm_domain *domain);
114 int (*power_on)(struct generic_pm_domain *domain);
115 struct opp_table *opp_table;
116 unsigned int (*opp_to_performance_state)(struct generic_pm_domain *genpd,
117 struct dev_pm_opp *opp);
118 int (*set_performance_state)(struct generic_pm_domain *genpd,
119 unsigned int state);
120 struct gpd_dev_ops dev_ops;
121 s64 max_off_time_ns;
122 bool max_off_time_changed;
123 bool cached_power_down_ok;
124 bool cached_power_down_state_idx;
125 int (*attach_dev)(struct generic_pm_domain *domain,
126 struct device *dev);
127 void (*detach_dev)(struct generic_pm_domain *domain,
128 struct device *dev);
129 unsigned int flags;
130 struct genpd_power_state *states;
131 void (*free_states)(struct genpd_power_state *states,
132 unsigned int state_count);
133 unsigned int state_count;
134 unsigned int state_idx;
135 ktime_t on_time;
136 ktime_t accounting_time;
137 const struct genpd_lock_ops *lock_ops;
138 union {
139 struct mutex mlock;
140 struct {
141 spinlock_t slock;
142 unsigned long lock_flags;
143 };
144 };
145
146};
147
148static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd)
149{
150 return container_of(pd, struct generic_pm_domain, domain);
151}
152
153struct gpd_link {
154 struct generic_pm_domain *master;
155 struct list_head master_node;
156 struct generic_pm_domain *slave;
157 struct list_head slave_node;
158
159
160 unsigned int performance_state;
161 unsigned int prev_performance_state;
162};
163
164struct gpd_timing_data {
165 s64 suspend_latency_ns;
166 s64 resume_latency_ns;
167 s64 effective_constraint_ns;
168 bool constraint_changed;
169 bool cached_suspend_ok;
170};
171
172struct pm_domain_data {
173 struct list_head list_node;
174 struct device *dev;
175};
176
177struct generic_pm_domain_data {
178 struct pm_domain_data base;
179 struct gpd_timing_data td;
180 struct notifier_block nb;
181 int cpu;
182 unsigned int performance_state;
183 void *data;
184};
185
186#ifdef CONFIG_PM_GENERIC_DOMAINS
187static inline struct generic_pm_domain_data *to_gpd_data(struct pm_domain_data *pdd)
188{
189 return container_of(pdd, struct generic_pm_domain_data, base);
190}
191
192static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
193{
194 return to_gpd_data(dev->power.subsys_data->domain_data);
195}
196
197int pm_genpd_add_device(struct generic_pm_domain *genpd, struct device *dev);
198int pm_genpd_remove_device(struct device *dev);
199int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
200 struct generic_pm_domain *subdomain);
201int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
202 struct generic_pm_domain *subdomain);
203int pm_genpd_init(struct generic_pm_domain *genpd,
204 struct dev_power_governor *gov, bool is_off);
205int pm_genpd_remove(struct generic_pm_domain *genpd);
206int dev_pm_genpd_set_performance_state(struct device *dev, unsigned int state);
207
208extern struct dev_power_governor simple_qos_governor;
209extern struct dev_power_governor pm_domain_always_on_gov;
210#ifdef CONFIG_CPU_IDLE
211extern struct dev_power_governor pm_domain_cpu_gov;
212#endif
213#else
214
215static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
216{
217 return ERR_PTR(-ENOSYS);
218}
219static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
220 struct device *dev)
221{
222 return -ENOSYS;
223}
224static inline int pm_genpd_remove_device(struct device *dev)
225{
226 return -ENOSYS;
227}
228static inline int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
229 struct generic_pm_domain *subdomain)
230{
231 return -ENOSYS;
232}
233static inline int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
234 struct generic_pm_domain *subdomain)
235{
236 return -ENOSYS;
237}
238static inline int pm_genpd_init(struct generic_pm_domain *genpd,
239 struct dev_power_governor *gov, bool is_off)
240{
241 return -ENOSYS;
242}
243static inline int pm_genpd_remove(struct generic_pm_domain *genpd)
244{
245 return -ENOTSUPP;
246}
247
248static inline int dev_pm_genpd_set_performance_state(struct device *dev,
249 unsigned int state)
250{
251 return -ENOTSUPP;
252}
253
254#define simple_qos_governor (*(struct dev_power_governor *)(NULL))
255#define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL))
256#endif
257
258#ifdef CONFIG_PM_GENERIC_DOMAINS_SLEEP
259void pm_genpd_syscore_poweroff(struct device *dev);
260void pm_genpd_syscore_poweron(struct device *dev);
261#else
262static inline void pm_genpd_syscore_poweroff(struct device *dev) {}
263static inline void pm_genpd_syscore_poweron(struct device *dev) {}
264#endif
265
266
267struct of_device_id;
268
269typedef struct generic_pm_domain *(*genpd_xlate_t)(struct of_phandle_args *args,
270 void *data);
271
272struct genpd_onecell_data {
273 struct generic_pm_domain **domains;
274 unsigned int num_domains;
275 genpd_xlate_t xlate;
276};
277
278#ifdef CONFIG_PM_GENERIC_DOMAINS_OF
279int of_genpd_add_provider_simple(struct device_node *np,
280 struct generic_pm_domain *genpd);
281int of_genpd_add_provider_onecell(struct device_node *np,
282 struct genpd_onecell_data *data);
283void of_genpd_del_provider(struct device_node *np);
284int of_genpd_add_device(struct of_phandle_args *args, struct device *dev);
285int of_genpd_add_subdomain(struct of_phandle_args *parent_spec,
286 struct of_phandle_args *subdomain_spec);
287int of_genpd_remove_subdomain(struct of_phandle_args *parent_spec,
288 struct of_phandle_args *subdomain_spec);
289struct generic_pm_domain *of_genpd_remove_last(struct device_node *np);
290int of_genpd_parse_idle_states(struct device_node *dn,
291 struct genpd_power_state **states, int *n);
292unsigned int pm_genpd_opp_to_performance_state(struct device *genpd_dev,
293 struct dev_pm_opp *opp);
294
295int genpd_dev_pm_attach(struct device *dev);
296struct device *genpd_dev_pm_attach_by_id(struct device *dev,
297 unsigned int index);
298struct device *genpd_dev_pm_attach_by_name(struct device *dev,
299 const char *name);
300#else
301static inline int of_genpd_add_provider_simple(struct device_node *np,
302 struct generic_pm_domain *genpd)
303{
304 return -ENOTSUPP;
305}
306
307static inline int of_genpd_add_provider_onecell(struct device_node *np,
308 struct genpd_onecell_data *data)
309{
310 return -ENOTSUPP;
311}
312
313static inline void of_genpd_del_provider(struct device_node *np) {}
314
315static inline int of_genpd_add_device(struct of_phandle_args *args,
316 struct device *dev)
317{
318 return -ENODEV;
319}
320
321static inline int of_genpd_add_subdomain(struct of_phandle_args *parent_spec,
322 struct of_phandle_args *subdomain_spec)
323{
324 return -ENODEV;
325}
326
327static inline int of_genpd_remove_subdomain(struct of_phandle_args *parent_spec,
328 struct of_phandle_args *subdomain_spec)
329{
330 return -ENODEV;
331}
332
333static inline int of_genpd_parse_idle_states(struct device_node *dn,
334 struct genpd_power_state **states, int *n)
335{
336 return -ENODEV;
337}
338
339static inline unsigned int
340pm_genpd_opp_to_performance_state(struct device *genpd_dev,
341 struct dev_pm_opp *opp)
342{
343 return 0;
344}
345
346static inline int genpd_dev_pm_attach(struct device *dev)
347{
348 return 0;
349}
350
351static inline struct device *genpd_dev_pm_attach_by_id(struct device *dev,
352 unsigned int index)
353{
354 return NULL;
355}
356
357static inline struct device *genpd_dev_pm_attach_by_name(struct device *dev,
358 const char *name)
359{
360 return NULL;
361}
362
363static inline
364struct generic_pm_domain *of_genpd_remove_last(struct device_node *np)
365{
366 return ERR_PTR(-ENOTSUPP);
367}
368#endif
369
370#ifdef CONFIG_PM
371int dev_pm_domain_attach(struct device *dev, bool power_on);
372struct device *dev_pm_domain_attach_by_id(struct device *dev,
373 unsigned int index);
374struct device *dev_pm_domain_attach_by_name(struct device *dev,
375 const char *name);
376void dev_pm_domain_detach(struct device *dev, bool power_off);
377int dev_pm_domain_start(struct device *dev);
378void dev_pm_domain_set(struct device *dev, struct dev_pm_domain *pd);
379#else
380static inline int dev_pm_domain_attach(struct device *dev, bool power_on)
381{
382 return 0;
383}
384static inline struct device *dev_pm_domain_attach_by_id(struct device *dev,
385 unsigned int index)
386{
387 return NULL;
388}
389static inline struct device *dev_pm_domain_attach_by_name(struct device *dev,
390 const char *name)
391{
392 return NULL;
393}
394static inline void dev_pm_domain_detach(struct device *dev, bool power_off) {}
395static inline int dev_pm_domain_start(struct device *dev)
396{
397 return 0;
398}
399static inline void dev_pm_domain_set(struct device *dev,
400 struct dev_pm_domain *pd) {}
401#endif
402
403#endif
404