linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/3] devfreq: Add support for devices which can idle
@ 2012-10-04  9:28 Rajagopal Venkat
  2012-10-04  9:28 ` [PATCH v4 1/3] devfreq: Core updates to support " Rajagopal Venkat
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Rajagopal Venkat @ 2012-10-04  9:28 UTC (permalink / raw)
  To: myungjoo.ham, mturquette, kyungmin.park, rjw
  Cc: patches, linaro-dev, linux-pm, linux-kernel, Rajagopal Venkat

This patchset updates devfreq core to add support for devices
which can idle. When device idleness is detected perhaps
through runtime-pm, need some mechanism to suspend devfreq
load monitoring and resume when device is back online.

patch 1 introduce core design changes - per device work, decouple
delayed work from core and event based interaction.
patch 2 add devfreq suspend and resume apis.
patch 3 add new sysfs attribute for governor predicted next target
frequency and callback for current device frequency.

The existing devfreq apis are kept intact. Two new apis
devfreq_suspend_device() and devfreq_resume_device() are
added to support suspend/resume of device devfreq.

Changes since v1:
- revised locking mechanism
- added kerneldoc comments for load monitoring helper functions
- fixed minor review comments

Changes since v2:
- added new helper function for polling interval update
- handled work suspend/resume contention between devfreq driver
and sysfs

Changes since v3:
- added additonal checks in suspend/resume to avoid invalid usage of apis
- added check in devfreq_monitor_start, not to start monitoring when
polling_ms is set to zero.

--
Rajagopal Venkat (3):
  devfreq: Core updates to support devices which can idle
  devfreq: Add suspend and resume apis
  devfreq: Add current freq callback in device profile

 Documentation/ABI/testing/sysfs-class-devfreq |  15 +-
 drivers/devfreq/devfreq.c                     | 481 ++++++++++++--------------
 drivers/devfreq/governor.h                    |  13 +
 drivers/devfreq/governor_performance.c        |  16 +-
 drivers/devfreq/governor_powersave.c          |  16 +-
 drivers/devfreq/governor_simpleondemand.c     |  33 ++
 drivers/devfreq/governor_userspace.c          |  23 +-
 include/linux/devfreq.h                       |  49 +--
 8 files changed, 353 insertions(+), 293 deletions(-)

-- 
1.7.11.3


^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: Re: [PATCH v4 2/3] devfreq: Add suspend and resume apis
@ 2012-10-08 10:48 MyungJoo Ham
  2012-10-15 20:43 ` Rafael J. Wysocki
  0 siblings, 1 reply; 8+ messages in thread
From: MyungJoo Ham @ 2012-10-08 10:48 UTC (permalink / raw)
  To: Rajagopal Venkat, Rafael J. Wysocki
  Cc: mturquette@linaro.org, 박경민,
	patches@linaro.org, linaro-dev@lists.linaro.org,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=euc-kr, Size: 6064 bytes --]

> On 8 October 2012 03:31, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> > On Thursday 04 of October 2012 14:58:33 Rajagopal Venkat wrote:
> >> Add devfreq suspend/resume apis for devfreq users. This patch
> >> supports suspend and resume of devfreq load monitoring, required
> >> for devices which can idle.
> >>
> >> Signed-off-by: Rajagopal Venkat <rajagopal.venkat@linaro.org>
> >> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
> >
> > Well, I wonder if this may be tied in to the runtime PM framework, so that,
> > for example, pm_runtime_suspend() will automatically suspend devfreq on
> > success (and the runtime resume of the device will resume devfreq)?
> 
> That's a good idea. If you agree, we can handle this as separate patch on
> top this patchset.

I guess implementing the idea may be not so obvious; thus, seperating
the patchset would be appropriate.

When we implement the idea, we may need to implement at the
pm_runtime core. Because devfreq->dev is a child of the target dev, not
a parent, runtime-pm event of the target dev does not automatically
invoke a cascaded action on the devfreq->dev.

Maybe either
1) capability to allow a child to monitor the power state of a parent
(I remember Inki Dae once suggested to add notifiers at runtime-pm, but
it seems to be not merged)
or
2) letting runtime-pm be aware of devfreq
(doesn't feel alright with this??)
is required?



> 
> >
> > Rafael
> >
> >
> >> ---
> >>  drivers/devfreq/devfreq.c                 | 28 ++++++++++++++++++++++++++++
> >>  drivers/devfreq/governor.h                |  2 ++
> >>  drivers/devfreq/governor_simpleondemand.c |  9 +++++++++
> >>  include/linux/devfreq.h                   | 12 ++++++++++++
> >>  4 files changed, 51 insertions(+)
> >>
> >> diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
> >> index 41a4099..63e075e 100644
> >> --- a/drivers/devfreq/devfreq.c
> >> +++ b/drivers/devfreq/devfreq.c
> >> @@ -428,6 +428,34 @@ int devfreq_remove_device(struct devfreq *devfreq)
> >>  }
> >>  EXPORT_SYMBOL(devfreq_remove_device);
> >>
> >> +/**
> >> + * devfreq_suspend_device() - Suspend devfreq of a device.
> >> + * @devfreq  the devfreq instance to be suspended
> >> + */
> >> +int devfreq_suspend_device(struct devfreq *devfreq)
> >> +{
> >> +     if (!devfreq)
> >> +             return -EINVAL;
> >> +
> >> +     return devfreq->governor->event_handler(devfreq,
> >> +                             DEVFREQ_GOV_SUSPEND, NULL);
> >> +}
> >> +EXPORT_SYMBOL(devfreq_suspend_device);
> >> +
> >> +/**
> >> + * devfreq_resume_device() - Resume devfreq of a device.
> >> + * @devfreq  the devfreq instance to be resumed
> >> + */
> >> +int devfreq_resume_device(struct devfreq *devfreq)
> >> +{
> >> +     if (!devfreq)
> >> +             return -EINVAL;
> >> +
> >> +     return devfreq->governor->event_handler(devfreq,
> >> +                             DEVFREQ_GOV_RESUME, NULL);
> >> +}
> >> +EXPORT_SYMBOL(devfreq_resume_device);
> >> +
> >>  static ssize_t show_governor(struct device *dev,
> >>                            struct device_attribute *attr, char *buf)
> >>  {
> >> diff --git a/drivers/devfreq/governor.h b/drivers/devfreq/governor.h
> >> index bb3aff3..26432ac 100644
> >> --- a/drivers/devfreq/governor.h
> >> +++ b/drivers/devfreq/governor.h
> >> @@ -22,6 +22,8 @@
> >>  #define DEVFREQ_GOV_START                    0x1
> >>  #define DEVFREQ_GOV_STOP                     0x2
> >>  #define DEVFREQ_GOV_INTERVAL                 0x3
> >> +#define DEVFREQ_GOV_SUSPEND                  0x4
> >> +#define DEVFREQ_GOV_RESUME                   0x5
> >>
> >>  /* Caution: devfreq->lock must be locked before calling update_devfreq */
> >>  extern int update_devfreq(struct devfreq *devfreq);
> >> diff --git a/drivers/devfreq/governor_simpleondemand.c b/drivers/devfreq/governor_simpleondemand.c
> >> index cf94218..a8ba78c 100644
> >> --- a/drivers/devfreq/governor_simpleondemand.c
> >> +++ b/drivers/devfreq/governor_simpleondemand.c
> >> @@ -104,6 +104,15 @@ int devfreq_simple_ondemand_handler(struct devfreq *devfreq,
> >>       case DEVFREQ_GOV_INTERVAL:
> >>               devfreq_interval_update(devfreq, (unsigned int *)data);
> >>               break;
> >> +
> >> +     case DEVFREQ_GOV_SUSPEND:
> >> +             devfreq_monitor_suspend(devfreq);
> >> +             break;
> >> +
> >> +     case DEVFREQ_GOV_RESUME:
> >> +             devfreq_monitor_resume(devfreq);
> >> +             break;
> >> +
> >>       default:
> >>               break;
> >>       }
> >> diff --git a/include/linux/devfreq.h b/include/linux/devfreq.h
> >> index 9cdffde..ee243a3 100644
> >> --- a/include/linux/devfreq.h
> >> +++ b/include/linux/devfreq.h
> >> @@ -158,6 +158,8 @@ extern struct devfreq *devfreq_add_device(struct device *dev,
> >>                                 const struct devfreq_governor *governor,
> >>                                 void *data);
> >>  extern int devfreq_remove_device(struct devfreq *devfreq);
> >> +extern int devfreq_suspend_device(struct devfreq *devfreq);
> >> +extern int devfreq_resume_device(struct devfreq *devfreq);
> >>
> >>  /* Helper functions for devfreq user device driver with OPP. */
> >>  extern struct opp *devfreq_recommended_opp(struct device *dev,
> >> @@ -211,6 +213,16 @@ static int devfreq_remove_device(struct devfreq *devfreq)
> >>       return 0;
> >>  }
> >>
> >> +static int devfreq_suspend_device(struct devfreq *devfreq)
> >> +{
> >> +     return 0;
> >> +}
> >> +
> >> +static int devfreq_resume_device(struct devfreq *devfreq)
> >> +{
> >> +     return 0;
> >> +}
> >> +
> >>  static struct opp *devfreq_recommended_opp(struct device *dev,
> >>                                          unsigned long *freq, u32 flags)
> >>  {
> >>
> > --
> > I speak only for myself.
> > Rafael J. Wysocki, Intel Open Source Technology Center.
> 
> 
> 
> -- 
> Regards,
> Rajagopal
> 
> 
> 
>        
>   
>          
> 
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: Re: [PATCH v4 2/3] devfreq: Add suspend and resume apis
@ 2012-10-16  6:40 MyungJoo Ham
  2012-10-16 16:42 ` Rafael J. Wysocki
  0 siblings, 1 reply; 8+ messages in thread
From: MyungJoo Ham @ 2012-10-16  6:40 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Rajagopal Venkat, mturquette@linaro.org, 박경민,
	patches@linaro.org, linaro-dev@lists.linaro.org,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	이종화

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=euc-kr, Size: 2915 bytes --]

> On Monday 08 of October 2012 10:48:24 MyungJoo Ham wrote:
> > > On 8 October 2012 03:31, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> > > > On Thursday 04 of October 2012 14:58:33 Rajagopal Venkat wrote:
> > > >> Add devfreq suspend/resume apis for devfreq users. This patch
> > > >> supports suspend and resume of devfreq load monitoring, required
> > > >> for devices which can idle.
> > > >>
> > > >> Signed-off-by: Rajagopal Venkat <rajagopal.venkat@linaro.org>
> > > >> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
> > > >
> > > > Well, I wonder if this may be tied in to the runtime PM framework, so that,
> > > > for example, pm_runtime_suspend() will automatically suspend devfreq on
> > > > success (and the runtime resume of the device will resume devfreq)?
> > > 
> > > That's a good idea. If you agree, we can handle this as separate patch on
> > > top this patchset.
> 
> Sure.
> 
> > I guess implementing the idea may be not so obvious; thus, seperating
> > the patchset would be appropriate.
> > 
> > When we implement the idea, we may need to implement at the
> > pm_runtime core. Because devfreq->dev is a child of the target dev, not
> > a parent, runtime-pm event of the target dev does not automatically
> > invoke a cascaded action on the devfreq->dev.
> 
> I'm not exactly sure what you mean, care to explain?

When a device "p" creates devfreq, devfreq->dev->parent = p.
And, devfreq's functions need to react to the "p"'s runtime-pm events.

However, when "p"'s runtime-pm-suspend is being invoked,
devfreq->dev's runtime-pm-suspend won't be automatically invoked.

Thus, we will need a mechanism that invokes devfreq->dev's runtime-pm
callbacks when p's runtime-pm is invoked. (at the runtime-pm core)
Or
A mechanism that one can notify others (including its children) when
the one's runtime-pm is invoked. (probably at the runtime-pm core, too)

Without such support, it appears that the current implementation
(calling runtime-pm suspend/resume equivalent devfreq functions
manually at device drivers) seems to be inevitable.



Anyway, if devfreq->dev is a parent of "p", runtime-pm core will
do the required task automatically; however, it isn't and I don't
think it'd be appropriate.

> 
> > Maybe either
> > 1) capability to allow a child to monitor the power state of a parent
> > (I remember Inki Dae once suggested to add notifiers at runtime-pm, but
> > it seems to be not merged)
> > or
> > 2) letting runtime-pm be aware of devfreq
> > (doesn't feel alright with this??)
> > is required?
> 
> I'm not a big fan of notifiers, so I'd prefer to avoid using them, if
> possible.
> 
> Thanks,
> Rafael
> 
> 
> -- 
> I speak only for myself.
> Rafael J. Wysocki, Intel Open Source Technology Center.
> 

Cheers,
MyungJoo
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-10-16 16:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-04  9:28 [PATCH v4 0/3] devfreq: Add support for devices which can idle Rajagopal Venkat
2012-10-04  9:28 ` [PATCH v4 1/3] devfreq: Core updates to support " Rajagopal Venkat
2012-10-04  9:28 ` [PATCH v4 2/3] devfreq: Add suspend and resume apis Rajagopal Venkat
2012-10-07 22:01   ` Rafael J. Wysocki
2012-10-08  8:42     ` Rajagopal Venkat
2012-10-04  9:28 ` [PATCH v4 3/3] devfreq: Add current freq callback in device profile Rajagopal Venkat
  -- strict thread matches above, loose matches on Subject: below --
2012-10-08 10:48 Re: [PATCH v4 2/3] devfreq: Add suspend and resume apis MyungJoo Ham
2012-10-15 20:43 ` Rafael J. Wysocki
2012-10-16  6:40 MyungJoo Ham
2012-10-16 16:42 ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).