1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * pm_domain.h - Definitions and headers related to device power domains.
4 *
5 * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
6 */
7
8 #ifndef _LINUX_PM_DOMAIN_H
9 #define _LINUX_PM_DOMAIN_H
10
11 #include <linux/device.h>
12 #include <linux/ktime.h>
13 #include <linux/mutex.h>
14 #include <linux/pm.h>
15 #include <linux/err.h>
16 #include <linux/of.h>
17 #include <linux/notifier.h>
18 #include <linux/spinlock.h>
19 #include <linux/cpumask_types.h>
20 #include <linux/time64.h>
21
22 /*
23 * Flags to control the behaviour when attaching a device to its PM domains.
24 *
25 * PD_FLAG_NO_DEV_LINK: As the default behaviour creates a device-link
26 * for every PM domain that gets attached, this
27 * flag can be used to skip that.
28 *
29 * PD_FLAG_DEV_LINK_ON: Add the DL_FLAG_RPM_ACTIVE to power-on the
30 * supplier and its PM domain when creating the
31 * device-links.
32 *
33 */
34 #define PD_FLAG_NO_DEV_LINK BIT(0)
35 #define PD_FLAG_DEV_LINK_ON BIT(1)
36
37 struct dev_pm_domain_attach_data {
38 const char * const *pd_names;
39 const u32 num_pd_names;
40 const u32 pd_flags;
41 };
42
43 struct dev_pm_domain_list {
44 struct device **pd_devs;
45 struct device_link **pd_links;
46 u32 num_pds;
47 };
48
49 /*
50 * Flags to control the behaviour of a genpd.
51 *
52 * These flags may be set in the struct generic_pm_domain's flags field by a
53 * genpd backend driver. The flags must be set before it calls pm_genpd_init(),
54 * which initializes a genpd.
55 *
56 * GENPD_FLAG_PM_CLK: Instructs genpd to use the PM clk framework,
57 * while powering on/off attached devices.
58 *
59 * GENPD_FLAG_IRQ_SAFE: This informs genpd that its backend callbacks,
60 * ->power_on|off(), doesn't sleep. Hence, these
61 * can be invoked from within atomic context, which
62 * enables genpd to power on/off the PM domain,
63 * even when pm_runtime_is_irq_safe() returns true,
64 * for any of its attached devices. Note that, a
65 * genpd having this flag set, requires its
66 * masterdomains to also have it set.
67 *
68 * GENPD_FLAG_ALWAYS_ON: Instructs genpd to always keep the PM domain
69 * powered on.
70 *
71 * GENPD_FLAG_ACTIVE_WAKEUP: Instructs genpd to keep the PM domain powered
72 * on, in case any of its attached devices is used
73 * in the wakeup path to serve system wakeups.
74 *
75 * GENPD_FLAG_CPU_DOMAIN: Instructs genpd that it should expect to get
76 * devices attached, which may belong to CPUs or
77 * possibly have subdomains with CPUs attached.
78 * This flag enables the genpd backend driver to
79 * deploy idle power management support for CPUs
80 * and groups of CPUs. Note that, the backend
81 * driver must then comply with the so called,
82 * last-man-standing algorithm, for the CPUs in the
83 * PM domain.
84 *
85 * GENPD_FLAG_RPM_ALWAYS_ON: Instructs genpd to always keep the PM domain
86 * powered on except for system suspend.
87 *
88 * GENPD_FLAG_MIN_RESIDENCY: Enable the genpd governor to consider its
89 * components' next wakeup when determining the
90 * optimal idle state.
91 *
92 * GENPD_FLAG_OPP_TABLE_FW: The genpd provider supports performance states,
93 * but its corresponding OPP tables are not
94 * described in DT, but are given directly by FW.
95 *
96 * GENPD_FLAG_DEV_NAME_FW: Instructs genpd to generate an unique device name
97 * using ida. It is used by genpd providers which
98 * get their genpd-names directly from FW.
99 */
100 #define GENPD_FLAG_PM_CLK (1U << 0)
101 #define GENPD_FLAG_IRQ_SAFE (1U << 1)
102 #define GENPD_FLAG_ALWAYS_ON (1U << 2)
103 #define GENPD_FLAG_ACTIVE_WAKEUP (1U << 3)
104 #define GENPD_FLAG_CPU_DOMAIN (1U << 4)
105 #define GENPD_FLAG_RPM_ALWAYS_ON (1U << 5)
106 #define GENPD_FLAG_MIN_RESIDENCY (1U << 6)
107 #define GENPD_FLAG_OPP_TABLE_FW (1U << 7)
108 #define GENPD_FLAG_DEV_NAME_FW (1U << 8)
109
110 enum gpd_status {
111 GENPD_STATE_ON = 0, /* PM domain is on */
112 GENPD_STATE_OFF, /* PM domain is off */
113 };
114
115 enum genpd_notication {
116 GENPD_NOTIFY_PRE_OFF = 0,
117 GENPD_NOTIFY_OFF,
118 GENPD_NOTIFY_PRE_ON,
119 GENPD_NOTIFY_ON,
120 };
121
122 struct dev_power_governor {
123 bool (*power_down_ok)(struct dev_pm_domain *domain);
124 bool (*suspend_ok)(struct device *dev);
125 };
126
127 struct gpd_dev_ops {
128 int (*start)(struct device *dev);
129 int (*stop)(struct device *dev);
130 };
131
132 struct genpd_governor_data {
133 s64 max_off_time_ns;
134 bool max_off_time_changed;
135 ktime_t next_wakeup;
136 ktime_t next_hrtimer;
137 bool cached_power_down_ok;
138 bool cached_power_down_state_idx;
139 };
140
141 struct genpd_power_state {
142 s64 power_off_latency_ns;
143 s64 power_on_latency_ns;
144 s64 residency_ns;
145 u64 usage;
146 u64 rejected;
147 struct fwnode_handle *fwnode;
148 u64 idle_time;
149 void *data;
150 };
151
152 struct genpd_lock_ops;
153 struct opp_table;
154
155 struct generic_pm_domain {
156 struct device dev;
157 struct dev_pm_domain domain; /* PM domain operations */
158 struct list_head gpd_list_node; /* Node in the global PM domains list */
159 struct list_head parent_links; /* Links with PM domain as a parent */
160 struct list_head child_links; /* Links with PM domain as a child */
161 struct list_head dev_list; /* List of devices */
162 struct dev_power_governor *gov;
163 struct genpd_governor_data *gd; /* Data used by a genpd governor. */
164 struct work_struct power_off_work;
165 struct fwnode_handle *provider; /* Identity of the domain provider */
166 bool has_provider;
167 const char *name;
168 atomic_t sd_count; /* Number of subdomains with power "on" */
169 enum gpd_status status; /* Current state of the domain */
170 unsigned int device_count; /* Number of devices */
171 unsigned int device_id; /* unique device id */
172 unsigned int suspended_count; /* System suspend device counter */
173 unsigned int prepared_count; /* Suspend counter of prepared devices */
174 unsigned int performance_state; /* Aggregated max performance state */
175 cpumask_var_t cpus; /* A cpumask of the attached CPUs */
176 bool synced_poweroff; /* A consumer needs a synced poweroff */
177 int (*power_off)(struct generic_pm_domain *domain);
178 int (*power_on)(struct generic_pm_domain *domain);
179 struct raw_notifier_head power_notifiers; /* Power on/off notifiers */
180 struct opp_table *opp_table; /* OPP table of the genpd */
181 int (*set_performance_state)(struct generic_pm_domain *genpd,
182 unsigned int state);
183 struct gpd_dev_ops dev_ops;
184 int (*set_hwmode_dev)(struct generic_pm_domain *domain,
185 struct device *dev, bool enable);
186 bool (*get_hwmode_dev)(struct generic_pm_domain *domain,
187 struct device *dev);
188 int (*attach_dev)(struct generic_pm_domain *domain,
189 struct device *dev);
190 void (*detach_dev)(struct generic_pm_domain *domain,
191 struct device *dev);
192 unsigned int flags; /* Bit field of configs for genpd */
193 struct genpd_power_state *states;
194 void (*free_states)(struct genpd_power_state *states,
195 unsigned int state_count);
196 unsigned int state_count; /* number of states */
197 unsigned int state_idx; /* state that genpd will go to when off */
198 u64 on_time;
199 u64 accounting_time;
200 const struct genpd_lock_ops *lock_ops;
201 union {
202 struct mutex mlock;
203 struct {
204 spinlock_t slock;
205 unsigned long lock_flags;
206 };
207 struct {
208 raw_spinlock_t raw_slock;
209 unsigned long raw_lock_flags;
210 };
211 };
212 };
213
pd_to_genpd(struct dev_pm_domain * pd)214 static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd)
215 {
216 return container_of(pd, struct generic_pm_domain, domain);
217 }
218
219 struct gpd_link {
220 struct generic_pm_domain *parent;
221 struct list_head parent_node;
222 struct generic_pm_domain *child;
223 struct list_head child_node;
224
225 /* Sub-domain's per-master domain performance state */
226 unsigned int performance_state;
227 unsigned int prev_performance_state;
228 };
229
230 struct gpd_timing_data {
231 s64 suspend_latency_ns;
232 s64 resume_latency_ns;
233 s64 effective_constraint_ns;
234 ktime_t next_wakeup;
235 bool constraint_changed;
236 bool cached_suspend_ok;
237 };
238
239 struct pm_domain_data {
240 struct list_head list_node;
241 struct device *dev;
242 };
243
244 struct generic_pm_domain_data {
245 struct pm_domain_data base;
246 struct gpd_timing_data *td;
247 struct notifier_block nb;
248 struct notifier_block *power_nb;
249 int cpu;
250 unsigned int performance_state;
251 unsigned int default_pstate;
252 unsigned int rpm_pstate;
253 bool hw_mode;
254 bool rpm_always_on;
255 void *data;
256 };
257
258 #ifdef CONFIG_PM_GENERIC_DOMAINS
to_gpd_data(struct pm_domain_data * pdd)259 static inline struct generic_pm_domain_data *to_gpd_data(struct pm_domain_data *pdd)
260 {
261 return container_of(pdd, struct generic_pm_domain_data, base);
262 }
263
dev_gpd_data(struct device * dev)264 static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
265 {
266 return to_gpd_data(dev->power.subsys_data->domain_data);
267 }
268
269 int pm_genpd_add_device(struct generic_pm_domain *genpd, struct device *dev);
270 int pm_genpd_remove_device(struct device *dev);
271 int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
272 struct generic_pm_domain *subdomain);
273 int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
274 struct generic_pm_domain *subdomain);
275 int pm_genpd_init(struct generic_pm_domain *genpd,
276 struct dev_power_governor *gov, bool is_off);
277 int pm_genpd_remove(struct generic_pm_domain *genpd);
278 struct device *dev_to_genpd_dev(struct device *dev);
279 int dev_pm_genpd_set_performance_state(struct device *dev, unsigned int state);
280 int dev_pm_genpd_add_notifier(struct device *dev, struct notifier_block *nb);
281 int dev_pm_genpd_remove_notifier(struct device *dev);
282 void dev_pm_genpd_set_next_wakeup(struct device *dev, ktime_t next);
283 ktime_t dev_pm_genpd_get_next_hrtimer(struct device *dev);
284 void dev_pm_genpd_synced_poweroff(struct device *dev);
285 int dev_pm_genpd_set_hwmode(struct device *dev, bool enable);
286 bool dev_pm_genpd_get_hwmode(struct device *dev);
287 int dev_pm_genpd_rpm_always_on(struct device *dev, bool on);
288
289 extern struct dev_power_governor simple_qos_governor;
290 extern struct dev_power_governor pm_domain_always_on_gov;
291 #ifdef CONFIG_CPU_IDLE
292 extern struct dev_power_governor pm_domain_cpu_gov;
293 #endif
294 #else
295
dev_gpd_data(struct device * dev)296 static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
297 {
298 return ERR_PTR(-ENOSYS);
299 }
pm_genpd_add_device(struct generic_pm_domain * genpd,struct device * dev)300 static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
301 struct device *dev)
302 {
303 return -ENOSYS;
304 }
pm_genpd_remove_device(struct device * dev)305 static inline int pm_genpd_remove_device(struct device *dev)
306 {
307 return -ENOSYS;
308 }
pm_genpd_add_subdomain(struct generic_pm_domain * genpd,struct generic_pm_domain * subdomain)309 static inline int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
310 struct generic_pm_domain *subdomain)
311 {
312 return -ENOSYS;
313 }
pm_genpd_remove_subdomain(struct generic_pm_domain * genpd,struct generic_pm_domain * subdomain)314 static inline int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
315 struct generic_pm_domain *subdomain)
316 {
317 return -ENOSYS;
318 }
pm_genpd_init(struct generic_pm_domain * genpd,struct dev_power_governor * gov,bool is_off)319 static inline int pm_genpd_init(struct generic_pm_domain *genpd,
320 struct dev_power_governor *gov, bool is_off)
321 {
322 return -ENOSYS;
323 }
pm_genpd_remove(struct generic_pm_domain * genpd)324 static inline int pm_genpd_remove(struct generic_pm_domain *genpd)
325 {
326 return -EOPNOTSUPP;
327 }
328
dev_to_genpd_dev(struct device * dev)329 static inline struct device *dev_to_genpd_dev(struct device *dev)
330 {
331 return ERR_PTR(-EOPNOTSUPP);
332 }
333
dev_pm_genpd_set_performance_state(struct device * dev,unsigned int state)334 static inline int dev_pm_genpd_set_performance_state(struct device *dev,
335 unsigned int state)
336 {
337 return -EOPNOTSUPP;
338 }
339
dev_pm_genpd_add_notifier(struct device * dev,struct notifier_block * nb)340 static inline int dev_pm_genpd_add_notifier(struct device *dev,
341 struct notifier_block *nb)
342 {
343 return -EOPNOTSUPP;
344 }
345
dev_pm_genpd_remove_notifier(struct device * dev)346 static inline int dev_pm_genpd_remove_notifier(struct device *dev)
347 {
348 return -EOPNOTSUPP;
349 }
350
dev_pm_genpd_set_next_wakeup(struct device * dev,ktime_t next)351 static inline void dev_pm_genpd_set_next_wakeup(struct device *dev, ktime_t next)
352 { }
353
dev_pm_genpd_get_next_hrtimer(struct device * dev)354 static inline ktime_t dev_pm_genpd_get_next_hrtimer(struct device *dev)
355 {
356 return KTIME_MAX;
357 }
dev_pm_genpd_synced_poweroff(struct device * dev)358 static inline void dev_pm_genpd_synced_poweroff(struct device *dev)
359 { }
360
dev_pm_genpd_set_hwmode(struct device * dev,bool enable)361 static inline int dev_pm_genpd_set_hwmode(struct device *dev, bool enable)
362 {
363 return -EOPNOTSUPP;
364 }
365
dev_pm_genpd_get_hwmode(struct device * dev)366 static inline bool dev_pm_genpd_get_hwmode(struct device *dev)
367 {
368 return false;
369 }
370
dev_pm_genpd_rpm_always_on(struct device * dev,bool on)371 static inline int dev_pm_genpd_rpm_always_on(struct device *dev, bool on)
372 {
373 return -EOPNOTSUPP;
374 }
375
376 #define simple_qos_governor (*(struct dev_power_governor *)(NULL))
377 #define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL))
378 #endif
379
380 #ifdef CONFIG_PM_GENERIC_DOMAINS_SLEEP
381 void dev_pm_genpd_suspend(struct device *dev);
382 void dev_pm_genpd_resume(struct device *dev);
383 #else
dev_pm_genpd_suspend(struct device * dev)384 static inline void dev_pm_genpd_suspend(struct device *dev) {}
dev_pm_genpd_resume(struct device * dev)385 static inline void dev_pm_genpd_resume(struct device *dev) {}
386 #endif
387
388 /* OF PM domain providers */
389 struct of_device_id;
390
391 typedef struct generic_pm_domain *(*genpd_xlate_t)(const struct of_phandle_args *args,
392 void *data);
393
394 struct genpd_onecell_data {
395 struct generic_pm_domain **domains;
396 unsigned int num_domains;
397 genpd_xlate_t xlate;
398 };
399
400 #ifdef CONFIG_PM_GENERIC_DOMAINS_OF
401 int of_genpd_add_provider_simple(struct device_node *np,
402 struct generic_pm_domain *genpd);
403 int of_genpd_add_provider_onecell(struct device_node *np,
404 struct genpd_onecell_data *data);
405 void of_genpd_del_provider(struct device_node *np);
406 int of_genpd_add_device(const struct of_phandle_args *args, struct device *dev);
407 int of_genpd_add_subdomain(const struct of_phandle_args *parent_spec,
408 const struct of_phandle_args *subdomain_spec);
409 int of_genpd_remove_subdomain(const struct of_phandle_args *parent_spec,
410 const struct of_phandle_args *subdomain_spec);
411 struct generic_pm_domain *of_genpd_remove_last(struct device_node *np);
412 int of_genpd_parse_idle_states(struct device_node *dn,
413 struct genpd_power_state **states, int *n);
414
415 int genpd_dev_pm_attach(struct device *dev);
416 struct device *genpd_dev_pm_attach_by_id(struct device *dev,
417 unsigned int index);
418 struct device *genpd_dev_pm_attach_by_name(struct device *dev,
419 const char *name);
420 #else /* !CONFIG_PM_GENERIC_DOMAINS_OF */
of_genpd_add_provider_simple(struct device_node * np,struct generic_pm_domain * genpd)421 static inline int of_genpd_add_provider_simple(struct device_node *np,
422 struct generic_pm_domain *genpd)
423 {
424 return -EOPNOTSUPP;
425 }
426
of_genpd_add_provider_onecell(struct device_node * np,struct genpd_onecell_data * data)427 static inline int of_genpd_add_provider_onecell(struct device_node *np,
428 struct genpd_onecell_data *data)
429 {
430 return -EOPNOTSUPP;
431 }
432
of_genpd_del_provider(struct device_node * np)433 static inline void of_genpd_del_provider(struct device_node *np) {}
434
of_genpd_add_device(const struct of_phandle_args * args,struct device * dev)435 static inline int of_genpd_add_device(const struct of_phandle_args *args,
436 struct device *dev)
437 {
438 return -ENODEV;
439 }
440
of_genpd_add_subdomain(const struct of_phandle_args * parent_spec,const struct of_phandle_args * subdomain_spec)441 static inline int of_genpd_add_subdomain(const struct of_phandle_args *parent_spec,
442 const struct of_phandle_args *subdomain_spec)
443 {
444 return -ENODEV;
445 }
446
of_genpd_remove_subdomain(const struct of_phandle_args * parent_spec,const struct of_phandle_args * subdomain_spec)447 static inline int of_genpd_remove_subdomain(const struct of_phandle_args *parent_spec,
448 const struct of_phandle_args *subdomain_spec)
449 {
450 return -ENODEV;
451 }
452
of_genpd_parse_idle_states(struct device_node * dn,struct genpd_power_state ** states,int * n)453 static inline int of_genpd_parse_idle_states(struct device_node *dn,
454 struct genpd_power_state **states, int *n)
455 {
456 return -ENODEV;
457 }
458
genpd_dev_pm_attach(struct device * dev)459 static inline int genpd_dev_pm_attach(struct device *dev)
460 {
461 return 0;
462 }
463
genpd_dev_pm_attach_by_id(struct device * dev,unsigned int index)464 static inline struct device *genpd_dev_pm_attach_by_id(struct device *dev,
465 unsigned int index)
466 {
467 return NULL;
468 }
469
genpd_dev_pm_attach_by_name(struct device * dev,const char * name)470 static inline struct device *genpd_dev_pm_attach_by_name(struct device *dev,
471 const char *name)
472 {
473 return NULL;
474 }
475
476 static inline
of_genpd_remove_last(struct device_node * np)477 struct generic_pm_domain *of_genpd_remove_last(struct device_node *np)
478 {
479 return ERR_PTR(-EOPNOTSUPP);
480 }
481 #endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
482
483 #ifdef CONFIG_PM
484 int dev_pm_domain_attach(struct device *dev, bool power_on);
485 struct device *dev_pm_domain_attach_by_id(struct device *dev,
486 unsigned int index);
487 struct device *dev_pm_domain_attach_by_name(struct device *dev,
488 const char *name);
489 int dev_pm_domain_attach_list(struct device *dev,
490 const struct dev_pm_domain_attach_data *data,
491 struct dev_pm_domain_list **list);
492 int devm_pm_domain_attach_list(struct device *dev,
493 const struct dev_pm_domain_attach_data *data,
494 struct dev_pm_domain_list **list);
495 void dev_pm_domain_detach(struct device *dev, bool power_off);
496 void dev_pm_domain_detach_list(struct dev_pm_domain_list *list);
497 int dev_pm_domain_start(struct device *dev);
498 void dev_pm_domain_set(struct device *dev, struct dev_pm_domain *pd);
499 int dev_pm_domain_set_performance_state(struct device *dev, unsigned int state);
500 #else
dev_pm_domain_attach(struct device * dev,bool power_on)501 static inline int dev_pm_domain_attach(struct device *dev, bool power_on)
502 {
503 return 0;
504 }
dev_pm_domain_attach_by_id(struct device * dev,unsigned int index)505 static inline struct device *dev_pm_domain_attach_by_id(struct device *dev,
506 unsigned int index)
507 {
508 return NULL;
509 }
dev_pm_domain_attach_by_name(struct device * dev,const char * name)510 static inline struct device *dev_pm_domain_attach_by_name(struct device *dev,
511 const char *name)
512 {
513 return NULL;
514 }
dev_pm_domain_attach_list(struct device * dev,const struct dev_pm_domain_attach_data * data,struct dev_pm_domain_list ** list)515 static inline int dev_pm_domain_attach_list(struct device *dev,
516 const struct dev_pm_domain_attach_data *data,
517 struct dev_pm_domain_list **list)
518 {
519 return 0;
520 }
521
devm_pm_domain_attach_list(struct device * dev,const struct dev_pm_domain_attach_data * data,struct dev_pm_domain_list ** list)522 static inline int devm_pm_domain_attach_list(struct device *dev,
523 const struct dev_pm_domain_attach_data *data,
524 struct dev_pm_domain_list **list)
525 {
526 return 0;
527 }
528
dev_pm_domain_detach(struct device * dev,bool power_off)529 static inline void dev_pm_domain_detach(struct device *dev, bool power_off) {}
dev_pm_domain_detach_list(struct dev_pm_domain_list * list)530 static inline void dev_pm_domain_detach_list(struct dev_pm_domain_list *list) {}
dev_pm_domain_start(struct device * dev)531 static inline int dev_pm_domain_start(struct device *dev)
532 {
533 return 0;
534 }
dev_pm_domain_set(struct device * dev,struct dev_pm_domain * pd)535 static inline void dev_pm_domain_set(struct device *dev,
536 struct dev_pm_domain *pd) {}
dev_pm_domain_set_performance_state(struct device * dev,unsigned int state)537 static inline int dev_pm_domain_set_performance_state(struct device *dev,
538 unsigned int state)
539 {
540 return 0;
541 }
542 #endif
543
544 #endif /* _LINUX_PM_DOMAIN_H */
545