This is version 2 of a patch set to bring proper DT based clocks to Marvell Berlin SoCs. The overall changes are: * Dropped of_clk_create_name() helper Booting into an initramfs rootfs revealed that the unique clock names created with that helper clash with the way of_clk_get_parent_name() resolves the clock specifier to get the correct clock name. Anyway, I still consider the helper a good idea and postpone it to the next cycle when I have more time to look at the details. * Added BG2Q core clock driver and dtsi changes Alexandre just provided them, so I added them to this patch set. The single patch overview now is: Patch 1 adds the whole binding documentation for all clock related IP found on BG2, BG2CD, and BG2Q. Patch 2 adds corresponding dt-binding includes for the core clock indices to be used in both DT and the driver. Patches 3, 4, and 5 add clock drivers for the Audio/Video PLL, simple PLLs, and complex clock divider cells found on Berlin SoCs. Where required, currently known differences between BG2/BG2CD and BG2Q are taken care of. Patches 6 and 7 add core clock drivers for the remaining clocks of BG2/BG2CD and BG2Q. The register set dealing with it, is shared among input and bypass muxes, clock dividers and clock gates. Patches 8, 9, and 10 finally convert the DT SoC includes for BG2, BG2CD, and BG2Q to make use of the new clock related DT nodes. Alexandre Belloni (4): clk: berlin: add driver for BG2x simple PLLs clk: berlin: add driver for BG2x complex divider cells clk: berlin: add core clock driver for BG2Q ARM: dts: berlin: convert BG2Q to DT clock nodes Sebastian Hesselbarth (6): dt-binding: clk: add clock binding docs for Marvell Berlin2 SoCs clk: berlin: add binding include for BG2/BG2CD clock ids clk: berlin: add driver for BG2x audio/video PLL clk: berlin: add core clock driver for BG2/BG2CD ARM: dts: berlin: convert BG2CD to DT clock nodes ARM: dts: berlin: convert BG2 to DT clock nodes .../devicetree/bindings/clock/berlin2-clock.txt | 195 ++++++++ arch/arm/boot/dts/berlin2.dtsi | 207 +++++++-- arch/arm/boot/dts/berlin2cd.dtsi | 205 +++++++-- arch/arm/boot/dts/berlin2q.dtsi | 80 +++- drivers/clk/Makefile | 1 + drivers/clk/berlin/Makefile | 4 + drivers/clk/berlin/berlin2-avpll.c | 368 +++++++++++++++ drivers/clk/berlin/berlin2-div.c | 324 +++++++++++++ drivers/clk/berlin/berlin2-div.h | 80 ++++ drivers/clk/berlin/berlin2-pll.c | 168 +++++++ drivers/clk/berlin/bg2.c | 502 +++++++++++++++++++++ drivers/clk/berlin/bg2q.c | 269 +++++++++++ include/dt-bindings/clock/berlin2.h | 35 ++ include/dt-bindings/clock/berlin2q.h | 28 ++ 14 files changed, 2385 insertions(+), 81 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/berlin2-clock.txt create mode 100644 drivers/clk/berlin/Makefile create mode 100644 drivers/clk/berlin/berlin2-avpll.c create mode 100644 drivers/clk/berlin/berlin2-div.c create mode 100644 drivers/clk/berlin/berlin2-div.h create mode 100644 drivers/clk/berlin/berlin2-pll.c create mode 100644 drivers/clk/berlin/bg2.c create mode 100644 drivers/clk/berlin/bg2q.c create mode 100644 include/dt-bindings/clock/berlin2.h create mode 100644 include/dt-bindings/clock/berlin2q.h --- Cc: Rob Herring <robh+dt@xxxxxxxxxx> Cc: Pawel Moll <pawel.moll@xxxxxxx> Cc: Mark Rutland <mark.rutland@xxxxxxx> Cc: Ian Campbell <ijc+devicetree@xxxxxxxxxxxxxx> Cc: Kumar Gala <galak@xxxxxxxxxxxxxx> Cc: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: Mike Turquette <mturquette@xxxxxxxxxx> Cc: Alexandre Belloni <alexandre.belloni@xxxxxxxxxxxxxxxxxx> Cc: Jisheng Zhang <jszhang@xxxxxxxxxxx> Cc: devicetree@xxxxxxxxxxxxxxx Cc: linux-doc@xxxxxxxxxxxxxxx Cc: linux-arm-kernel@xxxxxxxxxxxxxxxxxxx Cc: linux-kernel@xxxxxxxxxxxxxxx -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html