linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] add support for Allwinner V3s SoC
@ 2017-01-03 15:16 Icenowy Zheng
       [not found] ` <20170103151629.19447-1-icenowy-ymACFijhrKM@public.gmane.org>
  0 siblings, 1 reply; 16+ messages in thread
From: Icenowy Zheng @ 2017-01-03 15:16 UTC (permalink / raw)
  To: Maxime Ripard, Chen-Yu Tsai, Stephen Boyd, Linus Walleij
  Cc: linux-doc-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-clk-u79uwXL29TY76Z2rM5mHXA,
	linux-gpio-u79uwXL29TY76Z2rM5mHXA,
	linux-sunxi-/JYPxA39Uh5TLH3MbocFFw, Icenowy Zheng

Allwinner produced a single-core Cortex-A7 SoC, V3s, with integrated 64MiB DDR2
DRAM, and in LQFP package. With such a package, it has been easier for hackers
to DIY a board (no BGA needed, and no DRAM wiring needed).

Add support for this SoC, as well as one board with it (Lichee Pi Zero).

Icenowy Zheng (5):
  arm: sunxi: add support for V3s SoC
  clk: sunxi-ng: add support for V3s CCU
  pinctrl: sunxi: add driver for V3s SoC
  ARM: dts: sunxi: add dtsi file for V3s SoC
  ARM: dts: sunxi: add support for Lichee Pi Zero board

 Documentation/arm/sunxi/README                |   4 +
 arch/arm/boot/dts/Makefile                    |   3 +-
 arch/arm/boot/dts/sun8i-v3s-licheepi-zero.dts |  73 ++++
 arch/arm/boot/dts/sun8i-v3s.dtsi              | 257 +++++++++++
 arch/arm/mach-sunxi/sunxi.c                   |   1 +
 drivers/clk/sunxi-ng/Kconfig                  |  11 +
 drivers/clk/sunxi-ng/Makefile                 |   1 +
 drivers/clk/sunxi-ng/ccu-sun8i-v3s.c          | 590 ++++++++++++++++++++++++++
 drivers/clk/sunxi-ng/ccu-sun8i-v3s.h          |  63 +++
 drivers/pinctrl/sunxi/Kconfig                 |   4 +
 drivers/pinctrl/sunxi/Makefile                |   1 +
 drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c     | 321 ++++++++++++++
 include/dt-bindings/clock/sun8i-v3s-ccu.h     | 107 +++++
 include/dt-bindings/reset/sun8i-v3s-ccu.h     |  78 ++++
 14 files changed, 1513 insertions(+), 1 deletion(-)
 create mode 100644 arch/arm/boot/dts/sun8i-v3s-licheepi-zero.dts
 create mode 100644 arch/arm/boot/dts/sun8i-v3s.dtsi
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
 create mode 100644 drivers/clk/sunxi-ng/ccu-sun8i-v3s.h
 create mode 100644 drivers/pinctrl/sunxi/pinctrl-sun8i-v3s.c
 create mode 100644 include/dt-bindings/clock/sun8i-v3s-ccu.h
 create mode 100644 include/dt-bindings/reset/sun8i-v3s-ccu.h

-- 
2.11.0

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

end of thread, other threads:[~2017-01-12 17:19 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-03 15:16 [PATCH 0/5] add support for Allwinner V3s SoC Icenowy Zheng
     [not found] ` <20170103151629.19447-1-icenowy-ymACFijhrKM@public.gmane.org>
2017-01-03 15:16   ` [PATCH 1/5] arm: sunxi: add support for " Icenowy Zheng
     [not found]     ` <20170103151629.19447-2-icenowy-ymACFijhrKM@public.gmane.org>
2017-01-10 18:09       ` Maxime Ripard
2017-01-11 19:40         ` Icenowy Zheng
     [not found]           ` <2706391484163632-/w1NKm4lK9luio3avFS2gg@public.gmane.org>
2017-01-12 17:17             ` Maxime Ripard
2017-01-03 15:16   ` [PATCH 2/5] clk: sunxi-ng: add support for V3s CCU Icenowy Zheng
     [not found]     ` <20170103151629.19447-3-icenowy-ymACFijhrKM@public.gmane.org>
2017-01-10 18:10       ` Maxime Ripard
2017-01-11 19:39         ` Icenowy Zheng
     [not found]           ` <2705031484163593-/w1NKm4lK9luio3avFS2gg@public.gmane.org>
2017-01-11 19:44             ` Icenowy Zheng
     [not found]               ` <2714901484163893-/w1NKm4lK9luio3avFS2gg@public.gmane.org>
2017-01-12 17:19                 ` Maxime Ripard
2017-01-03 15:16   ` [PATCH 3/5] pinctrl: sunxi: add driver for V3s SoC Icenowy Zheng
     [not found]     ` <20170103151629.19447-4-icenowy-ymACFijhrKM@public.gmane.org>
2017-01-10 18:18       ` Maxime Ripard
2017-01-11 15:24       ` Linus Walleij
2017-01-03 15:16   ` [PATCH 4/5] ARM: dts: sunxi: add dtsi file " Icenowy Zheng
     [not found]     ` <20170103151629.19447-5-icenowy-ymACFijhrKM@public.gmane.org>
2017-01-10 18:21       ` Maxime Ripard
2017-01-03 15:16   ` [PATCH 5/5] ARM: dts: sunxi: add support for Lichee Pi Zero board Icenowy 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).