[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tedqfrtcnx66j5tlkgmiv4wr6towpwwso4pjzraxm76cjejory@3cktakntjbab>
Date: Tue, 7 Jan 2025 08:08:16 +0100
From: Krzysztof Kozlowski <krzk@...nel.org>
To: Dario Binacchi <dario.binacchi@...rulasolutions.com>
Cc: linux-kernel@...r.kernel.org, linux-amarula@...rulasolutions.com,
Alexandre Torgue <alexandre.torgue@...s.st.com>, Conor Dooley <conor+dt@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>, Maxime Coquelin <mcoquelin.stm32@...il.com>,
Michael Turquette <mturquette@...libre.com>, Rob Herring <robh@...nel.org>, Stephen Boyd <sboyd@...nel.org>,
devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org, linux-clk@...r.kernel.org,
linux-stm32@...md-mailman.stormreply.com
Subject: Re: [PATCH 1/6] dt-bindings: clock: convert stm32 rcc bindings to
json-schema
On Sun, Jan 05, 2025 at 07:14:13PM +0100, Dario Binacchi wrote:
> diff --git a/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml b/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml
> new file mode 100644
> index 000000000000..ae9e5b26d876
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml
> @@ -0,0 +1,143 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/st,stm32-rcc.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: STMicroelectronics STM32 Reset Clock Controller
> +
> +maintainers:
> + - Dario Binacchi <dario.binacchi@...rulasolutions.com>
> +
> +description: |
> + The RCC IP is both a reset and a clock controller.
> +
> + This binding uses common clock and reset bindings
> + Documentation/devicetree/bindings/clock/clock-bindings.txt
> + Documentation/devicetree/bindings/reset/reset.txt
Drop paragraph.
> +
> + Specifying softreset control of devices
> + =======================================
> +
> + Device nodes should specify the reset channel required in their "resets"
> + property, containing a phandle to the reset device node and an index specifying
> + which channel to use.
Drop paragraph and rephrase it that reset phandle argument is "... the bit
number within the RCC...."
> + The index is the bit number within the RCC registers bank, starting from RCC
> + base address.
> + It is calculated as: index = register_offset / 4 * 32 + bit_offset.
> + Where bit_offset is the bit offset within the register.
> +
> + For example, for CRC reset:
> + crc = AHB1RSTR_offset / 4 * 32 + CRCRST_bit_offset = 0x10 / 4 * 32 + 12 = 140
> +
> + The list of valid indices is available in:
> + - include/dt-bindings/mfd/stm32f4-rcc.h for STM32F4 series
> + - include/dt-bindings/mfd/stm32f7-rcc.h for STM32F7 series
> + - include/dt-bindings/mfd/stm32h7-rcc.h for STM32H7 series
> +
> +properties:
> + compatible:
> + oneOf:
> + - items:
> + - const: st,stm32f42xx-rcc
> + - const: st,stm32-rcc
> + - items:
> + - enum:
> + - st,stm32f469-rcc
> + - const: st,stm32f42xx-rcc
> + - const: st,stm32-rcc
> + - items:
> + - const: st,stm32f746-rcc
> + - const: st,stm32-rcc
> + - items:
> + - enum:
> + - st,stm32f769-rcc
> + - const: st,stm32f746-rcc
> + - const: st,stm32-rcc
> + - items:
> + - const: st,stm32h743-rcc
> + - const: st,stm32-rcc
Old binding did not mention any fallbacks, so you need to explain this
in commit msg. You only said "st,stm32h743-rcc"
> +
> + reg:
> + maxItems: 1
> +
> + '#reset-cells':
> + const: 1
> +
> + '#clock-cells':
> + enum: [1, 2]
> +
> + clocks:
> + minItems: 2
> + maxItems: 3
You need to list the items with description. Narrow the clock numbers
per varian in allOf:if:then and explain this in commit msg (old binding
did not say three clocks, so that's another change).
> +
> + st,syscfg:
> + $ref: /schemas/types.yaml#/definitions/phandle
> + description:
> + Phandle to system configuration controller. It can be used to control the
> + power domain circuitry.
> +
> +required:
> + - compatible
> + - reg
> + - '#reset-cells'
> + - '#clock-cells'
> + - clocks
> + - st,syscfg
> +
> +allOf:
> + - if:
> + properties:
> + compatible:
> + contains:
> + const: st,stm32h743-rcc
> + then:
> + properties:
> + '#clock-cells':
> + const: 1
> + description: |
> + The clock index for the specified type.
> + else:
> + properties:
> + '#clock-cells':
> + const: 2
> + description: |
> + - The first cell is the clock type, possible values are 0 for
> + gated clocks and 1 otherwise.
> + - The second cell is the clock index for the specified type.
> +
> +additionalProperties: false
> +
> +examples:
> + # Reset and Clock Control Module node:
> + - |
> + rcc@...23800 {
> + #reset-cells = <1>;
> + #clock-cells = <2>;
> + compatible = "st,stm32f42xx-rcc", "st,stm32-rcc";
> + reg = <0x40023800 0x400>;
compatible and reg are alwys the first.
> + clocks = <&clk_hse>, <&clk_i2s_ckin>;
> + st,syscfg = <&pwrcfg>;
Only one example.
> + };
> +
> + - |
> + rcc@...23800 {
> + #reset-cells = <1>;
> + #clock-cells = <2>;
> + compatible = "st,stm32f746-rcc", "st,stm32-rcc";
> + reg = <0x40023800 0x400>;
> + clocks = <&clk_hse>, <&clk_i2s_ckin>;
> + st,syscfg = <&pwrcfg>;
> + };
> +
> + - |
> + rcc@...24400 {
clock-controller@...24400
> + compatible = "st,stm32h743-rcc", "st,stm32-rcc";
> + reg = <0x58024400 0x400>;
> + #clock-cells = <1>;
> + #reset-cells = <1>;
> + clocks = <&clk_hse>, <&clk_lse>, <&clk_i2s>;
> + st,syscfg = <&pwrcfg>;
So maybe just keep this example only.
> + };
> +
> +...
> --
> 2.43.0
>
Powered by blists - more mailing lists