Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751819AbbLaRVf (ORCPT ); Thu, 31 Dec 2015 12:21:35 -0500 Received: from mail-pf0-f182.google.com ([209.85.192.182]:35770 "EHLO mail-pf0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751137AbbLaRVa (ORCPT ); Thu, 31 Dec 2015 12:21:30 -0500 Date: Thu, 31 Dec 2015 09:21:26 -0800 From: Eduardo Valentin To: Leo Yan Cc: Zhang Rui , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, javi.merino@arm.com Subject: Re: [PATCH v2] thermal: re-calculate k_po/k_pu when update sustainable power Message-ID: <20151231172125.GA11863@localhost.localdomain> References: <1451471920-2148-1-git-send-email-leo.yan@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1451471920-2148-1-git-send-email-leo.yan@linaro.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1927 Lines: 53 On Wed, Dec 30, 2015 at 06:38:40PM +0800, Leo Yan wrote: > k_po/k_pu are in essence ratio values compared with sustainable power. > So when update sustainable power, we can recalculate k_po/k_pu simply > with below formula: > > sustainable_power(new) > k_p(new) = ---------------------- * k_p(old) > sustainable_power(old) > > Signed-off-by: Leo Yan > --- > drivers/thermal/thermal_core.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c > index d9e525c..223f8df 100644 > --- a/drivers/thermal/thermal_core.c > +++ b/drivers/thermal/thermal_core.c > @@ -908,7 +908,7 @@ sustainable_power_store(struct device *dev, struct device_attribute *devattr, > const char *buf, size_t count) > { > struct thermal_zone_device *tz = to_thermal_zone(dev); > - u32 sustainable_power; > + u32 sustainable_power, old_val; > > if (!tz->tzp) > return -EIO; > @@ -916,8 +916,12 @@ sustainable_power_store(struct device *dev, struct device_attribute *devattr, > if (kstrtou32(buf, 10, &sustainable_power)) > return -EINVAL; > > + old_val = tz->tzp->sustainable_power; > + > tz->tzp->sustainable_power = sustainable_power; > > + tz->tzp->k_po = (tz->tzp->k_po * sustainable_power) / old_val; > + tz->tzp->k_pu = (tz->tzp->k_pu * sustainable_power) / old_val; I believe this has to be done by the governor. These properties are power_allocator specific. thermal_core should not really care about them. > return count; > } > static DEVICE_ATTR(sustainable_power, S_IWUSR | S_IRUGO, sustainable_power_show, > -- > 1.9.1 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/