From patchwork Thu Jul 6 09:49:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dietmar Eggemann X-Patchwork-Id: 107105 Delivered-To: patch@linaro.org Received: by 10.140.101.44 with SMTP id t41csp1883115qge; Thu, 6 Jul 2017 02:52:30 -0700 (PDT) X-Received: by 10.99.6.145 with SMTP id 139mr25403458pgg.157.1499334750110; Thu, 06 Jul 2017 02:52:30 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1499334750; cv=none; d=google.com; s=arc-20160816; b=Xr6wk5Ug4OKeAUDZcqV2jjqsOaKB6YThk6B9ItuIcxSbRmwMNs6C4OYrS0y4kLmaTJ OQ28IfvpA4U3tZYopBY/32/eDAQy8EIoDXgxTmIrxEkJyeRIua5MTl2SJlioqZTbEwNz VhTfkLH9cjleJ3IDJsWl96T/Q1TUgCQ0amRL7izri5+/V8ZZWKSwTKs6b6jhQ83yG2lZ 0PwRRdOPOKa/BYeLT++kwpmsPe5KWZv7N87VjkVwRIWWlqJ2IC0hmYtUnvnlauAW8guz DgXqknq321ghhpZxX/qJ5C2VRo8xjpYGW1Osn/mb3iFGArC1z+SDqY/nnzpNFXbOjamE NQdw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=TZkHLwvNAaPxhK8hIQ1D9gwtO7t5CaSiI18qISl6Ffs=; b=kpDCxnf8I8A4moLylbKFo4RTXpJHAsh8n3K1/Rd1kSbkduEAyvy3SQuXiuyAlGMdaZ psX4urP2Hz8uNNorDhboVyCr4SHElc7Lv0g3BmG/567/zhvVbCxffqcgN3aAgt/eXjW4 8+kkaFC2VNNEht1LDFTALJu/Ahdhh4L75uF5KYgLLV8/tzItqkzCTpGgsZa2HVlxVRQF sCpUBgKRQX2gdCTNgCkGiewN19/4OjtrBEkwBuG/i4AgOA/3S4YLTuYRJ9T8xOrDK2kv 3lQSHUAVGExPr0lGeHsTMrcN9GqJ+aG4Rw5P/736+Zy38e8H0g8pUvzNMtAiVTZxYcuU mQuA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x5si1133541pgj.373.2017.07.06.02.52.29; Thu, 06 Jul 2017 02:52:30 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752642AbdGFJwG (ORCPT + 25 others); Thu, 6 Jul 2017 05:52:06 -0400 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:36086 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752222AbdGFJuW (ORCPT ); Thu, 6 Jul 2017 05:50:22 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8D3D715BF; Thu, 6 Jul 2017 02:50:22 -0700 (PDT) Received: from e107985-lin.cambridge.arm.com (e107985-lin.cambridge.arm.com [10.1.210.41]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 8EF473F3E1; Thu, 6 Jul 2017 02:50:20 -0700 (PDT) From: Dietmar Eggemann To: linux-kernel@vger.kernel.org Cc: linux-pm@vger.kernel.org, linux@arm.linux.org.uk, Greg Kroah-Hartman , Russell King , Catalin Marinas , Will Deacon , Juri Lelli , Vincent Guittot , Peter Zijlstra , Morten Rasmussen , Viresh Kumar , "Rafael J . Wysocki" Subject: [PATCH v2 03/10] drivers base/arch_topology: frequency-invariant load-tracking support Date: Thu, 6 Jul 2017 10:49:41 +0100 Message-Id: <20170706094948.8779-4-dietmar.eggemann@arm.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170706094948.8779-1-dietmar.eggemann@arm.com> References: <20170706094948.8779-1-dietmar.eggemann@arm.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Implements an arch-specific frequency-scaling function topology_get_freq_scale() which provides the following frequency scaling factor: current_freq(cpu) << SCHED_CAPACITY_SHIFT / max_supported_freq(cpu) One possible consumer of this is the Per-Entity Load Tracking (PELT) mechanism of the task scheduler. Cc: Greg Kroah-Hartman Cc: Juri Lelli Signed-off-by: Dietmar Eggemann --- drivers/base/arch_topology.c | 20 ++++++++++++++++++++ include/linux/arch_topology.h | 7 +++++++ 2 files changed, 27 insertions(+) -- 2.11.0 Reviewed-by: Viresh Kumar diff --git a/drivers/base/arch_topology.c b/drivers/base/arch_topology.c index f4832c662762..63fb3f945d21 100644 --- a/drivers/base/arch_topology.c +++ b/drivers/base/arch_topology.c @@ -22,6 +22,26 @@ #include #include +static DEFINE_PER_CPU(unsigned long, freq_scale) = SCHED_CAPACITY_SCALE; + +unsigned long topology_get_freq_scale(struct sched_domain *sd, int cpu) +{ + return per_cpu(freq_scale, cpu); +} + +void topology_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq, + unsigned long max_freq) +{ + unsigned long scale; + int i; + + scale = (cur_freq << SCHED_CAPACITY_SHIFT) / max_freq; + + for_each_cpu(i, cpus) + per_cpu(freq_scale, i) = scale; +} + + static DEFINE_MUTEX(cpu_scale_mutex); static DEFINE_PER_CPU(unsigned long, cpu_scale) = SCHED_CAPACITY_SCALE; diff --git a/include/linux/arch_topology.h b/include/linux/arch_topology.h index 9af3c174c03a..168104d2d2cf 100644 --- a/include/linux/arch_topology.h +++ b/include/linux/arch_topology.h @@ -4,6 +4,8 @@ #ifndef _LINUX_ARCH_TOPOLOGY_H_ #define _LINUX_ARCH_TOPOLOGY_H_ +#include + void topology_normalize_cpu_scale(void); struct device_node; @@ -14,4 +16,9 @@ unsigned long topology_get_cpu_scale(struct sched_domain *sd, int cpu); void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity); +unsigned long topology_get_freq_scale(struct sched_domain *sd, int cpu); + +void topology_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq, + unsigned long max_freq); + #endif /* _LINUX_ARCH_TOPOLOGY_H_ */