[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <0678c24c-33ae-7e99-7bb6-d15dc5a7ed76@linaro.org>
Date: Wed, 3 May 2023 08:28:46 +0200
From: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
To: Cristian Ciocaltea <cristian.ciocaltea@...labora.com>,
Srinivas Kandagatla <srinivas.kandagatla@...aro.org>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>,
Heiko Stuebner <heiko@...ech.de>,
Philipp Zabel <p.zabel@...gutronix.de>,
Sebastian Reichel <sebastian.reichel@...labora.com>,
Shreeya Patel <shreeya.patel@...labora.com>,
Kever Yang <kever.yang@...k-chips.com>,
Finley Xiao <finley.xiao@...k-chips.com>
Cc: devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-rockchip@...ts.infradead.org, linux-kernel@...r.kernel.org,
kernel@...labora.com
Subject: Re: [PATCH 2/8] dt-bindings: nvmem: rockchip-otp: Add compatible for
RK3588
On 01/05/2023 10:43, Cristian Ciocaltea wrote:
> Document the OTP memory found on Rockchip RK3588 SoC.
>
> Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@...labora.com>
> ---
> .../bindings/nvmem/rockchip-otp.yaml | 71 ++++++++++++++++---
> 1 file changed, 60 insertions(+), 11 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/nvmem/rockchip-otp.yaml b/Documentation/devicetree/bindings/nvmem/rockchip-otp.yaml
> index 658ceed14ee2..84a11382c6e7 100644
> --- a/Documentation/devicetree/bindings/nvmem/rockchip-otp.yaml
> +++ b/Documentation/devicetree/bindings/nvmem/rockchip-otp.yaml
> @@ -9,34 +9,31 @@ title: Rockchip internal OTP (One Time Programmable) memory
> maintainers:
> - Heiko Stuebner <heiko@...ech.de>
>
> -allOf:
> - - $ref: nvmem.yaml#
> -
> properties:
> compatible:
> enum:
> - rockchip,px30-otp
> - rockchip,rk3308-otp
> + - rockchip,rk3588-otp
>
> reg:
> maxItems: 1
>
> clocks:
> minItems: 3
> - maxItems: 3
> + maxItems: 4
>
> clock-names:
> - items:
> - - const: otp
> - - const: apb_pclk
> - - const: phy
> + minItems: 3
> + maxItems: 4
>
> resets:
> - maxItems: 1
> + minItems: 1
> + maxItems: 3
>
> reset-names:
> - items:
> - - const: phy
> + minItems: 1
> + maxItems: 3
>
> required:
> - compatible
> @@ -46,6 +43,58 @@ required:
> - resets
> - reset-names
>
> +allOf:
> + - $ref: nvmem.yaml#
> +
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - rockchip,px30-otp
> + - rockchip,rk3308-otp
> + then:
> + properties:
> + clocks:
> + minItems: 3
> + maxItems: 3
> + clock-names:
> + items:
> + - const: otp
> + - const: apb_pclk
> + - const: phy
> + resets:
> + maxItems: 1
> + reset-names:
> + items:
> + - const: phy
> +
> + - if:
> + properties:
> + compatible:
> + contains:
> + enum:
> + - rockchip,rk3588-otp
> + then:
> + properties:
> + clocks:
> + minItems: 4
> + maxItems: 4
> + clock-names:
> + items:
> + - const: otpc
> + - const: apb
> + - const: arb
> + - const: phy
Keep the same order of clocks as in older variants, so you can keep the
list in top-level place and here only minItems: 4.
> + resets:
> + minItems: 1
> + maxItems: 3
> + reset-names:
> + items:
> + - const: otpc
Shouldn't this be phy?
Best regards,
Krzysztof
Powered by blists - more mailing lists