
Hello,
On 7/25/23 10:08, Sébastien Szymanski wrote:
This series adds i.MX93 CCF driver, modifed from Linux kernel 6.5-rc2 and adapted for U-Boot.
Patches 2 and 3 come from NXP U-Boot.
A boot log and a dump of the clock tree are available at the following URL: https://pastebin.com/7WbubSXK
Alice Guo (1): arm: dts: imx93: add a per clock for LPUART1
Sébastien Szymanski (2): clk: imx: add i.MX93 CCF driver imx93_evk: defconfig: enable clock driver
Ye Li (1): serial: lpuart: Enable IPG clock
gentle ping. Maybe someone at NXP can help review this patchset?
Regards,
arch/arm/dts/imx93-11x11-evk-u-boot.dtsi | 23 ++ arch/arm/dts/imx93.dtsi | 4 +- board/freescale/imx93_evk/imx93_evk.c | 2 - configs/imx93_11x11_evk_defconfig | 2 + drivers/clk/imx/Kconfig | 18 ++ drivers/clk/imx/Makefile | 2 + drivers/clk/imx/clk-composite-93.c | 142 +++++++++ drivers/clk/imx/clk-fracn-gppll.c | 382 +++++++++++++++++++++++ drivers/clk/imx/clk-gate-93.c | 148 +++++++++ drivers/clk/imx/clk-imx93.c | 343 ++++++++++++++++++++ drivers/clk/imx/clk.h | 42 +++ drivers/serial/serial_lpuart.c | 14 +- include/dt-bindings/clock/imx93-clock.h | 6 +- 13 files changed, 1122 insertions(+), 6 deletions(-) create mode 100644 drivers/clk/imx/clk-composite-93.c create mode 100644 drivers/clk/imx/clk-fracn-gppll.c create mode 100644 drivers/clk/imx/clk-gate-93.c create mode 100644 drivers/clk/imx/clk-imx93.c