From: Rob Herring <robh@kernel.org>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Cc: linux-kernel@vger.kernel.org, linux-amarula@amarulasolutions.com,
Alexandre Torgue <alexandre.torgue@foss.st.com>,
Conor Dooley <conor+dt@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-clk@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com
Subject: Re: [PATCH 4/6] dt-bindings: clock: st,stm32-rcc: support spread spectrum clocking
Date: Wed, 8 Jan 2025 17:48:07 -0600 [thread overview]
Message-ID: <20250108234807.GA1247672-robh@kernel.org> (raw)
In-Reply-To: <20250105181525.1370822-5-dario.binacchi@amarulasolutions.com>
On Sun, Jan 05, 2025 at 07:14:16PM +0100, Dario Binacchi wrote:
> The addition of DT bindings for enabling and tuning spread spectrum
> clocking generation is available only for the main PLL.
>
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---
>
> .../bindings/clock/st,stm32-rcc.yaml | 27 +++++++++++++++++++
> 1 file changed, 27 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml b/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml
> index ae9e5b26d876..c345d3ff3fc4 100644
> --- a/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml
> +++ b/Documentation/devicetree/bindings/clock/st,stm32-rcc.yaml
> @@ -77,6 +77,26 @@ properties:
> Phandle to system configuration controller. It can be used to control the
> power domain circuitry.
>
> + st,ssc-modfreq-hz:
> + description:
> + The modulation frequency for main PLL (in Hz)
No constraints?
> +
> + st,ssc-moddepth-permyriad:
> + $ref: /schemas/types.yaml#/definitions/uint32
> + description:
> + The modulation rate for main PLL (in permyriad, i.e. 0.01%)
> + minimum: 25
> + maximum: 200
> +
> + st,ssc-modmethod:
> + $ref: /schemas/types.yaml#/definitions/non-unique-string-array
> + description:
> + The modulation techniques for main PLL.
> + items:
> + enum:
> + - center-spread
> + - down-spread
What's the default? If there's only 2 possibilities, then you can use a
boolean instead. Though I assume you want to support spread-spectrum
disabled.
Are there dependencies between these properties?
> +
> required:
> - compatible
> - reg
> @@ -97,6 +117,10 @@ allOf:
> const: 1
> description: |
> The clock index for the specified type.
> + st,ssc-modfreq-hz: false
> + st,ssc-moddepth-permyriad: false
> + st,ssc-modmethod: false
> +
> else:
> properties:
> '#clock-cells':
> @@ -118,6 +142,9 @@ examples:
> reg = <0x40023800 0x400>;
> clocks = <&clk_hse>, <&clk_i2s_ckin>;
> st,syscfg = <&pwrcfg>;
> + st,ssc-modfreq-hz = <10000>;
> + st,ssc-moddepth-permyriad = <200>;
> + st,ssc-modmethod = "center-spread";
> };
>
> - |
> --
> 2.43.0
>
next prev parent reply other threads:[~2025-01-08 23:50 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-05 18:14 [PATCH 0/6] Support spread spectrum clocking for stm32f{4,7} platforms Dario Binacchi
2025-01-05 18:14 ` [PATCH 1/6] dt-bindings: clock: convert stm32 rcc bindings to json-schema Dario Binacchi
2025-01-07 7:08 ` Krzysztof Kozlowski
2025-01-05 18:14 ` [PATCH 2/6] dt-bindings: reset: st,stm32-rcc: update reference due to rename Dario Binacchi
2025-01-06 7:21 ` Krzysztof Kozlowski
2025-01-05 18:14 ` [PATCH 3/6] dt-bindings: clock: stm32fx: " Dario Binacchi
2025-01-06 7:21 ` Krzysztof Kozlowski
2025-01-05 18:14 ` [PATCH 4/6] dt-bindings: clock: st,stm32-rcc: support spread spectrum clocking Dario Binacchi
2025-01-08 23:48 ` Rob Herring [this message]
2025-01-09 21:18 ` Dario Binacchi
2025-01-05 18:14 ` [PATCH 5/6] clk: stm32f4: use FIELD helpers to access the PLLCFGR fields Dario Binacchi
2025-01-05 18:14 ` [PATCH 6/6] clk: stm32f4: support spread spectrum clock generation Dario Binacchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250108234807.GA1247672-robh@kernel.org \
--to=robh@kernel.org \
--cc=alexandre.torgue@foss.st.com \
--cc=conor+dt@kernel.org \
--cc=dario.binacchi@amarulasolutions.com \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-amarula@amarulasolutions.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=mturquette@baylibre.com \
--cc=sboyd@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).