devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] clk: sunxi-ng: Introduce support for A23 and A33 CCUs
@ 2016-09-01 14:16 Maxime Ripard
  2016-09-01 14:16 ` [PATCH 1/6] clk: sunxi-ng: div: Add mux table macros Maxime Ripard
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Maxime Ripard @ 2016-09-01 14:16 UTC (permalink / raw)
  To: Mike Turquette, Stephen Boyd, Chen-Yu Tsai
  Cc: Hans de Goede, Mylene Josserand, linux-clk-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Thomas Petazzoni,
	Maxime Ripard

Hi everyone,

Here is the migration for the A23 and A33 clocks to the sunxi-ng
framework.

It has been tested on SinA33 board, and I made sure that everything
was reported at the exact same rate, that the MMC was still working in
DDR, etc.

This has also been tested to implement the DRM driver, so I'm
confident things will work just fine.

Let me know what you think,
Maxime

Maxime Ripard (6):
  clk: sunxi-ng: div: Add mux table macros
  clk: sunxi-ng: mux: Add mux table macro
  clk: sunxi-ng: Add N-class clocks support
  clk: sunxi-ng: Add A33 CCU support
  clk: sunxi-ng: Add A23 CCU
  ARM: sun8i: Convert the A23 and A33 to the CCU

 .../devicetree/bindings/clock/sunxi-ccu.txt        |   2 +
 arch/arm/boot/dts/sun8i-a23-a33.dtsi               | 257 ++-----
 arch/arm/boot/dts/sun8i-a23.dtsi                   |  51 +-
 arch/arm/boot/dts/sun8i-a33.dtsi                   |  73 +-
 drivers/clk/sunxi-ng/Kconfig                       |  28 +
 drivers/clk/sunxi-ng/Makefile                      |   3 +
 drivers/clk/sunxi-ng/ccu-sun8i-a23-a33.h           |  63 ++
 drivers/clk/sunxi-ng/ccu-sun8i-a23.c               | 723 +++++++++++++++++++
 drivers/clk/sunxi-ng/ccu-sun8i-a33.c               | 772 +++++++++++++++++++++
 drivers/clk/sunxi-ng/ccu_div.h                     |  28 +-
 drivers/clk/sunxi-ng/ccu_mult.c                    | 133 ++++
 drivers/clk/sunxi-ng/ccu_mult.h                    |  35 +
 drivers/clk/sunxi-ng/ccu_mux.h                     |  26 +-
 include/dt-bindings/clock/sun8i-a23-a33-ccu.h      | 127 ++++
 include/dt-bindings/reset/sun8i-a23-a33-ccu.h      |  87 +++
 15 files changed, 2082 insertions(+), 326 deletions(-)
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun8i-a23-a33.h
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun8i-a23.c
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun8i-a33.c
 create mode 100644 drivers/clk/sunxi-ng/ccu_mult.c
 create mode 100644 include/dt-bindings/clock/sun8i-a23-a33-ccu.h
 create mode 100644 include/dt-bindings/reset/sun8i-a23-a33-ccu.h

-- 
2.9.2

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-09-05 10:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-01 14:16 [PATCH 0/6] clk: sunxi-ng: Introduce support for A23 and A33 CCUs Maxime Ripard
2016-09-01 14:16 ` [PATCH 1/6] clk: sunxi-ng: div: Add mux table macros Maxime Ripard
2016-09-02  7:25   ` Chen-Yu Tsai
2016-09-01 14:16 ` [PATCH 2/6] clk: sunxi-ng: mux: Add mux table macro Maxime Ripard
     [not found]   ` <20160901141617.9777-3-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-02  7:26     ` Chen-Yu Tsai
2016-09-01 14:16 ` [PATCH 3/6] clk: sunxi-ng: Add N-class clocks support Maxime Ripard
     [not found]   ` <20160901141617.9777-4-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-05  3:31     ` Chen-Yu Tsai
2016-09-01 14:16 ` [PATCH 4/6] clk: sunxi-ng: Add A33 CCU support Maxime Ripard
     [not found]   ` <20160901141617.9777-5-maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2016-09-05  6:34     ` Chen-Yu Tsai
     [not found]       ` <CAGb2v66z4KMbfOr2kcNXSSXzVqXQ1uZ9p_-uNyvb_7_ACdNCqQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-09-05  9:51         ` Maxime Ripard
2016-09-05 10:26           ` Chen-Yu Tsai
2016-09-01 14:16 ` [PATCH 5/6] clk: sunxi-ng: Add A23 CCU Maxime Ripard
2016-09-01 14:16 ` [PATCH 6/6] ARM: sun8i: Convert the A23 and A33 to the CCU Maxime Ripard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).