All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] clk: sunxi: Add support for the Audio PLL
@ 2015-05-02 11:24 ` Maxime Ripard
  0 siblings, 0 replies; 52+ messages in thread
From: Maxime Ripard @ 2015-05-02 11:24 UTC (permalink / raw)
  To: Mike Turquette, Stephen Boyd, Emilio Lopez
  Cc: Hans de Goede, Chen-Yu Tsai, linux-arm-kernel, linux-clk,
	Maxime Ripard

Hi,

This serie adds support for the PLL2 aka the Audio PLL on the
Allwinner A10 and the later SoCs.

This is the first stepping stone to get the audio support merged.

Thanks!
Maxime

Emilio López (5):
  clk: sunxi: codec clock support
  clk: sunxi: mod1 clock support
  ARM: sunxi: Add PLL2 support
  ARM: sunxi: Add codec clock support
  ARM: sun7i: Add mod1 clock nodes

Maxime Ripard (3):
  clk: sunxi: factors: Add m_start parameters
  clk: sunxi: factors: Add a parameter for N and M zeros
  clk: sunxi: Add a driver for the PLL2

 arch/arm/boot/dts/sun4i-a10.dtsi           |  18 +++
 arch/arm/boot/dts/sun5i.dtsi               |  18 +++
 arch/arm/boot/dts/sun7i-a20.dtsi           |  73 ++++++++++++
 drivers/clk/sunxi/Makefile                 |   3 +
 drivers/clk/sunxi/clk-a10-codec.c          |  45 ++++++++
 drivers/clk/sunxi/clk-a10-mod1.c           |  85 ++++++++++++++
 drivers/clk/sunxi/clk-a10-pll2.c           | 176 +++++++++++++++++++++++++++++
 drivers/clk/sunxi/clk-factors.c            |  17 ++-
 drivers/clk/sunxi/clk-factors.h            |   5 +
 drivers/clk/sunxi/clk-mod0.c               |   2 +
 drivers/clk/sunxi/clk-sun8i-mbus.c         |   2 +
 drivers/clk/sunxi/clk-sun9i-core.c         |   6 +
 drivers/clk/sunxi/clk-sunxi.c              |  10 ++
 include/dt-bindings/clock/sun4i-a10-pll2.h |  53 +++++++++
 14 files changed, 512 insertions(+), 1 deletion(-)
 create mode 100644 drivers/clk/sunxi/clk-a10-codec.c
 create mode 100644 drivers/clk/sunxi/clk-a10-mod1.c
 create mode 100644 drivers/clk/sunxi/clk-a10-pll2.c
 create mode 100644 include/dt-bindings/clock/sun4i-a10-pll2.h

-- 
2.3.6

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

end of thread, other threads:[~2015-05-19 20:53 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-02 11:24 [PATCH 0/8] clk: sunxi: Add support for the Audio PLL Maxime Ripard
2015-05-02 11:24 ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 1/8] clk: sunxi: factors: Add m_start parameters Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-14  9:12   ` Chen-Yu Tsai
2015-05-14  9:12     ` Chen-Yu Tsai
2015-05-15  7:43     ` Maxime Ripard
2015-05-15  7:43       ` Maxime Ripard
2015-05-15  7:48       ` Chen-Yu Tsai
2015-05-15  7:48         ` Chen-Yu Tsai
2015-05-15  8:05         ` Maxime Ripard
2015-05-15  8:05           ` Maxime Ripard
2015-05-15  9:11           ` Chen-Yu Tsai
2015-05-15  9:11             ` Chen-Yu Tsai
2015-05-15 14:21             ` Maxime Ripard
2015-05-15 14:21               ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 2/8] clk: sunxi: factors: Add a parameter for N and M zeros Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 3/8] clk: sunxi: Add a driver for the PLL2 Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-14  9:43   ` Chen-Yu Tsai
2015-05-14  9:43     ` Chen-Yu Tsai
2015-05-15  7:45     ` Maxime Ripard
2015-05-15  7:45       ` Maxime Ripard
2015-05-15  9:15       ` Chen-Yu Tsai
2015-05-15  9:15         ` Chen-Yu Tsai
2015-05-15 14:44         ` Maxime Ripard
2015-05-15 14:44           ` Maxime Ripard
2015-05-19  7:58           ` Chen-Yu Tsai
2015-05-19  7:58             ` Chen-Yu Tsai
2015-05-19 20:53             ` Maxime Ripard
2015-05-19 20:53               ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 4/8] clk: sunxi: codec clock support Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-14 11:03   ` Chen-Yu Tsai
2015-05-14 11:03     ` Chen-Yu Tsai
2015-05-15  7:46     ` Maxime Ripard
2015-05-15  7:46       ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 5/8] clk: sunxi: mod1 " Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-14 13:43   ` Chen-Yu Tsai
2015-05-14 13:43     ` Chen-Yu Tsai
2015-05-15  7:41     ` Maxime Ripard
2015-05-15  7:41       ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 6/8] ARM: sunxi: Add PLL2 support Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-02 11:24 ` [PATCH 7/8] ARM: sunxi: Add codec clock support Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard
2015-05-14 12:43   ` Chen-Yu Tsai
2015-05-14 12:43     ` Chen-Yu Tsai
2015-05-02 11:24 ` [PATCH 8/8] ARM: sun7i: Add mod1 clock nodes Maxime Ripard
2015-05-02 11:24   ` Maxime Ripard

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.