From patchwork Fri Mar 14 21:03:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: dirk.brandewie@gmail.com X-Patchwork-Id: 3835361 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 6AB3CBF540 for ; Fri, 14 Mar 2014 21:05:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6573520328 for ; Fri, 14 Mar 2014 21:05:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6181320138 for ; Fri, 14 Mar 2014 21:05:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755904AbaCNVEK (ORCPT ); Fri, 14 Mar 2014 17:04:10 -0400 Received: from mail-pa0-f53.google.com ([209.85.220.53]:60340 "EHLO mail-pa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756016AbaCNVEJ (ORCPT ); Fri, 14 Mar 2014 17:04:09 -0400 Received: by mail-pa0-f53.google.com with SMTP id ld10so3141673pab.12 for ; Fri, 14 Mar 2014 14:04:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=GPPytprHq6cBU/ARULaLQmE1a8x8Mk+y9zHrinPF3OI=; b=Vy6/FUMgdWcYYXVAA39Ecg1y9XA51JywKACTaH+uYxzf4/84lfvsR0TEYLd6IX8erS vymD34dlIrV9IX77bwC6C8e3c38guNL+clTwo6PJG94qom3CNFB6UdeA2hjuks/rbSaj XN2PqZ7I4J3kwzvmX7U4bIJnNZkGL67bzm4Ar5km5yOSIEnTYeaLkQ7pRe8ohUCpC+n8 OQXlKA2AWOYtq7vgrsK6zb591MXHAqd5BMHyoxoM59htISXG+xKbMaQbQjTJ5dD9Aiwo Z78Hj77ZuW6+7pwnkrvcG7aKAOsgqaK8pOWuknjblxqnICdLfAW6lWkrUcAxw3Wfpiuk 17uw== X-Received: by 10.68.250.3 with SMTP id yy3mr11379178pbc.56.1394831048689; Fri, 14 Mar 2014 14:04:08 -0700 (PDT) Received: from echolake.localdomain (static-50-43-42-35.bvtn.or.frontiernet.net. [50.43.42.35]) by mx.google.com with ESMTPSA id j3sm19554362pbh.38.2014.03.14.14.04.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 14 Mar 2014 14:04:07 -0700 (PDT) From: dirk.brandewie@gmail.com To: linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org, rjw@rjwysocki.net, patrick.marlier@gmail.com, dirk.brandewie@gmail.com, Dirk Brandewie Subject: [PATCH v2 1/2] cpufreq: Add exit_prepare callback to cpufreq_driver interface Date: Fri, 14 Mar 2014 14:03:56 -0700 Message-Id: <1394831037-15553-2-git-send-email-dirk.j.brandewie@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1394831037-15553-1-git-send-email-dirk.j.brandewie@intel.com> References: <16035918.jZXKnQ3yiq@vostro.rjw.lan> <1394831037-15553-1-git-send-email-dirk.j.brandewie@intel.com> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Dirk Brandewie This callback allows the driver to do clean up before the CPU is completely down and its state cannot be modified. This is used by the intel_pstate driver to reduce the requested P state prior to the core going away. This is required because the requested P state of the offline core is used to select the package P state. This effectively sets the floor package P state to the requested P state on the offline core. Signed-off-by: Dirk Brandewie --- Documentation/cpu-freq/cpu-drivers.txt | 8 +++++++- drivers/cpufreq/cpufreq.c | 3 +++ include/linux/cpufreq.h | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Documentation/cpu-freq/cpu-drivers.txt b/Documentation/cpu-freq/cpu-drivers.txt index 8b1a445..79def80 100644 --- a/Documentation/cpu-freq/cpu-drivers.txt +++ b/Documentation/cpu-freq/cpu-drivers.txt @@ -61,7 +61,13 @@ target_index - See below on the differences. And optionally -cpufreq_driver.exit - A pointer to a per-CPU cleanup function. +cpufreq_driver.exit - A pointer to a per-CPU cleanup + function called during CPU_POST_DEAD + phase of cpu hotplug process. + +cpufreq_driver.stop - A pointer to a per-CPU stop function + called during CPU_DOWN_PREPARE phase of + cpu hotplug process. cpufreq_driver.resume - A pointer to a per-CPU resume function which is called with interrupts disabled diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index cf485d9..0d430d7 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -1338,6 +1338,9 @@ static int __cpufreq_remove_dev_prepare(struct device *dev, } } + if (cpufreq_driver->stop) + cpufreq_driver->stop(policy); + return 0; } diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 4d89e0e..ff8db19 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h @@ -224,6 +224,7 @@ struct cpufreq_driver { int (*bios_limit) (int cpu, unsigned int *limit); int (*exit) (struct cpufreq_policy *policy); + int (*stop) (struct cpufreq_policy *policy); int (*suspend) (struct cpufreq_policy *policy); int (*resume) (struct cpufreq_policy *policy); struct freq_attr **attr;