dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v11 0/5] Xilinx ZynqMP DisplayPort Subsystem DRM/KMS driver
@ 2020-03-18 15:37 Laurent Pinchart
  2020-03-18 15:37 ` [PATCH v11 1/5] dt-bindings: display: xlnx: Add ZynqMP DP subsystem bindings Laurent Pinchart
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Laurent Pinchart @ 2020-03-18 15:37 UTC (permalink / raw)
  To: dri-devel; +Cc: Michal Simek, Hyun Kwon, Satish Kumar Nagireddy

Hello,

Here's a new version of the Xilinx ZynqMP DisplayPort Subsystem driver,
the third version since I took over v8 of the series ([1]) from Hyun.

This new version is rebased on top of the DMA engine and PHY driver
changes. In particular, it uses the new interleaved cyclic DMA
transaction type
and the PHY .configure() and .power_on() operations. It
also includes reset support, which was moved out the PHY driver to the
DPSUB driver where it belongs. The DT bindings are updated accordingly.

The series depends on currently out-of-tree DMA engine ([2]) and PHY
([3]) drivers that have been posted to the corresponding mailing lists
but not merged yet. I have taken over development of both drivers, and
hope to get them upstream without too much delay. As the DRM DPSUB driver
depends on DMA engine API extensions, I plan to request a stable branch
from Vinod in order to avoid a one kernel version delay.

A branch that contains this series on top of the required dependencies
is available at

        git://linuxtv.org/pinchartl/media.git drm/dpsub/next

[1] https://lists.freedesktop.org/archives/dri-devel/2018-July/182477.html
[2] https://lore.kernel.org/dmaengine/20200123022939.9739-1-laurent.pinchart@ideasonboard.com/
[3] https://lore.kernel.org/lkml/20200311103252.17514-1-laurent.pinchart@ideasonboard.com/

Hyun Kwon (2):
  dt-bindings: display: xlnx: Add ZynqMP DP subsystem bindings
  drm: xlnx: DRM/KMS driver for Xilinx ZynqMP DisplayPort Subsystem

Laurent Pinchart (3):
  arm64: dts: zynqmp: Add reset controller
  arm64: dts: zynqmp: Add DisplayPort subsystem
  arm64: dts: zynqmp: zcu106-revA: Wire up the DisplayPort subsystem

 .../display/xlnx/xlnx,zynqmp-dpsub.yaml       |  174 ++
 MAINTAINERS                                   |    9 +
 .../arm64/boot/dts/xilinx/zynqmp-clk-ccf.dtsi |    6 +
 .../boot/dts/xilinx/zynqmp-zcu106-revA.dts    |   29 +
 arch/arm64/boot/dts/xilinx/zynqmp.dtsi        |   29 +
 drivers/gpu/drm/Kconfig                       |    2 +
 drivers/gpu/drm/Makefile                      |    1 +
 drivers/gpu/drm/xlnx/Kconfig                  |   13 +
 drivers/gpu/drm/xlnx/Makefile                 |    2 +
 drivers/gpu/drm/xlnx/zynqmp_disp.c            | 1708 ++++++++++++++++
 drivers/gpu/drm/xlnx/zynqmp_disp.h            |   43 +
 drivers/gpu/drm/xlnx/zynqmp_disp_regs.h       |  201 ++
 drivers/gpu/drm/xlnx/zynqmp_dp.c              | 1742 +++++++++++++++++
 drivers/gpu/drm/xlnx/zynqmp_dp.h              |   29 +
 drivers/gpu/drm/xlnx/zynqmp_dpsub.c           |  330 ++++
 drivers/gpu/drm/xlnx/zynqmp_dpsub.h           |   49 +
 16 files changed, 4367 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/xlnx/xlnx,zynqmp-dpsub.yaml
 create mode 100644 drivers/gpu/drm/xlnx/Kconfig
 create mode 100644 drivers/gpu/drm/xlnx/Makefile
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_disp.c
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_disp.h
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_disp_regs.h
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_dp.c
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_dp.h
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_dpsub.c
 create mode 100644 drivers/gpu/drm/xlnx/zynqmp_dpsub.h

-- 
Regards,

Laurent Pinchart

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

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

end of thread, other threads:[~2020-04-15 16:58 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-18 15:37 [PATCH v11 0/5] Xilinx ZynqMP DisplayPort Subsystem DRM/KMS driver Laurent Pinchart
2020-03-18 15:37 ` [PATCH v11 1/5] dt-bindings: display: xlnx: Add ZynqMP DP subsystem bindings Laurent Pinchart
2020-03-18 19:26   ` Sam Ravnborg
2020-03-19  1:08     ` Hyun Kwon
2020-03-19  6:22       ` Michal Simek
2020-04-02  3:11       ` Laurent Pinchart
2020-04-15 16:58         ` Laurent Pinchart
2020-03-19  1:50     ` Laurent Pinchart
2020-03-18 15:37 ` [PATCH v11 2/5] drm: xlnx: DRM/KMS driver for Xilinx ZynqMP DisplayPort Subsystem Laurent Pinchart
2020-03-18 20:30   ` Sam Ravnborg
2020-03-19  2:27     ` Laurent Pinchart
2020-03-18 15:37 ` [PATCH v11 3/5] arm64: dts: zynqmp: Add reset controller Laurent Pinchart
2020-03-18 15:37 ` [PATCH v11 4/5] arm64: dts: zynqmp: Add DisplayPort subsystem Laurent Pinchart
2020-03-18 15:37 ` [PATCH v11 5/5] arm64: dts: zynqmp: zcu106-revA: Wire up the " Laurent Pinchart

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