2023-02-14 09:10:29

by Konrad Dybcio

[permalink] [raw]
Subject: [PATCH v2 1/3] dt-bindings: power: supply: pm8941-coincell: Add PM8998 compatible

Add a specific compatible for the coincell charger present on PM8998.

Acked-by: Krzysztof Kozlowski <[email protected]>
Signed-off-by: Konrad Dybcio <[email protected]>
---
v1 -> v2:

- Pick up ab

.../bindings/power/supply/qcom,pm8941-coincell.yaml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml b/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
index 0450f4dd4e51..b7b58aed3f3c 100644
--- a/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
+++ b/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
@@ -16,7 +16,13 @@ maintainers:

properties:
compatible:
- const: qcom,pm8941-coincell
+ oneOf:
+ - items:
+ - enum:
+ - qcom,pm8998-coincell
+ - const: qcom,pm8941-coincell
+
+ - const: qcom,pm8941-coincell

reg:
maxItems: 1
--
2.39.1



2023-02-14 09:10:38

by Konrad Dybcio

[permalink] [raw]
Subject: [PATCH v2 3/3] arm64: dts: qcom: pm8998: Add a specific compatible for coincell chg

Add a PM8998-specific compatibel to the coincell charger and keep the
PM8941 one as fallback.

Signed-off-by: Konrad Dybcio <[email protected]>
---
v1 -> v2:

No changes

arch/arm64/boot/dts/qcom/pm8998.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/pm8998.dtsi b/arch/arm64/boot/dts/qcom/pm8998.dtsi
index adbba9f4089a..340033ac3186 100644
--- a/arch/arm64/boot/dts/qcom/pm8998.dtsi
+++ b/arch/arm64/boot/dts/qcom/pm8998.dtsi
@@ -72,7 +72,7 @@ pm8998_temp: temp-alarm@2400 {
};

pm8998_coincell: charger@2800 {
- compatible = "qcom,pm8941-coincell";
+ compatible = "qcom,pm8998-coincell", "qcom,pm8941-coincell";
reg = <0x2800>;

status = "disabled";
--
2.39.1


2023-02-14 09:10:41

by Konrad Dybcio

[permalink] [raw]
Subject: [PATCH v2 2/3] dt-bindings: power: supply: pm8941-coincell: Don't require charging properties

It's fine for these properties to be absent, as the driver doesn't fail
without them and functions with settings inherited from the reset/previous
stage bootloader state.

Fixes: 6c463222a21d ("dt-bindings: power: supply: pm8941-coincell: Convert to DT schema format")
Signed-off-by: Konrad Dybcio <[email protected]>
---
v1 -> v2:

- Describe the behaviour when the properties are absent

.../bindings/power/supply/qcom,pm8941-coincell.yaml | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml b/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
index b7b58aed3f3c..1d2405bea109 100644
--- a/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
+++ b/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
@@ -28,12 +28,18 @@ properties:
maxItems: 1

qcom,rset-ohms:
- description: resistance (in ohms) for current-limiting resistor
+ description: |
+ Resistance (in ohms) for current-limiting resistor. If unspecified,
+ inherit the previous configuration (e.g. from bootloader or hardware
+ default value).
enum: [ 800, 1200, 1700, 2100 ]

qcom,vset-millivolts:
$ref: /schemas/types.yaml#/definitions/uint32
- description: voltage (in millivolts) to apply for charging
+ description: |
+ Voltage (in millivolts) to apply for charging. If unspecified, inherit
+ the previous configuration (e.g. from bootloader or hardware default
+ value).
enum: [ 2500, 3000, 3100, 3200 ]

qcom,charger-disable:
@@ -43,8 +49,6 @@ properties:
required:
- compatible
- reg
- - qcom,rset-ohms
- - qcom,vset-millivolts

additionalProperties: false

--
2.39.1


2023-02-14 11:40:54

by Marijn Suijten

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] arm64: dts: qcom: pm8998: Add a specific compatible for coincell chg

On 2023-02-14 10:08:49, Konrad Dybcio wrote:
> Add a PM8998-specific compatibel to the coincell charger and keep the

I know you've been taking Dutch lessons, compatibel is a Dutch word :)

> PM8941 one as fallback.
>
> Signed-off-by: Konrad Dybcio <[email protected]>

Reviewed-by: Marijn Suijten <[email protected]>

