From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Bjorn Andersson <bjorn.andersson@sonymobile.com>,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Kumar Gala <galak@codeaurora.org>
Cc: devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org,
Josh Cartwright <joshc@codeaurora.org>,
linux-kernel@vger.kernel.org, Lee Jones <lee.jones@linaro.org>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 0/3] Qualcomm Resource Power Manager driver
Date: Tue, 17 Jun 2014 22:49:33 +0100 [thread overview]
Message-ID: <53A0B7ED.9050806@linaro.org> (raw)
In-Reply-To: <1402944372-31901-1-git-send-email-bjorn.andersson@sonymobile.com>
Hi Bjorn,
Thankyou for the patches, these were handy for testing USB on APQ8064.
Tested-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
--srini
On 16/06/14 19:46, Bjorn Andersson wrote:
> This series adds a regulator driver for the Resource Power Manager found in
> Qualcomm 8660, 8960 and 8064 based devices.
>
> The RPM driver exposes resources to its child devices, that can be accessed to
> implement drivers for the regulators, clocks and bus frequency control that's
> owned by the RPM in these devices.
>
> Changes since v2:
> - Fix copy-paste error in dt binding
> - Correct incomplete move from mfd to soc
> - Correct const mistake in regulator driver
>
> Changes since v1:
> - Moved rpm driver to drivers/soc
> - Extracted resource table structs from rpm struct, as per Srinivas request
> - Dropped mode setting support for the regulators for now. Unsure if we need
> it and it requires some rework from the codeaurora solution.
> - Using set_voltage_sel instead of rolling my own "snapping", as per Marks
> request
> - Split regulator ops in mV, uV and swtich versions as per Marks request.
> - Added devicetree property to enable pull down.
>
> Bjorn Andersson (3):
> soc: devicetree: bindings: Add Qualcomm RPM DT binding
> soc: qcom-rpm: Driver for the Qualcomm RPM
> regulator: qcom-rpm: Regulator driver for the Qualcomm RPM
>
> .../devicetree/bindings/soc/qcom/qcom,rpm.txt | 261 +++++++
> drivers/regulator/Kconfig | 12 +
> drivers/regulator/Makefile | 1 +
> drivers/regulator/qcom_rpm-regulator.c | 787 +++++++++++++++++++++
> drivers/soc/qcom/Kconfig | 14 +
> drivers/soc/qcom/Makefile | 1 +
> drivers/soc/qcom/qcom_rpm.c | 573 +++++++++++++++
> include/dt-bindings/soc/qcom,rpm.h | 142 ++++
> include/linux/soc/qcom_rpm.h | 12 +
> 9 files changed, 1803 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,rpm.txt
> create mode 100644 drivers/regulator/qcom_rpm-regulator.c
> create mode 100644 drivers/soc/qcom/qcom_rpm.c
> create mode 100644 include/dt-bindings/soc/qcom,rpm.h
> create mode 100644 include/linux/soc/qcom_rpm.h
>
WARNING: multiple messages have this Message-ID (diff)
From: srinivas.kandagatla@linaro.org (Srinivas Kandagatla)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/3] Qualcomm Resource Power Manager driver
Date: Tue, 17 Jun 2014 22:49:33 +0100 [thread overview]
Message-ID: <53A0B7ED.9050806@linaro.org> (raw)
In-Reply-To: <1402944372-31901-1-git-send-email-bjorn.andersson@sonymobile.com>
Hi Bjorn,
Thankyou for the patches, these were handy for testing USB on APQ8064.
Tested-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
--srini
On 16/06/14 19:46, Bjorn Andersson wrote:
> This series adds a regulator driver for the Resource Power Manager found in
> Qualcomm 8660, 8960 and 8064 based devices.
>
> The RPM driver exposes resources to its child devices, that can be accessed to
> implement drivers for the regulators, clocks and bus frequency control that's
> owned by the RPM in these devices.
>
> Changes since v2:
> - Fix copy-paste error in dt binding
> - Correct incomplete move from mfd to soc
> - Correct const mistake in regulator driver
>
> Changes since v1:
> - Moved rpm driver to drivers/soc
> - Extracted resource table structs from rpm struct, as per Srinivas request
> - Dropped mode setting support for the regulators for now. Unsure if we need
> it and it requires some rework from the codeaurora solution.
> - Using set_voltage_sel instead of rolling my own "snapping", as per Marks
> request
> - Split regulator ops in mV, uV and swtich versions as per Marks request.
> - Added devicetree property to enable pull down.
>
> Bjorn Andersson (3):
> soc: devicetree: bindings: Add Qualcomm RPM DT binding
> soc: qcom-rpm: Driver for the Qualcomm RPM
> regulator: qcom-rpm: Regulator driver for the Qualcomm RPM
>
> .../devicetree/bindings/soc/qcom/qcom,rpm.txt | 261 +++++++
> drivers/regulator/Kconfig | 12 +
> drivers/regulator/Makefile | 1 +
> drivers/regulator/qcom_rpm-regulator.c | 787 +++++++++++++++++++++
> drivers/soc/qcom/Kconfig | 14 +
> drivers/soc/qcom/Makefile | 1 +
> drivers/soc/qcom/qcom_rpm.c | 573 +++++++++++++++
> include/dt-bindings/soc/qcom,rpm.h | 142 ++++
> include/linux/soc/qcom_rpm.h | 12 +
> 9 files changed, 1803 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,rpm.txt
> create mode 100644 drivers/regulator/qcom_rpm-regulator.c
> create mode 100644 drivers/soc/qcom/qcom_rpm.c
> create mode 100644 include/dt-bindings/soc/qcom,rpm.h
> create mode 100644 include/linux/soc/qcom_rpm.h
>
WARNING: multiple messages have this Message-ID (diff)
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: Bjorn Andersson <bjorn.andersson@sonymobile.com>,
Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Kumar Gala <galak@codeaurora.org>
Cc: Lee Jones <lee.jones@linaro.org>,
Josh Cartwright <joshc@codeaurora.org>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v3 0/3] Qualcomm Resource Power Manager driver
Date: Tue, 17 Jun 2014 22:49:33 +0100 [thread overview]
Message-ID: <53A0B7ED.9050806@linaro.org> (raw)
In-Reply-To: <1402944372-31901-1-git-send-email-bjorn.andersson@sonymobile.com>
Hi Bjorn,
Thankyou for the patches, these were handy for testing USB on APQ8064.
Tested-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
--srini
On 16/06/14 19:46, Bjorn Andersson wrote:
> This series adds a regulator driver for the Resource Power Manager found in
> Qualcomm 8660, 8960 and 8064 based devices.
>
> The RPM driver exposes resources to its child devices, that can be accessed to
> implement drivers for the regulators, clocks and bus frequency control that's
> owned by the RPM in these devices.
>
> Changes since v2:
> - Fix copy-paste error in dt binding
> - Correct incomplete move from mfd to soc
> - Correct const mistake in regulator driver
>
> Changes since v1:
> - Moved rpm driver to drivers/soc
> - Extracted resource table structs from rpm struct, as per Srinivas request
> - Dropped mode setting support for the regulators for now. Unsure if we need
> it and it requires some rework from the codeaurora solution.
> - Using set_voltage_sel instead of rolling my own "snapping", as per Marks
> request
> - Split regulator ops in mV, uV and swtich versions as per Marks request.
> - Added devicetree property to enable pull down.
>
> Bjorn Andersson (3):
> soc: devicetree: bindings: Add Qualcomm RPM DT binding
> soc: qcom-rpm: Driver for the Qualcomm RPM
> regulator: qcom-rpm: Regulator driver for the Qualcomm RPM
>
> .../devicetree/bindings/soc/qcom/qcom,rpm.txt | 261 +++++++
> drivers/regulator/Kconfig | 12 +
> drivers/regulator/Makefile | 1 +
> drivers/regulator/qcom_rpm-regulator.c | 787 +++++++++++++++++++++
> drivers/soc/qcom/Kconfig | 14 +
> drivers/soc/qcom/Makefile | 1 +
> drivers/soc/qcom/qcom_rpm.c | 573 +++++++++++++++
> include/dt-bindings/soc/qcom,rpm.h | 142 ++++
> include/linux/soc/qcom_rpm.h | 12 +
> 9 files changed, 1803 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/soc/qcom/qcom,rpm.txt
> create mode 100644 drivers/regulator/qcom_rpm-regulator.c
> create mode 100644 drivers/soc/qcom/qcom_rpm.c
> create mode 100644 include/dt-bindings/soc/qcom,rpm.h
> create mode 100644 include/linux/soc/qcom_rpm.h
>
next prev parent reply other threads:[~2014-06-17 21:49 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-16 18:46 [PATCH v3 0/3] Qualcomm Resource Power Manager driver Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-16 18:46 ` [PATCH v3 1/3] soc: devicetree: bindings: Add Qualcomm RPM DT binding Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-17 23:59 ` Stephen Boyd
2014-06-17 23:59 ` Stephen Boyd
[not found] ` <53A0D651.20605-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2014-06-18 5:19 ` Bjorn Andersson
2014-06-18 5:19 ` Bjorn Andersson
2014-06-18 5:19 ` Bjorn Andersson
2014-06-18 8:34 ` Srinivas Kandagatla
2014-06-18 8:34 ` Srinivas Kandagatla
2014-06-18 19:16 ` Stephen Boyd
2014-06-18 19:16 ` Stephen Boyd
2014-07-04 6:05 ` Pramod Gurav
2014-07-04 6:05 ` Pramod Gurav
2014-07-04 6:05 ` Pramod Gurav
2014-06-16 18:46 ` [PATCH v3 2/3] soc: qcom-rpm: Driver for the Qualcomm RPM Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-07-04 6:16 ` pramod gurav
2014-07-04 6:16 ` pramod gurav
2014-06-16 18:46 ` [PATCH v3 3/3] regulator: qcom-rpm: Regulator driver " Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-16 18:46 ` Bjorn Andersson
2014-06-17 17:07 ` [PATCH v3 0/3] Qualcomm Resource Power Manager driver Kevin Hilman
2014-06-17 17:07 ` Kevin Hilman
2014-06-17 17:07 ` Kevin Hilman
2014-06-17 17:15 ` Bjorn Andersson
2014-06-17 17:15 ` Bjorn Andersson
2014-06-18 15:53 ` Kevin Hilman
2014-06-18 15:53 ` Kevin Hilman
2014-06-18 15:53 ` Kevin Hilman
2014-06-18 16:03 ` Kumar Gala
2014-06-18 16:03 ` Kumar Gala
2014-06-18 16:44 ` Kevin Hilman
2014-06-18 16:44 ` Kevin Hilman
2014-06-18 16:44 ` Kevin Hilman
[not found] ` <7hegym6uca.fsf-4poPxKt068f/PtFMR13I2A@public.gmane.org>
2014-06-19 3:55 ` Jassi Brar
2014-06-19 3:55 ` Jassi Brar
2014-06-19 3:55 ` Jassi Brar
2014-06-19 18:22 ` Bjorn Andersson
2014-06-19 18:22 ` Bjorn Andersson
2014-06-19 20:01 ` Jassi Brar
2014-06-19 20:01 ` Jassi Brar
2014-06-20 4:59 ` Bjorn Andersson
2014-06-20 4:59 ` Bjorn Andersson
2014-06-20 5:17 ` Bjorn Andersson
2014-06-20 5:17 ` Bjorn Andersson
2014-06-20 13:18 ` Jassi Brar
2014-06-20 13:18 ` Jassi Brar
2014-06-18 16:48 ` Lee Jones
2014-06-18 16:48 ` Lee Jones
2014-06-17 21:49 ` Srinivas Kandagatla [this message]
2014-06-17 21:49 ` Srinivas Kandagatla
2014-06-17 21:49 ` Srinivas Kandagatla
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53A0B7ED.9050806@linaro.org \
--to=srinivas.kandagatla@linaro.org \
--cc=bjorn.andersson@sonymobile.com \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=joshc@codeaurora.org \
--cc=lee.jones@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.