All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/9] drm/sun4i: Introduce A33 display driver
@ 2016-09-06 14:46 ` Maxime Ripard
  0 siblings, 0 replies; 92+ messages in thread
From: Maxime Ripard @ 2016-09-06 14:46 UTC (permalink / raw)
  To: Daniel Vetter, David Airlie, Thierry Reding, Chen-Yu Tsai
  Cc: Rob Herring, dri-devel, linux-arm-kernel, linux-kernel,
	linux-sunxi, Thomas Petazzoni, Maxime Ripard

Hi everyone,

This serie introduces the support in the sun4i-drm driver for the A33.

Beside the new IPs and special cases for the A33 new IPs, there's
nothing really outstanding, and is now at feature parity with the A13.

This serie is based on my A33 CCU patches posted earlier today here:
http://lists.infradead.org/pipermail/linux-arm-kernel/2016-September/453208.html

Let me know what you think,
Maxime

Changes from v1:
  - Changed the TCON pins label
  - Changed the TCON compatible as it's different from A23's
  - Merged the SAT into the backend, as it really is part of the same
    block in hardware.
  - Reworded the DRC bindings description
  - Added the backend interrupt to the DT
  - Changed the name of the LCD panel to the actual brand and model
    found on the ribbon

Maxime Ripard (9):
  drm/sun4i: support TCONs without channel 1
  drm/sun4i: support A33 tcon
  drm/sun4i: backend: Handle the SAT
  drm/sun4i: Add a DRC driver
  of: Add vendor prefix for Netron DY
  drm/panel: Add Netron DY E231732
  ARM: sun8i: a33: Add display pipeline
  ARM: sun8i: a23/a33: Add RGB666 pins
  ARM: sun8i: sina33: Enable display

 .../bindings/display/sunxi/sun4i-drm.txt           |  39 +++++-
 .../devicetree/bindings/vendor-prefixes.txt        |   1 +
 arch/arm/boot/dts/sun8i-a23-a33.dtsi               |  10 ++
 arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts     |  34 +++++
 arch/arm/boot/dts/sun8i-a33.dtsi                   | 152 +++++++++++++++++++++
 drivers/gpu/drm/panel/panel-simple.c               |  26 ++++
 drivers/gpu/drm/sun4i/Makefile                     |   2 +-
 drivers/gpu/drm/sun4i/sun4i_backend.c              |  61 +++++++++
 drivers/gpu/drm/sun4i/sun4i_backend.h              |   3 +
 drivers/gpu/drm/sun4i/sun4i_drv.c                  |   8 +-
 drivers/gpu/drm/sun4i/sun4i_tcon.c                 |  42 ++++--
 drivers/gpu/drm/sun4i/sun4i_tcon.h                 |   2 +
 drivers/gpu/drm/sun4i/sun6i_drc.c                  | 118 ++++++++++++++++
 13 files changed, 479 insertions(+), 19 deletions(-)
 create mode 100644 drivers/gpu/drm/sun4i/sun6i_drc.c

-- 
2.9.3

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

end of thread, other threads:[~2018-05-03 13:10 UTC | newest]

Thread overview: 92+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-06 14:46 [PATCH v2 0/9] drm/sun4i: Introduce A33 display driver Maxime Ripard
2016-09-06 14:46 ` Maxime Ripard
2016-09-06 14:46 ` Maxime Ripard
2016-09-06 14:46 ` [PATCH v2 1/9] drm/sun4i: support TCONs without channel 1 Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46 ` [PATCH v2 2/9] drm/sun4i: support A33 tcon Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 15:07   ` Chen-Yu Tsai
2016-09-06 15:07     ` Chen-Yu Tsai
2016-09-06 15:07     ` Chen-Yu Tsai
2016-09-06 15:16   ` Chen-Yu Tsai
2016-09-06 15:16     ` Chen-Yu Tsai
2016-09-06 15:16     ` Chen-Yu Tsai
2016-09-08  7:29     ` Maxime Ripard
2016-09-08  7:29       ` Maxime Ripard
2016-09-08  7:29       ` Maxime Ripard
2016-11-05 15:54   ` Chen-Yu Tsai
2016-11-05 15:54     ` Chen-Yu Tsai
2016-11-05 15:54     ` Chen-Yu Tsai
2016-11-06 18:50     ` Maxime Ripard
2016-11-06 18:50       ` Maxime Ripard
2016-11-06 18:50       ` Maxime Ripard
2016-09-06 14:46 ` [PATCH v2 3/9] drm/sun4i: backend: Handle the SAT Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 15:13   ` Chen-Yu Tsai
2016-09-06 15:13     ` Chen-Yu Tsai
2016-09-06 15:13     ` Chen-Yu Tsai
2016-09-06 14:46 ` [PATCH v2 4/9] drm/sun4i: Add a DRC driver Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 15:10   ` Chen-Yu Tsai
2016-09-06 15:10     ` Chen-Yu Tsai
2016-09-06 15:10     ` Chen-Yu Tsai
2016-09-06 20:38   ` [linux-sunxi] " Peter Korsgaard
2016-09-06 20:38     ` Peter Korsgaard
2016-09-06 20:38     ` [linux-sunxi] " Peter Korsgaard
2016-09-06 14:46 ` [PATCH v2 5/9] of: Add vendor prefix for Netron DY Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-10-19 12:39   ` Thierry Reding
2016-10-19 12:39     ` Thierry Reding
2016-10-19 12:39     ` Thierry Reding
2016-10-19 13:03     ` Rob Herring
2016-10-19 13:03       ` Rob Herring
2016-10-19 13:03       ` Rob Herring
2017-01-26  9:53   ` Thierry Reding
2017-01-26  9:53     ` Thierry Reding
2017-01-26  9:53     ` Thierry Reding
2016-09-06 14:46 ` [PATCH v2 6/9] drm/panel: Add Netron DY E231732 Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 16:01   ` Chen-Yu Tsai
2016-09-06 16:01     ` Chen-Yu Tsai
2016-09-09 14:35     ` Maxime Ripard
2016-09-09 14:35       ` Maxime Ripard
2016-09-09 14:35       ` Maxime Ripard
2018-05-02  7:20       ` Paul Kocialkowski
2018-05-02  7:20         ` Paul Kocialkowski
2018-05-02  7:20         ` Paul Kocialkowski
2018-05-03 13:09         ` Maxime Ripard
2018-05-03 13:09           ` Maxime Ripard
2018-05-03 13:09           ` Maxime Ripard
2017-01-26  9:54   ` Thierry Reding
2017-01-26  9:54     ` Thierry Reding
2017-01-26  9:54     ` Thierry Reding
2017-01-26 10:51     ` Maxime Ripard
2017-01-26 10:51       ` Maxime Ripard
2017-01-26 10:51       ` Maxime Ripard
2016-09-06 14:46 ` [PATCH v2 7/9] ARM: sun8i: a33: Add display pipeline Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 15:24   ` Chen-Yu Tsai
2016-09-06 15:24     ` Chen-Yu Tsai
2016-09-06 15:24     ` Chen-Yu Tsai
2016-09-06 14:46 ` [PATCH v2 8/9] ARM: sun8i: a23/a33: Add RGB666 pins Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46 ` [PATCH v2 9/9] ARM: sun8i: sina33: Enable display Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2016-09-06 14:46   ` Maxime Ripard
2017-01-26 10:53   ` Maxime Ripard
2017-01-26 10:53     ` Maxime Ripard
2017-01-26 10:53     ` Maxime Ripard
2016-09-08  8:12 ` [PATCH v2 0/9] drm/sun4i: Introduce A33 display driver Maxime Ripard
2016-09-08  8:12   ` Maxime Ripard
2016-09-08  8:12   ` Maxime Ripard
2016-09-08 20:19 ` Maxime Ripard
2016-09-08 20:19   ` Maxime Ripard
2016-09-08 20:19   ` Maxime Ripard

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.