linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] Introduce Allwinner A33 support
@ 2015-05-10  6:46 Vishnu Patekar
  2015-05-10  6:46 ` [PATCH 1/6] ARM: sunxi: Add Machine support for A33 Vishnu Patekar
                   ` (6 more replies)
  0 siblings, 7 replies; 30+ messages in thread
From: Vishnu Patekar @ 2015-05-10  6:46 UTC (permalink / raw)
  To: maxime.ripard, emilio, linus.walleij, robh+dt
  Cc: hdegoede, wens, jenskuske, arnd, linux-arm-kernel, linux-kernel,
	linux-sunxi, devicetree, Vishnu Patekar

Hello everyone,

This patch series introduces basic kernel support for Allwinner's A33 SoC,

A33 is very similar to A23. 
mainly adds common sun8i dtsi, a33 pinctrl. It also adds interrupts, timers,
watchdog, RTC, and UARTs, which are mostly compatible to
those in earlier SoCs like A23 and A31, and can simply be reused.

These patches are based on
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git

Patch 1 adds machine support for the A33.

Patch 2 adds the pin sets for the A33 main PIO.

Patch 3 adds support to reuse A23 clocks. A33 specific clocks not yet implemented.

Patch 4 adds common sun8i.dtsi, modified sun8i-a23.dtsi and a23 based dts, I've referred the h3 dtsi 
by Jens Kuske.
removed the checkpatch warning related to Linux Foundation address in dtsi,dts.

Patch 5 adds the DTSI for the A33, based on common sun8i.dtsi.

Patch 6 adds a DT for the ET_Q8_A33 tablet, which these patches
were developed and tested with.

Vishnu Patekar (6):
  ARM: sunxi: Add Machine support for A33
  pinctrl: sunxi: add allwinner A33 PIO controller support
  clk: sunxi: Add A33 clock for compilation
  ARM: dts: sunxi: add common sun8i dtsi
  ARM: dts: sunxi: Add Allwinner A33 DTSI
  ARM: dts: sun8i: Add ET-Q8 A33 support

 Documentation/devicetree/bindings/arm/sunxi.txt    |   1 +
 .../bindings/pinctrl/allwinner,sunxi-pinctrl.txt   |   2 +
 arch/arm/boot/dts/Makefile                         |   3 +-
 arch/arm/boot/dts/sun8i-a23-ippo-q8h-v1.2.dts      |   6 +-
 arch/arm/boot/dts/sun8i-a23-ippo-q8h-v5.dts        |   6 +-
 arch/arm/boot/dts/sun8i-a23.dtsi                   | 432 +----------------
 arch/arm/boot/dts/sun8i-a33-et-q8.dts              | 108 +++++
 arch/arm/boot/dts/sun8i-a33.dtsi                   | 217 +++++++++
 arch/arm/boot/dts/sun8i.dtsi                       | 481 +++++++++++++++++++
 arch/arm/mach-sunxi/Kconfig                        |   2 +-
 arch/arm/mach-sunxi/platsmp.c                      |   2 +-
 arch/arm/mach-sunxi/sunxi.c                        |   4 +-
 drivers/clk/sunxi/clk-sunxi.c                      |   1 +
 drivers/pinctrl/sunxi/Kconfig                      |   5 +
 drivers/pinctrl/sunxi/Makefile                     |   1 +
 drivers/pinctrl/sunxi/pinctrl-sun8i-a33.c          | 513 +++++++++++++++++++++
 16 files changed, 1340 insertions(+), 444 deletions(-)
 create mode 100644 arch/arm/boot/dts/sun8i-a33-et-q8.dts
 create mode 100644 arch/arm/boot/dts/sun8i-a33.dtsi
 create mode 100644 arch/arm/boot/dts/sun8i.dtsi
 create mode 100644 drivers/pinctrl/sunxi/pinctrl-sun8i-a33.c

-- 
1.9.1


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

end of thread, other threads:[~2015-07-17  9:14 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-10  6:46 [PATCH 0/6] Introduce Allwinner A33 support Vishnu Patekar
2015-05-10  6:46 ` [PATCH 1/6] ARM: sunxi: Add Machine support for A33 Vishnu Patekar
2015-05-10  8:49   ` Hans de Goede
2015-05-10 10:33   ` Maxime Ripard
2015-05-11  8:52     ` Vishnu Patekar
2015-05-10  6:46 ` [PATCH 2/6] pinctrl: sunxi: add allwinner A33 PIO controller support Vishnu Patekar
2015-05-10  8:50   ` Hans de Goede
2015-05-10  9:00     ` Chen-Yu Tsai
2015-05-10  9:10       ` Hans de Goede
2015-05-10 10:34   ` Maxime Ripard
2015-05-11  7:22   ` Paul Bolle
2015-05-10  6:46 ` [PATCH 3/6] clk: sunxi: Add A33 clock for compilation Vishnu Patekar
2015-05-10 10:17   ` Maxime Ripard
2015-05-11  8:53     ` Vishnu Patekar
2015-07-17  8:57       ` Chen-Yu Tsai
2015-07-17  9:09         ` Maxime Ripard
2015-07-17  9:13           ` Chen-Yu Tsai
2015-05-10  6:46 ` [PATCH 4/6] ARM: dts: sunxi: add common sun8i dtsi Vishnu Patekar
2015-05-10  8:52   ` Hans de Goede
2015-05-10 10:41   ` Maxime Ripard
2015-05-11 11:18     ` Vishnu Patekar
2015-05-10  6:46 ` [PATCH 5/6] ARM: dts: sunxi: Add Allwinner A33 DTSI Vishnu Patekar
2015-05-10  8:53   ` Hans de Goede
2015-05-10  9:33     ` Vishnu Patekar
2015-05-10  9:54       ` Hans de Goede
2015-05-10 10:43   ` Maxime Ripard
2015-05-10  6:46 ` [PATCH 6/6] ARM: dts: sun8i: Add ET-Q8 A33 support Vishnu Patekar
2015-05-10  8:54   ` Hans de Goede
2015-05-10 10:47   ` Maxime Ripard
2015-05-12 11:37 ` [PATCH 0/6] Introduce Allwinner " Linus Walleij

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