[PATCH 1/4] arm: topology: remove cpu_efficiency
From: vincent.guittot@linaro.org (Vincent Guittot)
Date: 2017-09-06 12:40:43
Also in:
linux-devicetree, linux-renesas-soc, linux-samsung-soc, lkml
On 6 September 2017 at 13:43, Dietmar Eggemann [off-list ref] wrote:
Hi Vincent, On 04/09/17 08:49, Vincent Guittot wrote:quoted
Hi Dietmar, Removing cpu effificiency table looks good to me. Nevertheless, i have some comments below for this patch.Thanks for the review!quoted
On 30 August 2017 at 16:41, Dietmar Eggemann [off-list ref] wrote:quoted
Remove the 'cpu_efficiency/clock-frequency dt property' based solution to set cpu capacity which was only working for Cortex-A15/A7 arm big.LITTLE systems. I.e. the 'capacity-dmips-mhz' based solution is now the only one. It is shared between arm and arm64 and works for every big.LITTLE system no matter which core types it consists of. Cc: Russell King <redacted> Cc: Vincent Guittot <vincent.guittot@linaro.org> Cc: Juri Lelli <redacted> Signed-off-by: Dietmar Eggemann <dietmar.eggemann@arm.com> --- arch/arm/kernel/topology.c | 113 ++------------------------------------------- 1 file changed, 3 insertions(+), 110 deletions(-)[...]quoted
quoted
@@ -115,73 +70,13 @@ static void __init parse_dt_topology(void) of_node_put(cn); continue;AFAICT, this continue is now useless as it was there to skipe the cpu table efficiency methodYou're right ... will remove it. [...]quoted
quoted
- if (cap_from_dt) - topology_normalize_cpu_scale();Why have you moved the call to topology_normalize_cpu_scale() from parse_dt_topology() to update_cpu_capacity() ?Didn't move it ? It's still called from parse_dt_topology().quoted
You should keep it in parse_dt_topology() as itis part of the dt parsing sequenceYes, this should be the case. [...]quoted
quoted
-/* - * Look for a customed capacity of a CPU in the cpu_capacity table during the - * boot. The update of all CPUs is in O(n^2) for heteregeneous system but the - * function returns directly for SMP system. - */ -static void update_cpu_capacity(unsigned int cpu) -{ - if (!cpu_capacity(cpu) || cap_from_dt) - return; - - topology_set_cpu_scale(cpu, cpu_capacity(cpu) / middle_capacity); - - pr_info("CPU%u: update cpu_capacity %lu\n", - cpu, topology_get_cpu_scale(NULL, cpu)); + topology_normalize_cpu_scale(); }You can probably just removed update_cpu_capacity()I did remove update_cpu_capacity(). Maybe the patch layout is confusing?
yes you're right I have been confused by the layout
[...]