linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/6] Add core dtsi for rk3399 from Rockchip
@ 2016-02-19  1:56 jianqun.xu
  2016-02-19  1:56 ` [PATCH v4 1/6] clk: rockchip: add dt-binding header for rk3399 jianqun.xu
                   ` (6 more replies)
  0 siblings, 7 replies; 17+ messages in thread
From: jianqun.xu @ 2016-02-19  1:56 UTC (permalink / raw)
  To: heiko, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	jwerner, broonie, catalin.marinas, will.deacon, sboyd,
	linus.walleij, sjoerd.simons
  Cc: huangtao, jay.xu, linux-rockchip, linux-kernel, linux-arm-kernel,
	devicetree

From: Jianqun Xu <jay.xu@rock-chips.com>

There is the new SoCs from Rockchip which named rk3399, the
patches are added to support them.

Jianque Xu (4):
  soc: rockchip: add bindings for Rockchip grf
  spi: rockchip: add bindings for rk3399 spi
  ASoC: rockchip: add bindings for rk3399 i2s
  ARM64: dts: rockchip: add core dtsi file for rk3399

Xing Zheng (2):
  clk: rockchip: add dt-binding header for rk3399
  dt-bindings: add documentation of rk3399 clock controller

 .../bindings/clock/rockchip,rk3399-cru.txt         |  82 ++
 .../devicetree/bindings/soc/rockchip/grf.txt       |  35 +
 .../devicetree/bindings/sound/rockchip-i2s.txt     |   1 +
 .../devicetree/bindings/spi/spi-rockchip.txt       |   1 +
 arch/arm64/boot/dts/rockchip/rk3399.dtsi           | 949 +++++++++++++++++++++
 drivers/spi/spi-rockchip.c                         |   1 +
 include/dt-bindings/clock/rk3399-cru.h             | 609 +++++++++++++
 7 files changed, 1678 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.txt
 create mode 100644 Documentation/devicetree/bindings/soc/rockchip/grf.txt
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3399.dtsi
 create mode 100644 include/dt-bindings/clock/rk3399-cru.h

-- 
changes in v4:
- restore rockchip-i2s.txt patch for rk3399-i2s (Rob)
- add grf.txt for rockchip grf (Rob, Heiko)
- reset my author name to keep same with signoff

changes in v3:
- add compatible for rk3399 spi (Mark, Heiko)

changes in v2:
- remove changeID (Heiko, Mark)
- drop pmu and psci temporary (Mark)
- drop applied patch (Heiko)
- drop GIC_CPU_MASK_SIMPLE from the interrupt specifiers (Marc, Heiko)
- drop clock-frequency of timer (Marc, Mark)
- remove double defination for SCLK_SPI5

1.9.1

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/6] Add core dtsi for rk3399 from Rockchip
@ 2016-02-17  1:53 jianqun.xu
  2016-02-17  2:01 ` [PATCH 6/6] ARM64: dts: rockchip: add core dtsi file for rk3399 jianqun.xu
  0 siblings, 1 reply; 17+ messages in thread
From: jianqun.xu @ 2016-02-17  1:53 UTC (permalink / raw)
  To: heiko, robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	jwerner, broonie, catalin.marinas, will.deacon, sboyd,
	linus.walleij, sjoerd.simons
  Cc: huangtao, linux-rockchip, linux-kernel, linux-arm-kernel,
	devicetree, Xu Jianqun

From: Xu Jianqun <jay.xu@rock-chips.com>

There is the new SoCs from Rockchip which named rk3399, the
patches are added to support them.

Two patch of cru from Xing are quoted, but the cru driver will
be pushed by Xing near later.

Xing Zheng (2):
  clk: rockchip: add dt-binding header for rk3399
  dt-bindings: add documentation of rk3399 clock controller

Xu Jianqun (4):
  spi: rockchip: add bindings for rk3399 spi
  ASoC: rockchip: add bindings for rk3399 i2s
  pinctrl: rockchip: add bindings for rk3399 pinctrl
  ARM64: dts: rockchip: add core dtsi file for rk3399

 .../bindings/clock/rockchip,rk3399-cru.txt         |  82 ++
 .../bindings/pinctrl/rockchip,pinctrl.txt          |   2 +-
 .../devicetree/bindings/sound/rockchip-i2s.txt     |   1 +
 .../devicetree/bindings/spi/spi-rockchip.txt       |   1 +
 arch/arm64/boot/dts/rockchip/rk3399.dtsi           | 989 +++++++++++++++++++++
 include/dt-bindings/clock/rk3399-cru.h             | 610 +++++++++++++
 6 files changed, 1684 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.txt
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3399.dtsi
 create mode 100644 include/dt-bindings/clock/rk3399-cru.h

-- 
1.9.1

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

end of thread, other threads:[~2016-02-23 20:28 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-19  1:56 [PATCH v4 0/6] Add core dtsi for rk3399 from Rockchip jianqun.xu
2016-02-19  1:56 ` [PATCH v4 1/6] clk: rockchip: add dt-binding header for rk3399 jianqun.xu
2016-02-19  1:56 ` [PATCH v4 2/6] soc: rockchip: add bindings for Rockchip grf jianqun.xu
2016-02-19  1:56 ` [PATCH v4 3/6] spi: rockchip: add bindings for rk3399 spi jianqun.xu
2016-02-19  6:31   ` Heiko Stuebner
2016-02-19  6:38     ` Jianqun Xu
2016-02-19  1:56 ` [PATCH v4 4/6] ASoC: rockchip: add bindings for rk3399 i2s jianqun.xu
2016-02-19  1:59 ` [PATCH v4 5/6] dt-bindings: add documentation of rk3399 clock controller jianqun.xu
2016-02-23 20:27   ` Rob Herring
2016-02-19  2:03 ` [PATCH 6/6] ARM64: dts: rockchip: add core dtsi file for rk3399 jianqun.xu
2016-02-19  2:05 ` [PATCH v4 " jianqun.xu
  -- strict thread matches above, loose matches on Subject: below --
2016-02-17  1:53 [PATCH 0/6] Add core dtsi for rk3399 from Rockchip jianqun.xu
2016-02-17  2:01 ` [PATCH 6/6] ARM64: dts: rockchip: add core dtsi file for rk3399 jianqun.xu
2016-02-17  7:00   ` Heiko Stuebner
2016-02-18  1:43     ` Jianqun Xu
2016-02-17 11:27   ` Marc Zyngier
2016-02-17 11:46   ` Mark Rutland
2016-02-18  1:07     ` Jianqun Xu

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).