From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752857AbdGHMRY (ORCPT ); Sat, 8 Jul 2017 08:17:24 -0400 Received: from cloudserver094114.home.net.pl ([79.96.170.134]:41038 "EHLO cloudserver094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752797AbdGHMRX (ORCPT ); Sat, 8 Jul 2017 08:17:23 -0400 From: "Rafael J. Wysocki" To: Dietmar Eggemann , Peter Zijlstra Cc: "Rafael J. Wysocki" , Viresh Kumar , Linux Kernel Mailing List , Linux PM , Russell King - ARM Linux , Greg Kroah-Hartman , Russell King , Catalin Marinas , Will Deacon , Juri Lelli , Vincent Guittot , Morten Rasmussen Subject: Re: [PATCH v2 02/10] cpufreq: provide data for frequency-invariant load-tracking support Date: Sat, 08 Jul 2017 14:09:37 +0200 Message-ID: <12829054.TWIodSo4bb@aspire.rjw.lan> User-Agent: KMail/4.14.10 (Linux/4.12.0-rc1+; KDE/4.14.9; x86_64; ; ) In-Reply-To: <22f004af-0158-8265-2da5-34743f294bfb@arm.com> References: <20170706094948.8779-1-dietmar.eggemann@arm.com> <22f004af-0158-8265-2da5-34743f294bfb@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Friday, July 07, 2017 06:06:30 PM Dietmar Eggemann wrote: > On 07/07/17 17:18, Rafael J. Wysocki wrote: > > On Fri, Jul 7, 2017 at 6:01 PM, Dietmar Eggemann > > wrote: > >> On 06/07/17 11:40, Viresh Kumar wrote: > >>> On 06-07-17, 10:49, Dietmar Eggemann wrote: > > [...] > > >> So what about I call arch_set_freq_scale() in __cpufreq_notify_transition() in the > >> CPUFREQ_POSTCHANGE case for slow-switching and in cpufreq_driver_fast_switch() for > >> fast-switching? > > > > Why don't you do this in drivers instead of in the core? > > > > Ultimately, the driver knows what frequency it has requested, so why > > can't it call arch_set_freq_scale()? > > That's correct but for arm/arm64 we have a lot of different cpufreq > drivers to deal with. And doing this call to arch_set_freq_scale() once > in the cpufreq core will cover them all. > > [...] I'm sort of wondering how many is "a lot" really. For instance, do you really want all of the existing ARM platforms to use the new stuff even though it may regress things there in principle? Anyway, if everyone agrees that doing it in the core is the way to go (Peter?), why don't you introduce a __weak function for setting policy->cur and override it from your arch so as to call arch_set_freq_scale() from there? Thanks, Rafael