* [PATCH v4 0/2] spmi: pmic-arb: Add support for PMIC v7
@ 2022-09-14 11:21 Vinod Koul
2022-09-14 11:21 ` [PATCH v4 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
0 siblings, 1 reply; 3+ messages in thread
From: Vinod Koul @ 2022-09-14 11:21 UTC (permalink / raw)
To: Stephen Boyd
Cc: linux-arm-msm, Bjorn Andersson, Vinod Koul, linux-kernel,
Rob Herring, Krzysztof Kozlowski, devicetree
Hello,
The is version 4 of support for PMIC v7. I have added a new property
qcom,bus-id for supporting v7 and then add driver changes for v7
Changes since v4:
- rebase on spmi/next
David Dai (1):
spmi: pmic-arb: Add support for PMIC v7
Vinod Koul (1):
dt-bindings: spmi: Add qcom,bus-id
.../bindings/spmi/qcom,spmi-pmic-arb.yaml | 11 +
drivers/spmi/spmi-pmic-arb.c | 242 ++++++++++++++++--
2 files changed, 232 insertions(+), 21 deletions(-)
--
2.37.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v4 1/2] dt-bindings: spmi: Add qcom,bus-id
2022-09-14 11:21 [PATCH v4 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
@ 2022-09-14 11:21 ` Vinod Koul
2022-09-14 14:11 ` Bjorn Andersson
0 siblings, 1 reply; 3+ messages in thread
From: Vinod Koul @ 2022-09-14 11:21 UTC (permalink / raw)
To: Stephen Boyd
Cc: linux-arm-msm, Bjorn Andersson, Vinod Koul, linux-kernel,
Rob Herring, Krzysztof Kozlowski, devicetree, Rob Herring
For PMIC arbiter version 7 and beyond we need to define if we are using
primary or secondary bus, so add a new property of qcom,bus-id
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Acked-by: Rob Herring <robh@kernel.org>
---
.../devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml b/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml
index fee4f0eb4665..aa8e891b2bb4 100644
--- a/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml
+++ b/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml
@@ -85,6 +85,14 @@ properties:
description: >
which of the PMIC Arb provided channels to use for accesses
+ qcom,bus-id:
+ $ref: /schemas/types.yaml#/definitions/uint32
+ minimum: 0
+ maximum: 1
+ description: >
+ SPMI bus instance. only applicable to PMIC arbiter version 7 and beyond.
+ Supported values, 0 = primary bus, 1 = secondary bus
+
required:
- compatible
- reg-names
@@ -113,5 +121,8 @@ examples:
interrupt-controller;
#interrupt-cells = <4>;
+
+ qcom,bus-id = <0>;
+
};
--
2.37.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v4 1/2] dt-bindings: spmi: Add qcom,bus-id
2022-09-14 11:21 ` [PATCH v4 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
@ 2022-09-14 14:11 ` Bjorn Andersson
0 siblings, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2022-09-14 14:11 UTC (permalink / raw)
To: Vinod Koul
Cc: Stephen Boyd, linux-arm-msm, linux-kernel, Rob Herring,
Krzysztof Kozlowski, devicetree, Rob Herring
On Wed, Sep 14, 2022 at 04:51:38PM +0530, Vinod Koul wrote:
> For PMIC arbiter version 7 and beyond we need to define if we are using
> primary or secondary bus, so add a new property of qcom,bus-id
>
> Signed-off-by: Vinod Koul <vkoul@kernel.org>
> Acked-by: Rob Herring <robh@kernel.org>
> ---
> .../devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml b/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml
> index fee4f0eb4665..aa8e891b2bb4 100644
> --- a/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml
> +++ b/Documentation/devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml
> @@ -85,6 +85,14 @@ properties:
> description: >
> which of the PMIC Arb provided channels to use for accesses
>
> + qcom,bus-id:
> + $ref: /schemas/types.yaml#/definitions/uint32
> + minimum: 0
> + maximum: 1
> + description: >
> + SPMI bus instance. only applicable to PMIC arbiter version 7 and beyond.
> + Supported values, 0 = primary bus, 1 = secondary bus
> +
> required:
> - compatible
> - reg-names
> @@ -113,5 +121,8 @@ examples:
>
> interrupt-controller;
> #interrupt-cells = <4>;
> +
> + qcom,bus-id = <0>;
> +
As you correct the author on patch 2/2, please drop this last empty
line.
Thanks,
Bjorn
> };
>
> --
> 2.37.3
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-09-14 14:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-14 11:21 [PATCH v4 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
2022-09-14 11:21 ` [PATCH v4 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
2022-09-14 14:11 ` Bjorn Andersson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).