> ---
> v1 -> v2:
>
> No changes
>
> arch/arm64/boot/dts/qcom/pm8998.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/qcom/pm8998.dtsi b/arch/arm64/boot/dts/qcom/pm8998.dtsi
> index adbba9f4089a..340033ac3186 100644
> --- a/arch/arm64/boot/dts/qcom/pm8998.dtsi
> +++ b/arch/arm64/boot/dts/qcom/pm8998.dtsi
> @@ -72,7 +72,7 @@ pm8998_temp: temp-alarm@2400 {
> };
>
> pm8998_coincell: charger@2800 {
> - compatible = "qcom,pm8941-coincell";
> + compatible = "qcom,pm8998-coincell", "qcom,pm8941-coincell";
> reg = <0x2800>;
>
> status = "disabled";
> --
> 2.39.1
>

2023-02-15 19:04:10

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH v2 2/3] dt-bindings: power: supply: pm8941-coincell: Don't require charging properties

On 14/02/2023 10:08, Konrad Dybcio wrote:
> It's fine for these properties to be absent, as the driver doesn't fail
> without them and functions with settings inherited from the reset/previous
> stage bootloader state.
>
> Fixes: 6c463222a21d ("dt-bindings: power: supply: pm8941-coincell: Convert to DT schema format")
> Signed-off-by: Konrad Dybcio <[email protected]>


Acked-by: Krzysztof Kozlowski <[email protected]>

Best regards,
Krzysztof


2023-02-16 00:06:40

by Sebastian Reichel

[permalink] [raw]
Subject: Re: [PATCH v2 1/3] dt-bindings: power: supply: pm8941-coincell: Add PM8998 compatible

Hi,

On Tue, Feb 14, 2023 at 10:08:47AM +0100, Konrad Dybcio wrote:
> Add a specific compatible for the coincell charger present on PM8998.
>
> Acked-by: Krzysztof Kozlowski <[email protected]>
> Signed-off-by: Konrad Dybcio <[email protected]>
> ---

Thanks, queued.

-- Sebastian

> v1 -> v2:
>
> - Pick up ab
>
> .../bindings/power/supply/qcom,pm8941-coincell.yaml | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml b/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
> index 0450f4dd4e51..b7b58aed3f3c 100644
> --- a/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
> +++ b/Documentation/devicetree/bindings/power/supply/qcom,pm8941-coincell.yaml
> @@ -16,7 +16,13 @@ maintainers:
>
> properties:
> compatible:
> - const: qcom,pm8941-coincell
> + oneOf:
> + - items:
> + - enum:
> + - qcom,pm8998-coincell
> + - const: qcom,pm8941-coincell
> +
> + - const: qcom,pm8941-coincell
>
> reg:
> maxItems: 1
> --
> 2.39.1
>


Attachments:
(No filename) (1.14 kB)
signature.asc (833.00 B)
Download all attachments

2023-02-16 00:07:06

by Sebastian Reichel

[permalink] [raw]
Subject: Re: [PATCH v2 2/3] dt-bindings: power: supply: pm8941-coincell: Don't require charging properties

Hi,

On Wed, Feb 15, 2023 at 08:04:00PM +0100, Krzysztof Kozlowski wrote:
> On 14/02/2023 10:08, Konrad Dybcio wrote:
> > It's fine for these properties to be absent, as the driver doesn't fail
> > without them and functions with settings inherited from the reset/previous
> > stage bootloader state.
> >
> > Fixes: 6c463222a21d ("dt-bindings: power: supply: pm8941-coincell: Convert to DT schema format")
> > Signed-off-by: Konrad Dybcio <[email protected]>
>
>
> Acked-by: Krzysztof Kozlowski <[email protected]>

Thanks, queued.

-- Sebastian


Attachments:
(No filename) (569.00 B)
signature.asc (833.00 B)
Download all attachments

2023-03-15 23:33:50

by Bjorn Andersson

[permalink] [raw]
Subject: Re: (subset) [PATCH v2 1/3] dt-bindings: power: supply: pm8941-coincell: Add PM8998 compatible

On Tue, 14 Feb 2023 10:08:47 +0100, Konrad Dybcio wrote:
> Add a specific compatible for the coincell charger present on PM8998.
>
>

Applied, thanks!

[3/3] arm64: dts: qcom: pm8998: Add a specific compatible for coincell chg
commit: 0d589dc92fca4679186a949194fc7c452d37c575

Best regards,
--
Bjorn Andersson <[email protected]>