devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/8] Build and support rk3036 SoC platform
@ 2015-10-24 10:30 Xing Zheng
  2015-10-24 10:30 ` [PATCH v4 2/8] clk: rockchip: add dt-binding header for rk3036 Xing Zheng
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Xing Zheng @ 2015-10-24 10:30 UTC (permalink / raw)
  To: heiko-4mtYJXux2i+zQB+pC5nmwQ
  Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Xing Zheng,
	Paul Walmsley, Linus Walleij, Kumar Gala, Ian Campbell,
	Rob Herring, Olof Johansson, linux-clk-u79uwXL29TY76Z2rM5mHXA,
	Kever Yang, Pawel Moll, devicetree-u79uwXL29TY76Z2rM5mHXA,
	Michael Turquette, Gregory CLEMENT, Stephen Boyd, Russell King,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Thomas Petazzoni,
	Mark Rutland, Chen-Yu Tsai, Maxime Ripard


Hi,
  We need to support rk3036 soc platform via upstream, there are
3 primary parts for the initial release of minimum system: dts,
pinctrl, and clock tree for rk3036, and additional, we can use
these startup and run to init processs.

Thanks.

Changed in v4:
- add some basic IP modules on rk3036.dtsi
- optimized supporting smp codes

Changed in v3:
- optimized some codes based on v2
- removed the patch "initial set time for rtc-hym8563" (useless)
- removed the patch "pinctrl" (approved)

Changed in v2:
- based on v1, add clock controller documentation
- enable timer5 startup
- add smp for cpu1
- initial set time for rtc-hym8563

Changes in v1:
- add dts, pinctrl and clock tree for rk3036 soc platform

The patchset (8):
8) rockchip: make sure timer5 is enabled on rk3036 platforms
7) ARM: dts: enable smp for rk3036
6) ARM: rockchip: add support smp for rk3036
5) ARM: dts: rockchip: add core rk3036 dts
4) clk: rockchip: add new pll-type for rk3036 and similar socs
3) clk: rockchip: add clock controller for rk3036
2) clk: rockchip: add dt-binding header for rk3036
1) dt-bindings: add documentation of rk3036 clock controller


Changes in v4:
Signed-off-by: Xing Zheng <zhengxing-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
Reviewed-by: Heiko Stuebner <heiko-4mtYJXux2i+zQB+pC5nmwQ@public.gmane.org>

Heiko Stuebner (1):
  ARM: rockchip: add support smp for rk3036

Xing Zheng (7):
  dt-bindings: add documentation of rk3036 clock controller
  clk: rockchip: add dt-binding header for rk3036
  clk: rockchip: add clock controller for rk3036
  clk: rockchip: add new pll-type for rk3036 and similar socs
  ARM: dts: rockchip: add core rk3036 dts
  ARM: dts: enable smp for rk3036
  rockchip: make sure timer5 is enabled on rk3036 platforms

 Documentation/devicetree/bindings/arm/cpus.txt     |    1 +
 .../bindings/clock/rockchip,rk3036-cru.txt         |   56 ++
 arch/arm/boot/dts/Makefile                         |    1 +
 arch/arm/boot/dts/rk3036-evb.dts                   |   64 +++
 arch/arm/boot/dts/rk3036.dtsi                      |  541 ++++++++++++++++++++
 arch/arm/mach-rockchip/platsmp.c                   |   45 +-
 arch/arm/mach-rockchip/rockchip.c                  |   44 +-
 drivers/clk/rockchip/Makefile                      |    1 +
 drivers/clk/rockchip/clk-pll.c                     |  243 ++++++++-
 drivers/clk/rockchip/clk-rk3036.c                  |  500 ++++++++++++++++++
 drivers/clk/rockchip/clk.h                         |   30 ++
 include/dt-bindings/clock/rk3036-cru.h             |  195 +++++++
 12 files changed, 1691 insertions(+), 30 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/rockchip,rk3036-cru.txt
 create mode 100644 arch/arm/boot/dts/rk3036-evb.dts
 create mode 100644 arch/arm/boot/dts/rk3036.dtsi
 create mode 100644 drivers/clk/rockchip/clk-rk3036.c
 create mode 100644 include/dt-bindings/clock/rk3036-cru.h

-- 
1.7.9.5


--
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] 6+ messages in thread

end of thread, other threads:[~2015-10-24 10:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-24 10:30 [PATCH v4 0/8] Build and support rk3036 SoC platform Xing Zheng
2015-10-24 10:30 ` [PATCH v4 2/8] clk: rockchip: add dt-binding header for rk3036 Xing Zheng
     [not found] ` <1445682629-21632-1-git-send-email-zhengxing-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
2015-10-24 10:30   ` [PATCH v4 1/8] dt-bindings: add documentation of rk3036 clock controller Xing Zheng
2015-10-24 10:40   ` [PATCH v4 5/8] ARM: dts: rockchip: add core rk3036 dts Xing Zheng
2015-10-24 10:46 ` [PATCH v4 6/8] ARM: rockchip: add support smp for rk3036 Xing Zheng
2015-10-24 10:49 ` [PATCH v4 7/8] ARM: dts: enable " Xing Zheng

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