2011-07-02 00:12:45 +04: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 20:46:54 +04:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/pm.h>
|
2011-12-01 03:05:31 +04:00
|
|
|
#include <linux/err.h>
|
2012-01-27 10:22:07 +04: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 23:34:07 +04:00
|
|
|
#include <linux/notifier.h>
|
2016-10-14 20:47:55 +03:00
|
|
|
#include <linux/spinlock.h>
|
2011-07-02 00:12:45 +04:00
|
|
|
|
2018-10-03 17:38:16 +03: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.
|
|
|
|
*/
|
|
|
|
#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)
|
2014-12-01 14:50:21 +03:00
|
|
|
|
2011-07-12 02:39:29 +04:00
|
|
|
enum gpd_status {
|
|
|
|
GPD_STATE_ACTIVE = 0, /* PM domain is active */
|
|
|
|
GPD_STATE_POWER_OFF, /* PM domain is off */
|
|
|
|
};
|
2011-07-02 00:13:19 +04:00
|
|
|
|
2011-07-02 00:12:45 +04:00
|
|
|
struct dev_power_governor {
|
|
|
|
bool (*power_down_ok)(struct dev_pm_domain *domain);
|
2016-03-31 12:21:25 +03:00
|
|
|
bool (*suspend_ok)(struct device *dev);
|
2011-07-02 00:12:45 +04:00
|
|
|
};
|
|
|
|
|
2011-11-27 16:11:36 +04:00
|
|
|
struct gpd_dev_ops {
|
|
|
|
int (*start)(struct device *dev);
|
|
|
|
int (*stop)(struct device *dev);
|
|
|
|
};
|
|
|
|
|
2016-02-15 13:10:51 +03:00
|
|
|
struct genpd_power_state {
|
|
|
|
s64 power_off_latency_ns;
|
|
|
|
s64 power_on_latency_ns;
|
2016-10-14 20:47:50 +03:00
|
|
|
s64 residency_ns;
|
2016-10-14 20:47:52 +03:00
|
|
|
struct fwnode_handle *fwnode;
|
2017-07-14 20:10:15 +03:00
|
|
|
ktime_t idle_time;
|
2016-02-15 13:10:51 +03:00
|
|
|
};
|
|
|
|
|
2016-10-14 20:47:54 +03:00
|
|
|
struct genpd_lock_ops;
|
2017-11-29 12:51:51 +03:00
|
|
|
struct dev_pm_opp;
|
2018-11-02 08:48:08 +03:00
|
|
|
struct opp_table;
|
2016-10-14 20:47:54 +03:00
|
|
|
|
2011-07-02 00:12:45 +04:00
|
|
|
struct generic_pm_domain {
|
2017-03-17 08:56:19 +03:00
|
|
|
struct device dev;
|
2011-07-02 00:12:45 +04:00
|
|
|
struct dev_pm_domain domain; /* PM domain operations */
|
2011-07-13 14:31:52 +04:00
|
|
|
struct list_head gpd_list_node; /* Node in the global PM domains list */
|
2011-08-09 01:43:40 +04: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-02 00:12:45 +04:00
|
|
|
struct list_head dev_list; /* List of devices */
|
|
|
|
struct dev_power_governor *gov;
|
|
|
|
struct work_struct power_off_work;
|
2016-09-12 14:01:12 +03:00
|
|
|
struct fwnode_handle *provider; /* Identity of the domain provider */
|
|
|
|
bool has_provider;
|
2014-08-29 17:13:21 +04:00
|
|
|
const char *name;
|
2011-08-09 01:43:04 +04:00
|
|
|
atomic_t sd_count; /* Number of subdomains with power "on" */
|
2011-07-12 02:39:29 +04:00
|
|
|
enum gpd_status status; /* Current state of the domain */
|
2011-07-02 00:13:19 +04: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 12:37:23 +03:00
|
|
|
unsigned int performance_state; /* Aggregated max performance state */
|
2011-07-02 00:12:45 +04:00
|
|
|
int (*power_off)(struct generic_pm_domain *domain);
|
|
|
|
int (*power_on)(struct generic_pm_domain *domain);
|
2018-11-02 08:48:08 +03:00
|
|
|
struct opp_table *opp_table; /* OPP table of the genpd */
|
2017-11-29 12:51:51 +03:00
|
|
|
unsigned int (*opp_to_performance_state)(struct generic_pm_domain *genpd,
|
|
|
|
struct dev_pm_opp *opp);
|
2017-10-12 12:37:23 +03:00
|
|
|
int (*set_performance_state)(struct generic_pm_domain *genpd,
|
|
|
|
unsigned int state);
|
2011-11-27 16:11:36 +04:00
|
|
|
struct gpd_dev_ops dev_ops;
|
2011-12-01 03:02:10 +04: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 23:34:07 +04:00
|
|
|
bool max_off_time_changed;
|
|
|
|
bool cached_power_down_ok;
|
2014-11-06 02:37:08 +03: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 14:50:21 +03:00
|
|
|
unsigned int flags; /* Bit field of configs for genpd */
|
2016-10-14 20:47:49 +03:00
|
|
|
struct genpd_power_state *states;
|
2016-02-15 13:10:51 +03:00
|
|
|
unsigned int state_count; /* number of states */
|
|
|
|
unsigned int state_idx; /* state that genpd will go to when off */
|
2016-10-14 20:47:49 +03:00
|
|
|
void *free; /* Free the state that was allocated for default */
|
2017-07-14 20:10:15 +03:00
|
|
|
ktime_t on_time;
|
|
|
|
ktime_t accounting_time;
|
2016-10-14 20:47:54 +03:00
|
|
|
const struct genpd_lock_ops *lock_ops;
|
2016-10-14 20:47:55 +03:00
|
|
|
union {
|
|
|
|
struct mutex mlock;
|
|
|
|
struct {
|
|
|
|
spinlock_t slock;
|
|
|
|
unsigned long lock_flags;
|
|
|
|
};
|
|
|
|
};
|
2016-02-15 13:10:51 +03:00
|
|
|
|
2011-07-02 00:12:45 +04:00
|
|
|
};
|
|
|
|
|
2011-07-02 00:13:19 +04: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-09 01:43:40 +04: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 12:10:19 +03:00
|
|
|
|
|
|
|
/* Sub-domain's per-master domain performance state */
|
|
|
|
unsigned int performance_state;
|
|
|
|
unsigned int prev_performance_state;
|
2011-08-09 01:43:40 +04:00
|
|
|
};
|
|
|
|
|
2011-12-01 03:02:05 +04:00
|
|
|
struct gpd_timing_data {
|
2015-10-15 18:02:19 +03:00
|
|
|
s64 suspend_latency_ns;
|
|
|
|
s64 resume_latency_ns;
|
2012-04-30 00:54:17 +04: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 23:34:07 +04:00
|
|
|
bool constraint_changed;
|
2016-03-31 12:21:25 +03:00
|
|
|
bool cached_suspend_ok;
|
2011-12-01 03:02:05 +04:00
|
|
|
};
|
|
|
|
|
2014-11-14 10:41:32 +03:00
|
|
|
struct pm_domain_data {
|
|
|
|
struct list_head list_node;
|
|
|
|
struct device *dev;
|
|
|
|
};
|
|
|
|
|
2011-09-26 22:22:02 +04:00
|
|
|
struct generic_pm_domain_data {
|
|
|
|
struct pm_domain_data base;
|
2011-12-01 03:02:05 +04: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 23:34:07 +04:00
|
|
|
struct notifier_block nb;
|
2017-10-12 12:37:23 +03:00
|
|
|
unsigned int performance_state;
|
2017-04-04 18:51:29 +03:00
|
|
|
void *data;
|
2011-09-26 22:22:02 +04:00
|
|
|
};
|
|
|
|
|
2012-02-05 01:26:49 +04:00
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS
|
2011-09-26 22:22:02 +04: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 16:11:36 +04: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 13:04:14 +03:00
|
|
|
int pm_genpd_add_device(struct generic_pm_domain *genpd, struct device *dev);
|
2018-05-29 13:04:15 +03:00
|
|
|
int pm_genpd_remove_device(struct device *dev);
|
2018-05-29 13:04:13 +03: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 03:02:05 +04:00
|
|
|
|
2014-09-03 14:52:31 +04:00
|
|
|
extern struct dev_power_governor simple_qos_governor;
|
2011-12-09 02:27:28 +04:00
|
|
|
extern struct dev_power_governor pm_domain_always_on_gov;
|
2011-07-02 00:12:45 +04:00
|
|
|
#else
|
2011-12-01 03:02:05 +04:00
|
|
|
|
2012-02-26 01:14:18 +04:00
|
|
|
static inline struct generic_pm_domain_data *dev_gpd_data(struct device *dev)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOSYS);
|
|
|
|
}
|
2018-05-29 13:04:14 +03:00
|
|
|
static inline int pm_genpd_add_device(struct generic_pm_domain *genpd,
|
|
|
|
struct device *dev)
|
2011-12-01 03:02:05 +04:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2018-05-29 13:04:15 +03:00
|
|
|
static inline int pm_genpd_remove_device(struct device *dev)
|
2011-07-02 00:12:45 +04: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 13:27:52 +03:00
|
|
|
static inline int pm_genpd_init(struct generic_pm_domain *genpd,
|
|
|
|
struct dev_power_governor *gov, bool is_off)
|
2011-12-01 03:02:05 +04:00
|
|
|
{
|
2016-06-17 13:27:52 +03:00
|
|
|
return -ENOSYS;
|
2011-12-01 03:02:05 +04:00
|
|
|
}
|
2016-09-12 14:01:13 +03:00
|
|
|
static inline int pm_genpd_remove(struct generic_pm_domain *genpd)
|
|
|
|
{
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
2017-02-08 21:37:55 +03:00
|
|
|
|
2017-10-12 12:37:23 +03:00
|
|
|
static inline int dev_pm_genpd_set_performance_state(struct device *dev,
|
|
|
|
unsigned int state)
|
|
|
|
{
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
2017-02-08 21:37:55 +03:00
|
|
|
#define simple_qos_governor (*(struct dev_power_governor *)(NULL))
|
|
|
|
#define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL))
|
2011-08-14 15:34:31 +04:00
|
|
|
#endif
|
|
|
|
|
2012-08-06 03:39:57 +04:00
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS_SLEEP
|
2018-05-29 13:04:13 +03:00
|
|
|
void pm_genpd_syscore_poweroff(struct device *dev);
|
|
|
|
void pm_genpd_syscore_poweron(struct device *dev);
|
2012-08-06 03:39:57 +04:00
|
|
|
#else
|
2014-09-03 14:52:24 +04:00
|
|
|
static inline void pm_genpd_syscore_poweroff(struct device *dev) {}
|
|
|
|
static inline void pm_genpd_syscore_poweron(struct device *dev) {}
|
2012-08-06 03:39:57 +04:00
|
|
|
#endif
|
|
|
|
|
2014-09-19 22:27:36 +04:00
|
|
|
/* OF PM domain providers */
|
|
|
|
struct of_device_id;
|
|
|
|
|
2017-03-29 19:34:50 +03:00
|
|
|
typedef struct generic_pm_domain *(*genpd_xlate_t)(struct of_phandle_args *args,
|
|
|
|
void *data);
|
|
|
|
|
2014-09-19 22:27:36 +04:00
|
|
|
struct genpd_onecell_data {
|
|
|
|
struct generic_pm_domain **domains;
|
|
|
|
unsigned int num_domains;
|
2017-03-29 19:34:50 +03:00
|
|
|
genpd_xlate_t xlate;
|
2014-09-19 22:27:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM_GENERIC_DOMAINS_OF
|
2016-09-12 14:01:09 +03: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 22:27:36 +04:00
|
|
|
void of_genpd_del_provider(struct device_node *np);
|
2018-05-29 13:04:13 +03: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 17:52:04 +03:00
|
|
|
unsigned int pm_genpd_opp_to_performance_state(struct device *genpd_dev,
|
|
|
|
struct dev_pm_opp *opp);
|
2014-09-19 22:27:36 +04:00
|
|
|
|
|
|
|
int genpd_dev_pm_attach(struct device *dev);
|
PM / Domains: Add support for multi PM domains per device to genpd
To support devices being partitioned across multiple PM domains, let's
begin with extending genpd to cope with these kind of configurations.
Therefore, add a new exported function genpd_dev_pm_attach_by_id(), which
is similar to the existing genpd_dev_pm_attach(), but with the difference
that it allows its callers to provide an index to the PM domain that it
wants to attach.
Note that, genpd_dev_pm_attach_by_id() shall only be called by the driver
core / PM core, similar to how the existing dev_pm_domain_attach() makes
use of genpd_dev_pm_attach(). However, this is implemented by following
changes on top.
Because, only one PM domain can be attached per device, genpd needs to
create a virtual device that it can attach/detach instead. More precisely,
let the new function genpd_dev_pm_attach_by_id() register a virtual struct
device via calling device_register(). Then let it attach this device to the
corresponding PM domain, rather than the one that is provided by the
caller. The actual attaching is done via re-using the existing genpd OF
functions.
At successful attachment, genpd_dev_pm_attach_by_id() returns the created
virtual device, which allows the caller to operate on it to deal with power
management. Following changes on top, provides more details in this
regards.
To deal with detaching of a PM domain for the multiple PM domains case,
let's also extend the existing genpd_dev_pm_detach() function, to cover the
cleanup of the created virtual device, via make it call device_unregister()
on it. In this way, there is no need to introduce a new function to deal
with detach for the multiple PM domain case, but instead the existing one
is re-used.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2018-05-31 13:59:58 +03:00
|
|
|
struct device *genpd_dev_pm_attach_by_id(struct device *dev,
|
|
|
|
unsigned int index);
|
2018-06-29 14:04:31 +03:00
|
|
|
struct device *genpd_dev_pm_attach_by_name(struct device *dev,
|
2019-02-14 21:12:48 +03:00
|
|
|
const char *name);
|
2014-09-19 22:27:36 +04:00
|
|
|
#else /* !CONFIG_PM_GENERIC_DOMAINS_OF */
|
2016-09-12 14:01:09 +03:00
|
|
|
static inline int of_genpd_add_provider_simple(struct device_node *np,
|
|
|
|
struct generic_pm_domain *genpd)
|
2014-09-19 22:27:36 +04:00
|
|
|
{
|
2016-09-12 14:01:09 +03: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 22:27:36 +04:00
|
|
|
}
|
|
|
|
|
2016-09-12 14:01:09 +03:00
|
|
|
static inline void of_genpd_del_provider(struct device_node *np) {}
|
2014-09-19 22:27:36 +04:00
|
|
|
|
2016-09-12 14:01:05 +03: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 20:47:51 +03: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 17:52:04 +03:00
|
|
|
static inline unsigned int
|
|
|
|
pm_genpd_opp_to_performance_state(struct device *genpd_dev,
|
|
|
|
struct dev_pm_opp *opp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-19 22:27:36 +04:00
|
|
|
static inline int genpd_dev_pm_attach(struct device *dev)
|
|
|
|
{
|
2018-05-09 13:17:52 +03:00
|
|
|
return 0;
|
2014-09-19 22:27:36 +04:00
|
|
|
}
|
2016-09-12 14:01:14 +03:00
|
|
|
|
PM / Domains: Add support for multi PM domains per device to genpd
To support devices being partitioned across multiple PM domains, let's
begin with extending genpd to cope with these kind of configurations.
Therefore, add a new exported function genpd_dev_pm_attach_by_id(), which
is similar to the existing genpd_dev_pm_attach(), but with the difference
that it allows its callers to provide an index to the PM domain that it
wants to attach.
Note that, genpd_dev_pm_attach_by_id() shall only be called by the driver
core / PM core, similar to how the existing dev_pm_domain_attach() makes
use of genpd_dev_pm_attach(). However, this is implemented by following
changes on top.
Because, only one PM domain can be attached per device, genpd needs to
create a virtual device that it can attach/detach instead. More precisely,
let the new function genpd_dev_pm_attach_by_id() register a virtual struct
device via calling device_register(). Then let it attach this device to the
corresponding PM domain, rather than the one that is provided by the
caller. The actual attaching is done via re-using the existing genpd OF
functions.
At successful attachment, genpd_dev_pm_attach_by_id() returns the created
virtual device, which allows the caller to operate on it to deal with power
management. Following changes on top, provides more details in this
regards.
To deal with detaching of a PM domain for the multiple PM domains case,
let's also extend the existing genpd_dev_pm_detach() function, to cover the
cleanup of the created virtual device, via make it call device_unregister()
on it. In this way, there is no need to introduce a new function to deal
with detach for the multiple PM domain case, but instead the existing one
is re-used.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2018-05-31 13:59:58 +03:00
|
|
|
static inline struct device *genpd_dev_pm_attach_by_id(struct device *dev,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-06-29 14:04:31 +03:00
|
|
|
static inline struct device *genpd_dev_pm_attach_by_name(struct device *dev,
|
2019-02-14 21:12:48 +03:00
|
|
|
const char *name)
|
2018-06-29 14:04:31 +03:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-09-12 14:01:14 +03:00
|
|
|
static inline
|
|
|
|
struct generic_pm_domain *of_genpd_remove_last(struct device_node *np)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOTSUPP);
|
|
|
|
}
|
2014-09-19 22:27:36 +04:00
|
|
|
#endif /* CONFIG_PM_GENERIC_DOMAINS_OF */
|
|
|
|
|
2014-09-29 15:58:47 +04:00
|
|
|
#ifdef CONFIG_PM
|
2018-05-29 13:04:13 +03:00
|
|
|
int dev_pm_domain_attach(struct device *dev, bool power_on);
|
PM / Domains: Add dev_pm_domain_attach_by_id() to manage multi PM domains
The existing dev_pm_domain_attach() function, allows a single PM domain to
be attached per device. To be able to support devices that are partitioned
across multiple PM domains, let's introduce a new interface,
dev_pm_domain_attach_by_id().
The dev_pm_domain_attach_by_id() returns a new allocated struct device with
the corresponding attached PM domain. This enables for example a driver to
operate on the new device from a power management point of view. The driver
may then also benefit from using the received device, to set up so called
device-links towards its original device. Depending on the situation, these
links may then be dynamically changed.
The new interface is typically called by drivers during their probe phase,
in case they manages devices which uses multiple PM domains. If that is the
case, the driver also becomes responsible of managing the detaching of the
PM domains, which typically should be done at the remove phase. Detaching
is done by calling the existing dev_pm_domain_detach() function and for
each of the received devices from dev_pm_domain_attach_by_id().
Note, currently its only genpd that supports multiple PM domains per
device, but dev_pm_domain_attach_by_id() can easily by extended to cover
other PM domain types, if/when needed.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2018-05-31 13:59:59 +03:00
|
|
|
struct device *dev_pm_domain_attach_by_id(struct device *dev,
|
|
|
|
unsigned int index);
|
2018-06-29 14:04:32 +03:00
|
|
|
struct device *dev_pm_domain_attach_by_name(struct device *dev,
|
|
|
|
char *name);
|
2018-05-29 13:04:13 +03: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 15:58:47 +04:00
|
|
|
#else
|
|
|
|
static inline int dev_pm_domain_attach(struct device *dev, bool power_on)
|
|
|
|
{
|
2018-05-09 13:17:52 +03:00
|
|
|
return 0;
|
2014-09-29 15:58:47 +04:00
|
|
|
}
|
PM / Domains: Add dev_pm_domain_attach_by_id() to manage multi PM domains
The existing dev_pm_domain_attach() function, allows a single PM domain to
be attached per device. To be able to support devices that are partitioned
across multiple PM domains, let's introduce a new interface,
dev_pm_domain_attach_by_id().
The dev_pm_domain_attach_by_id() returns a new allocated struct device with
the corresponding attached PM domain. This enables for example a driver to
operate on the new device from a power management point of view. The driver
may then also benefit from using the received device, to set up so called
device-links towards its original device. Depending on the situation, these
links may then be dynamically changed.
The new interface is typically called by drivers during their probe phase,
in case they manages devices which uses multiple PM domains. If that is the
case, the driver also becomes responsible of managing the detaching of the
PM domains, which typically should be done at the remove phase. Detaching
is done by calling the existing dev_pm_domain_detach() function and for
each of the received devices from dev_pm_domain_attach_by_id().
Note, currently its only genpd that supports multiple PM domains per
device, but dev_pm_domain_attach_by_id() can easily by extended to cover
other PM domain types, if/when needed.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2018-05-31 13:59:59 +03:00
|
|
|
static inline struct device *dev_pm_domain_attach_by_id(struct device *dev,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-06-29 14:04:32 +03:00
|
|
|
static inline struct device *dev_pm_domain_attach_by_name(struct device *dev,
|
|
|
|
char *name)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-09-29 15:58:47 +04:00
|
|
|
static inline void dev_pm_domain_detach(struct device *dev, bool power_off) {}
|
2016-01-07 18:46:13 +03:00
|
|
|
static inline void dev_pm_domain_set(struct device *dev,
|
|
|
|
struct dev_pm_domain *pd) {}
|
2014-09-29 15:58:47 +04:00
|
|
|
#endif
|
|
|
|
|
2011-07-02 00:12:45 +04:00
|
|
|
#endif /* _LINUX_PM_DOMAIN_H */
|