Message ID | 1314775779-21399-4-git-send-email-myungjoo.ham@samsung.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Wed, Aug 31, 2011 at 12:29 AM, MyungJoo Ham <myungjoo.ham@samsung.com> wrote: > Device specific sysfs interface /sys/devices/.../power/devfreq_* > - governor R: name of governor > - cur_freq R: current frequency > - max_freq R: maximum operable frequency > - min_freq R: minimum operable frequency > - polling_interval R: polling interval in ms given with devfreq profile > W: update polling interval. > > Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com> > Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> > > -- > Changes from v8 > - applied per-devfreq locking mechanism > > Changes from v7 > - removed set_freq from the common devfreq interface > - added get_devfreq, a mutex-protected wrapper for find_device_devfreq > (for sysfs interfaces and later with governor-support) > - corrected ABI documentation. > > Changes from v6 > - poling_interval is writable. > > Changes from v5 > - updated devferq_update usage. > > Changes from v4 > - removed system-wide sysfs interface > - removed tickling sysfs interface > - added set_freq for userspace governor (and any other governors that > require user input) > > Changes from v3 > - corrected sysfs API usage > - corrected error messages > - moved sysfs entry location > - added sysfs entries > > Changes from v2 > - add ABI entries for devfreq sysfs interface > --- > Documentation/ABI/testing/sysfs-devices-power | 37 +++++ > drivers/devfreq/devfreq.c | 203 +++++++++++++++++++++++++ > 2 files changed, 240 insertions(+), 0 deletions(-) > > diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power > index 8ffbc25..57f4591 100644 > --- a/Documentation/ABI/testing/sysfs-devices-power > +++ b/Documentation/ABI/testing/sysfs-devices-power > @@ -165,3 +165,40 @@ Description: > > Not all drivers support this attribute. If it isn't supported, > attempts to read or write it will yield I/O errors. > + > +What: /sys/devices/.../power/devfreq_governor > +Date: July 2011 > +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> > +Description: > + The /sys/devices/.../power/devfreq_governor shows the name > + of the governor used by the corresponding device. > + > +What: /sys/devices/.../power/devfreq_cur_freq > +Date: July 2011 > +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> > +Description: > + The /sys/devices/.../power/devfreq_cur_freq shows the current > + frequency of the corresponding device. > + > +What: /sys/devices/.../power/devfreq_max_freq > +Date: July 2011 > +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> > +Description: > + The /sys/devices/.../power/devfreq_max_freq shows the > + maximum operable frequency of the corresponding device. > + > +What: /sys/devices/.../power/devfreq_min_freq > +Date: July 2011 > +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> > +Description: > + The /sys/devices/.../power/devfreq_min_freq shows the > + minimum operable frequency of the corresponding device. > + > +What: /sys/devices/.../power/devfreq_polling_interval > +Date: July 2011 > +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> > +Description: > + The /sys/devices/.../power/devfreq_polling_interval sets and > + shows the requested polling interval of the corresponding > + device. The values are represented in ms. If the value is less > + than 1 jiffy, it is considered to be 0, which means no polling. > diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c > index 621b863..1c46052 100644 > --- a/drivers/devfreq/devfreq.c > +++ b/drivers/devfreq/devfreq.c > @@ -37,6 +37,8 @@ static struct delayed_work devfreq_work; > static LIST_HEAD(devfreq_list); > static DEFINE_MUTEX(devfreq_list_lock); > > +static struct attribute_group dev_attr_group; > + > /** > * find_device_devfreq() - find devfreq struct using device pointer > * @dev: device pointer used to lookup device devfreq. > @@ -191,6 +193,8 @@ static void devfreq_monitor(struct work_struct *work) > dev_err(devfreq->dev, "Due to devfreq_do error(%d), devfreq(%s) is removed from the device\n", > error, devfreq->governor->name); > > + sysfs_unmerge_group(&devfreq->dev->kobj, > + &dev_attr_group); > list_del(&devfreq->node); > mutex_unlock(&devfreq->lock); > kfree(devfreq); > @@ -293,6 +297,8 @@ int devfreq_add_device(struct device *dev, struct devfreq_dev_profile *profile, > queue_delayed_work(devfreq_wq, &devfreq_work, > devfreq->next_polling); > } > + > + sysfs_merge_group(&dev->kobj, &dev_attr_group); > mutex_unlock(&devfreq->lock); > goto out; > err_init: > @@ -333,6 +339,8 @@ int devfreq_remove_device(struct device *dev) > goto out; > } > > + sysfs_unmerge_group(&dev->kobj, &dev_attr_group); > + > list_del(&devfreq->node); > > if (devfreq->governor->exit) > @@ -346,6 +354,201 @@ out: > return 0; > } > > +static ssize_t show_governor(struct device *dev, > + struct device_attribute *attr, char *buf) > +{ > + struct devfreq *df; > + ssize_t ret; > + > + mutex_lock(&devfreq_list_lock); > + df = find_device_devfreq(dev); > + if (IS_ERR(df)) { > + ret = PTR_ERR(df); > + goto out; > + } > + > + mutex_lock(&df->lock); > + if (!df->governor) { > + ret = -EINVAL; > + goto out_l; > + } > + > + ret = sprintf(buf, "%s\n", df->governor->name); > +out_l: > + mutex_unlock(&df->lock); > +out: > + mutex_unlock(&devfreq_list_lock); > + return ret; > +} > + > +static ssize_t show_freq(struct device *dev, > + struct device_attribute *attr, char *buf) > +{ > + struct devfreq *df; > + ssize_t ret; > + > + mutex_lock(&devfreq_list_lock); > + df = find_device_devfreq(dev); > + if (IS_ERR(df)) { > + ret = PTR_ERR(df); > + goto out; > + } > + > + ret = sprintf(buf, "%lu\n", df->previous_freq); > +out: > + mutex_unlock(&devfreq_list_lock); > + return ret; > +} > + > +static ssize_t show_max_freq(struct device *dev, > + struct device_attribute *attr, char *buf) > +{ > + struct devfreq *df; > + ssize_t ret; > + unsigned long freq = ULONG_MAX; > + struct opp *opp; > + > + mutex_lock(&devfreq_list_lock); > + df = find_device_devfreq(dev); > + if (IS_ERR(df)) { > + ret = PTR_ERR(df); > + goto out; > + } > + > + mutex_lock(&df->lock); > + opp = opp_find_freq_floor(df->dev, &freq); > + if (IS_ERR(opp)) { > + ret = PTR_ERR(opp); > + goto out_l; > + } > + > + ret = sprintf(buf, "%lu\n", freq); > +out_l: > + mutex_unlock(&df->lock); > +out: > + mutex_unlock(&devfreq_list_lock); > + return ret; > +} > + > +static ssize_t show_min_freq(struct device *dev, > + struct device_attribute *attr, char *buf) > +{ > + struct devfreq *df; > + ssize_t ret; > + unsigned long freq = 0; > + struct opp *opp; > + > + mutex_lock(&devfreq_list_lock); > + df = find_device_devfreq(dev); > + if (IS_ERR(df)) { > + ret = PTR_ERR(df); > + goto out; > + } > + > + mutex_lock(&df->lock); > + opp = opp_find_freq_ceil(df->dev, &freq); > + if (IS_ERR(opp)) { > + ret = PTR_ERR(opp); > + goto out_l; > + } > + > + ret = sprintf(buf, "%lu\n", freq); > +out_l: > + mutex_unlock(&df->lock); > +out: > + mutex_unlock(&devfreq_list_lock); > + return ret; > +} > + > +static ssize_t show_polling_interval(struct device *dev, > + struct device_attribute *attr, char *buf) > +{ > + struct devfreq *df; > + ssize_t ret; > + > + mutex_lock(&devfreq_list_lock); > + df = find_device_devfreq(dev); > + if (IS_ERR(df)) { > + ret = PTR_ERR(df); > + goto out; > + } > + > + mutex_lock(&df->lock); > + if (!df->profile) { > + ret = -EINVAL; > + goto out_l; > + } > + > + ret = sprintf(buf, "%d\n", df->profile->polling_ms); > +out_l: > + mutex_unlock(&df->lock); > +out: > + mutex_unlock(&devfreq_list_lock); > + return ret; > +} > + > +static ssize_t store_polling_interval(struct device *dev, > + struct device_attribute *attr, > + const char *buf, size_t count) > +{ > + struct devfreq *df; > + unsigned int value; > + int ret; > + > + mutex_lock(&devfreq_list_lock); > + df = find_device_devfreq(dev); > + if (IS_ERR(df)) { > + count = PTR_ERR(df); > + goto out; > + } > + mutex_lock(&df->lock); > + if (!df->profile) { > + count = -EINVAL; > + goto out_l; > + } > + > + ret = sscanf(buf, "%u", &value); > + if (ret != 1) { > + count = -EINVAL; > + goto out_l; > + } > + > + df->profile->polling_ms = value; > + df->next_polling = df->polling_jiffies > + = msecs_to_jiffies(value); > + > + if (df->next_polling > 0 && !polling) { > + polling = true; > + queue_delayed_work(devfreq_wq, &devfreq_work, > + df->next_polling); > + } > +out_l: > + mutex_unlock(&df->lock); > +out: > + mutex_unlock(&devfreq_list_lock); > + > + return count; > +} > + > +static DEVICE_ATTR(devfreq_governor, 0444, show_governor, NULL); > +static DEVICE_ATTR(devfreq_cur_freq, 0444, show_freq, NULL); > +static DEVICE_ATTR(devfreq_max_freq, 0444, show_max_freq, NULL); > +static DEVICE_ATTR(devfreq_min_freq, 0444, show_min_freq, NULL); > +static DEVICE_ATTR(devfreq_polling_interval, 0644, show_polling_interval, Instead of DEVICE_ATTR, why don't you create your own ktype specific to devfreq? That would also mean that you don't have to do the struct device * conversions to get struct devfreq * everytime (which requires locking and walking the list). Regards, Mike > + store_polling_interval); > +static struct attribute *dev_entries[] = { > + &dev_attr_devfreq_governor.attr, > + &dev_attr_devfreq_cur_freq.attr, > + &dev_attr_devfreq_max_freq.attr, > + &dev_attr_devfreq_min_freq.attr, > + &dev_attr_devfreq_polling_interval.attr, > + NULL, > +}; > +static struct attribute_group dev_attr_group = { > + .name = power_group_name, > + .attrs = dev_entries, > +}; > + > /** > * devfreq_init() - Initialize data structure for devfreq framework and > * start polling registered devfreq devices. > -- > 1.7.4.1 > >
diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power index 8ffbc25..57f4591 100644 --- a/Documentation/ABI/testing/sysfs-devices-power +++ b/Documentation/ABI/testing/sysfs-devices-power @@ -165,3 +165,40 @@ Description: Not all drivers support this attribute. If it isn't supported, attempts to read or write it will yield I/O errors. + +What: /sys/devices/.../power/devfreq_governor +Date: July 2011 +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> +Description: + The /sys/devices/.../power/devfreq_governor shows the name + of the governor used by the corresponding device. + +What: /sys/devices/.../power/devfreq_cur_freq +Date: July 2011 +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> +Description: + The /sys/devices/.../power/devfreq_cur_freq shows the current + frequency of the corresponding device. + +What: /sys/devices/.../power/devfreq_max_freq +Date: July 2011 +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> +Description: + The /sys/devices/.../power/devfreq_max_freq shows the + maximum operable frequency of the corresponding device. + +What: /sys/devices/.../power/devfreq_min_freq +Date: July 2011 +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> +Description: + The /sys/devices/.../power/devfreq_min_freq shows the + minimum operable frequency of the corresponding device. + +What: /sys/devices/.../power/devfreq_polling_interval +Date: July 2011 +Contact: MyungJoo Ham <myungjoo.ham@samsung.com> +Description: + The /sys/devices/.../power/devfreq_polling_interval sets and + shows the requested polling interval of the corresponding + device. The values are represented in ms. If the value is less + than 1 jiffy, it is considered to be 0, which means no polling. diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c index 621b863..1c46052 100644 --- a/drivers/devfreq/devfreq.c +++ b/drivers/devfreq/devfreq.c @@ -37,6 +37,8 @@ static struct delayed_work devfreq_work; static LIST_HEAD(devfreq_list); static DEFINE_MUTEX(devfreq_list_lock); +static struct attribute_group dev_attr_group; + /** * find_device_devfreq() - find devfreq struct using device pointer * @dev: device pointer used to lookup device devfreq. @@ -191,6 +193,8 @@ static void devfreq_monitor(struct work_struct *work) dev_err(devfreq->dev, "Due to devfreq_do error(%d), devfreq(%s) is removed from the device\n", error, devfreq->governor->name); + sysfs_unmerge_group(&devfreq->dev->kobj, + &dev_attr_group); list_del(&devfreq->node); mutex_unlock(&devfreq->lock); kfree(devfreq); @@ -293,6 +297,8 @@ int devfreq_add_device(struct device *dev, struct devfreq_dev_profile *profile, queue_delayed_work(devfreq_wq, &devfreq_work, devfreq->next_polling); } + + sysfs_merge_group(&dev->kobj, &dev_attr_group); mutex_unlock(&devfreq->lock); goto out; err_init: @@ -333,6 +339,8 @@ int devfreq_remove_device(struct device *dev) goto out; } + sysfs_unmerge_group(&dev->kobj, &dev_attr_group); + list_del(&devfreq->node); if (devfreq->governor->exit) @@ -346,6 +354,201 @@ out: return 0; } +static ssize_t show_governor(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct devfreq *df; + ssize_t ret; + + mutex_lock(&devfreq_list_lock); + df = find_device_devfreq(dev); + if (IS_ERR(df)) { + ret = PTR_ERR(df); + goto out; + } + + mutex_lock(&df->lock); + if (!df->governor) { + ret = -EINVAL; + goto out_l; + } + + ret = sprintf(buf, "%s\n", df->governor->name); +out_l: + mutex_unlock(&df->lock); +out: + mutex_unlock(&devfreq_list_lock); + return ret; +} + +static ssize_t show_freq(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct devfreq *df; + ssize_t ret; + + mutex_lock(&devfreq_list_lock); + df = find_device_devfreq(dev); + if (IS_ERR(df)) { + ret = PTR_ERR(df); + goto out; + } + + ret = sprintf(buf, "%lu\n", df->previous_freq); +out: + mutex_unlock(&devfreq_list_lock); + return ret; +} + +static ssize_t show_max_freq(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct devfreq *df; + ssize_t ret; + unsigned long freq = ULONG_MAX; + struct opp *opp; + + mutex_lock(&devfreq_list_lock); + df = find_device_devfreq(dev); + if (IS_ERR(df)) { + ret = PTR_ERR(df); + goto out; + } + + mutex_lock(&df->lock); + opp = opp_find_freq_floor(df->dev, &freq); + if (IS_ERR(opp)) { + ret = PTR_ERR(opp); + goto out_l; + } + + ret = sprintf(buf, "%lu\n", freq); +out_l: + mutex_unlock(&df->lock); +out: + mutex_unlock(&devfreq_list_lock); + return ret; +} + +static ssize_t show_min_freq(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct devfreq *df; + ssize_t ret; + unsigned long freq = 0; + struct opp *opp; + + mutex_lock(&devfreq_list_lock); + df = find_device_devfreq(dev); + if (IS_ERR(df)) { + ret = PTR_ERR(df); + goto out; + } + + mutex_lock(&df->lock); + opp = opp_find_freq_ceil(df->dev, &freq); + if (IS_ERR(opp)) { + ret = PTR_ERR(opp); + goto out_l; + } + + ret = sprintf(buf, "%lu\n", freq); +out_l: + mutex_unlock(&df->lock); +out: + mutex_unlock(&devfreq_list_lock); + return ret; +} + +static ssize_t show_polling_interval(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct devfreq *df; + ssize_t ret; + + mutex_lock(&devfreq_list_lock); + df = find_device_devfreq(dev); + if (IS_ERR(df)) { + ret = PTR_ERR(df); + goto out; + } + + mutex_lock(&df->lock); + if (!df->profile) { + ret = -EINVAL; + goto out_l; + } + + ret = sprintf(buf, "%d\n", df->profile->polling_ms); +out_l: + mutex_unlock(&df->lock); +out: + mutex_unlock(&devfreq_list_lock); + return ret; +} + +static ssize_t store_polling_interval(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + struct devfreq *df; + unsigned int value; + int ret; + + mutex_lock(&devfreq_list_lock); + df = find_device_devfreq(dev); + if (IS_ERR(df)) { + count = PTR_ERR(df); + goto out; + } + mutex_lock(&df->lock); + if (!df->profile) { + count = -EINVAL; + goto out_l; + } + + ret = sscanf(buf, "%u", &value); + if (ret != 1) { + count = -EINVAL; + goto out_l; + } + + df->profile->polling_ms = value; + df->next_polling = df->polling_jiffies + = msecs_to_jiffies(value); + + if (df->next_polling > 0 && !polling) { + polling = true; + queue_delayed_work(devfreq_wq, &devfreq_work, + df->next_polling); + } +out_l: + mutex_unlock(&df->lock); +out: + mutex_unlock(&devfreq_list_lock); + + return count; +} + +static DEVICE_ATTR(devfreq_governor, 0444, show_governor, NULL); +static DEVICE_ATTR(devfreq_cur_freq, 0444, show_freq, NULL); +static DEVICE_ATTR(devfreq_max_freq, 0444, show_max_freq, NULL); +static DEVICE_ATTR(devfreq_min_freq, 0444, show_min_freq, NULL); +static DEVICE_ATTR(devfreq_polling_interval, 0644, show_polling_interval, + store_polling_interval); +static struct attribute *dev_entries[] = { + &dev_attr_devfreq_governor.attr, + &dev_attr_devfreq_cur_freq.attr, + &dev_attr_devfreq_max_freq.attr, + &dev_attr_devfreq_min_freq.attr, + &dev_attr_devfreq_polling_interval.attr, + NULL, +}; +static struct attribute_group dev_attr_group = { + .name = power_group_name, + .attrs = dev_entries, +}; + /** * devfreq_init() - Initialize data structure for devfreq framework and * start polling registered devfreq devices.