2019-06-01 10:08:42 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2011-07-01 22:12:45 +02:00
|
|
|
/*
|
|
|
|
|
* pm_domain.h - Definitions and headers related to device power domains.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _LINUX_PM_DOMAIN_H
|
|
|
|
|
#define _LINUX_PM_DOMAIN_H
|
|
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
2012-01-30 11:46:54 -05:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
|
#include <linux/pm.h>
|
2011-12-01 00:05:31 +01:00
|
|
|
#include <linux/err.h>
|
2012-01-27 15:22:07 +09:00
|
|
|
#include <linux/of.h>
|
2012-05-01 21:34:07 +02:00
|
|
|
#include <linux/notifier.h>
|
2016-10-14 10:47:55 -07:00
|
|
|
#include <linux/spinlock.h>
|
2019-03-27 15:35:46 +01:00
|
|
|
#include <linux/cpumask.h>
|
2011-07-01 22:12:45 +02:00
|
|
|
|
2018-10-03 16:38:16 +02:00
|
|
|
/*
|
|
|
|
|
* Flags to control the behaviour of a genpd.
|
|
|
|
|
*
|
|
|
|
|
* These flags may be set in the struct generic_pm_domain's flags field by a
|
|
|
|
|
* genpd backend driver. The flags must be set before it calls pm_genpd_init(),
|
|
|
|
|
* which initializes a genpd.
|
|
|
|
|
*
|
|
|
|
|
* GENPD_FLAG_PM_CLK: Instructs genpd to use the PM clk framework,
|
|
|
|
|
* while powering on/off attached devices.
|
|
|
|
|
*
|
|
|
|
|
* GENPD_FLAG_IRQ_SAFE: This informs genpd that its backend callbacks,
|
|
|
|
|
* ->power_on|off(), doesn't sleep. Hence, these
|
|
|
|
|
* can be invoked from within atomic context, which
|
|
|
|
|
* enables genpd to power on/off the PM domain,
|
|
|
|
|
* even when pm_runtime_is_irq_safe() returns true,
|
|
|
|
|
* for any of its attached devices. Note that, a
|
|
|
|
|
* genpd having this flag set, requires its
|
|
|
|
|
* masterdomains to also have it set.
|
|
|
|
|
*
|
|
|
|
|
* GENPD_FLAG_ALWAYS_ON: Instructs genpd to always keep the PM domain
|
|
|
|
|
* powered on.
|
|
|
|
|
*
|
|
|
|
|
* GENPD_FLAG_ACTIVE_WAKEUP: Instructs genpd to keep the PM domain powered
|
|
|
|
|
* on, in case any of its attached devices is used
|
|
|
|
|
* in the wakeup path to serve system wakeups.
|
2019-03-27 15:35:46 +01:00
|
|
|
*
|
|
|
|
|
* GENPD_FLAG_CPU_DOMAIN: Instructs genpd that it should expect to get
|
|
|
|
|
* devices attached, which may belong to CPUs or
|
|
|
|
|
* possibly have subdomains with CPUs attached.
|
|
|
|
|
* This flag enables the genpd backend driver to
|
|
|
|
|
* deploy idle power management support for CPUs
|
|
|
|
|
* and groups of CPUs. Note that, the backend
|
|
|
|
|
* driver must then comply with the so called,
|
|
|
|
|
* last-man-standing algorithm, for the CPUs in the
|
|
|
|
|
* PM domain.
|
2019-04-30 15:06:11 +00:00
|
|
|
*
|
|
|
|
|
* GENPD_FLAG_RPM_ALWAYS_ON: Instructs genpd to always keep the PM domain
|
|
|
|
|
* powered on except for system suspend.
|
2018-10-03 16:38:16 +02:00
|
|
|
*/
|
|
|
|
|
#define GENPD_FLAG_PM_CLK (1U << 0)
|
|
|
|
|
#define GENPD_FLAG_IRQ_SAFE (1U << 1)
|
|
|
|
|
#define GENPD_FLAG_ALWAYS_ON (1U << 2)
|
|
|
|
|
#define GENPD_FLAG_ACTIVE_WAKEUP (1U << 3)
|
2019-03-27 15:35:46 +01:00
|
|
|
#define GENPD_FLAG_CPU_DOMAIN (1U << 4)
|
2019-04-30 15:06:11 +00:00
|
|
|
#define GENPD_FLAG_RPM_ALWAYS_ON (1U << 5)
|
2014-12-01 12:50:21 +01:00
|
|
|
|
2011-07-12 00:39:29 +02:00
|
|
|
enum gpd_status {
|
|
|
|
|
GPD_STATE_ACTIVE = 0, /* PM domain is active */
|
|
|
|
|
GPD_STATE_POWER_OFF, /* PM domain is off */
|
|
|
|
|
};
|
2011-07-01 22:13:19 +02:00
|
|
|
|
2011-07-01 22:12:45 +02:00
|
|
|
struct dev_power_governor {
|
|
|
|
|
bool (*power_down_ok)(struct dev_pm_domain *domain);
|
2016-03-31 11:21:25 +02:00
|
|
|
bool (*suspend_ok)(struct device *dev);
|
2011-07-01 22:12:45 +02:00
|
|
|
};
|
|
|
|
|
|
2011-11-27 13:11:36 +01:00
|
|
|
struct gpd_dev_ops {
|
|
|
|
|
int (*start)(struct device *dev);
|
|
|
|
|
int (*stop)(struct device *dev);
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-15 11:10:51 +01:00
|
|
|
struct genpd_power_state {
|
|
|
|
|
s64 power_off_latency_ns;
|
|
|
|
|
s64 power_on_latency_ns;
|
2016-10-14 10:47:50 -07:00
|
|
|
s64 residency_ns;
|
2016-10-14 10:47:52 -07:00
|
|
|
struct fwnode_handle *fwnode;
|
2017-07-14 13:10:15 -04:00
|
|
|
ktime_t idle_time;
|
2019-03-27 15:35:45 +01:00
|
|
|
void *data;
|
2016-02-15 11:10:51 +01:00
|
|
|
};
|
|
|
|
|
|
2016-10-14 10:47:54 -07:00
|
|
|
struct genpd_lock_ops;
|
2017-11-29 15:21:51 +05:30
|
|
|
struct dev_pm_opp;
|
2018-11-02 11:18:08 +05:30
|
|
|
struct opp_table;
|
2016-10-14 10:47:54 -07:00
|
|
|
|
2011-07-01 22:12:45 +02:00
|
|
|
struct generic_pm_domain {
|
2017-03-17 11:26:19 +05:30
|
|
|
struct device dev;
|
2011-07-01 22:12:45 +02:00
|
|
|
struct dev_pm_domain domain; /* PM domain operations */
|
2011-07-13 12:31:52 +02:00
|
|
|
struct list_head gpd_list_node; /* Node in the global PM domains list */
|
2011-08-08 23:43:40 +02:00
|
|
|
struct list_head master_links; /* Links with PM domain as a master */
|
|
|
|
|
struct list_head slave_links; /* Links with PM domain as a slave */
|
2011-07-01 22:12:45 +02:00
|
|
|
struct list_head dev_list; /* List of devices */
|
|
|
|
|
struct dev_power_governor *gov;
|
|
|
|
|
struct work_struct power_off_work;
|
2016-09-12 12:01:12 +01:00
|
|
|
struct fwnode_handle *provider; /* Identity of the domain provider */
|
|
|
|
|
bool has_provider;
|
2014-08-29 15:13:21 +02:00
|
|
|
const char *name;
|
2011-08-08 23:43:04 +02:00
|
|
|
atomic_t sd_count; /* Number of subdomains with power "on" */
|
2011-07-12 00:39:29 +02:00
|
|
|
enum gpd_status status; /* Current state of the domain */
|
2011-07-01 22:13:19 +02:00
|
|
|
unsigned int device_count; /* Number of devices */
|
|
|
|
|
unsigned int suspended_count; /* System suspend device counter */
|
|
|
|
|
unsigned int prepared_count; /* Suspend counter of prepared devices */
|
2017-10-12 15:07:23 +05:30
|
|
|
unsigned int performance_state; /* Aggregated max performance state */
|
2019-03-27 15:35:46 +01:00
|
|
|
cpumask_var_t cpus; /* A cpumask of the attached CPUs */
|
2011-07-01 22:12:45 +02:00
|
|
|
int (*power_off)(struct generic_pm_domain *domain);
|
|
|
|
|
int (*power_on)(struct generic_pm_domain *domain);
|
2018-11-02 11:18:08 +05:30
|
|
|
struct opp_table *opp_table; /* OPP table of the genpd */
|
2017-11-29 15:21:51 +05:30
|
|
|
unsigned int (*opp_to_performance_state)(struct generic_pm_domain *genpd,
|
|
|
|
|
struct dev_pm_opp *opp);
|
2017-10-12 15:07:23 +05:30
|
|
|
int (*set_performance_state)(struct generic_pm_domain *genpd,
|
|
|
|
|
unsigned int state);
|
2011-11-27 13:11:36 +01:00
|
|
|
struct gpd_dev_ops dev_ops;
|
2011-12-01 00:02:10 +01:00
|
|
|
s64 max_off_time_ns; /* Maximum allowed "suspended" time. */
|
2012-05-01 21:34:07 +02:00
|
|
|
bool max_off_time_changed;
|
|
|
|
|
bool cached_power_down_ok;
|
2019-04-11 20:17:33 +02:00
|
|
|
bool cached_power_down_state_idx;
|
2014-11-06 00:37:08 +01:00
|
|
|
int (*attach_dev)(struct generic_pm_domain *domain,
|
|
|
|
|
struct device *dev);
|
|
|
|
|
void (*detach_dev)(struct generic_pm_domain *domain,
|
|
|
|
|
struct device *dev);
|
2014-12-01 12:50:21 +01:00
|
|
|
unsigned int flags; /* Bit field of configs for genpd */
|
2016-10-14 10:47:49 -07:00
|
|
|
struct genpd_power_state *states;
|
2019-03-27 15:35:45 +01:00
|
|
|
void (*free_states)(struct genpd_power_state *states,
|
|
|
|
|
unsigned int state_count);
|
2016-02-15 11:10:51 +01:00
|
|
|
unsigned int state_count; /* number of states */
|
|
|
|
|
unsigned int state_idx; /* state that genpd will go to when off */
|
2017-07-14 13:10:15 -04:00
|
|
|
ktime_t on_time;
|
|
|
|
|
ktime_t accounting_time;
|
2016-10-14 10:47:54 -07:00
|
|
|
const struct genpd_lock_ops *lock_ops;
|
2016-10-14 10:47:55 -07:00
|
|
|
union {
|
|
|
|
|
struct mutex mlock;
|
|
|
|
|
struct {
|
|
|
|
|
spinlock_t slock;
|
|
|
|
|
unsigned long lock_flags;
|
|
|
|
|
};
|
|
|
|
|
};
|
2016-02-15 11:10:51 +01:00
|
|
|
|
2011-07-01 22:12:45 +02:00
|
|
|
};
|
|
|
|
|
|
2011-07-01 22:13:19 +02:00
|
|
|
static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd)
|
|
|
|
|
{
|
|
|
|
|
return container_of(pd, struct generic_pm_domain, domain);
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-08 23:43:40 +02:00
|
|
|
struct gpd_link {
|
|
|
|
|
struct generic_pm_domain *master;
|
|
|
|
|
struct list_head master_node;
|
|
|
|
|
struct generic_pm_domain *slave;
|
|
|
|
|
struct list_head slave_node;
|
2018-11-02 14:40:19 +05:30
|
|
|
|
|
|
|
|
/* Sub-domain's per-master domain performance state */
|
|
|
|
|
unsigned int performance_state;
|
|
|
|
|
unsigned int prev_performance_state;
|
2011-08-08 23:43:40 +02:00
|
|
|
};
|
|
|
|
|
|
2011-12-01 00:02:05 +01:00
|
|
|
struct gpd_timing_data {
|
2015-10-15 17:02:19 +02:00
|
|
|
s64 suspend_latency_ns;
|
|
|
|
|
s64 resume_latency_ns;
|
2012-04-29 22:54:17 +02:00
|
|
|
s64 effective_constraint_ns;
|
2012-05-01 21:34:07 +02:00
|
|
|
bool constraint_changed;
|
2016-03-31 11:21:25 +02:00
|
|
|
bool cached_suspend_ok;
|
2011-12-01 00:02:05 +01:00
|
|
|
};
|
|
|
|
|
|
2014-11-14 08:41:32 +01:00
|
|
|
struct pm_domain_data {
|
|
|
|
|
struct list_head list_node;
|
|
|
|
|
struct device *dev;
|
|
|
|
|
};
|
|
|
|
|
|
2011-09-26 20:22:02 +02:00
|
|
|
struct generic_pm_domain_data {
|
|
|
|
|
struct pm_domain_data base;
|
2011-12-01 00:02:05 +01:00
|
|
|
struct gpd_timing_data td;
|
2012-05-01 21:34:07 +02:00
|
|
|
struct notifier_block nb;
|
2019-04-25 11:04:13 +02:00
|
|
|
int cpu;
|
2017-10-12 15:07:23 +05:30
|
|
|
unsigned int performance_state;
|
2017-04-04 08:51:29 -07:00
|
|
|
void *data;
|
2011-09-26 20:22:02 +02:00
|
|
|
};
|
|
|
|
|
|
2012-02-04 22:26:49 +01:00
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS
|
2011-09-26 20:22:02 +02:00
|
|
|
static inline struct generic_pm_domain_data *to_gpd_data(struct pm_domain_data *pdd)
|
|
|
|
|
{
|
|
|
|
|
return container_of(pdd, struct generic_pm_domain_data, base);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-27 13:11:36 +01:00
|
|
|
static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
|
|
|
|
|
{
|
|
|
|
|
return to_gpd_data(dev->power.subsys_data->domain_data);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-29 12:04:14 +02:00
|
|
|
int pm_genpd_add_device(struct generic_pm_domain *genpd, struct device *dev);
|
2018-05-29 12:04:15 +02:00
|
|
|
int pm_genpd_remove_device(struct device *dev);
|
2018-05-29 12:04:13 +02:00
|
|
|
int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
|
|
|
|
|
struct generic_pm_domain *new_subdomain);
|
|
|
|
|
int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
|
|
|
|
|
struct generic_pm_domain *target);
|
|
|
|
|
int pm_genpd_init(struct generic_pm_domain *genpd,
|
|
|
|
|
struct dev_power_governor *gov, bool is_off);
|
|
|
|
|
int pm_genpd_remove(struct generic_pm_domain *genpd);
|
|
|
|
|
int dev_pm_genpd_set_performance_state(struct device *dev, unsigned int state);
|
2011-12-01 00:02:05 +01:00
|
|
|
|
2014-09-03 12:52:31 +02:00
|
|
|
extern struct dev_power_governor simple_qos_governor;
|
2011-12-08 23:27:28 +01:00
|
|
|
extern struct dev_power_governor pm_domain_always_on_gov;
|
2019-04-11 20:17:33 +02:00
|
|
|
#ifdef CONFIG_CPU_IDLE
|
|
|
|
|
extern struct dev_power_governor pm_domain_cpu_gov;
|
|
|
|
|
#endif
|
2011-07-01 22:12:45 +02:00
|
|
|
#else
|
2011-12-01 00:02:05 +01:00
|
|
|
|
2012-02-25 22:14:18 +01:00
|
|
|
static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
|
|
|
|
|
{
|
|
|
|
|
return ERR_PTR(-ENOSYS);
|
|
|
|
|
}
|
2018-05-29 12:04:14 +02:00
|
|
|
static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
|
|
|
|
|
struct device *dev)
|
2011-12-01 00:02:05 +01:00
|
|
|
{
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
2018-05-29 12:04:15 +02:00
|
|
|
static inline int pm_genpd_remove_device(struct device *dev)
|
2011-07-01 22:12:45 +02:00
|
|
|
{
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
static inline int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
|
|
|
|
|
struct generic_pm_domain *new_sd)
|
|
|
|
|
{
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
static inline int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
|
|
|
|
|
struct generic_pm_domain *target)
|
|
|
|
|
{
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
2016-06-17 12:27:52 +02:00
|
|
|
static inline int pm_genpd_init(struct generic_pm_domain *genpd,
|
|
|
|
|
struct dev_power_governor *gov, bool is_off)
|
2011-12-01 00:02:05 +01:00
|
|
|
{
|
2016-06-17 12:27:52 +02:00
|
|
|
return -ENOSYS;
|
2011-12-01 00:02:05 +01:00
|
|
|
}
|
2016-09-12 12:01:13 +01:00
|
|
|
static inline int pm_genpd_remove(struct generic_pm_domain *genpd)
|
|
|
|
|
{
|
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
}
|
2017-02-08 19:37:55 +01:00
|
|
|
|
2017-10-12 15:07:23 +05:30
|
|
|
static inline int dev_pm_genpd_set_performance_state(struct device *dev,
|
|
|
|
|
unsigned int state)
|
|
|
|
|
{
|
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 19:37:55 +01:00
|
|
|
#define simple_qos_governor (*(struct dev_power_governor *)(NULL))
|
|
|
|
|
#define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL))
|
2011-08-14 13:34:31 +02:00
|
|
|
#endif
|
|
|
|
|
|
2012-08-06 01:39:57 +02:00
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS_SLEEP
|
2018-05-29 12:04:13 +02:00
|
|
|
void pm_genpd_syscore_poweroff(struct device *dev);
|
|
|
|
|
void pm_genpd_syscore_poweron(struct device *dev);
|
2012-08-06 01:39:57 +02:00
|
|
|
#else
|
2014-09-03 12:52:24 +02:00
|
|
|
static inline void pm_genpd_syscore_poweroff(struct device *dev) {}
|
|
|
|
|
static inline void pm_genpd_syscore_poweron(struct device *dev) {}
|
2012-08-06 01:39:57 +02:00
|
|
|
#endif
|
|
|
|
|
|
2014-09-19 20:27:36 +02:00
|
|
|
/* OF PM domain providers */
|
|
|
|
|
struct of_device_id;
|
|
|
|
|
|
2017-03-29 18:34:50 +02:00
|
|
|
typedef struct generic_pm_domain *(*genpd_xlate_t)(struct of_phandle_args *args,
|
|
|
|
|
void *data);
|
|
|
|
|
|
2014-09-19 20:27:36 +02:00
|
|
|
struct genpd_onecell_data {
|
|
|
|
|
struct generic_pm_domain **domains;
|
|
|
|
|
unsigned int num_domains;
|
2017-03-29 18:34:50 +02:00
|
|
|
genpd_xlate_t xlate;
|
2014-09-19 20:27:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS_OF
|
2016-09-12 12:01:09 +01:00
|
|
|
int of_genpd_add_provider_simple(struct device_node *np,
|
|
|
|
|
struct generic_pm_domain *genpd);
|
|
|
|
|
int of_genpd_add_provider_onecell(struct device_node *np,
|
|
|
|
|
struct genpd_onecell_data *data);
|
2014-09-19 20:27:36 +02:00
|
|
|
void of_genpd_del_provider(struct device_node *np);
|
2018-05-29 12:04:13 +02:00
|
|
|
int of_genpd_add_device(struct of_phandle_args *args, struct device *dev);
|
|
|
|
|
int of_genpd_add_subdomain(struct of_phandle_args *parent,
|
|
|
|
|
struct of_phandle_args *new_subdomain);
|
|
|
|
|
struct generic_pm_domain *of_genpd_remove_last(struct device_node *np);
|
|
|
|
|
int of_genpd_parse_idle_states(struct device_node *dn,
|
|
|
|
|
struct genpd_power_state **states, int *n);
|
2018-06-13 20:22:04 +05:30
|
|
|
unsigned int pm_genpd_opp_to_performance_state(struct device *genpd_dev,
|
|
|
|
|
struct dev_pm_opp *opp);
|
2014-09-19 20:27:36 +02:00
|
|
|
|
|
|
|
|
int genpd_dev_pm_attach(struct device *dev);
|
2018-05-31 12:59:58 +02:00
|
|
|
struct device *genpd_dev_pm_attach_by_id(struct device *dev,
|
|
|
|
|
unsigned int index);
|
2018-06-29 13:04:31 +02:00
|
|
|
struct device *genpd_dev_pm_attach_by_name(struct device *dev,
|
2019-02-14 10:12:48 -08:00
|
|
|
const char *name);
|
2014-09-19 20:27:36 +02:00
|
|
|
#else /* !CONFIG_PM_GENERIC_DOMAINS_OF */
|
2016-09-12 12:01:09 +01:00
|
|
|
static inline int of_genpd_add_provider_simple(struct device_node *np,
|
|
|
|
|
struct generic_pm_domain *genpd)
|
2014-09-19 20:27:36 +02:00
|
|
|
{
|
2016-09-12 12:01:09 +01:00
|
|
|
return -ENOTSUPP;
|
2014-09-19 20:27:36 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-12 12:01:09 +01:00
|
|
|
static inline int of_genpd_add_provider_onecell(struct device_node *np,
|
|
|
|
|
struct genpd_onecell_data *data)
|
|
|
|
|
{
|
|
|
|
|
return -ENOTSUPP;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void of_genpd_del_provider(struct device_node *np) {}
|
2014-09-19 20:27:36 +02:00
|
|
|
|
2016-09-12 12:01:05 +01:00
|
|
|
static inline int of_genpd_add_device(struct of_phandle_args *args,
|
|
|
|
|
struct device *dev)
|
|
|
|
|
{
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int of_genpd_add_subdomain(struct of_phandle_args *parent,
|
|
|
|
|
struct of_phandle_args *new_subdomain)
|
|
|
|
|
{
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-14 10:47:51 -07:00
|
|
|
static inline int of_genpd_parse_idle_states(struct device_node *dn,
|
|
|
|
|
struct genpd_power_state **states, int *n)
|
|
|
|
|
{
|
|
|
|
|
return -ENODEV;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-13 20:22:04 +05:30
|
|
|
static inline unsigned int
|
|
|
|
|
pm_genpd_opp_to_performance_state(struct device *genpd_dev,
|
|
|
|
|
struct dev_pm_opp *opp)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-19 20:27:36 +02:00
|
|
|
static inline int genpd_dev_pm_attach(struct device *dev)
|
|
|
|
|
{
|
2018-05-09 12:17:52 +02:00
|
|
|
return 0;
|
2014-09-19 20:27:36 +02:00
|
|
|
}
|
2016-09-12 12:01:14 +01:00
|
|
|
|
2018-05-31 12:59:58 +02:00
|
|
|
static inline struct device *genpd_dev_pm_attach_by_id(struct device *dev,
|
|
|
|
|
unsigned int index)
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-29 13:04:31 +02:00
|
|
|
static inline struct device *genpd_dev_pm_attach_by_name(struct device *dev,
|
2019-02-14 10:12:48 -08:00
|
|
|
const char *name)
|
2018-06-29 13:04:31 +02:00
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 12:01:14 +01:00
|
|
|
static inline
|
|
|
|
|
struct generic_pm_domain *of_genpd_remove_last(struct device_node *np)
|
|
|
|
|
{
|
|
|
|
|
return ERR_PTR(-ENOTSUPP);
|
|
|
|
|
}
|
2014-09-19 20:27:36 +02:00
|
|
|
#endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
|
|
|
|
|
|
2014-09-29 13:58:47 +02:00
|
|
|
#ifdef CONFIG_PM
|
2018-05-29 12:04:13 +02:00
|
|
|
int dev_pm_domain_attach(struct device *dev, bool power_on);
|
2018-05-31 12:59:59 +02:00
|
|
|
struct device *dev_pm_domain_attach_by_id(struct device *dev,
|
|
|
|
|
unsigned int index);
|
2018-06-29 13:04:32 +02:00
|
|
|
struct device *dev_pm_domain_attach_by_name(struct device *dev,
|
2019-02-14 10:12:49 -08:00
|
|
|
const char *name);
|
2018-05-29 12:04:13 +02:00
|
|
|
void dev_pm_domain_detach(struct device *dev, bool power_off);
|
|
|
|
|
void dev_pm_domain_set(struct device *dev, struct dev_pm_domain *pd);
|
2014-09-29 13:58:47 +02:00
|
|
|
#else
|
|
|
|
|
static inline int dev_pm_domain_attach(struct device *dev, bool power_on)
|
|
|
|
|
{
|
2018-05-09 12:17:52 +02:00
|
|
|
return 0;
|
2014-09-29 13:58:47 +02:00
|
|
|
}
|
2018-05-31 12:59:59 +02:00
|
|
|
static inline struct device *dev_pm_domain_attach_by_id(struct device *dev,
|
|
|
|
|
unsigned int index)
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2018-06-29 13:04:32 +02:00
|
|
|
static inline struct device *dev_pm_domain_attach_by_name(struct device *dev,
|
2019-02-14 10:12:49 -08:00
|
|
|
const char *name)
|
2018-06-29 13:04:32 +02:00
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2014-09-29 13:58:47 +02:00
|
|
|
static inline void dev_pm_domain_detach(struct device *dev, bool power_off) {}
|
2016-01-07 16:46:13 +01:00
|
|
|
static inline void dev_pm_domain_set(struct device *dev,
|
|
|
|
|
struct dev_pm_domain *pd) {}
|
2014-09-29 13:58:47 +02:00
|
|
|
#endif
|
|
|
|
|
|
2011-07-01 22:12:45 +02:00
|
|
|
#endif /* _LINUX_PM_DOMAIN_H */
|