From patchwork Tue Dec 22 10:16:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 58849 Delivered-To: patch@linaro.org Received: by 10.112.89.199 with SMTP id bq7csp3139658lbb; Tue, 22 Dec 2015 02:16:47 -0800 (PST) X-Received: by 10.66.101.100 with SMTP id ff4mr30477114pab.10.1450779407350; Tue, 22 Dec 2015 02:16:47 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id sw10si3585212pab.55.2015.12.22.02.16.47; Tue, 22 Dec 2015 02:16:47 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-pm-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-pm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-pm-owner@vger.kernel.org; dkim=neutral (body hash did not verify) header.i=@linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932659AbbLVKQq (ORCPT + 11 others); Tue, 22 Dec 2015 05:16:46 -0500 Received: from mail-pf0-f171.google.com ([209.85.192.171]:32809 "EHLO mail-pf0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932181AbbLVKQp (ORCPT ); Tue, 22 Dec 2015 05:16:45 -0500 Received: by mail-pf0-f171.google.com with SMTP id n128so87775298pfn.0 for ; Tue, 22 Dec 2015 02:16:45 -0800 (PST) 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=Hx0epm4ceERoz1WRaqdOKCmvitLofV/tmHL+NnGL4P4=; b=LmTz+SKJkA87wvhE2/Od4tdeStrd9aR3F5D40FjeqL0gNr3pSwMZ9uSgKtRtXoK1eL vEPEzikGvUp9be24xXIIIRbDzEkMxelmFFF/vgpVja7Oeq33lAjxYjHg4S4vfTFgtA1W AjA2F93T2BeSw9HuqXRsSTmoXofNhc8wO2clM= 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=Hx0epm4ceERoz1WRaqdOKCmvitLofV/tmHL+NnGL4P4=; b=ZyhYNgHzvCn6OPaSFpups6JfizQRFfr+R+l8X7jkcG/gw9SF+aPkwrp6L64qy6LONH ZUGUqiObGmAVPd1DB/7hor2ItUmEF6XMKil/sXWffU0jczUNqkZozE/UFmctzVKzXSRs wARzFNKa690dUyKaCKCF2f6klld7dGwxNdUHfEmovNKu92huvOvZNDN/56KPnnEoecki JDn7haKGgrEW/ZG7izhDuVuVFtGPGiyZ1DI9QK1C6EbrKU1TgYJHOmDsdpIop3q9qVr/ L9SG38sFtYBbPJJUMku2fZ2SVwHGEWb3uj6+1NUib2+ZP/XaJVYywd0K6XkGch0JfDa0 ON8w== X-Gm-Message-State: ALoCoQmu+z7c8+M35TRzeQZMrEAGhlijq+/QIGKD2g9ZEcx9z/YXCQFZCGtTXdATuph3VOYQNRDYLS2tHdW0lVLlQ1t0byCp6w== X-Received: by 10.98.18.136 with SMTP id 8mr16710388pfs.62.1450779405399; Tue, 22 Dec 2015 02:16:45 -0800 (PST) Received: from localhost ([122.171.29.67]) by smtp.gmail.com with ESMTPSA id a15sm19517960pfj.31.2015.12.22.02.16.44 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Tue, 22 Dec 2015 02:16:44 -0800 (PST) From: Viresh Kumar To: Rafael Wysocki Cc: linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org, Stephen Boyd , nm@ti.com, Viresh Kumar Subject: [PATCH 06/17] PM / OPP: Parse clock-latency and voltage-tolerance for v1 bindings Date: Tue, 22 Dec 2015 15:46:07 +0530 Message-Id: <25cb4d7e9169815448193bd93305fae31a83792c.1450777582.git.viresh.kumar@linaro.org> X-Mailer: git-send-email 2.7.0.rc1.186.g94414c4 In-Reply-To: References: In-Reply-To: References: Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org V2 bindings have better support for clock-latency and voltage-tolerance and doesn't need special care. To use callbacks, like dev_pm_opp_get_max_{transition|volt}_latency(), irrespective of the bindings, the core needs to know clock-latency/voltage-tolerance for the earlier bindings. This patch reads clock-latency/voltage-tolerance from the device node, irrespective of the bindings (to keep it simple) and use them only for V1 bindings. Signed-off-by: Viresh Kumar --- drivers/base/power/opp/core.c | 20 ++++++++++++++++++++ drivers/base/power/opp/opp.h | 6 ++++++ 2 files changed, 26 insertions(+) -- 2.7.0.rc1.186.g94414c4 -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c index 5746993aa71d..1bb09138cdae 100644 --- a/drivers/base/power/opp/core.c +++ b/drivers/base/power/opp/core.c @@ -563,6 +563,7 @@ static struct device_opp *_add_device_opp_reg(struct device *dev, { struct device_opp *dev_opp; struct device_list_opp *list_dev; + struct device_node *np; /* * Allocate a new device OPP table. In the infrequent case where a new @@ -580,6 +581,21 @@ static struct device_opp *_add_device_opp_reg(struct device *dev, return NULL; } + /* + * Only required for backward compatibility with v1 bindings, but isn't + * harmful for other cases. And so we do it unconditionally. + */ + np = of_node_get(dev->of_node); + if (np) { + u32 val; + + if (!of_property_read_u32(np, "clock-latency", &val)) + dev_opp->clock_latency_ns_max = val; + of_property_read_u32(np, "voltage-tolerance", + &dev_opp->voltage_tolerance_v1); + of_node_put(np); + } + dev_opp->regulator = regulator_get_optional(dev, name); if (IS_ERR(dev_opp->regulator)) dev_info(dev, "%s: no regulator (%s) found: %ld\n", __func__, @@ -865,6 +881,7 @@ static int _opp_add_v1(struct device *dev, unsigned long freq, long u_volt, { struct device_opp *dev_opp; struct dev_pm_opp *new_opp; + unsigned long tol; int ret; /* Hold our list modification lock here */ @@ -878,7 +895,10 @@ static int _opp_add_v1(struct device *dev, unsigned long freq, long u_volt, /* populate the opp table */ new_opp->rate = freq; + tol = u_volt * dev_opp->voltage_tolerance_v1 / 100; new_opp->u_volt = u_volt; + new_opp->u_volt_min = u_volt - tol; + new_opp->u_volt_max = u_volt + tol; new_opp->available = true; new_opp->dynamic = dynamic; diff --git a/drivers/base/power/opp/opp.h b/drivers/base/power/opp/opp.h index 08aae35ab8e0..a39347d8693f 100644 --- a/drivers/base/power/opp/opp.h +++ b/drivers/base/power/opp/opp.h @@ -139,6 +139,8 @@ struct device_list_opp { * @dentry: debugfs dentry pointer of the real device directory (not links). * @dentry_name: Name of the real dentry. * + * @voltage_tolerance_v1: In percentage, for v1 bindings only. + * * This is an internal data structure maintaining the link to opps attached to * a device. This structure is not meant to be shared to users as it is * meant for book keeping and private to OPP library. @@ -157,6 +159,10 @@ struct device_opp { struct device_node *np; unsigned long clock_latency_ns_max; + + /* For backward compatibility with v1 bindings */ + unsigned int voltage_tolerance_v1; + bool shared_opp; struct dev_pm_opp *suspend_opp;