linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] devfreq: simple_ondemand: Update devfreq stats when governor started
@ 2017-07-18 10:02 Jeffy Chen
       [not found] ` <CGME20170718100259epcas3p2886849647d4a6fe257a4e12854a10f7c@epcms1p8>
  0 siblings, 1 reply; 4+ messages in thread
From: Jeffy Chen @ 2017-07-18 10:02 UTC (permalink / raw)
  To: linux-kernel
  Cc: rui.zhang, briannorris, javi.merino, dianders, lukasz.luba,
	Jeffy Chen, Chanwoo Choi, Kyungmin Park, MyungJoo Ham, linux-pm

If governor suspends soon after started, it may not have the chance to
update devfreq stats, which leaves devfreq stats' current frequence be
zero.

So when the thermal core tries to throttle the power, it would failed
to get the correct static power of current frequence and print these
warnings:
[    2.024735] core: dev_pm_opp_get_voltage: Invalid parameters
[    2.024743] mali ff9a0000.gpu: Failed to get voltage for frequency 0:
-34
...
[    2.026320] core: dev_pm_opp_get_voltage: Invalid parameters
[    2.026327] mali ff9a0000.gpu: Failed to get voltage for frequency 0:
-34

Update devfreq stats when governor started to avoid that.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

 drivers/devfreq/governor_simpleondemand.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/devfreq/governor_simpleondemand.c b/drivers/devfreq/governor_simpleondemand.c
index ae72ba5..26e0e58 100644
--- a/drivers/devfreq/governor_simpleondemand.c
+++ b/drivers/devfreq/governor_simpleondemand.c
@@ -98,6 +98,7 @@ static int devfreq_simple_ondemand_handler(struct devfreq *devfreq,
 {
 	switch (event) {
 	case DEVFREQ_GOV_START:
+		devfreq_update_stats(devfreq);
 		devfreq_monitor_start(devfreq);
 		break;
 
-- 
2.1.4

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

end of thread, other threads:[~2017-07-19  4:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-18 10:02 [PATCH] devfreq: simple_ondemand: Update devfreq stats when governor started Jeffy Chen
     [not found] ` <CGME20170718100259epcas3p2886849647d4a6fe257a4e12854a10f7c@epcms1p8>
2017-07-18 10:35   ` MyungJoo Ham
2017-07-18 11:27     ` jeffy
2017-07-19  4:28       ` jeffy

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).