public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PM: devfreq: init performance/powersave governor
@ 2012-04-27  3:16 Xiaoguang Chen
  0 siblings, 0 replies; 3+ messages in thread
From: Xiaoguang Chen @ 2012-04-27  3:16 UTC (permalink / raw)
  To: linux-kernel
  Cc: myungjoo.ham, khilman, kyungmin.park, mturquette, rjw,
	Xiaoguang Chen

Performance and powersave governor's get_target_freq
is not called if driver chooses one of these two governors.
Add init function in governor profile to call update_devfreq
which will call get_target_freq subsequently.

Signed-off-by: Xiaoguang Chen <chenxg@marvell.com>
---
 drivers/devfreq/governor_performance.c |    7 +++++++
 drivers/devfreq/governor_powersave.c   |    7 +++++++
 2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/drivers/devfreq/governor_performance.c b/drivers/devfreq/governor_performance.c
index 574a06b..af75ddd 100644
--- a/drivers/devfreq/governor_performance.c
+++ b/drivers/devfreq/governor_performance.c
@@ -10,6 +10,7 @@
  */
 
 #include <linux/devfreq.h>
+#include "governor.h"
 
 static int devfreq_performance_func(struct devfreq *df,
 				    unsigned long *freq)
@@ -25,8 +26,14 @@ static int devfreq_performance_func(struct devfreq *df,
 	return 0;
 }
 
+static int performance_init(struct devfreq *devfreq)
+{
+	return update_devfreq(devfreq);
+}
+
 const struct devfreq_governor devfreq_performance = {
 	.name = "performance",
+	.init = performance_init,
 	.get_target_freq = devfreq_performance_func,
 	.no_central_polling = true,
 };
diff --git a/drivers/devfreq/governor_powersave.c b/drivers/devfreq/governor_powersave.c
index d742d4a..fec0cdb 100644
--- a/drivers/devfreq/governor_powersave.c
+++ b/drivers/devfreq/governor_powersave.c
@@ -10,6 +10,7 @@
  */
 
 #include <linux/devfreq.h>
+#include "governor.h"
 
 static int devfreq_powersave_func(struct devfreq *df,
 				  unsigned long *freq)
@@ -22,8 +23,14 @@ static int devfreq_powersave_func(struct devfreq *df,
 	return 0;
 }
 
+static int powersave_init(struct devfreq *devfreq)
+{
+	return update_devfreq(devfreq);
+}
+
 const struct devfreq_governor devfreq_powersave = {
 	.name = "powersave",
+	.init = powersave_init,
 	.get_target_freq = devfreq_powersave_func,
 	.no_central_polling = true,
 };
-- 
1.7.0.4


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

* Re: [PATCH] PM: devfreq: init performance/powersave governor
@ 2012-04-27  4:39 MyungJoo Ham
  2012-04-29 21:09 ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: MyungJoo Ham @ 2012-04-27  4:39 UTC (permalink / raw)
  To: Xiaoguang Chen, linux-kernel@vger.kernel.org
  Cc: khilman@ti.com, 박경민, mturquette@ti.com,
	rjw@sisk.pl

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

> Performance and powersave governor's get_target_freq
> is not called if driver chooses one of these two governors.
> Add init function in governor profile to call update_devfreq
> which will call get_target_freq subsequently.
> 
> Signed-off-by: Xiaoguang Chen <chenxg@marvell.com>
Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>

Hello Xiaoguang,


Yes, if we do not call any QoS, min/max, OPP interfaces or enable polling, we need to call this at init. In fact, this is a bugfix patch.

Thank you!

Cheers!
MyungJoo.



> ---
>  drivers/devfreq/governor_performance.c |    7 +++++++
>  drivers/devfreq/governor_powersave.c   |    7 +++++++
>  2 files changed, 14 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/devfreq/governor_performance.c b/drivers/devfreq/governor_performance.c
> index 574a06b..af75ddd 100644
> --- a/drivers/devfreq/governor_performance.c
> +++ b/drivers/devfreq/governor_performance.c
> @@ -10,6 +10,7 @@
>   */
>  
>  #include <linux/devfreq.h>
> +#include "governor.h"
>  
>  static int devfreq_performance_func(struct devfreq *df,
>  				    unsigned long *freq)
> @@ -25,8 +26,14 @@ static int devfreq_performance_func(struct devfreq *df,
>  	return 0;
>  }
>  
> +static int performance_init(struct devfreq *devfreq)
> +{
> +	return update_devfreq(devfreq);
> +}
> +
>  const struct devfreq_governor devfreq_performance = {
>  	.name = "performance",
> +	.init = performance_init,
>  	.get_target_freq = devfreq_performance_func,
>  	.no_central_polling = true,
>  };
> diff --git a/drivers/devfreq/governor_powersave.c b/drivers/devfreq/governor_powersave.c
> index d742d4a..fec0cdb 100644
> --- a/drivers/devfreq/governor_powersave.c
> +++ b/drivers/devfreq/governor_powersave.c
> @@ -10,6 +10,7 @@
>   */
>  
>  #include <linux/devfreq.h>
> +#include "governor.h"
>  
>  static int devfreq_powersave_func(struct devfreq *df,
>  				  unsigned long *freq)
> @@ -22,8 +23,14 @@ static int devfreq_powersave_func(struct devfreq *df,
>  	return 0;
>  }
>  
> +static int powersave_init(struct devfreq *devfreq)
> +{
> +	return update_devfreq(devfreq);
> +}
> +
>  const struct devfreq_governor devfreq_powersave = {
>  	.name = "powersave",
> +	.init = powersave_init,
>  	.get_target_freq = devfreq_powersave_func,
>  	.no_central_polling = true,
>  };
> -- 
> 1.7.0.4
> 
> 
ÿôèº{.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] 3+ messages in thread

* Re: [PATCH] PM: devfreq: init performance/powersave governor
  2012-04-27  4:39 [PATCH] PM: devfreq: init performance/powersave governor MyungJoo Ham
@ 2012-04-29 21:09 ` Rafael J. Wysocki
  0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2012-04-29 21:09 UTC (permalink / raw)
  To: myungjoo.ham
  Cc: Xiaoguang Chen, linux-kernel@vger.kernel.org, khilman@ti.com,
	박경민, mturquette@ti.com

On Friday, April 27, 2012, MyungJoo Ham wrote:
> > Performance and powersave governor's get_target_freq
> > is not called if driver chooses one of these two governors.
> > Add init function in governor profile to call update_devfreq
> > which will call get_target_freq subsequently.
> > 
> > Signed-off-by: Xiaoguang Chen <chenxg@marvell.com>
> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>

Applied to linux-pm/linux-next.

Thanks,
Rafael


> Hello Xiaoguang,
> 
> 
> Yes, if we do not call any QoS, min/max, OPP interfaces or enable polling, we need to call this at init. In fact, this is a bugfix patch.
> 
> Thank you!
> 
> Cheers!
> MyungJoo.
> 
> 
> 
> > ---
> >  drivers/devfreq/governor_performance.c |    7 +++++++
> >  drivers/devfreq/governor_powersave.c   |    7 +++++++
> >  2 files changed, 14 insertions(+), 0 deletions(-)
> > 
> > diff --git a/drivers/devfreq/governor_performance.c b/drivers/devfreq/governor_performance.c
> > index 574a06b..af75ddd 100644
> > --- a/drivers/devfreq/governor_performance.c
> > +++ b/drivers/devfreq/governor_performance.c
> > @@ -10,6 +10,7 @@
> >   */
> >  
> >  #include <linux/devfreq.h>
> > +#include "governor.h"
> >  
> >  static int devfreq_performance_func(struct devfreq *df,
> >  				    unsigned long *freq)
> > @@ -25,8 +26,14 @@ static int devfreq_performance_func(struct devfreq *df,
> >  	return 0;
> >  }
> >  
> > +static int performance_init(struct devfreq *devfreq)
> > +{
> > +	return update_devfreq(devfreq);
> > +}
> > +
> >  const struct devfreq_governor devfreq_performance = {
> >  	.name = "performance",
> > +	.init = performance_init,
> >  	.get_target_freq = devfreq_performance_func,
> >  	.no_central_polling = true,
> >  };
> > diff --git a/drivers/devfreq/governor_powersave.c b/drivers/devfreq/governor_powersave.c
> > index d742d4a..fec0cdb 100644
> > --- a/drivers/devfreq/governor_powersave.c
> > +++ b/drivers/devfreq/governor_powersave.c
> > @@ -10,6 +10,7 @@
> >   */
> >  
> >  #include <linux/devfreq.h>
> > +#include "governor.h"
> >  
> >  static int devfreq_powersave_func(struct devfreq *df,
> >  				  unsigned long *freq)
> > @@ -22,8 +23,14 @@ static int devfreq_powersave_func(struct devfreq *df,
> >  	return 0;
> >  }
> >  
> > +static int powersave_init(struct devfreq *devfreq)
> > +{
> > +	return update_devfreq(devfreq);
> > +}
> > +
> >  const struct devfreq_governor devfreq_powersave = {
> >  	.name = "powersave",
> > +	.init = powersave_init,
> >  	.get_target_freq = devfreq_powersave_func,
> >  	.no_central_polling = true,
> >  };
> 


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

end of thread, other threads:[~2012-04-29 21:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-27  4:39 [PATCH] PM: devfreq: init performance/powersave governor MyungJoo Ham
2012-04-29 21:09 ` Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2012-04-27  3:16 Xiaoguang Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox