From patchwork Thu Jan 28 14:59:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Georgi Djakov X-Patchwork-Id: 60736 Delivered-To: patch@linaro.org Received: by 10.112.130.2 with SMTP id oa2csp527718lbb; Thu, 28 Jan 2016 06:59:53 -0800 (PST) X-Received: by 10.66.162.164 with SMTP id yb4mr5150505pab.94.1453993193695; Thu, 28 Jan 2016 06:59:53 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id tl4si16732800pab.219.2016.01.28.06.59.53; Thu, 28 Jan 2016 06:59:53 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-arm-msm-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-arm-msm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-arm-msm-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 S965438AbcA1O7v (ORCPT + 7 others); Thu, 28 Jan 2016 09:59:51 -0500 Received: from mail-wm0-f46.google.com ([74.125.82.46]:36633 "EHLO mail-wm0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966273AbcA1O7d (ORCPT ); Thu, 28 Jan 2016 09:59:33 -0500 Received: by mail-wm0-f46.google.com with SMTP id p63so28580543wmp.1 for ; Thu, 28 Jan 2016 06:59:32 -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; bh=k/J8FR6F9FaodJ/+tJCzjudnYIOsFLKccBiwWHeTEWc=; b=H3Hd2CRLfzWTOEqx8rvLMhOoLmjJbOrouHFLIOkAOudpSHjkLEDwvVxIwYbrC1zThV /Z43D6L8EbY6NcNJLYrMOChvwoYCb8OtbwVDWcelVeKpjJ61C2sKlndo5kdKRZI5oqas YN0izcnEwAOsQ2BPX4IdyC679JCogkE9MTgHE= 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; bh=k/J8FR6F9FaodJ/+tJCzjudnYIOsFLKccBiwWHeTEWc=; b=L5agNGfkcfLQ4ge35pvpEGFvWlafIw8CBLL/baQ4Q5XTGAjD+eLy4kq/kvGlcnVU6U 8aZbXEBiUApuXGLcdAiuSYau1OZmdwKHh/UUyL88JLuNPNep67U0OZ90nKxj0VlPGVZ+ gRbsfyLrdUxE54cAjTaDeAdRGUwmPr7v043ZiGaik2GgItR4Vv3o9J3qWXCyQOeQoj4t KYaMcemAjagbS4Y66vmzUkECdLjue1J8u9RdgSV0N6Yx8ZxoXlbrNeBgPLShNSHtdMQl YbSEwj3UTLafjCf0lo9VnWt9RqMp+d9fTs0w12ZHp5lw2mej8riVEjpB2l7BNSIDlxlY 9Xig== X-Gm-Message-State: AG10YOQJUtyJRKJ1DaAMswsWXJqq5bDb9TAnafQ3imUaGea4JCo9Baug1w78spW6L6RoAjhy X-Received: by 10.28.222.5 with SMTP id v5mr3941739wmg.94.1453993171917; Thu, 28 Jan 2016 06:59:31 -0800 (PST) Received: from mms.qualcomm.mm-sol.com ([37.157.136.206]) by smtp.googlemail.com with ESMTPSA id y8sm3249961wmg.9.2016.01.28.06.59.30 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 28 Jan 2016 06:59:30 -0800 (PST) From: Georgi Djakov To: broonie@kernel.org, lgirdwood@gmail.com Cc: andy.gross@linaro.org, lina.iyer@linaro.org, sboyd@codeaurora.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, georgi.djakov@linaro.org Subject: [PATCH v2] regulator: qcom-saw2: Add support for SAW2 regulators Date: Thu, 28 Jan 2016 16:59:02 +0200 Message-Id: <1453993142-17885-1-git-send-email-georgi.djakov@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org The SAW2 (Subsystem Power Manager and Adaptive Voltage Scalling Wrapper) is part of the SPM subsystem. It is a hardware block in the Qualcomm chipsets that regulates the power to the CPU cores on platform such as apq8064, apq8084 and others. Signed-off-by: Georgi Djakov --- Changes since v1 (https://lkml.org/lkml/2015/12/18/629) * Move into a separate regulator driver .../bindings/regulator/qcom,saw2-regulator.txt | 33 +++ drivers/regulator/Kconfig | 12 + drivers/regulator/Makefile | 1 + drivers/regulator/qcom_saw2-regulator.c | 229 ++++++++++++++++++++ 4 files changed, 275 insertions(+) create mode 100644 Documentation/devicetree/bindings/regulator/qcom,saw2-regulator.txt create mode 100644 drivers/regulator/qcom_saw2-regulator.c -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" 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/Documentation/devicetree/bindings/regulator/qcom,saw2-regulator.txt b/Documentation/devicetree/bindings/regulator/qcom,saw2-regulator.txt new file mode 100644 index 000000000000..34bd8d977197 --- /dev/null +++ b/Documentation/devicetree/bindings/regulator/qcom,saw2-regulator.txt @@ -0,0 +1,33 @@ +Qualcomm SAW2 Regulators + +SAW2 (Subsystem Power Manager and Adaptive Voltage Scalling Wrapper) is a hardware +block in the Qualcomm chipsets that regulates the power to the CPU cores on devices +such as APQ8064, APQ8084 and others. + +- compatible: + Usage: required + Value type: + Definition: must be one of: + "qcom,apq8064-saw2-v1.1-regulator" + +Example: + saw0: power-controller@2089000 { + compatible = "qcom,apq8064-saw2-v1.1-cpu", "qcom,saw2", "syscon", "simple-mfd"; + reg = <0x02089000 0x1000>, <0x02009000 0x1000>; + #address-cells = <1>; + #size-cells = <1>; + + saw0_regulator: regulator@2089000 { + compatible = "qcom,apq8064-saw2-v1.1-regulator"; + regulator-name = "krait0"; + regulator-always-on; + regulator-min-microvolt = <825000>; + regulator-max-microvolt = <1250000>; + }; + }; + + + &CPU0 { + cpu-supply = <&saw0_regulator>; + }; + diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index 74a6354eaefa..50f70d94d01b 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -558,6 +558,18 @@ config REGULATOR_QCOM_RPM Qualcomm RPM as a module. The module will be named "qcom_rpm-regulator". +config REGULATOR_QCOM_SAW2 + tristate "Qualcomm SAW2 regulator driver" + depends on ARCH_QCOM + help + If you say yes to this option, support will be included for the + regulators providing power to the CPU cores on devices such as + APQ8064. + + Say M here if you want to include support for the CPU core voltage + regulators as a module. The module will be named + "qcom_saw2-regulator". + config REGULATOR_QCOM_SMD_RPM tristate "Qualcomm SMD based RPM regulator driver" depends on QCOM_SMD_RPM diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile index 348cfd727350..371ce2c36fec 100644 --- a/drivers/regulator/Makefile +++ b/drivers/regulator/Makefile @@ -64,6 +64,7 @@ obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += mc13xxx-regulator-core.o obj-$(CONFIG_REGULATOR_MT6311) += mt6311-regulator.o obj-$(CONFIG_REGULATOR_MT6397) += mt6397-regulator.o obj-$(CONFIG_REGULATOR_QCOM_RPM) += qcom_rpm-regulator.o +obj-$(CONFIG_REGULATOR_QCOM_SAW2)+= qcom_saw2-regulator.o obj-$(CONFIG_REGULATOR_QCOM_SMD_RPM) += qcom_smd-regulator.o obj-$(CONFIG_REGULATOR_QCOM_SPMI) += qcom_spmi-regulator.o obj-$(CONFIG_REGULATOR_PALMAS) += palmas-regulator.o diff --git a/drivers/regulator/qcom_saw2-regulator.c b/drivers/regulator/qcom_saw2-regulator.c new file mode 100644 index 000000000000..8c3f435c32cf --- /dev/null +++ b/drivers/regulator/qcom_saw2-regulator.c @@ -0,0 +1,229 @@ +/* + * Copyright (c) 2016, Linaro Limited. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 and + * only version 2 as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define SPM_REG_STS_1 0x10 +#define SPM_REG_VCTL 0x14 +#define SPM_REG_PMIC_DATA_0 0x28 +#define SPM_REG_PMIC_DATA_1 0x2c +#define SPM_REG_RST 0x30 + +struct saw2_vreg { + struct device *dev; + struct regmap *regmap; + struct regulator_desc rdesc; + struct regulator_dev *rdev; + unsigned int selector; +}; + +struct spm_vlevel_data { + struct saw2_vreg *vreg; + unsigned int selector; +}; + +static int saw2_regulator_get_voltage(struct regulator_dev *rdev) +{ + struct saw2_vreg *vreg = rdev_get_drvdata(rdev); + + return regulator_list_voltage_linear_range(rdev, vreg->selector); +} + +static void smp_set_vdd(void *data) +{ + struct spm_vlevel_data *vdata = (struct spm_vlevel_data *)data; + struct saw2_vreg *vreg = vdata->vreg; + unsigned long sel = vdata->selector; + u32 val, new_val; + u32 vctl, data0, data1; + int timeout_us = 50; + + if (vreg->selector == sel) + return; + + regmap_read(vreg->regmap, SPM_REG_VCTL, &vctl); + regmap_read(vreg->regmap, SPM_REG_PMIC_DATA_0, &data0); + regmap_read(vreg->regmap, SPM_REG_PMIC_DATA_1, &data1); + + /* select the band */ + val = 0x80 | sel; + + vctl &= ~0xff; + vctl |= val; + + data0 &= ~0xff; + data0 |= val; + + data1 &= ~0x3f; + data1 |= val & 0x3f; + data1 &= ~0x3f0000; + data1 |= ((val & 0x3f) << 16); + + regmap_write(vreg->regmap, SPM_REG_RST, 1); + regmap_write(vreg->regmap, SPM_REG_VCTL, vctl); + regmap_write(vreg->regmap, SPM_REG_PMIC_DATA_0, data0); + regmap_write(vreg->regmap, SPM_REG_PMIC_DATA_1, data1); + + do { + regmap_read(vreg->regmap, SPM_REG_STS_1, &new_val); + new_val &= 0xff; + if (new_val == val) + break; + udelay(1); + } while (--timeout_us); + + if (!timeout_us) { + pr_info("%s: Voltage not changed: %#x\n", __func__, new_val); + return; + } + + if (sel > vreg->selector) { + /* PMIC internal slew rate is 1250 uV/us */ + udelay((sel - vreg->selector) * 10); + } + + vreg->selector = sel; +} + +static int saw2_regulator_set_voltage_sel(struct regulator_dev *rdev, + unsigned selector) +{ + struct saw2_vreg *vreg = rdev_get_drvdata(rdev); + struct spm_vlevel_data data; + int cpu = rdev_get_id(rdev); + + data.vreg = vreg; + data.selector = selector; + + return smp_call_function_single(cpu, smp_set_vdd, &data, true); +} + +static struct regulator_ops saw2_regulator_ops = { + .list_voltage = regulator_list_voltage_linear_range, + .set_voltage_sel = saw2_regulator_set_voltage_sel, + .get_voltage = saw2_regulator_get_voltage, +}; + +static struct regulator_desc saw2_regulator = { + .owner = THIS_MODULE, + .type = REGULATOR_VOLTAGE, + .ops = &saw2_regulator_ops, + .linear_ranges = (struct regulator_linear_range[]) { + REGULATOR_LINEAR_RANGE(700000, 0, 56, 12500), + }, + .n_linear_ranges = 1, + .n_voltages = 57, +}; + +static struct saw2_vreg *saw2_get_drv(struct platform_device *pdev, + int *vreg_cpu) +{ + struct saw2_vreg *vreg = NULL; + struct device_node *cpu_node, *saw_node; + int cpu; + bool found; + + for_each_possible_cpu(cpu) { + cpu_node = of_cpu_device_node_get(cpu); + if (!cpu_node) + continue; + saw_node = of_parse_phandle(cpu_node, "qcom,saw", 0); + found = (saw_node == pdev->dev.of_node->parent); + of_node_put(saw_node); + of_node_put(cpu_node); + if (found) + break; + } + + if (found) { + vreg = devm_kzalloc(&pdev->dev, sizeof(*vreg), GFP_KERNEL); + if (vreg) + *vreg_cpu = cpu; + } + + return vreg; +} + +static const struct of_device_id qcom_saw2_regulator_match[] = { + { .compatible = "qcom,apq8064-saw2-v1.1-regulator" }, + { } +}; +MODULE_DEVICE_TABLE(of, qcom_saw2_regulator_match); + +static int qcom_saw2_regulator_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct device_node *np = dev->of_node; + struct device_node *saw2_np; + struct saw2_vreg *vreg; + struct regulator_config config = { }; + int ret = 0, cpu = 0; + + vreg = saw2_get_drv(pdev, &cpu); + if (!vreg) + return -EINVAL; + + saw2_np = of_get_parent(np); + if (!saw2_np) + return -ENODEV; + + vreg->regmap = syscon_node_to_regmap(saw2_np); + of_node_put(saw2_np); + if (IS_ERR(config.regmap)) + return PTR_ERR(config.regmap); + + config.regmap = vreg->regmap; + config.dev = &pdev->dev; + config.of_node = np; + config.driver_data = vreg; + + vreg->rdesc = saw2_regulator; + vreg->rdesc.id = cpu; + vreg->rdesc.name = of_get_property(np, "regulator-name", NULL); + config.init_data = of_get_regulator_init_data(&pdev->dev, + pdev->dev.of_node, + &vreg->rdesc); + + vreg->rdev = devm_regulator_register(&pdev->dev, &vreg->rdesc, &config); + if (IS_ERR(vreg->rdev)) { + ret = PTR_ERR(vreg->rdev); + dev_err(dev, "error registering SAW2 regulator: %d\n", ret); + return ret; + } + + return 0; +} + +static struct platform_driver qcom_saw2_regulator_driver = { + .driver = { + .name = "qcom-saw2-regulator", + .of_match_table = qcom_saw2_regulator_match, + }, + .probe = qcom_saw2_regulator_probe, +}; + +module_platform_driver(qcom_saw2_regulator_driver); + +MODULE_ALIAS("platform:qcom-saw2-regulator"); +MODULE_DESCRIPTION("Qualcomm SAW2 regulator driver"); +MODULE_AUTHOR("Georgi Djakov "); +MODULE_LICENSE("GPL v2");