All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/4] Add a clock driver for the imx8mq
@ 2022-03-14 18:22 Angus Ainslie
  2022-03-14 18:22 ` [PATCH v3 1/4] dt-bindings: imx8mq-clock: add mainline definitions Angus Ainslie
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Angus Ainslie @ 2022-03-14 18:22 UTC (permalink / raw)
  To: u-boot, Marek Vasut
  Cc: lukma, seanga2, sbabic, festevam, kernel, uboot-imx, Angus Ainslie

This is a DM clock driver for the imx8mq based on the linux kernel
driver and the u-boot imx8mm clock driver.

It also removes some code duplication in the imx8m[nmp] clock drivers.

Changes since v2:

Added kernel commit IDs 
Re-factored rate table code to remove duplication
Remove duplicate code by creating a common clk-imx8m

Changes since v1:

More verbose clock driver description
Added forgotten dt-bindings
Synced PLL frequencies with mainline kernel

Angus Ainslie (4):
  dt-bindings: imx8mq-clock: add mainline definitions
  clk: imx8mq: Add a clock driver for the imx8mq
  clk: imx8m: reduce rate table duplication
  clk: imx8m: remove code duplication

 drivers/clk/imx/Kconfig                  |  16 +
 drivers/clk/imx/Makefile                 |   8 +-
 drivers/clk/imx/clk-imx8m.c              | 108 ++++++
 drivers/clk/imx/clk-imx8m.h              |  12 +
 drivers/clk/imx/clk-imx8mm.c             | 149 +-------
 drivers/clk/imx/clk-imx8mn.c             | 149 +-------
 drivers/clk/imx/clk-imx8mp.c             | 156 +-------
 drivers/clk/imx/clk-imx8mq.c             | 441 +++++++++++++++++++++++
 drivers/clk/imx/clk-pll14xx.c            |  44 +++
 drivers/clk/imx/clk.h                    |  21 ++
 include/dt-bindings/clock/imx8mq-clock.h |  16 +-
 11 files changed, 688 insertions(+), 432 deletions(-)
 create mode 100644 drivers/clk/imx/clk-imx8m.c
 create mode 100644 drivers/clk/imx/clk-imx8m.h
 create mode 100644 drivers/clk/imx/clk-imx8mq.c

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-03-14 20:18 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-14 18:22 [PATCH v3 0/4] Add a clock driver for the imx8mq Angus Ainslie
2022-03-14 18:22 ` [PATCH v3 1/4] dt-bindings: imx8mq-clock: add mainline definitions Angus Ainslie
2022-03-14 18:54   ` Marek Vasut
2022-03-14 18:22 ` [PATCH v3 2/4] clk: imx8mq: Add a clock driver for the imx8mq Angus Ainslie
2022-03-14 18:55   ` Marek Vasut
2022-03-14 18:22 ` [PATCH v3 3/4] clk: imx8m: reduce rate table duplication Angus Ainslie
2022-03-14 18:57   ` Marek Vasut
2022-03-14 19:15     ` Angus Ainslie
2022-03-14 20:18       ` Marek Vasut
2022-03-14 18:22 ` [PATCH v3 4/4] clk: imx8m: remove code duplication Angus Ainslie
2022-03-14 18:58   ` Marek Vasut

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.