devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7
@ 2022-09-14 16:52 Vinod Koul
  2022-09-14 16:52 ` [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Vinod Koul @ 2022-09-14 16:52 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 5 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:
 - Fix David name and email
 - remove trailing line in binding

Changes since v3:
 - rebase on spmi/next

David Collins (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     |  10 +
 drivers/spmi/spmi-pmic-arb.c                  | 242 ++++++++++++++++--
 2 files changed, 231 insertions(+), 21 deletions(-)


base-commit: 18c42f8d23426d3f4048df89523aa47203c3493a
-- 
2.37.3


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id
  2022-09-14 16:52 [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
@ 2022-09-14 16:52 ` Vinod Koul
  2022-09-15  9:51   ` Krzysztof Kozlowski
  2022-09-16 18:30   ` Bjorn Andersson
  2022-09-21 15:15 ` [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
  2022-11-03 14:27 ` Vinod Koul
  2 siblings, 2 replies; 11+ messages in thread
From: Vinod Koul @ 2022-09-14 16:52 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   | 10 ++++++++++
 1 file changed, 10 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..f983b4af6db9 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,7 @@ examples:
 
         interrupt-controller;
         #interrupt-cells = <4>;
+
+        qcom,bus-id = <0>;
     };
 
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id
  2022-09-14 16:52 ` [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
@ 2022-09-15  9:51   ` Krzysztof Kozlowski
  2022-09-15 11:59     ` Rob Herring
  2022-09-16 18:30   ` Bjorn Andersson
  1 sibling, 1 reply; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-15  9:51 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Rob Herring, Stephen Boyd, Krzysztof Kozlowski, devicetree,
	Bjorn Andersson, Rob Herring, linux-kernel, linux-arm-msm

On Wed, 14 Sep 2022 22:22:11 +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   | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 

My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
on your patch (DT_CHECKER_FLAGS is new in v5.13):

yamllint warnings/errors:

dtschema/dtc warnings/errors:
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: dma-masters:0: [4294967295, 4294967295] is too long
	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.yaml
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: Unevaluated properties are not allowed ('dma-channels', 'dma-masters', 'dma-requests' were unexpected)
	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.yaml
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: dma-masters:0: [4294967295, 4294967295] is too long
	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/dma-router.yaml
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.example.dtb: dma-router@a0: dma-masters:0: [4294967295, 4294967295] is too long
	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/dma-router.yaml
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.example.dtb: dma-router@a0: dma-masters:0: [4294967295, 4294967295] is too long
	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml

doc reference errors (make refcheckdocs):

See https://patchwork.ozlabs.org/patch/

This check can fail if there are any dependencies. The base for a patch
series is generally the most recent rc1.

If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:

pip3 install dtschema --upgrade

Please check and re-submit.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id
  2022-09-15  9:51   ` Krzysztof Kozlowski
@ 2022-09-15 11:59     ` Rob Herring
  2022-09-16  4:40       ` Vinod Koul
  0 siblings, 1 reply; 11+ messages in thread
From: Rob Herring @ 2022-09-15 11:59 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Vinod Koul, Stephen Boyd, Krzysztof Kozlowski, devicetree,
	Bjorn Andersson, linux-kernel, linux-arm-msm

On Thu, Sep 15, 2022 at 10:51:03AM +0100, Krzysztof Kozlowski wrote:
> On Wed, 14 Sep 2022 22:22:11 +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   | 10 ++++++++++
> >  1 file changed, 10 insertions(+)
> > 
> 
> My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
> on your patch (DT_CHECKER_FLAGS is new in v5.13):
> 
> yamllint warnings/errors:
> 
> dtschema/dtc warnings/errors:
> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: dma-masters:0: [4294967295, 4294967295] is too long
> 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.yaml
> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: Unevaluated properties are not allowed ('dma-channels', 'dma-masters', 'dma-requests' were unexpected)
> 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.yaml
> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: dma-masters:0: [4294967295, 4294967295] is too long
> 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/dma-router.yaml
> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.example.dtb: dma-router@a0: dma-masters:0: [4294967295, 4294967295] is too long
> 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/dma-router.yaml
> /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.example.dtb: dma-router@a0: dma-masters:0: [4294967295, 4294967295] is too long
> 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml

Ignore this. Unrelated.

Rob


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id
  2022-09-15 11:59     ` Rob Herring
