From patchwork Tue Apr 25 10:27:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 98198 Delivered-To: patch@linaro.org Received: by 10.140.109.52 with SMTP id k49csp1880851qgf; Tue, 25 Apr 2017 03:31:33 -0700 (PDT) X-Received: by 10.84.222.8 with SMTP id w8mr37431420pls.103.1493116293894; Tue, 25 Apr 2017 03:31:33 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v37si4674233plg.227.2017.04.25.03.31.33; Tue, 25 Apr 2017 03:31:33 -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; dkim=pass header.i=@linaro.org; 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; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1176616AbdDYKbZ (ORCPT + 10 others); Tue, 25 Apr 2017 06:31:25 -0400 Received: from mail-pg0-f50.google.com ([74.125.83.50]:36107 "EHLO mail-pg0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1429567AbdDYK2G (ORCPT ); Tue, 25 Apr 2017 06:28:06 -0400 Received: by mail-pg0-f50.google.com with SMTP id g2so26438506pge.3 for ; Tue, 25 Apr 2017 03:28:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=aToqOncvUb3fhanrOlGuMX2MgJIDAzomj2BarJDd/4s=; b=aNZ8zHE4qTngh387h+qN8t0QRc7oHu6+0O9b6sIons9azAd51neC/zhDvr9vu7uSx+ BANnaiS+BiuNkdF4YgbEoSAFhzhomGbvGRisgv5k2OLjEzCWK0nF3V+P2XsCdA3aFbmv rMlOdObnLAYHd9vYftYmDhwVw6eaVU5SY+s/8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=aToqOncvUb3fhanrOlGuMX2MgJIDAzomj2BarJDd/4s=; b=VC8ZsBLbaQRIIadv9Tjd/heN1RKbBi5G9utg0GHW4BSQqkt+JSaJEuPyy4NEKoIt5m BfrKyXlr1jD4J2CzI1ETUiaZjWEfGSoM7BhCGQwJU9+A2CEr2WfnE4D+87JEQjdksY77 n6KAmd2OWAnlSRoBk0lroE7UKjep34KnaoQsVZUlrc6P3X9v1bpmGHhmzkRI1sB2s8OE IQ7ARqZXHQp+Rdb+mTVeEZ2aaN+HjJcCqRNkW7C2PXwNd1WYManQPwlP/meMK8Qdh0mV ASGw50O1JCbvEJ2imHK5fn50tRyKDFUfnRkthrK0a8MKqi0PicGt73fT86CS3dU2XJS1 OTSw== X-Gm-Message-State: AN3rC/7dm79ur1+UxHGpx5IrBA95K7OwZN+abUluOZykNXuxn22tXmAs Jg+Nkdor/hihpGk/ X-Received: by 10.99.123.7 with SMTP id w7mr14316476pgc.82.1493116079833; Tue, 25 Apr 2017 03:27:59 -0700 (PDT) Received: from localhost ([122.172.121.5]) by smtp.gmail.com with ESMTPSA id p28sm35773003pfd.53.2017.04.25.03.27.58 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Apr 2017 03:27:59 -0700 (PDT) From: Viresh Kumar To: Javi Merino , Zhang Rui , Eduardo Valentin , Lukasz Luba , Amit Daniel Kachhap , Viresh Kumar Cc: linaro-kernel@lists.linaro.org, Rafael Wysocki , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Vincent Guittot , Punit Agrawal Subject: [PATCH V4 09/17] thermal: cpu_cooling: store cpufreq policy Date: Tue, 25 Apr 2017 15:57:16 +0530 Message-Id: X-Mailer: git-send-email 2.12.0.432.g71c3a4f4ba37 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The cpufreq policy can be used by the cpu_cooling driver, lets store it in the cpufreq_cooling_device structure. Signed-off-by: Viresh Kumar Tested-by: Lukasz Luba --- drivers/thermal/cpu_cooling.c | 3 +++ 1 file changed, 3 insertions(+) -- 2.12.0.432.g71c3a4f4ba37 diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c index 55ff45c1e917..7dddc7443f5d 100644 --- a/drivers/thermal/cpu_cooling.c +++ b/drivers/thermal/cpu_cooling.c @@ -67,6 +67,7 @@ struct power_table { * registered. * @cdev: thermal_cooling_device pointer to keep track of the * registered cooling device. + * @policy: cpufreq policy. * @cpufreq_state: integer value representing the current state of cpufreq * cooling devices. * @clipped_freq: integer value representing the absolute value of the clipped @@ -91,6 +92,7 @@ struct power_table { struct cpufreq_cooling_device { int id; struct thermal_cooling_device *cdev; + struct cpufreq_policy *policy; unsigned int cpufreq_state; unsigned int clipped_freq; unsigned int max_level; @@ -760,6 +762,7 @@ __cpufreq_cooling_register(struct device_node *np, if (!cpufreq_cdev) return ERR_PTR(-ENOMEM); + cpufreq_cdev->policy = policy; num_cpus = cpumask_weight(policy->related_cpus); cpufreq_cdev->time_in_idle = kcalloc(num_cpus, sizeof(*cpufreq_cdev->time_in_idle),