On 23-01-01 18:57:40, Dario Binacchi wrote: > The patch creates a unique node for each clock in the imx8mn clock > control module (CCM). > > To ensure backwards compatibility it was not possible to separate the > changes to the device tree from those applied to the clocks setup code. > In doing so, all clocks are initialized from the device tree and the > legacy setup code with hardwired parameters is removed. > > Signed-off-by: Dario Binacchi <dario.binacchi@xxxxxxxxxxxxxxxxxxxx> > > --- > > (no changes since v1) > > .../boot/dts/freescale/imx8mn-clocks.dtsi | 1885 +++++++++++++++++ > arch/arm64/boot/dts/freescale/imx8mn.dtsi | 54 +- > drivers/clk/imx/clk-imx8mn.c | 714 ++----- > 3 files changed, 2086 insertions(+), 567 deletions(-) > create mode 100644 arch/arm64/boot/dts/freescale/imx8mn-clocks.dtsi > > diff --git a/arch/arm64/boot/dts/freescale/imx8mn-clocks.dtsi b/arch/arm64/boot/dts/freescale/imx8mn-clocks.dtsi > new file mode 100644 > index 000000000000..21e02ea996d0 > --- /dev/null > +++ b/arch/arm64/boot/dts/freescale/imx8mn-clocks.dtsi > @@ -0,0 +1,1885 @@ > +// SPDX-License-Identifier: GPL-2.0-only > +/* > + * Device Tree Source for imx8mn clock data > + * > + * Copyright (c) 2022 Amarula Solutions > + * > + * Dario Binacchi <dario.binacchi@xxxxxxxxxxxxxxxxxxxx> > + */ > + > +/ { > + osc_32k: clock-osc-32k { > + compatible = "fixed-clock"; > + #clock-cells = <0>; > + clock-frequency = <32768>; > + clock-output-names = "osc_32k"; > + }; > + [...] > + > + clk_audio_pll2_bypass: clock-audio-pll2-bypass@14 { > + compatible = "fsl,imx8mn-mux-clock"; > + #clock-cells = <0>; > + clocks = <&clk_audio_pll2>, <&clk_audio_pll2_ref_sel>; > + fsl,anatop = <&anatop 0x14>; > + fsl,bit-shift = <16>; > + fsl,set-rate-parent; NACK. I'm sorry, but this creates a huge effort on maintaining the bindings. Plus the vendor specific properties will keep increasing. I don't think Rob and Krzysztof will be OK with this either. > + clock-output-names = "audio_pll2_bypass"; > + }; > + > + clk_audio_pll2_out: clock-audio-pll2-out@14 { > + compatible = "fsl,imx8mn-gate-clock"; > + #clock-cells = <0>; > + clocks = <&clk_audio_pll2_bypass>; > + fsl,anatop = <&anatop 0x14>; > + fsl,bit-shift = <13>; > + clock-output-names = "audio_pll2_out"; > + }; > + [...] > -- > 2.32.0 >