public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3.1 00/10] arm64: allwinner: Add A64 DE2 HDMI support
@ 2018-07-26 17:12 Icenowy Zheng
       [not found] ` <20180726171257.6688-1-icenowy-h8G6r0blFSE@public.gmane.org>
  2018-07-27 12:59 ` [PATCH v3.1 00/10] arm64: allwinner: Add A64 DE2 HDMI support Maxime Ripard
  0 siblings, 2 replies; 29+ messages in thread
From: Icenowy Zheng @ 2018-07-26 17:12 UTC (permalink / raw)
  To: Maxime Ripard, Rob Herring, Chen-Yu Tsai, Jagan Teki,
	Jernej Skrabec
  Cc: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-clk-u79uwXL29TY76Z2rM5mHXA,
	linux-sunxi-/JYPxA39Uh5TLH3MbocFFw, Icenowy Zheng

Allwinner A64 has display engine pipeline like other Allwinner SOC's A83T/H3/H5.

A64 behaviour similar to Allwinner A83T where
Mixer0 => TCON0 => LVDS/RGB/MIPI-DSI
Mixer1 => TCON1 => HDMI
as per Display System Block Diagram from the A64 user manual.

This is third patch-set followed with previous RFC[1], first and second
series[2][3] and merely concentrated on HDMI pipeline through TCON1 and
rest will add eventually.

I just rebased and slightly re-integrated the patchset according to the
requirments of the maintainer, and added the mixer0->tcon0 pipeline.
The further maintainship of the patchset still needs to be discussed
between I and Jagan.

--Icenowy

Icenowy Zheng (1):
  dt-bindings: sun4i-drm: add HDMI VCC supply property for sun8i-dw-hdmi

Jagan Teki (8):
  clk: sunxi-ng: a64: Add minimal rate for video PLLs
  dt-bindings: display: Add compatible for A64 DE2 display pipeline
  drm/sun4i: Add support for A64 mixers
  drm/sun4i: Add support for A64 display engine
  dt-bindings: display: Add compatible for A64 HDMI
  dt-bindings: clock: sun50i-a64-ccu: Add PLL_VIDEO[0-1] macros
  arm64: dts: allwinner: a64: Add display pipeline
  arm64: dts: allwinner: a64: Enable HDMI output on A64 boards w/ HDMI

Jernej Skrabec (1):
  drm/sun4i: Add support for HDMI voltage regulator

 .../bindings/display/sunxi/sun4i-drm.txt      |   9 +
 .../dts/allwinner/sun50i-a64-bananapi-m64.dts |  34 ++++
 .../dts/allwinner/sun50i-a64-nanopi-a64.dts   |  34 ++++
 .../dts/allwinner/sun50i-a64-olinuxino.dts    |  34 ++++
 .../dts/allwinner/sun50i-a64-orangepi-win.dts |  34 ++++
 .../boot/dts/allwinner/sun50i-a64-pine64.dts  |  34 ++++
 .../allwinner/sun50i-a64-sopine-baseboard.dts |  34 ++++
 arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 169 ++++++++++++++++++
 drivers/clk/sunxi-ng/ccu-sun50i-a64.c         |  46 ++---
 drivers/gpu/drm/sun4i/sun4i_drv.c             |   1 +
 drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c         |  17 +-
 drivers/gpu/drm/sun4i/sun8i_dw_hdmi.h         |   2 +
 drivers/gpu/drm/sun4i/sun8i_mixer.c           |  24 +++
 include/dt-bindings/clock/sun50i-a64-ccu.h    |   2 +
 14 files changed, 451 insertions(+), 23 deletions(-)

-- 
2.18.0

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

end of thread, other threads:[~2018-07-30 23:51 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-26 17:12 [PATCH v3.1 00/10] arm64: allwinner: Add A64 DE2 HDMI support Icenowy Zheng
     [not found] ` <20180726171257.6688-1-icenowy-h8G6r0blFSE@public.gmane.org>
2018-07-26 17:12   ` [PATCH v3.1 01/10] clk: sunxi-ng: a64: Add minimal rate for video PLLs Icenowy Zheng
     [not found]     ` <20180726171257.6688-2-icenowy-h8G6r0blFSE@public.gmane.org>
2018-07-26 17:53       ` Jernej Škrabec
2018-07-26 17:12   ` [PATCH v3.1 02/10] dt-bindings: display: Add compatible for A64 DE2 display pipeline Icenowy Zheng
2018-07-26 17:12   ` [PATCH v3.1 03/10] drm/sun4i: Add support for A64 mixers Icenowy Zheng
2018-07-26 17:56     ` [linux-sunxi] " Jernej Škrabec
2018-07-26 17:12   ` [PATCH v3.1 04/10] drm/sun4i: Add support for A64 display engine Icenowy Zheng
2018-07-26 17:12   ` [PATCH v3.1 05/10] dt-bindings: display: Add compatible for A64 HDMI Icenowy Zheng
2018-07-26 17:12   ` [PATCH v3.1 06/10] dt-bindings: clock: sun50i-a64-ccu: Add PLL_VIDEO[0-1] macros Icenowy Zheng
     [not found]     ` <20180726171257.6688-7-icenowy-h8G6r0blFSE@public.gmane.org>
2018-07-26 17:59       ` Jernej Škrabec
2018-07-26 17:12   ` [PATCH v3.1 07/10] arm64: dts: allwinner: a64: Add display pipeline Icenowy Zheng
     [not found]     ` <20180726171257.6688-8-icenowy-h8G6r0blFSE@public.gmane.org>
2018-07-26 18:01       ` Jernej Škrabec
2018-07-27 15:42       ` Icenowy Zheng
2018-07-26 17:12   ` [PATCH v3.1 08/10] dt-bindings: sun4i-drm: add HDMI VCC supply property for sun8i-dw-hdmi Icenowy Zheng
     [not found]     ` <20180726171257.6688-9-icenowy-h8G6r0blFSE@public.gmane.org>
2018-07-30 23:12       ` Rob Herring
2018-07-30 23:51         ` Icenowy Zheng
2018-07-26 17:12   ` [PATCH v3.1 09/10] drm/sun4i: Add support for HDMI voltage regulator Icenowy Zheng
2018-07-26 17:12   ` [PATCH v3.1 10/10] arm64: dts: allwinner: a64: Enable HDMI output on A64 boards w/ HDMI Icenowy Zheng
     [not found]     ` <20180726171257.6688-11-icenowy-h8G6r0blFSE@public.gmane.org>
2018-07-26 18:03       ` Jernej Škrabec
2018-07-27  0:44         ` Icenowy Zheng
2018-07-27 12:56       ` Maxime Ripard
2018-07-27 13:26         ` Icenowy Zheng
     [not found]           ` <8DF4600E-DFE4-47CD-B541-FFDD903A65FB-h8G6r0blFSE@public.gmane.org>
2018-07-27 13:57             ` Jagan Teki
     [not found]               ` <CAMty3ZDZfhCjekd2eSHNFS9aagpwdG0rwL1jamuwoA=vWcd86w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-07-27 14:11                 ` Icenowy Zheng
2018-07-27 14:20               ` Icenowy Zheng
2018-07-27 14:00           ` Maxime Ripard
2018-07-27 15:42             ` Icenowy Zheng
     [not found]               ` <7e1dcd8796e417924072f14b2a50af73-h8G6r0blFSE@public.gmane.org>
2018-07-27 15:44                 ` Jernej Škrabec
2018-07-27 12:59 ` [PATCH v3.1 00/10] arm64: allwinner: Add A64 DE2 HDMI support Maxime Ripard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox