All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V8 0/7] clk: imx: add imx8qxp clock support
@ 2018-11-21 14:12 ` Aisheng DONG
  0 siblings, 0 replies; 40+ messages in thread
From: Aisheng DONG @ 2018-11-21 14:12 UTC (permalink / raw)
  To: linux-clk
  Cc: linux-arm-kernel, sboyd, mturquette, shawnguo, Fabio Estevam,
	dl-linux-imx, kernel, Aisheng DONG

This patch series adds i.MX8QXP clock support which is based
on the clock service provided by SCU firmware.

Note: It depends on SCU driver which has already been merged by Shawn.
So this patch series could go through Shawn's tree as well.

ChangeLog:
v7->v8:
 * add more kernel doc for lpcg and scu clock structures
 * remove one unneccessry reg checking
v6->v7:
 * use struct_size()
 * remove MODULE_ macros
 * add more kernel docs/code comments
 * other small improvements
 * update reviewed-by tags
 * add the missing PATCH 1 in V6
v5->v6:
 * simply the driver a lot by re-orgnizing the driver into a few clock types:
   scu clock (merge scu divider/gate/mux) and scu gpr lock which accessing is
   through SCU protocol and LPCG clock which is directly accessible by CPU.
 * LPCG clock is separate from SCU clock, gpr clock is still not used
   and will be added later.
 * remove old year license as the code is totally rewritten
 * scu mux support will be added later as it's also still not used.
v4->v5:
 Address all Stephen and Sascha's review comments, see details in each patch
v3->v4:
 * scu headfile path update
 * no functionality change
v2->v3:
 * structures/enums name update with imx_sc prefix
 * no functionality change
v1->v2:
 * structure and enums name update
 * api usage update due to api change
 * no functionality change

Dong Aisheng (7):
  clk: imx: add configuration option for mmio clks
  clk: imx: add scu clock common part
  dt-bindings: clock: imx8qxp: add SCU clock IDs
  clk: imx: add imx8qxp clk driver
  dt-bindings: clock: add imx8qxp lpcg clock binding
  clk: imx: add lpcg clock support
  clk: imx: add imx8qxp lpcg driver

 .../devicetree/bindings/clock/imx8qxp-lpcg.txt     |  51 ++++
 arch/arm/mach-imx/Kconfig                          |  11 +
 drivers/clk/Kconfig                                |   1 +
 drivers/clk/imx/Kconfig                            |   9 +
 drivers/clk/imx/Makefile                           |   8 +-
 drivers/clk/imx/clk-imx8qxp-lpcg.c                 | 216 +++++++++++++++
 drivers/clk/imx/clk-imx8qxp-lpcg.h                 | 102 ++++++++
 drivers/clk/imx/clk-imx8qxp.c                      | 153 +++++++++++
 drivers/clk/imx/clk-lpcg-scu.c                     | 113 ++++++++
 drivers/clk/imx/clk-scu.c                          | 267 +++++++++++++++++++
 drivers/clk/imx/clk-scu.h                          |  24 ++
 include/dt-bindings/clock/imx8qxp-clock.h          | 289 +++++++++++++++++++++
 12 files changed, 1243 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/clock/imx8qxp-lpcg.txt
 create mode 100644 drivers/clk/imx/Kconfig
 create mode 100644 drivers/clk/imx/clk-imx8qxp-lpcg.c
 create mode 100644 drivers/clk/imx/clk-imx8qxp-lpcg.h
 create mode 100644 drivers/clk/imx/clk-imx8qxp.c
 create mode 100644 drivers/clk/imx/clk-lpcg-scu.c
 create mode 100644 drivers/clk/imx/clk-scu.c
 create mode 100644 drivers/clk/imx/clk-scu.h
 create mode 100644 include/dt-bindings/clock/imx8qxp-clock.h

-- 
2.7.4


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

end of thread, other threads:[~2018-12-06  0:42 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-21 14:12 [PATCH V8 0/7] clk: imx: add imx8qxp clock support Aisheng DONG
2018-11-21 14:12 ` Aisheng DONG
2018-11-21 14:12 ` [PATCH V8 1/7] clk: imx: add configuration option for mmio clks Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-21 14:12 ` [PATCH V8 2/7] clk: imx: add scu clock common part Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-12-03 18:33   ` Stephen Boyd
2018-12-03 18:33     ` Stephen Boyd
2018-12-04  1:26     ` Aisheng DONG
2018-12-04  1:26       ` Aisheng DONG
2018-12-05 19:42       ` Stephen Boyd
2018-12-05 19:42         ` Stephen Boyd
2018-12-06  0:41         ` Aisheng Dong
2018-12-06  0:41           ` Aisheng Dong
2018-11-21 14:12 ` [PATCH V8 3/7] dt-bindings: clock: imx8qxp: add SCU clock IDs Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-21 14:12 ` [PATCH V8 4/7] clk: imx: add imx8qxp clk driver Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-21 14:12 ` [PATCH V8 5/7] dt-bindings: clock: add imx8qxp lpcg clock binding Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-21 14:12 ` [PATCH V8 6/7] clk: imx: add lpcg clock support Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-12-03 19:44   ` Stephen Boyd
2018-12-03 19:44     ` Stephen Boyd
2018-12-04  1:45     ` Aisheng DONG
2018-12-04  1:45       ` Aisheng DONG
2018-11-21 14:12 ` [PATCH V8 7/7] clk: imx: add imx8qxp lpcg driver Aisheng DONG
2018-11-21 14:12   ` Aisheng DONG
2018-11-28 17:18 ` [PATCH V8 0/7] clk: imx: add imx8qxp clock support Aisheng DONG
2018-11-28 17:18   ` Aisheng DONG
2018-12-03 18:38   ` Stephen Boyd
2018-12-03 18:38     ` Stephen Boyd
2018-12-04  1:53     ` Aisheng DONG
2018-12-04  1:53       ` Aisheng DONG
2018-12-03 19:45 ` Stephen Boyd
2018-12-03 19:45   ` Stephen Boyd
2018-12-04  1:46   ` Aisheng DONG
2018-12-04  1:46     ` Aisheng DONG

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.