Merge branch 'pm-cpuidle' into pm-domains
* pm-cpuidle: PM / cpuidle: Add driver reference counter cpuidle: move field disable from per-driver to per-cpu
This commit is contained in:
commit
e3b8cdd8e4
5 changed files with 49 additions and 15 deletions
|
@ -265,7 +265,6 @@ static void poll_idle_init(struct cpuidle_driver *drv)
|
||||||
state->power_usage = -1;
|
state->power_usage = -1;
|
||||||
state->flags = 0;
|
state->flags = 0;
|
||||||
state->enter = poll_idle;
|
state->enter = poll_idle;
|
||||||
state->disable = 0;
|
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static void poll_idle_init(struct cpuidle_driver *drv) {}
|
static void poll_idle_init(struct cpuidle_driver *drv) {}
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
static struct cpuidle_driver *cpuidle_curr_driver;
|
static struct cpuidle_driver *cpuidle_curr_driver;
|
||||||
DEFINE_SPINLOCK(cpuidle_driver_lock);
|
DEFINE_SPINLOCK(cpuidle_driver_lock);
|
||||||
|
int cpuidle_driver_refcount;
|
||||||
|
|
||||||
static void __cpuidle_register_driver(struct cpuidle_driver *drv)
|
static void __cpuidle_register_driver(struct cpuidle_driver *drv)
|
||||||
{
|
{
|
||||||
|
@ -89,8 +90,34 @@ void cpuidle_unregister_driver(struct cpuidle_driver *drv)
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_lock(&cpuidle_driver_lock);
|
spin_lock(&cpuidle_driver_lock);
|
||||||
cpuidle_curr_driver = NULL;
|
|
||||||
|
if (!WARN_ON(cpuidle_driver_refcount > 0))
|
||||||
|
cpuidle_curr_driver = NULL;
|
||||||
|
|
||||||
spin_unlock(&cpuidle_driver_lock);
|
spin_unlock(&cpuidle_driver_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL_GPL(cpuidle_unregister_driver);
|
EXPORT_SYMBOL_GPL(cpuidle_unregister_driver);
|
||||||
|
|
||||||
|
struct cpuidle_driver *cpuidle_driver_ref(void)
|
||||||
|
{
|
||||||
|
struct cpuidle_driver *drv;
|
||||||
|
|
||||||
|
spin_lock(&cpuidle_driver_lock);
|
||||||
|
|
||||||
|
drv = cpuidle_curr_driver;
|
||||||
|
cpuidle_driver_refcount++;
|
||||||
|
|
||||||
|
spin_unlock(&cpuidle_driver_lock);
|
||||||
|
return drv;
|
||||||
|
}
|
||||||
|
|
||||||
|
void cpuidle_driver_unref(void)
|
||||||
|
{
|
||||||
|
spin_lock(&cpuidle_driver_lock);
|
||||||
|
|
||||||
|
if (!WARN_ON(cpuidle_driver_refcount <= 0))
|
||||||
|
cpuidle_driver_refcount--;
|
||||||
|
|
||||||
|
spin_unlock(&cpuidle_driver_lock);
|
||||||
|
}
|
||||||
|
|
|
@ -281,7 +281,7 @@ static int menu_select(struct cpuidle_driver *drv, struct cpuidle_device *dev)
|
||||||
* unless the timer is happening really really soon.
|
* unless the timer is happening really really soon.
|
||||||
*/
|
*/
|
||||||
if (data->expected_us > 5 &&
|
if (data->expected_us > 5 &&
|
||||||
drv->states[CPUIDLE_DRIVER_STATE_START].disable == 0)
|
dev->states_usage[CPUIDLE_DRIVER_STATE_START].disable == 0)
|
||||||
data->last_state_idx = CPUIDLE_DRIVER_STATE_START;
|
data->last_state_idx = CPUIDLE_DRIVER_STATE_START;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -290,8 +290,9 @@ static int menu_select(struct cpuidle_driver *drv, struct cpuidle_device *dev)
|
||||||
*/
|
*/
|
||||||
for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
|
for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
|
||||||
struct cpuidle_state *s = &drv->states[i];
|
struct cpuidle_state *s = &drv->states[i];
|
||||||
|
struct cpuidle_state_usage *su = &dev->states_usage[i];
|
||||||
|
|
||||||
if (s->disable)
|
if (su->disable)
|
||||||
continue;
|
continue;
|
||||||
if (s->target_residency > data->predicted_us)
|
if (s->target_residency > data->predicted_us)
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -217,7 +217,8 @@ struct cpuidle_state_attr {
|
||||||
struct attribute attr;
|
struct attribute attr;
|
||||||
ssize_t (*show)(struct cpuidle_state *, \
|
ssize_t (*show)(struct cpuidle_state *, \
|
||||||
struct cpuidle_state_usage *, char *);
|
struct cpuidle_state_usage *, char *);
|
||||||
ssize_t (*store)(struct cpuidle_state *, const char *, size_t);
|
ssize_t (*store)(struct cpuidle_state *, \
|
||||||
|
struct cpuidle_state_usage *, const char *, size_t);
|
||||||
};
|
};
|
||||||
|
|
||||||
#define define_one_state_ro(_name, show) \
|
#define define_one_state_ro(_name, show) \
|
||||||
|
@ -233,21 +234,22 @@ static ssize_t show_state_##_name(struct cpuidle_state *state, \
|
||||||
return sprintf(buf, "%u\n", state->_name);\
|
return sprintf(buf, "%u\n", state->_name);\
|
||||||
}
|
}
|
||||||
|
|
||||||
#define define_store_state_function(_name) \
|
#define define_store_state_ull_function(_name) \
|
||||||
static ssize_t store_state_##_name(struct cpuidle_state *state, \
|
static ssize_t store_state_##_name(struct cpuidle_state *state, \
|
||||||
|
struct cpuidle_state_usage *state_usage, \
|
||||||
const char *buf, size_t size) \
|
const char *buf, size_t size) \
|
||||||
{ \
|
{ \
|
||||||
long value; \
|
unsigned long long value; \
|
||||||
int err; \
|
int err; \
|
||||||
if (!capable(CAP_SYS_ADMIN)) \
|
if (!capable(CAP_SYS_ADMIN)) \
|
||||||
return -EPERM; \
|
return -EPERM; \
|
||||||
err = kstrtol(buf, 0, &value); \
|
err = kstrtoull(buf, 0, &value); \
|
||||||
if (err) \
|
if (err) \
|
||||||
return err; \
|
return err; \
|
||||||
if (value) \
|
if (value) \
|
||||||
state->disable = 1; \
|
state_usage->_name = 1; \
|
||||||
else \
|
else \
|
||||||
state->disable = 0; \
|
state_usage->_name = 0; \
|
||||||
return size; \
|
return size; \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,8 +275,8 @@ define_show_state_ull_function(usage)
|
||||||
define_show_state_ull_function(time)
|
define_show_state_ull_function(time)
|
||||||
define_show_state_str_function(name)
|
define_show_state_str_function(name)
|
||||||
define_show_state_str_function(desc)
|
define_show_state_str_function(desc)
|
||||||
define_show_state_function(disable)
|
define_show_state_ull_function(disable)
|
||||||
define_store_state_function(disable)
|
define_store_state_ull_function(disable)
|
||||||
|
|
||||||
define_one_state_ro(name, show_state_name);
|
define_one_state_ro(name, show_state_name);
|
||||||
define_one_state_ro(desc, show_state_desc);
|
define_one_state_ro(desc, show_state_desc);
|
||||||
|
@ -318,10 +320,11 @@ static ssize_t cpuidle_state_store(struct kobject *kobj,
|
||||||
{
|
{
|
||||||
int ret = -EIO;
|
int ret = -EIO;
|
||||||
struct cpuidle_state *state = kobj_to_state(kobj);
|
struct cpuidle_state *state = kobj_to_state(kobj);
|
||||||
|
struct cpuidle_state_usage *state_usage = kobj_to_state_usage(kobj);
|
||||||
struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
|
struct cpuidle_state_attr *cattr = attr_to_stateattr(attr);
|
||||||
|
|
||||||
if (cattr->store)
|
if (cattr->store)
|
||||||
ret = cattr->store(state, buf, size);
|
ret = cattr->store(state, state_usage, buf, size);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,7 @@ struct cpuidle_driver;
|
||||||
struct cpuidle_state_usage {
|
struct cpuidle_state_usage {
|
||||||
void *driver_data;
|
void *driver_data;
|
||||||
|
|
||||||
|
unsigned long long disable;
|
||||||
unsigned long long usage;
|
unsigned long long usage;
|
||||||
unsigned long long time; /* in US */
|
unsigned long long time; /* in US */
|
||||||
};
|
};
|
||||||
|
@ -46,7 +47,6 @@ struct cpuidle_state {
|
||||||
unsigned int exit_latency; /* in US */
|
unsigned int exit_latency; /* in US */
|
||||||
int power_usage; /* in mW */
|
int power_usage; /* in mW */
|
||||||
unsigned int target_residency; /* in US */
|
unsigned int target_residency; /* in US */
|
||||||
unsigned int disable;
|
|
||||||
|
|
||||||
int (*enter) (struct cpuidle_device *dev,
|
int (*enter) (struct cpuidle_device *dev,
|
||||||
struct cpuidle_driver *drv,
|
struct cpuidle_driver *drv,
|
||||||
|
@ -136,7 +136,9 @@ struct cpuidle_driver {
|
||||||
extern void disable_cpuidle(void);
|
extern void disable_cpuidle(void);
|
||||||
extern int cpuidle_idle_call(void);
|
extern int cpuidle_idle_call(void);
|
||||||
extern int cpuidle_register_driver(struct cpuidle_driver *drv);
|
extern int cpuidle_register_driver(struct cpuidle_driver *drv);
|
||||||
struct cpuidle_driver *cpuidle_get_driver(void);
|
extern struct cpuidle_driver *cpuidle_get_driver(void);
|
||||||
|
extern struct cpuidle_driver *cpuidle_driver_ref(void);
|
||||||
|
extern void cpuidle_driver_unref(void);
|
||||||
extern void cpuidle_unregister_driver(struct cpuidle_driver *drv);
|
extern void cpuidle_unregister_driver(struct cpuidle_driver *drv);
|
||||||
extern int cpuidle_register_device(struct cpuidle_device *dev);
|
extern int cpuidle_register_device(struct cpuidle_device *dev);
|
||||||
extern void cpuidle_unregister_device(struct cpuidle_device *dev);
|
extern void cpuidle_unregister_device(struct cpuidle_device *dev);
|
||||||
|
@ -157,6 +159,8 @@ static inline int cpuidle_idle_call(void) { return -ENODEV; }
|
||||||
static inline int cpuidle_register_driver(struct cpuidle_driver *drv)
|
static inline int cpuidle_register_driver(struct cpuidle_driver *drv)
|
||||||
{return -ENODEV; }
|
{return -ENODEV; }
|
||||||
static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; }
|
static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; }
|
||||||
|
static inline struct cpuidle_driver *cpuidle_driver_ref(void) {return NULL; }
|
||||||
|
static inline void cpuidle_driver_unref(void) {}
|
||||||
static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { }
|
static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { }
|
||||||
static inline int cpuidle_register_device(struct cpuidle_device *dev)
|
static inline int cpuidle_register_device(struct cpuidle_device *dev)
|
||||||
{return -ENODEV; }
|
{return -ENODEV; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue