public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [STABLE 5.15][PATCH] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util
@ 2024-04-04 10:13 Lukasz Luba
  2024-04-05  9:33 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Lukasz Luba @ 2024-04-04 10:13 UTC (permalink / raw)
  To: linux-kernel, gregkh
  Cc: lukasz.luba, stable, ye.zhang, d-gole, rafael, Rafael J . Wysocki

From: Ye Zhang <ye.zhang@rock-chips.com>

The issue occurs when the devfreq cooling device uses the EM power model
and the get_real_power() callback is provided by the driver.

The EM power table is sorted ascending,can't index the table by cooling
device state,so convert cooling state to performance state by
dfc->max_state - dfc->capped_state.

Fixes: 615510fe13bd ("thermal: devfreq_cooling: remove old power model and use EM")
Cc: 5.11+ <stable@vger.kernel.org> # 5.11+
Signed-off-by: Ye Zhang <ye.zhang@rock-chips.com>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Lukasz Luba <lukasz.luba@arm.com>
---

Hi Greg,

I have solved small backporting conflict to that v5.15.
The patch is based on tag v5.15.99 and it's for this
failing backport:
https://lore.kernel.org/stable/2024033050-imitation-unmixed-ef53@gregkh/

Regards,
Lukasz Luba



 drivers/thermal/devfreq_cooling.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/devfreq_cooling.c b/drivers/thermal/devfreq_cooling.c
index d38a80adec733..5be79b5d788e5 100644
--- a/drivers/thermal/devfreq_cooling.c
+++ b/drivers/thermal/devfreq_cooling.c
@@ -199,7 +199,7 @@ static int devfreq_cooling_get_requested_power(struct thermal_cooling_device *cd
 
 		res = dfc->power_ops->get_real_power(df, power, freq, voltage);
 		if (!res) {
-			state = dfc->capped_state;
+			state = dfc->max_state - dfc->capped_state;
 			dfc->res_util = dfc->em_pd->table[state].power;
 			dfc->res_util *= SCALE_ERROR_MITIGATION;
 
-- 
2.25.1


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

* Re: [STABLE 5.15][PATCH] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util
  2024-04-04 10:13 [STABLE 5.15][PATCH] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util Lukasz Luba
@ 2024-04-05  9:33 ` Greg KH
  2024-04-05  9:34   ` Lukasz Luba
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2024-04-05  9:33 UTC (permalink / raw)
  To: Lukasz Luba
  Cc: linux-kernel, stable, ye.zhang, d-gole, rafael,
	Rafael J . Wysocki

On Thu, Apr 04, 2024 at 11:13:29AM +0100, Lukasz Luba wrote:
> From: Ye Zhang <ye.zhang@rock-chips.com>
> 
> The issue occurs when the devfreq cooling device uses the EM power model
> and the get_real_power() callback is provided by the driver.
> 
> The EM power table is sorted ascending,can't index the table by cooling
> device state,so convert cooling state to performance state by
> dfc->max_state - dfc->capped_state.
> 
> Fixes: 615510fe13bd ("thermal: devfreq_cooling: remove old power model and use EM")
> Cc: 5.11+ <stable@vger.kernel.org> # 5.11+
> Signed-off-by: Ye Zhang <ye.zhang@rock-chips.com>
> Reviewed-by: Dhruva Gole <d-gole@ti.com>
> Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> Signed-off-by: Lukasz Luba <lukasz.luba@arm.com>
> ---
> 
> Hi Greg,
> 
> I have solved small backporting conflict to that v5.15.
> The patch is based on tag v5.15.99 and it's for this
> failing backport:
> https://lore.kernel.org/stable/2024033050-imitation-unmixed-ef53@gregkh/

Thanks, next time all that I need is the git id of this in Linus's tree,
no need to point to a previous FAILED email.

now queued up.

greg k-h

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

* Re: [STABLE 5.15][PATCH] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util
  2024-04-05  9:33 ` Greg KH
@ 2024-04-05  9:34   ` Lukasz Luba
  0 siblings, 0 replies; 3+ messages in thread
From: Lukasz Luba @ 2024-04-05  9:34 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, stable, ye.zhang, d-gole, rafael,
	Rafael J . Wysocki



On 4/5/24 10:33, Greg KH wrote:
> On Thu, Apr 04, 2024 at 11:13:29AM +0100, Lukasz Luba wrote:
>> From: Ye Zhang <ye.zhang@rock-chips.com>
>>
>> The issue occurs when the devfreq cooling device uses the EM power model
>> and the get_real_power() callback is provided by the driver.
>>
>> The EM power table is sorted ascending,can't index the table by cooling
>> device state,so convert cooling state to performance state by
>> dfc->max_state - dfc->capped_state.
>>
>> Fixes: 615510fe13bd ("thermal: devfreq_cooling: remove old power model and use EM")
>> Cc: 5.11+ <stable@vger.kernel.org> # 5.11+
>> Signed-off-by: Ye Zhang <ye.zhang@rock-chips.com>
>> Reviewed-by: Dhruva Gole <d-gole@ti.com>
>> Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
>> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
>> Signed-off-by: Lukasz Luba <lukasz.luba@arm.com>
>> ---
>>
>> Hi Greg,
>>
>> I have solved small backporting conflict to that v5.15.
>> The patch is based on tag v5.15.99 and it's for this
>> failing backport:
>> https://lore.kernel.org/stable/2024033050-imitation-unmixed-ef53@gregkh/
> 
> Thanks, next time all that I need is the git id of this in Linus's tree,
> no need to point to a previous FAILED email.

OK, I will remember.

Regards,
Lukasz

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

end of thread, other threads:[~2024-04-05  9:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-04 10:13 [STABLE 5.15][PATCH] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util Lukasz Luba
2024-04-05  9:33 ` Greg KH
2024-04-05  9:34   ` Lukasz Luba

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