@ 2022-09-16  4:40       ` Vinod Koul
  0 siblings, 0 replies; 11+ messages in thread
From: Vinod Koul @ 2022-09-16  4:40 UTC (permalink / raw)
  To: Rob Herring
  Cc: Krzysztof Kozlowski, Stephen Boyd, Krzysztof Kozlowski,
	devicetree, Bjorn Andersson, linux-kernel, linux-arm-msm

On 15-09-22, 06:59, Rob Herring wrote:
> On Thu, Sep 15, 2022 at 10:51:03AM +0100, Krzysztof Kozlowski wrote:
> > On Wed, 14 Sep 2022 22:22:11 +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   | 10 ++++++++++
> > >  1 file changed, 10 insertions(+)
> > > 
> > 
> > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
> > on your patch (DT_CHECKER_FLAGS is new in v5.13):
> > 
> > yamllint warnings/errors:
> > 
> > dtschema/dtc warnings/errors:
> > /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: dma-masters:0: [4294967295, 4294967295] is too long
> > 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.yaml
> > /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: Unevaluated properties are not allowed ('dma-channels', 'dma-masters', 'dma-requests' were unexpected)
> > 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.yaml
> > /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/st,stm32-dmamux.example.dtb: dma-router@40020800: dma-masters:0: [4294967295, 4294967295] is too long
> > 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/dma-router.yaml
> > /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.example.dtb: dma-router@a0: dma-masters:0: [4294967295, 4294967295] is too long
> > 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/dma-router.yaml
> > /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.example.dtb: dma-router@a0: dma-masters:0: [4294967295, 4294967295] is too long
> > 	From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
> 
> Ignore this. Unrelated.

Right!

-- 
~Vinod

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id
  2022-09-14 16:52 ` [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
  2022-09-15  9:51   ` Krzysztof Kozlowski
@ 2022-09-16 18:30   ` Bjorn Andersson
  1 sibling, 0 replies; 11+ messages in thread
From: Bjorn Andersson @ 2022-09-16 18:30 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 10:22:11PM +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>

Reviewed-by: Bjorn Andersson <andersson@kernel.org>

> ---
>  .../devicetree/bindings/spmi/qcom,spmi-pmic-arb.yaml   | 10 ++++++++++
>  1 file changed, 10 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..f983b4af6db9 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,7 @@ examples:
>  
>          interrupt-controller;
>          #interrupt-cells = <4>;
> +
> +        qcom,bus-id = <0>;
>      };
>  
> -- 
> 2.37.3
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7
  2022-09-14 16:52 [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
  2022-09-14 16:52 ` [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
@ 2022-09-21 15:15 ` Vinod Koul
  2022-10-03  5:57   ` Vinod Koul
  2022-11-03 14:27 ` Vinod Koul
  2 siblings, 1 reply; 11+ messages in thread
From: Vinod Koul @ 2022-09-21 15:15 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: linux-arm-msm, Bjorn Andersson, linux-kernel, Rob Herring,
	Krzysztof Kozlowski, devicetree

On 14-09-22, 22:22, Vinod Koul wrote:
> Hello,
> 
> The is version 5 of support for PMIC v7. I have added a new property
> qcom,bus-id for supporting v7 and then add driver changes for v7

Steve,

Can you please get this in for v6.1 ?

> 
> Changes since v4:
>  - Fix David name and email
>  - remove trailing line in binding
> 
> Changes since v3:
>  - rebase on spmi/next
> 
> David Collins (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     |  10 +
>  drivers/spmi/spmi-pmic-arb.c                  | 242 ++++++++++++++++--
>  2 files changed, 231 insertions(+), 21 deletions(-)
> 
> 
> base-commit: 18c42f8d23426d3f4048df89523aa47203c3493a
> -- 
> 2.37.3

-- 
~Vinod

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7
  2022-09-21 15:15 ` [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
@ 2022-10-03  5:57   ` Vinod Koul
  0 siblings, 0 replies; 11+ messages in thread
From: Vinod Koul @ 2022-10-03  5:57 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: linux-arm-msm, Bjorn Andersson, linux-kernel, Rob Herring,
	Krzysztof Kozlowski, devicetree

On 21-09-22, 20:45, Vinod Koul wrote:
> On 14-09-22, 22:22, Vinod Koul wrote:
> > Hello,
> > 
> > The is version 5 of support for PMIC v7. I have added a new property
> > qcom,bus-id for supporting v7 and then add driver changes for v7
> 
> Steve,
> 
> Can you please get this in for v6.1 ?

I dont know what I can do now to get this patch in... looks like 6.1 is
missed too!

> 
> > 
> > Changes since v4:
> >  - Fix David name and email
> >  - remove trailing line in binding
> > 
> > Changes since v3:
> >  - rebase on spmi/next
> > 
> > David Collins (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     |  10 +
> >  drivers/spmi/spmi-pmic-arb.c                  | 242 ++++++++++++++++--
> >  2 files changed, 231 insertions(+), 21 deletions(-)
> > 
> > 
> > base-commit: 18c42f8d23426d3f4048df89523aa47203c3493a
> > -- 
> > 2.37.3
> 
> -- 
> ~Vinod

-- 
~Vinod

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7
  2022-09-14 16:52 [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
  2022-09-14 16:52 ` [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
  2022-09-21 15:15 ` [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
@ 2022-11-03 14:27 ` Vinod Koul
  2022-11-18 19:24   ` Melody Olvera
  2 siblings, 1 reply; 11+ messages in thread
From: Vinod Koul @ 2022-11-03 14:27 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: linux-arm-msm, Bjorn Andersson, linux-kernel, Rob Herring,
	Krzysztof Kozlowski, devicetree

On 14-09-22, 22:22, Vinod Koul wrote:
> Hello,
> 
> The is version 5 of support for PMIC v7. I have added a new property
> qcom,bus-id for supporting v7 and then add driver changes for v7

Stephen,

Can you pick this? It has been so long...

> 
> Changes since v4:
>  - Fix David name and email
>  - remove trailing line in binding
> 
> Changes since v3:
>  - rebase on spmi/next
> 
> David Collins (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     |  10 +
>  drivers/spmi/spmi-pmic-arb.c                  | 242 ++++++++++++++++--
>  2 files changed, 231 insertions(+), 21 deletions(-)
> 
> 
> base-commit: 18c42f8d23426d3f4048df89523aa47203c3493a
> -- 
> 2.37.3

-- 
~Vinod

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7
  2022-11-03 14:27 ` Vinod Koul
@ 2022-11-18 19:24   ` Melody Olvera
  2022-11-20 10:48     ` Krzysztof Kozlowski
  0 siblings, 1 reply; 11+ messages in thread
From: Melody Olvera @ 2022-11-18 19:24 UTC (permalink / raw)
  To: Vinod Koul, Stephen Boyd
  Cc: linux-arm-msm, Bjorn Andersson, linux-kernel, Rob Herring,
	Krzysztof Kozlowski, devicetree



On 11/3/2022 9:27 AM, Vinod Koul wrote:
> On 14-09-22, 22:22, Vinod Koul wrote:
>> Hello,
>>
>> The is version 5 of support for PMIC v7. I have added a new property
>> qcom,bus-id for supporting v7 and then add driver changes for v7
> Stephen,
>
> Can you pick this? It has been so long...

Hi Stephen,

Do you mind looking at this? I've got some patches that depend on functionality here...
https://lore.kernel.org/all/20221118192241.29384-1-quic_molvera@quicinc.com/

Thanks,
Melody

>> Changes since v4:
>>  - Fix David name and email
>>  - remove trailing line in binding
>>
>> Changes since v3:
>>  - rebase on spmi/next
>>
>> David Collins (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     |  10 +
>>  drivers/spmi/spmi-pmic-arb.c                  | 242 ++++++++++++++++--
>>  2 files changed, 231 insertions(+), 21 deletions(-)
>>
>>
>> base-commit: 18c42f8d23426d3f4048df89523aa47203c3493a
>> -- 
>> 2.37.3


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7
  2022-11-18 19:24   ` Melody Olvera
@ 2022-11-20 10:48     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-11-20 10:48 UTC (permalink / raw)
  To: Melody Olvera, Vinod Koul, Stephen Boyd
  Cc: linux-arm-msm, Bjorn Andersson, linux-kernel, Rob Herring,
	Krzysztof Kozlowski, devicetree

On 18/11/2022 20:24, Melody Olvera wrote:
> 
> 
> On 11/3/2022 9:27 AM, Vinod Koul wrote:
>> On 14-09-22, 22:22, Vinod Koul wrote:
>>> Hello,
>>>
>>> The is version 5 of support for PMIC v7. I have added a new property
>>> qcom,bus-id for supporting v7 and then add driver changes for v7
>> Stephen,
>>
>> Can you pick this? It has been so long...
> 
> Hi Stephen,
> 
> Do you mind looking at this? I've got some patches that depend on functionality here...
> https://lore.kernel.org/all/20221118192241.29384-1-quic_molvera@quicinc.com/

This was merged.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-11-20 10:48 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-14 16:52 [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
2022-09-14 16:52 ` [PATCH v5 1/2] dt-bindings: spmi: Add qcom,bus-id Vinod Koul
2022-09-15  9:51   ` Krzysztof Kozlowski
2022-09-15 11:59     ` Rob Herring
2022-09-16  4:40       ` Vinod Koul
2022-09-16 18:30   ` Bjorn Andersson
2022-09-21 15:15 ` [PATCH v5 0/2] spmi: pmic-arb: Add support for PMIC v7 Vinod Koul
2022-10-03  5:57   ` Vinod Koul
2022-11-03 14:27 ` Vinod Koul
2022-11-18 19:24   ` Melody Olvera
2022-11-20 10:48     ` Krzysztof Kozlowski

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).