All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/9] Add clock support for Mediatek MT2701
@ 2016-04-14  8:11 ` James Liao
  0 siblings, 0 replies; 67+ messages in thread
From: James Liao @ 2016-04-14  8:11 UTC (permalink / raw)
  To: Matthias Brugger, Mike Turquette, Stephen Boyd, Rob Herring
  Cc: John Crispin, Arnd Bergmann, Sascha Hauer, Daniel Kurtz,
	Philipp Zabel, devicetree, linux-arm-kernel, linux-kernel,
	linux-mediatek, linux-clk, srv_heupstream

This series is based on 4.6-rc1, add clock and reset controller support
for Mediatek MT2701.

This series also refined makefile and Kconfig to support configurable
multiple SoC clock support.

changes since v6:
- Rebase to v4.6-rc1.
- Register subsystem clocks in probe() instead of CLK_OF_DECLARE().
- Add clocks that referred by subsystem clocks.
- Fix clk_data size of apmixedsys.
- Add config options for each subsystem clock provider.

changes since v5:
- Rebase to v4.5-rc1 and [1].
- Enable critical clocks for MT2701
- Refine dt-binding documents, add reset controller support for hifsys.

changes since v4:
- Rebase to v4.5-rc1.
- Remove CLK_SET_RATE_PARENT from divider flags.
- Add img_jpgdec_smi clock.
- Move clk/mediatek/Kconfig into menu section in clk/Kconfig.

changes since v3:
- Change the parent of mm_mdp_bls_26m from clk26m to pwm_sel.

changes since v2:
- Fix ethsys definition.
- Replace read-modify-write with regmap_update_bits() in clock operations.
- Move mt2701-resets.h to include/dt-bindings/reset/.
- Add hifsys reset patch from John Crispin.

changes since v1:
- Document MT2701 compatible strings.

[1] https://patchwork.kernel.org/patch/8147901/

James Liao (5):
  clk: mediatek: Refine the makefile to support multiple clock drivers
  dt-bindings: ARM: Mediatek: Document bindings for MT2701
  clk: mediatek: Enable critical clocks for MT2701
  clk: mediatek: Add config options for MT2701 subsystem clocks
  arm: dts: mt2701: Add clock controller device nodes

Shunli Wang (4):
  clk: mediatek: Add dt-bindings for MT2701 clocks
  clk: mediatek: Add MT2701 clock support
  reset: mediatek: Add MT2701 reset controller dt-binding file
  reset: mediatek: Add MT2701 reset driver

 .../bindings/arm/mediatek/mediatek,apmixedsys.txt  |    3 +-
 .../bindings/arm/mediatek/mediatek,bdpsys.txt      |   22 +
 .../bindings/arm/mediatek/mediatek,ethsys.txt      |   22 +
 .../bindings/arm/mediatek/mediatek,hifsys.txt      |   24 +
 .../bindings/arm/mediatek/mediatek,imgsys.txt      |    3 +-
 .../bindings/arm/mediatek/mediatek,infracfg.txt    |    3 +-
 .../bindings/arm/mediatek/mediatek,mmsys.txt       |    3 +-
 .../bindings/arm/mediatek/mediatek,pericfg.txt     |    3 +-
 .../bindings/arm/mediatek/mediatek,topckgen.txt    |    3 +-
 .../bindings/arm/mediatek/mediatek,vdecsys.txt     |    3 +-
 arch/arm/boot/dts/mt2701.dtsi                      |   42 +
 drivers/clk/Kconfig                                |    1 +
 drivers/clk/mediatek/Kconfig                       |   73 +
 drivers/clk/mediatek/Makefile                      |    7 +-
 drivers/clk/mediatek/clk-gate.c                    |   52 +
 drivers/clk/mediatek/clk-gate.h                    |    2 +
 drivers/clk/mediatek/clk-mt2701.c                  | 1417 ++++++++++++++++++++
 drivers/clk/mediatek/clk-mtk.c                     |   25 +
 drivers/clk/mediatek/clk-mtk.h                     |   34 +-
 include/dt-bindings/clock/mt2701-clk.h             |  486 +++++++
 include/dt-bindings/reset/mt2701-resets.h          |   83 ++
 21 files changed, 2298 insertions(+), 13 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,bdpsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,ethsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,hifsys.txt
 create mode 100644 drivers/clk/mediatek/Kconfig
 create mode 100644 drivers/clk/mediatek/clk-mt2701.c
 create mode 100644 include/dt-bindings/clock/mt2701-clk.h
 create mode 100644 include/dt-bindings/reset/mt2701-resets.h

--
1.9.1

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

end of thread, other threads:[~2016-05-11  2:51 UTC | newest]

Thread overview: 67+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-14  8:11 [PATCH v7 0/9] Add clock support for Mediatek MT2701 James Liao
2016-04-14  8:11 ` James Liao
2016-04-14  8:11 ` James Liao
2016-04-14  8:11 ` [PATCH v7 1/9] clk: mediatek: Refine the makefile to support multiple clock drivers James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-04-22  9:02   ` Matthias Brugger
2016-04-22  9:02     ` Matthias Brugger
2016-04-14  8:11 ` [PATCH v7 2/9] dt-bindings: ARM: Mediatek: Document bindings for MT2701 James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11 ` [PATCH v7 3/9] clk: mediatek: Add dt-bindings for MT2701 clocks James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-04-22  9:06   ` Matthias Brugger
2016-04-22  9:06     ` Matthias Brugger
2016-04-14  8:11 ` [PATCH v7 4/9] clk: mediatek: Add MT2701 clock support James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-04-22 18:43   ` Matthias Brugger
2016-04-22 18:43     ` Matthias Brugger
2016-05-06 23:11   ` Stephen Boyd
2016-05-06 23:11     ` Stephen Boyd
2016-05-09  6:38     ` James Liao
2016-05-09  6:38       ` James Liao
2016-05-09  6:38       ` James Liao
2016-05-09 22:29       ` Stephen Boyd
2016-05-09 22:29         ` Stephen Boyd
2016-05-10  2:30         ` James Liao
2016-05-10  2:30           ` James Liao
2016-05-10  2:30           ` James Liao
2016-04-14  8:11 ` [PATCH v7 5/9] reset: mediatek: Add MT2701 reset controller dt-binding file James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11 ` [PATCH v7 6/9] reset: mediatek: Add MT2701 reset driver James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11 ` [PATCH v7 7/9] clk: mediatek: Enable critical clocks for MT2701 James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-05-06 23:12   ` Stephen Boyd
2016-05-06 23:12     ` Stephen Boyd
2016-05-09  5:40     ` James Liao
2016-05-09  5:40       ` James Liao
2016-05-09  5:40       ` James Liao
2016-05-09 22:13       ` Stephen Boyd
2016-05-09 22:13         ` Stephen Boyd
2016-05-10  2:20         ` James Liao
2016-05-10  2:20           ` James Liao
2016-05-10  2:20           ` James Liao
2016-05-11  2:51         ` James Liao
2016-05-11  2:51           ` James Liao
2016-05-11  2:51           ` James Liao
2016-04-14  8:11 ` [PATCH v7 8/9] clk: mediatek: Add config options for MT2701 subsystem clocks James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao
2016-05-06 23:02   ` Stephen Boyd
2016-05-06 23:02     ` Stephen Boyd
2016-05-09  5:37     ` James Liao
2016-05-09  5:37       ` James Liao
2016-05-09  5:37       ` James Liao
2016-05-09 22:13       ` Stephen Boyd
2016-05-09 22:13         ` Stephen Boyd
2016-05-09 22:13         ` Stephen Boyd
2016-04-14  8:11 ` [PATCH v7 9/9] arm: dts: mt2701: Add clock controller device nodes James Liao
2016-04-14  8:11   ` James Liao
2016-04-14  8:11   ` James Liao

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.