lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <bbd655f4-4e3c-4808-a70f-a508714e463d@kernel.org>
Date: Tue, 29 Jul 2025 08:59:24 +0200
From: Krzysztof Kozlowski <krzk@...nel.org>
To: jeff_chang@...htek.com, lgirdwood@...il.com, broonie@...nel.org,
 robh@...nel.org, krzk+dt@...nel.org, conor+dt@...nel.org,
 linux-kernel@...r.kernel.org, devicetree@...r.kernel.org
Subject: Re: [PATCH v5 1/2] dt-bindings: regulator: Add Richtek RT5133 Support

On 29/07/2025 08:40, jeff_chang@...htek.com wrote:
> From: Jeff Chang <jeff_chang@...htek.com>
> 
> Add bindings for Richtek RT5133 IC Controlled PMIC
> 
> Signed-off-by: Jeff Chang <jeff_chang@...htek.com>

Subject prefix did not improve. Please read ENTIRE feedback you got at
v1, v2 and v3. I think v4 is the only one you applied.

> ---
> 
> PATCH v5
> 1. Fix Subject RT5133
> 2. Update Base regulator description.
> 3. Move richtek,oc-shutdown-all and richtek,pgb-shutdown-all to chip layer.
> 4. Update richtek,oc-shutdown-all and richtek,pgb-shutdown-all description.
> 5. Remove rt5133-ldo-supply, just using vin-supply for pvin7 and pvin8.
>    Pvin7,8 are power source for LDO7,8. Referecne is LDO1 Vout.
> 6. Using standard examples. (Node name and IRQ type)
> 
>  .../bindings/regulator/richtek,rt5133.yaml    | 176 ++++++++++++++++++
>  1 file changed, 176 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/regulator/richtek,rt5133.yaml
> 
> diff --git a/Documentation/devicetree/bindings/regulator/richtek,rt5133.yaml b/Documentation/devicetree/bindings/regulator/richtek,rt5133.yaml
> new file mode 100644
> index 000000000000..c12069ade224
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/regulator/richtek,rt5133.yaml
> @@ -0,0 +1,176 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/regulator/richtek,rt5133.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Richtek RT5133 PMIC Regulator
> +
> +maintainers:
> +  - ShihChia Chang <jeff_chang@...htek.com>
> +
> +description:
> +  The RT5133 is an integrated Power Management IC for portable devices, featuring

Still not wrapped.

> +  8 LDOs and 3 GPOs. It allows programmable output voltages, soft-start times,
> +  and protections via I2C. GPO operation depends on LDO1 voltage.
> +
> +properties:
> +  compatible:
> +    enum:
> +      - richtek,rt5133
> +
> +  reg:
> +    maxItems: 1
> +
> +  enable-gpios:
> +    maxItems: 1
> +
> +  wakeup-source: true
> +
> +  interrupts:
> +    maxItems: 1
> +
> +  gpio-controller: true
> +
> +  "#gpio-cells":
> +    const: 2
> +
> +  richtek,oc-shutdown-all:
> +    type: boolean
> +    description:
> +      Controls the behavior when any LDO (Low Dropout Regulator) enters an Over Current state.

Still not wrapped. Please follow Linux coding style.

> +      If set to true, all LDO channels will be shut down.
> +      If set to false (default), only the affected LDO channel will shut down itself.
> +
> +  richtek,pgb-shutdown-all:
> +    type: boolean
> +    description:
> +      Controls the behavior when any LDO enters a Power Bad state.
> +      If set to true, all LDO channels will be shut down.
> +      If set to false (default), only the affected LDO channel will shut down itself.
> +
> +  regulators:
> +    type: object
> +    additionalProperties: false
> +
> +    properties:
> +      base:
> +        type: object
> +        $ref: regulator.yaml#
> +        unevaluatedProperties: false
> +        description:
> +          Properties for the base regulator, which is the top-level supply for
> +          LDO1 to LDO6. It functions merely as an on/off switch rather than
> +          regulating voltages. If none of LDO1 to LDO6 are in use, switching off
> +          the base will reduce the quiescent current.
> +
> +        required:
> +          - regulator-name
> +
> +    patternProperties:
> +      "^ldo([1-6])$":
> +        type: object
> +        $ref: regulator.yaml#
> +        unevaluatedProperties: false
> +        description:
> +          Properties for single LDO regulator
> +
> +        required:
> +          - regulator-name
> +
> +      "^ldo([7-8])$":
> +        type: object
> +        $ref: regulator.yaml#
> +        unevaluatedProperties: false
> +        description:
> +          Properties for single LDO regulator
> +
> +        properties:
> +          vin-supply: true
> +
> +        required:
> +          - regulator-name
> +          - vin-supply
> +
> +required:
> +  - compatible
> +  - reg
> +  - interrupts
> +  - wakeup-source

This is surprising. If this is required, then it is implied by the
compatible. Drop it from here and from properties.

> +
> +unevaluatedProperties: false

additionalProperties instead

> +
> +examples:
> +  - |
> +    #include <dt-bindings/interrupt-controller/irq.h>
> +    i2c {
> +      #address-cells = <1>;
> +      #size-cells = <0>;
> +
> +      pmic@18 {
> +        compatible = "richtek,rt5133";
> +        reg = <0x18>;
> +        wakeup-source;
> +        interrupts-extended = <&gpio 0 IRQ_TYPE_EDGE_FALLING>;
> +        enable-gpios = <&gpio 2 0>;

This did not improve.

> +        gpio-controller;
> +        #gpio-cells = <2>;
> +        richtek,oc-shutdown-all;
> +        richtek,pgb-shutdown-all;
> +        regulators {
> +          base {
> +            regulator-name = "rt5133,base";

Names do not have commas.

> +          };
> +          pvin78: ldo1 {
> +            regulator-name = "rt5133-ldo1";

Drop rt5133 prefix from every name.


Best regards,
Krzysztof

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