From patchwork Tue Oct 4 11:56:49 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 77256 Delivered-To: patch@linaro.org Received: by 10.140.106.72 with SMTP id d66csp2173662qgf; Tue, 4 Oct 2016 04:57:47 -0700 (PDT) X-Received: by 10.98.90.133 with SMTP id o127mr5259677pfb.61.1475582267685; Tue, 04 Oct 2016 04:57:47 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l8si42358172pfi.252.2016.10.04.04.57.47; Tue, 04 Oct 2016 04:57:47 -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 dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754010AbcJDL5f (ORCPT + 27 others); Tue, 4 Oct 2016 07:57:35 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:34583 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753942AbcJDL5a (ORCPT ); Tue, 4 Oct 2016 07:57:30 -0400 Received: by mail-pa0-f46.google.com with SMTP id rz1so17383593pab.1 for ; Tue, 04 Oct 2016 04:57:28 -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=6OaH5UM4RJlLcqhvIAJcTgJlfm1S8HAut/pfTIUxHzM=; b=HKtpr1apnh4CFfHdSYHePny6P8eRNwPfyDbPN4uFchZqWINzbnPTXGxRumjMBaRiwN S31Jstm6d//qDhTFqXm/pJnNHfZYqY3Hy9evHX7IP9zp06hBuO36f5fhpiBUj8znzRH4 g/EOujhXsoHYgJdh3ZjDc9y4G8akc6TD/putU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=6OaH5UM4RJlLcqhvIAJcTgJlfm1S8HAut/pfTIUxHzM=; b=l3rZICEMo2yKQBeG6uI7JrajKleKSHWqAUoW1WdggFG9jGhRtQSE70mHoF6fg0/snO wU0PEuOCMfNOSme9rwXVm3DFsJyYqGMKxr8/9mbWt4/APXUb5ixjJMEe0Flqsmz/YET3 lsHaGkv55eO9gzPll0yJRenWEoINeox58aJq4tpW+ABYB2aCsWFEMEQ0ruRQejs/4+So qoivAFw04hvi+B/NOWmgV9h8KzwcmZzgQfQvHbCkKp3a6kgcgBIotMLxmnT9xf0AD25P h1vGl0hWtt7wgh7HB+85TLMGLJ4XLb1+RWZcTK3rAF6H1YkspNK7+NWxwqYcExYDUBDv 7DHA== X-Gm-Message-State: AA6/9RlNwAG5a5ABetFr0nJrLYmvqoUKhYy8ao8zGPi2E3K0RTaq0LyKChtK3iw9EFzg/mx6 X-Received: by 10.66.19.161 with SMTP id g1mr4491443pae.11.1475582248244; Tue, 04 Oct 2016 04:57:28 -0700 (PDT) Received: from localhost ([122.171.115.29]) by smtp.gmail.com with ESMTPSA id bu15sm5457862pac.15.2016.10.04.04.57.26 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 04 Oct 2016 04:57:27 -0700 (PDT) From: Viresh Kumar To: Rafael Wysocki , nm@ti.com, sboyd@codeaurora.org, Viresh Kumar Cc: linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Vincent Guittot , robh@kernel.org, d-gerlach@ti.com, broonie@kernel.org, Viresh Kumar Subject: [PATCH 7/8] PM / OPP: Allow platform specific custom opp_set_rate() callbacks Date: Tue, 4 Oct 2016 17:26:49 +0530 Message-Id: X-Mailer: git-send-email 2.7.1.410.g6faf27b 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 generic opp_set_rate() handler isn't sufficient for platforms with complex DVFS. For example, some TI platforms have multiple regulators for a CPU device. The order in which various supplies need to be programmed is only known to the platform code and its best to leave it to it. This patch implements APIs to register platform specific opp_set_rate() callback. Signed-off-by: Viresh Kumar --- drivers/base/power/opp/core.c | 114 +++++++++++++++++++++++++++++++++++++++++- drivers/base/power/opp/opp.h | 1 + include/linux/pm_opp.h | 10 ++++ 3 files changed, 124 insertions(+), 1 deletion(-) -- 2.7.1.410.g6faf27b diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c index 96f04392daef..f7c4ef194aac 100644 --- a/drivers/base/power/opp/core.c +++ b/drivers/base/power/opp/core.c @@ -677,6 +677,7 @@ int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq) { struct opp_table *opp_table; unsigned long freq, old_freq; + int (*set_rate)(struct device *dev, struct dev_pm_set_rate_data *data); struct dev_pm_opp *old_opp, *opp; struct regulator **regulators; struct dev_pm_set_rate_data *data; @@ -738,6 +739,11 @@ int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq) return _generic_opp_set_rate_clk_only(dev, clk, old_freq, freq); } + if (opp_table->set_rate) + set_rate = opp_table->set_rate; + else + set_rate = _generic_opp_set_rate; + data = opp_table->set_rate_data; data->regulators = regulators; data->regulator_count = opp_table->regulator_count; @@ -755,7 +761,7 @@ int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq) rcu_read_unlock(); - return _generic_opp_set_rate(dev, data); + return set_rate(dev, data); } EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate); @@ -889,6 +895,9 @@ static void _remove_opp_table(struct opp_table *opp_table) if (opp_table->regulators) return; + if (opp_table->set_rate) + return; + /* Release clk */ if (!IS_ERR(opp_table->clk)) clk_put(opp_table->clk); @@ -1562,6 +1571,109 @@ void dev_pm_opp_put_regulators(struct device *dev) EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulators); /** + * dev_pm_opp_register_set_rate_helper() - Register custom OPP set rate helper + * @dev: Device for which the helper is getting registered. + * @set_rate: Custom OPP set rate helper. + * + * This is useful to support complex platforms (like platforms with multiple + * regulators per device), instead of the generic OPP set rate helper. + * + * This must be called before any OPPs are initialized for the device. + * + * Locking: The internal opp_table and opp structures are RCU protected. + * Hence this function internally uses RCU updater strategy with mutex locks + * to keep the integrity of the internal data structures. Callers should ensure + * that this function is *NOT* called under RCU protection or in contexts where + * mutex cannot be locked. + */ +int dev_pm_opp_register_set_rate_helper(struct device *dev, + int (*set_rate)(struct device *dev, struct dev_pm_set_rate_data *data)) +{ + struct opp_table *opp_table; + int ret; + + if (!set_rate) + return -EINVAL; + + mutex_lock(&opp_table_lock); + + opp_table = _add_opp_table(dev); + if (!opp_table) { + ret = -ENOMEM; + goto unlock; + } + + /* This should be called before OPPs are initialized */ + if (WARN_ON(!list_empty(&opp_table->opp_list))) { + ret = -EBUSY; + goto err; + } + + /* Already have custom set_rate helper */ + if (WARN_ON(opp_table->set_rate)) { + ret = -EBUSY; + goto err; + } + + opp_table->set_rate = set_rate; + + mutex_unlock(&opp_table_lock); + return 0; + +err: + _remove_opp_table(opp_table); +unlock: + mutex_unlock(&opp_table_lock); + + return ret; +} +EXPORT_SYMBOL_GPL(dev_pm_opp_register_set_rate_helper); + +/** + * dev_pm_opp_register_put_rate_helper() - Releases resources blocked for + * set_rate helper + * @dev: Device for which custom set_rate helper has to be cleared. + * + * Locking: The internal opp_table and opp structures are RCU protected. + * Hence this function internally uses RCU updater strategy with mutex locks + * to keep the integrity of the internal data structures. Callers should ensure + * that this function is *NOT* called under RCU protection or in contexts where + * mutex cannot be locked. + */ +void dev_pm_opp_register_put_rate_helper(struct device *dev) +{ + struct opp_table *opp_table; + + mutex_lock(&opp_table_lock); + + /* Check for existing table for 'dev' first */ + opp_table = _find_opp_table(dev); + if (IS_ERR(opp_table)) { + dev_err(dev, "Failed to find opp_table: %ld\n", + PTR_ERR(opp_table)); + goto unlock; + } + + if (!opp_table->set_rate) { + dev_err(dev, "%s: Doesn't have custom set_rate helper set\n", + __func__); + goto unlock; + } + + /* Make sure there are no concurrent readers while updating opp_table */ + WARN_ON(!list_empty(&opp_table->opp_list)); + + opp_table->set_rate = NULL; + + /* Try freeing opp_table if this was the last blocking resource */ + _remove_opp_table(opp_table); + +unlock: + mutex_unlock(&opp_table_lock); +} +EXPORT_SYMBOL_GPL(dev_pm_opp_register_put_rate_helper); + +/** * dev_pm_opp_add() - Add an OPP table from a table definitions * @dev: device for which we do this operation * @freq: Frequency in Hz for this OPP diff --git a/drivers/base/power/opp/opp.h b/drivers/base/power/opp/opp.h index 28011d6da345..38d97a59d762 100644 --- a/drivers/base/power/opp/opp.h +++ b/drivers/base/power/opp/opp.h @@ -194,6 +194,7 @@ struct opp_table { struct regulator **regulators; unsigned int regulator_count; + int (*set_rate)(struct device *dev, struct dev_pm_set_rate_data *data); struct dev_pm_set_rate_data *set_rate_data; #ifdef CONFIG_DEBUG_FS diff --git a/include/linux/pm_opp.h b/include/linux/pm_opp.h index 630f0fd6065c..ef882ed24b0e 100644 --- a/include/linux/pm_opp.h +++ b/include/linux/pm_opp.h @@ -79,6 +79,8 @@ int dev_pm_opp_set_prop_name(struct device *dev, const char *name); void dev_pm_opp_put_prop_name(struct device *dev); int dev_pm_opp_set_regulators(struct device *dev, const char *names[], unsigned int count); void dev_pm_opp_put_regulators(struct device *dev); +int dev_pm_opp_register_set_rate_helper(struct device *dev, int (*set_rate)(struct device *dev, struct dev_pm_set_rate_data *data)); +void dev_pm_opp_register_put_rate_helper(struct device *dev); int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq); int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, const struct cpumask *cpumask); int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask); @@ -178,6 +180,14 @@ static inline int dev_pm_opp_set_supported_hw(struct device *dev, static inline void dev_pm_opp_put_supported_hw(struct device *dev) {} +int dev_pm_opp_register_set_rate_helper(struct device *dev, + int (*set_rate)(struct device *dev, struct dev_pm_set_rate_data *data)) +{ + return -ENOTSUPP; +} + +static inline void dev_pm_opp_register_put_rate_helper(struct device *dev) {} + static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name) { return -ENOTSUPP;