* [PATCH v3 0/4] Fix Versa3 clock mapping
@ 2023-08-17 14:22 Biju Das
2023-08-17 14:22 ` [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names Biju Das
0 siblings, 1 reply; 5+ messages in thread
From: Biju Das @ 2023-08-17 14:22 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: Biju Das, Geert Uytterhoeven, Magnus Damm, linux-renesas-soc,
linux-clk, devicetree, Prabhakar Mahadev Lad
According to Table 3. ("Output Source") in the 5P35023 datasheet,
the output clock mapping should be 0=REF, 1=SE1, 2=SE2, 3=SE3,
4=DIFF1, 5=DIFF2. But the code uses inverse.
This patch series aims to document clock-output-names in bindings and
fix the mapping in driver.
Also added a fix for 64 by 64 division.
v2->v3:
* Dropped dts patch and added fix for 64 byte division to this patch
series.
* Added Rb tag from Geert for patch#3
* Added a patch to make vc3_clk_mux enum values depend on vc3_clk enum
values.
v1->v2:
* Updated binding commit description to make it clear it fixes
"assigned-clock-rates" in the example based on 5P35023 datasheet.
Biju Das (4):
dt-bindings: clock: versaclock3: Document clock-output-names
clk: vc3: Fix 64 by 64 division
clk: vc3: Fix output clock mapping
clk: vc3: Make vc3_clk_mux enum values based on vc3_clk enum values
.../bindings/clock/renesas,5p35023.yaml | 14 +++-
drivers/clk/clk-versaclock3.c | 79 +++++++++----------
2 files changed, 49 insertions(+), 44 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names 2023-08-17 14:22 [PATCH v3 0/4] Fix Versa3 clock mapping Biju Das @ 2023-08-17 14:22 ` Biju Das 2023-08-18 9:36 ` Krzysztof Kozlowski 2023-08-22 23:53 ` Stephen Boyd 0 siblings, 2 replies; 5+ messages in thread From: Biju Das @ 2023-08-17 14:22 UTC (permalink / raw) To: Michael Turquette, Stephen Boyd, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Biju Das, Geert Uytterhoeven, Magnus Damm, linux-renesas-soc, linux-clk, devicetree, Prabhakar Mahadev Lad Document clock-output-names property and fix the "assigned-clock-rates" for each clock output in the example based on Table 3. ("Output Source") in the 5P35023 datasheet(ie: {REF,SE1,SE2,SE3,DIFF1,DIFF2}). While at it, replace clocks phandle in the example from x1_x2->x1 as X2 is a different 32768 kHz crystal. Suggested-by: Geert Uytterhoeven <geert+renesas@glider.be> Closes: https://lore.kernel.org/all/CAMuHMdUHD+bEco=WYTYWsTAyRt3dTQQt4Xpaejss0Y2ZpLCMNg@mail.gmail.com/ Fixes: a03d23f860eb ("dt-bindings: clock: Add Renesas versa3 clock generator bindings") Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> --- v2->v3: * No change. v1->v2: * Updated commit description to make it clear it fixes "assigned-clock-rates" in the example based on 5P35023 datasheet. --- .../devicetree/bindings/clock/renesas,5p35023.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Documentation/devicetree/bindings/clock/renesas,5p35023.yaml b/Documentation/devicetree/bindings/clock/renesas,5p35023.yaml index 839648e753d4..db8d01b291dd 100644 --- a/Documentation/devicetree/bindings/clock/renesas,5p35023.yaml +++ b/Documentation/devicetree/bindings/clock/renesas,5p35023.yaml @@ -49,6 +49,9 @@ properties: $ref: /schemas/types.yaml#/definitions/uint8-array maxItems: 37 + clock-output-names: + maxItems: 6 + required: - compatible - reg @@ -68,7 +71,7 @@ examples: reg = <0x68>; #clock-cells = <1>; - clocks = <&x1_x2>; + clocks = <&x1>; renesas,settings = [ 80 00 11 19 4c 02 23 7f 83 19 08 a9 5f 25 24 bf @@ -76,11 +79,14 @@ examples: 80 b0 45 c4 95 ]; + clock-output-names = "ref", "se1", "se2", "se3", + "diff1", "diff2"; + assigned-clocks = <&versa3 0>, <&versa3 1>, <&versa3 2>, <&versa3 3>, <&versa3 4>, <&versa3 5>; - assigned-clock-rates = <12288000>, <25000000>, - <12000000>, <11289600>, - <11289600>, <24000000>; + assigned-clock-rates = <24000000>, <11289600>, + <11289600>, <12000000>, + <25000000>, <12288000>; }; }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names 2023-08-17 14:22 ` [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names Biju Das @ 2023-08-18 9:36 ` Krzysztof Kozlowski 2023-08-22 23:53 ` Stephen Boyd 1 sibling, 0 replies; 5+ messages in thread From: Krzysztof Kozlowski @ 2023-08-18 9:36 UTC (permalink / raw) To: Biju Das, Michael Turquette, Stephen Boyd, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Geert Uytterhoeven, Magnus Damm, linux-renesas-soc, linux-clk, devicetree, Prabhakar Mahadev Lad On 17/08/2023 16:22, Biju Das wrote: > Document clock-output-names property and fix the "assigned-clock-rates" > for each clock output in the example based on Table 3. ("Output Source") > in the 5P35023 datasheet(ie: {REF,SE1,SE2,SE3,DIFF1,DIFF2}). > > While at it, replace clocks phandle in the example from x1_x2->x1 as > X2 is a different 32768 kHz crystal. > > Suggested-by: Geert Uytterhoeven <geert+renesas@glider.be> > Closes: https://lore.kernel.org/all/CAMuHMdUHD+bEco=WYTYWsTAyRt3dTQQt4Xpaejss0Y2ZpLCMNg@mail.gmail.com/ > Fixes: a03d23f860eb ("dt-bindings: clock: Add Renesas versa3 clock generator bindings") > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> > --- Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names 2023-08-17 14:22 ` [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names Biju Das 2023-08-18 9:36 ` Krzysztof Kozlowski @ 2023-08-22 23:53 ` Stephen Boyd 2023-08-23 7:59 ` Biju Das 1 sibling, 1 reply; 5+ messages in thread From: Stephen Boyd @ 2023-08-22 23:53 UTC (permalink / raw) To: Biju Das, Conor Dooley, Krzysztof Kozlowski, Michael Turquette, Rob Herring Cc: Biju Das, Geert Uytterhoeven, Magnus Damm, linux-renesas-soc, linux-clk, devicetree, Prabhakar Mahadev Lad Quoting Biju Das (2023-08-17 07:22:08) > Document clock-output-names property and fix the "assigned-clock-rates" > for each clock output in the example based on Table 3. ("Output Source") > in the 5P35023 datasheet(ie: {REF,SE1,SE2,SE3,DIFF1,DIFF2}). > > While at it, replace clocks phandle in the example from x1_x2->x1 as > X2 is a different 32768 kHz crystal. > > Suggested-by: Geert Uytterhoeven <geert+renesas@glider.be> > Closes: https://lore.kernel.org/all/CAMuHMdUHD+bEco=WYTYWsTAyRt3dTQQt4Xpaejss0Y2ZpLCMNg@mail.gmail.com/ > Fixes: a03d23f860eb ("dt-bindings: clock: Add Renesas versa3 clock generator bindings") > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> > --- Applied to clk-next ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names 2023-08-22 23:53 ` Stephen Boyd @ 2023-08-23 7:59 ` Biju Das 0 siblings, 0 replies; 5+ messages in thread From: Biju Das @ 2023-08-23 7:59 UTC (permalink / raw) To: Stephen Boyd, Conor Dooley, Krzysztof Kozlowski, Michael Turquette, Rob Herring Cc: Geert Uytterhoeven, Magnus Damm, linux-renesas-soc@vger.kernel.org, linux-clk@vger.kernel.org, devicetree@vger.kernel.org, Prabhakar Mahadev Lad Hi Stephen Boyd, > Subject: Re: [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document > clock-output-names > > Quoting Biju Das (2023-08-17 07:22:08) > > Document clock-output-names property and fix the "assigned-clock-rates" > > for each clock output in the example based on Table 3. ("Output > > Source") in the 5P35023 datasheet(ie: {REF,SE1,SE2,SE3,DIFF1,DIFF2}). > > > > While at it, replace clocks phandle in the example from x1_x2->x1 as > > X2 is a different 32768 kHz crystal. > > > > Suggested-by: Geert Uytterhoeven <geert+renesas@glider.be> > > Closes: > > Fixes: a03d23f860eb ("dt-bindings: clock: Add Renesas versa3 clock > > generator bindings") > > Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> > > --- > > Applied to clk-next As per Geert's suggestion [1], I am about to send a patch for dropping "clock-output-names", as there is no validation for it and people can get it wrong. Is it ok,if I send a patch dropping clock-output-names? Please let me know your opinion on this. [1] https://patchwork.kernel.org/project/linux-renesas-soc/patch/20230817090810.203900-2-biju.das.jz@bp.renesas.com/ Cheers, Biju ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-23 7:59 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-17 14:22 [PATCH v3 0/4] Fix Versa3 clock mapping Biju Das 2023-08-17 14:22 ` [PATCH v3 1/4] dt-bindings: clock: versaclock3: Document clock-output-names Biju Das 2023-08-18 9:36 ` Krzysztof Kozlowski 2023-08-22 23:53 ` Stephen Boyd 2023-08-23 7:59 ` Biju Das
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).