All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Introduce NextThing GR8 support
@ 2016-08-31  8:18 ` Maxime Ripard
  0 siblings, 0 replies; 71+ messages in thread
From: Maxime Ripard @ 2016-08-31  8:18 UTC (permalink / raw)
  To: Linus Walleij, Chen-Yu Tsai, Maxime Ripard, Jingoo Han,
	Lee Jones, Tomi Valkeinen, Daniel Vetter, David Airlie,
	Thierry Reding
  Cc: Thomas Petazzoni, linux-fbdev, linux-kernel, dri-devel,
	linux-gpio, Alexander Kaplan, Mylene Josserand, linux-arm-kernel

Hi,

This serie introduces the support for the NextThing GR8.

This SoC is loosely based on the SoCs of the Allwinner sun5i family,
hence we can use most of the support already there. Compared to the
already existing A10s and A13/R8, the pin layout completely changed,
meaning that also the set of available controllers is changed.

There's some new controllers (SPDIF) and some are gone
(Ethernet). This also introduces the support for the GR8 Evaluation
Board.

Even though it's not been tested yet, the SPDIF and I2S-related
components have been listed but we do not create a card from them, so
they won't be usable.

Let me know if you have any questions,
Maxime

Maxime Ripard (3):
  backlight: pwm_bl: Handle gpio that can sleep
  drm/panel: simple: Add A10 EVB 5 inch panel support
  ARM: sunxi: Support the Nextthing GR8

Mylène Josserand (3):
  pinctrl: sunxi: Add GR8 controller support
  ARM: dts: Add NextThing GR8 dtsi
  ARM: dts: gr8: Add support for the GR8 evaluation board

 Documentation/devicetree/bindings/arm/sunxi.txt    |    1 +
 .../bindings/pinctrl/allwinner,sunxi-pinctrl.txt   |    1 +
 MAINTAINERS                                        |    1 +
 arch/arm/boot/dts/Makefile                         |    3 +-
 arch/arm/boot/dts/gr8-evb.dts                      |  378 +++++++
 arch/arm/boot/dts/gr8.dtsi                         | 1080 ++++++++++++++++++++
 arch/arm/mach-sunxi/sunxi.c                        |    1 +
 drivers/gpu/drm/panel/panel-simple.c               |   26 +
 drivers/pinctrl/sunxi/Kconfig                      |    4 +
 drivers/pinctrl/sunxi/Makefile                     |    1 +
 drivers/pinctrl/sunxi/pinctrl-gr8.c                |  541 ++++++++++
 drivers/video/backlight/pwm_bl.c                   |    4 +-
 12 files changed, 2038 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/boot/dts/gr8-evb.dts
 create mode 100644 arch/arm/boot/dts/gr8.dtsi
 create mode 100644 drivers/pinctrl/sunxi/pinctrl-gr8.c

-- 
2.9.2

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2016-09-09 14:34 UTC | newest]

Thread overview: 71+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-31  8:18 [PATCH 0/6] Introduce NextThing GR8 support Maxime Ripard
2016-08-31  8:18 ` Maxime Ripard
2016-08-31  8:18 ` Maxime Ripard
2016-08-31  8:18 ` Maxime Ripard
2016-08-31  8:18 ` [PATCH 1/6] backlight: pwm_bl: Handle gpio that can sleep Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31 12:25   ` Lee Jones
2016-08-31 12:25     ` Lee Jones
2016-08-31 12:25     ` Lee Jones
2016-08-31  8:18 ` [PATCH 2/6] pinctrl: sunxi: Add GR8 controller support Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-09-05 12:49   ` Chen-Yu Tsai
2016-09-05 12:49     ` Chen-Yu Tsai
2016-09-05 12:49     ` Chen-Yu Tsai
2016-09-07 14:04     ` Maxime Ripard
2016-09-07 14:04       ` Maxime Ripard
2016-09-07 14:04       ` Maxime Ripard
2016-08-31  8:18 ` [PATCH 3/6] drm/panel: simple: Add A10 EVB 5 inch panel support Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-09-05 14:00   ` Chen-Yu Tsai
2016-09-05 14:00     ` Chen-Yu Tsai
2016-09-05 14:00     ` Chen-Yu Tsai
2016-09-09 14:34     ` Maxime Ripard
2016-09-09 14:34       ` Maxime Ripard
2016-09-09 14:34       ` Maxime Ripard
2016-08-31  8:18 ` [PATCH 4/6] ARM: sunxi: Support the Nextthing GR8 Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:25   ` Chen-Yu Tsai
2016-08-31  8:25     ` Chen-Yu Tsai
2016-08-31  8:25     ` Chen-Yu Tsai
2016-09-02  6:28     ` Maxime Ripard
2016-09-02  6:28       ` Maxime Ripard
2016-09-02  6:28       ` Maxime Ripard
2016-08-31  8:18 ` [PATCH 5/6] ARM: dts: Add NextThing GR8 dtsi Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-09-05 12:47   ` Chen-Yu Tsai
2016-09-05 12:47     ` Chen-Yu Tsai
2016-09-05 12:47     ` Chen-Yu Tsai
2016-09-07 14:51   ` Javier Martinez Canillas
2016-09-07 14:51     ` Javier Martinez Canillas
2016-09-07 14:51     ` Javier Martinez Canillas
2016-09-07 14:51     ` Javier Martinez Canillas
2016-09-08  9:57     ` Maxime Ripard
2016-09-08  9:57       ` Maxime Ripard
2016-09-08  9:57       ` Maxime Ripard
2016-09-08  9:57       ` Maxime Ripard
2016-09-07 17:51   ` Rask Ingemann Lambertsen
2016-09-07 17:51     ` Rask Ingemann Lambertsen
2016-09-07 17:51     ` Rask Ingemann Lambertsen
2016-09-08 10:00     ` Maxime Ripard
2016-09-08 10:00       ` Maxime Ripard
2016-09-08 10:00       ` Maxime Ripard
2016-09-08 10:00       ` Maxime Ripard
2016-08-31  8:18 ` [PATCH 6/6] ARM: dts: gr8: Add support for the GR8 evaluation board Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-08-31  8:18   ` Maxime Ripard
2016-09-05 12:42   ` Chen-Yu Tsai
2016-09-05 12:42     ` Chen-Yu Tsai
2016-09-05 12:42     ` Chen-Yu Tsai
2016-09-05 12:42     ` Chen-Yu Tsai

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.