2011-07-01 20:12:45 +00:00
|
|
|
/*
|
|
|
|
* pm_domain.h - Definitions and headers related to device power domains.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_PM_DOMAIN_H
|
|
|
|
#define _LINUX_PM_DOMAIN_H
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
2012-01-30 16:46:54 +00:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/pm.h>
|
2011-11-30 23:05:31 +00:00
|
|
|
#include <linux/err.h>
|
2012-01-27 06:22:07 +00:00
|
|
|
#include <linux/of.h>
|
PM / Domains: Cache device stop and domain power off governor results, v3
The results of the default device stop and domain power off governor
functions for generic PM domains, default_stop_ok() and
default_power_down_ok(), depend only on the timing data of devices,
which are static, and on their PM QoS constraints. Thus, in theory,
these functions only need to carry out their computations, which may
be time consuming in general, when it is known that the PM QoS
constraint of at least one of the devices in question has changed.
Use the PM QoS notifiers of devices to implement that. First,
introduce new fields, constraint_changed and max_off_time_changed,
into struct gpd_timing_data and struct generic_pm_domain,
respectively, and register a PM QoS notifier function when adding
a device into a domain that will set those fields to 'true' whenever
the device's PM QoS constraint is modified. Second, make
default_stop_ok() and default_power_down_ok() use those fields to
decide whether or not to carry out their computations from scratch.
The device and PM domain hierarchies are taken into account in that
and the expense is that the changes of PM QoS constraints of
suspended devices will not be taken into account immediately, which
isn't guaranteed anyway in general.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2012-05-01 19:34:07 +00:00
|
|
|
#include <linux/notifier.h>
|
2016-10-14 17:47:55 +00:00
|
|
|
#include <linux/spinlock.h>
|
2011-07-01 20:12:45 +00:00
|
|
|
|
2014-12-01 11:50:21 +00:00
|
|
|
/* Defines used for the flags field in the struct generic_pm_domain */
|
2017-11-07 12:48:11 +00:00
|
|
|
#define GENPD_FLAG_PM_CLK (1U << 0) /* PM domain uses PM clk */
|
|
|
|
#define GENPD_FLAG_IRQ_SAFE (1U << 1) /* PM domain operates in atomic */
|
|
|
|
#define GENPD_FLAG_ALWAYS_ON (1U << 2) /* PM domain is always powered on */
|
|
|
|
#define GENPD_FLAG_ACTIVE_WAKEUP (1U << 3) /* Keep devices active if wakeup */
|
2014-12-01 11:50:21 +00:00
|
|
|
|
2011-07-11 22:39:29 +00:00
|
|
|
enum gpd_status {
|
|
|
|
GPD_STATE_ACTIVE = 0, /* PM domain is active */
|
|
|
|
GPD_STATE_POWER_OFF, /* PM domain is off */
|
|
|
|
};
|
2011-07-01 20:13:19 +00:00
|
|
|
|
2011-07-01 20:12:45 +00:00
|
|
|
struct dev_power_governor {
|
|
|
|
bool (*power_down_ok)(struct dev_pm_domain *domain);
|
2016-03-31 09:21:25 +00:00
|
|
|
bool (*suspend_ok)(struct device *dev);
|
2011-07-01 20:12:45 +00:00
|
|
|
};
|
|
|
|
|
2011-11-27 12:11:36 +00:00
|
|
|
struct gpd_dev_ops {
|
|
|
|
int (*start)(struct device *dev);
|
|
|
|
int (*stop)(struct device *dev);
|
|
|
|
};
|
|
|
|
|
2016-02-15 10:10:51 +00:00
|
|
|
struct genpd_power_state {
|
|
|
|
s64 power_off_latency_ns;
|
|
|
|
s64 power_on_latency_ns;
|
2016-10-14 17:47:50 +00:00
|
|
|
s64 residency_ns;
|
2016-10-14 17:47:52 +00:00
|
|
|
struct fwnode_handle *fwnode;
|
2017-07-14 17:10:15 +00:00
|
|
|
ktime_t idle_time;
|
2016-02-15 10:10:51 +00:00
|
|
|
};
|
|
|
|
|
2016-10-14 17:47:54 +00:00
|
|
|
struct genpd_lock_ops;
|
|
|
|
|
2011-07-01 20:12:45 +00:00
|
|
|
struct generic_pm_domain {
|
|
|
|
struct dev_pm_domain domain; /* PM domain operations */
|
2011-07-13 10:31:52 +00:00
|
|
|
struct list_head gpd_list_node; /* Node in the global PM domains list */
|
2011-08-08 21:43:40 +00: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 20:12:45 +00:00
|
|
|
struct list_head dev_list; /* List of devices */
|
|
|
|
struct dev_power_governor *gov;
|
|
|
|
struct work_struct power_off_work;
|
2016-09-12 11:01:12 +00:00
|
|
|
struct fwnode_handle *provider; /* Identity of the domain provider */
|
|
|
|
bool has_provider;
|
2014-08-29 13:13:21 +00:00
|
|
|
const char *name;
|
2011-08-08 21:43:04 +00:00
|
|
|
atomic_t sd_count; /* Number of subdomains with power "on" */
|
2011-07-11 22:39:29 +00:00
|
|
|
enum gpd_status status; /* Current state of the domain */
|
2011-07-01 20:13:19 +00: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 09:37:23 +00:00
|
|
|
unsigned int performance_state; /* Aggregated max performance state */
|
2011-07-01 20:12:45 +00:00
|
|
|
int (*power_off)(struct generic_pm_domain *domain);
|
|
|
|
int (*power_on)(struct generic_pm_domain *domain);
|
2017-10-12 09:37:23 +00:00
|
|
|
int (*set_performance_state)(struct generic_pm_domain *genpd,
|
|
|
|
unsigned int state);
|
2011-11-27 12:11:36 +00:00
|
|
|
struct gpd_dev_ops dev_ops;
|
2011-11-30 23:02:10 +00:00
|
|
|
s64 max_off_time_ns; /* Maximum allowed "suspended" time. */
|
PM / Domains: Cache device stop and domain power off governor results, v3
The results of the default device stop and domain power off governor
functions for generic PM domains, default_stop_ok() and
default_power_down_ok(), depend only on the timing data of devices,
which are static, and on their PM QoS constraints. Thus, in theory,
these functions only need to carry out their computations, which may
be time consuming in general, when it is known that the PM QoS
constraint of at least one of the devices in question has changed.
Use the PM QoS notifiers of devices to implement that. First,
introduce new fields, constraint_changed and max_off_time_changed,
into struct gpd_timing_data and struct generic_pm_domain,
respectively, and register a PM QoS notifier function when adding
a device into a domain that will set those fields to 'true' whenever
the device's PM QoS constraint is modified. Second, make
default_stop_ok() and default_power_down_ok() use those fields to
decide whether or not to carry out their computations from scratch.
The device and PM domain hierarchies are taken into account in that
and the expense is that the changes of PM QoS constraints of
suspended devices will not be taken into account immediately, which
isn't guaranteed anyway in general.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2012-05-01 19:34:07 +00:00
|
|
|
bool max_off_time_changed;
|
|
|
|
bool cached_power_down_ok;
|
2014-11-05 23:37:08 +00: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 11:50:21 +00:00
|
|
|
unsigned int flags; /* Bit field of configs for genpd */
|
2016-10-14 17:47:49 +00:00
|
|
|
struct genpd_power_state *states;
|
2016-02-15 10:10:51 +00:00
|
|
|
unsigned int state_count; /* number of states */
|
|
|
|
unsigned int state_idx; /* state that genpd will go to when off */
|
2016-10-14 17:47:49 +00:00
|
|
|
void *free; /* Free the state that was allocated for default */
|
2017-07-14 17:10:15 +00:00
|
|
|
ktime_t on_time;
|
|
|
|
ktime_t accounting_time;
|
2016-10-14 17:47:54 +00:00
|
|
|
const struct genpd_lock_ops *lock_ops;
|
2016-10-14 17:47:55 +00:00
|
|
|
union {
|
|
|
|
struct mutex mlock;
|
|
|
|
struct {
|
|
|
|
spinlock_t slock;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
};
|
|
|
|
};
|
2016-02-15 10:10:51 +00:00
|
|
|
|
2011-07-01 20:12:45 +00:00
|
|
|
};
|
|
|
|
|
2011-07-01 20:13:19 +00: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 21:43:40 +00:00
|
|
|
struct gpd_link {
|
|
|
|
struct generic_pm_domain *master;
|
|
|
|
struct list_head master_node;
|
|
|
|
struct generic_pm_domain *slave;
|
|
|
|
struct list_head slave_node;
|
|
|
|
};
|
|
|
|
|
2011-11-30 23:02:05 +00:00
|
|
|
struct gpd_timing_data {
|
2015-10-15 15:02:19 +00:00
|
|
|
s64 suspend_latency_ns;
|
|
|
|
s64 resume_latency_ns;
|
2012-04-29 20:54:17 +00:00
|
|
|
s64 effective_constraint_ns;
|
PM / Domains: Cache device stop and domain power off governor results, v3
The results of the default device stop and domain power off governor
functions for generic PM domains, default_stop_ok() and
default_power_down_ok(), depend only on the timing data of devices,
which are static, and on their PM QoS constraints. Thus, in theory,
these functions only need to carry out their computations, which may
be time consuming in general, when it is known that the PM QoS
constraint of at least one of the devices in question has changed.
Use the PM QoS notifiers of devices to implement that. First,
introduce new fields, constraint_changed and max_off_time_changed,
into struct gpd_timing_data and struct generic_pm_domain,
respectively, and register a PM QoS notifier function when adding
a device into a domain that will set those fields to 'true' whenever
the device's PM QoS constraint is modified. Second, make
default_stop_ok() and default_power_down_ok() use those fields to
decide whether or not to carry out their computations from scratch.
The device and PM domain hierarchies are taken into account in that
and the expense is that the changes of PM QoS constraints of
suspended devices will not be taken into account immediately, which
isn't guaranteed anyway in general.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2012-05-01 19:34:07 +00:00
|
|
|
bool constraint_changed;
|
2016-03-31 09:21:25 +00:00
|
|
|
bool cached_suspend_ok;
|
2011-11-30 23:02:05 +00:00
|
|
|
};
|
|
|
|
|
2014-11-14 07:41:32 +00:00
|
|
|
struct pm_domain_data {
|
|
|
|
struct list_head list_node;
|
|
|
|
struct device *dev;
|
|
|
|
};
|
|
|
|
|
2011-09-26 18:22:02 +00:00
|
|
|
struct generic_pm_domain_data {
|
|
|
|
struct pm_domain_data base;
|
2011-11-30 23:02:05 +00:00
|
|
|
struct gpd_timing_data td;
|
PM / Domains: Cache device stop and domain power off governor results, v3
The results of the default device stop and domain power off governor
functions for generic PM domains, default_stop_ok() and
default_power_down_ok(), depend only on the timing data of devices,
which are static, and on their PM QoS constraints. Thus, in theory,
these functions only need to carry out their computations, which may
be time consuming in general, when it is known that the PM QoS
constraint of at least one of the devices in question has changed.
Use the PM QoS notifiers of devices to implement that. First,
introduce new fields, constraint_changed and max_off_time_changed,
into struct gpd_timing_data and struct generic_pm_domain,
respectively, and register a PM QoS notifier function when adding
a device into a domain that will set those fields to 'true' whenever
the device's PM QoS constraint is modified. Second, make
default_stop_ok() and default_power_down_ok() use those fields to
decide whether or not to carry out their computations from scratch.
The device and PM domain hierarchies are taken into account in that
and the expense is that the changes of PM QoS constraints of
suspended devices will not be taken into account immediately, which
isn't guaranteed anyway in general.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2012-05-01 19:34:07 +00:00
|
|
|
struct notifier_block nb;
|
2017-10-12 09:37:23 +00:00
|
|
|
unsigned int performance_state;
|
2017-04-04 15:51:29 +00:00
|
|
|
void *data;
|
2011-09-26 18:22:02 +00:00
|
|
|
};
|
|
|
|
|
2012-02-04 21:26:49 +00:00
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS
|
2011-09-26 18:22:02 +00: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 12:11:36 +00:00
|
|
|
static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
|
|
|
|
{
|
|
|
|
return to_gpd_data(dev->power.subsys_data->domain_data);
|
|
|
|
}
|
|
|
|
|
2011-11-30 23:02:05 +00:00
|
|
|
extern int __pm_genpd_add_device(struct generic_pm_domain *genpd,
|
|
|
|
struct device *dev,
|
|
|
|
struct gpd_timing_data *td);
|
|
|
|
|
2011-07-01 20:12:45 +00:00
|
|
|
extern int pm_genpd_remove_device(struct generic_pm_domain *genpd,
|
|
|
|
struct device *dev);
|
|
|
|
extern int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
|
|
|
|
struct generic_pm_domain *new_subdomain);
|
|
|
|
extern int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
|
|
|
|
struct generic_pm_domain *target);
|
2016-06-17 10:27:52 +00:00
|
|
|
extern int pm_genpd_init(struct generic_pm_domain *genpd,
|
|
|
|
struct dev_power_governor *gov, bool is_off);
|
2016-09-12 11:01:13 +00:00
|
|
|
extern int pm_genpd_remove(struct generic_pm_domain *genpd);
|
2017-10-12 09:37:23 +00:00
|
|
|
extern int dev_pm_genpd_set_performance_state(struct device *dev,
|
|
|
|
unsigned int state);
|
2011-11-30 23:02:05 +00:00
|
|
|
|
2014-09-03 10:52:31 +00:00
|
|
|
extern struct dev_power_governor simple_qos_governor;
|
2011-12-08 22:27:28 +00:00
|
|
|
extern struct dev_power_governor pm_domain_always_on_gov;
|
2011-07-01 20:12:45 +00:00
|
|
|
#else
|
2011-11-30 23:02:05 +00:00
|
|
|
|
2012-02-25 21:14:18 +00:00
|
|
|
static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOSYS);
|
|
|
|
}
|
2011-11-30 23:02:05 +00:00
|
|
|
static inline int __pm_genpd_add_device(struct generic_pm_domain *genpd,
|
|
|
|
struct device *dev,
|
|
|
|
struct gpd_timing_data *td)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2011-07-01 20:12:45 +00:00
|
|
|
static inline int pm_genpd_remove_device(struct generic_pm_domain *genpd,
|
|
|
|
struct device *dev)
|
|
|
|
{
|
|
|
|
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 10:27:52 +00:00
|
|
|
static inline int pm_genpd_init(struct generic_pm_domain *genpd,
|
|
|
|
struct dev_power_governor *gov, bool is_off)
|
2011-11-30 23:02:05 +00:00
|
|
|
{
|
2016-06-17 10:27:52 +00:00
|
|
|
return -ENOSYS;
|
2011-11-30 23:02:05 +00:00
|
|
|
}
|
2016-09-12 11:01:13 +00:00
|
|
|
static inline int pm_genpd_remove(struct generic_pm_domain *genpd)
|
|
|
|
{
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
2017-02-08 18:37:55 +00:00
|
|
|
|
2017-10-12 09:37:23 +00:00
|
|
|
static inline int dev_pm_genpd_set_performance_state(struct device *dev,
|
|
|
|
unsigned int state)
|
|
|
|
{
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
2017-02-08 18:37:55 +00:00
|
|
|
#define simple_qos_governor (*(struct dev_power_governor *)(NULL))
|
|
|
|
#define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL))
|
2011-08-14 11:34:31 +00:00
|
|
|
#endif
|
|
|
|
|
2012-08-06 23:06:11 +00:00
|
|
|
static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
|
|
|
|
struct device *dev)
|
|
|
|
{
|
|
|
|
return __pm_genpd_add_device(genpd, dev, NULL);
|
|
|
|
}
|
|
|
|
|
2012-08-05 23:39:57 +00:00
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS_SLEEP
|
2014-09-03 10:52:24 +00:00
|
|
|
extern void pm_genpd_syscore_poweroff(struct device *dev);
|
|
|
|
extern void pm_genpd_syscore_poweron(struct device *dev);
|
2012-08-05 23:39:57 +00:00
|
|
|
#else
|
2014-09-03 10:52:24 +00:00
|
|
|
static inline void pm_genpd_syscore_poweroff(struct device *dev) {}
|
|
|
|
static inline void pm_genpd_syscore_poweron(struct device *dev) {}
|
2012-08-05 23:39:57 +00:00
|
|
|
#endif
|
|
|
|
|
2014-09-19 18:27:36 +00:00
|
|
|
/* OF PM domain providers */
|
|
|
|
struct of_device_id;
|
|
|
|
|
2017-03-29 16:34:50 +00:00
|
|
|
typedef struct generic_pm_domain *(*genpd_xlate_t)(struct of_phandle_args *args,
|
|
|
|
void *data);
|
|
|
|
|
2014-09-19 18:27:36 +00:00
|
|
|
struct genpd_onecell_data {
|
|
|
|
struct generic_pm_domain **domains;
|
|
|
|
unsigned int num_domains;
|
2017-03-29 16:34:50 +00:00
|
|
|
genpd_xlate_t xlate;
|
2014-09-19 18:27:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS_OF
|
2016-09-12 11:01:09 +00: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 18:27:36 +00:00
|
|
|
void of_genpd_del_provider(struct device_node *np);
|
2016-09-12 11:01:05 +00:00
|
|
|
extern int of_genpd_add_device(struct of_phandle_args *args,
|
|
|
|
struct device *dev);
|
|
|
|
extern int of_genpd_add_subdomain(struct of_phandle_args *parent,
|
|
|
|
struct of_phandle_args *new_subdomain);
|
2016-09-12 11:01:14 +00:00
|
|
|
extern struct generic_pm_domain *of_genpd_remove_last(struct device_node *np);
|
2016-10-14 17:47:51 +00:00
|
|
|
extern int of_genpd_parse_idle_states(struct device_node *dn,
|
|
|
|
struct genpd_power_state **states, int *n);
|
2014-09-19 18:27:36 +00:00
|
|
|
|
|
|
|
int genpd_dev_pm_attach(struct device *dev);
|
|
|
|
#else /* !CONFIG_PM_GENERIC_DOMAINS_OF */
|
2016-09-12 11:01:09 +00:00
|
|
|
static inline int of_genpd_add_provider_simple(struct device_node *np,
|
|
|
|
struct generic_pm_domain *genpd)
|
2014-09-19 18:27:36 +00:00
|
|
|
{
|
2016-09-12 11:01:09 +00:00
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int of_genpd_add_provider_onecell(struct device_node *np,
|
|
|
|
struct genpd_onecell_data *data)
|
|
|
|
{
|
|
|
|
return -ENOTSUPP;
|
2014-09-19 18:27:36 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 11:01:09 +00:00
|
|
|
static inline void of_genpd_del_provider(struct device_node *np) {}
|
2014-09-19 18:27:36 +00:00
|
|
|
|
2016-09-12 11:01:05 +00: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 17:47:51 +00:00
|
|
|
static inline int of_genpd_parse_idle_states(struct device_node *dn,
|
|
|
|
struct genpd_power_state **states, int *n)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2014-09-19 18:27:36 +00:00
|
|
|
static inline int genpd_dev_pm_attach(struct device *dev)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2016-09-12 11:01:14 +00:00
|
|
|
|
|
|
|
static inline
|
|
|
|
struct generic_pm_domain *of_genpd_remove_last(struct device_node *np)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOTSUPP);
|
|
|
|
}
|
2014-09-19 18:27:36 +00:00
|
|
|
#endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
|
|
|
|
|
2014-09-29 11:58:47 +00:00
|
|
|
#ifdef CONFIG_PM
|
|
|
|
extern int dev_pm_domain_attach(struct device *dev, bool power_on);
|
|
|
|
extern void dev_pm_domain_detach(struct device *dev, bool power_off);
|
2016-01-07 15:46:13 +00:00
|
|
|
extern void dev_pm_domain_set(struct device *dev, struct dev_pm_domain *pd);
|
2014-09-29 11:58:47 +00:00
|
|
|
#else
|
|
|
|
static inline int dev_pm_domain_attach(struct device *dev, bool power_on)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
static inline void dev_pm_domain_detach(struct device *dev, bool power_off) {}
|
2016-01-07 15:46:13 +00:00
|
|
|
static inline void dev_pm_domain_set(struct device *dev,
|
|
|
|
struct dev_pm_domain *pd) {}
|
2014-09-29 11:58:47 +00:00
|
|
|
#endif
|
|
|
|
|
2011-07-01 20:12:45 +00:00
|
|
|
#endif /* _LINUX_PM_DOMAIN_H */
|