OSDN Git Service

drm: xlnx: DRM/KMS driver for Xilinx ZynqMP DisplayPort Subsystem
authorHyun Kwon <hyun.kwon@xilinx.com>
Sun, 8 Jul 2018 02:05:34 +0000 (19:05 -0700)
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Fri, 17 Jul 2020 23:59:16 +0000 (02:59 +0300)
commitd76271d22694e874ed70791702db9252ffe96a4c
tree6ea2fe2fb984f28855b881e1ed784269b1038290
parente7c7970a678d5ca945663e9f211e4dc636ccbd52
drm: xlnx: DRM/KMS driver for Xilinx ZynqMP DisplayPort Subsystem

The Xilinx ZynqMP SoC has a hardened display pipeline named DisplayPort
Subsystem. It includes a buffer manager, a video pipeline renderer
(blender), an audio mixer and a DisplayPort source controller
(transmitter). The DMA engine the provide data to the buffer manager, as
well as the DisplayPort PHYs that drive the lanes, are external to the
subsystem and interfaced using the DMA engine and PHY APIs respectively.

This driver supports the DisplayPort Subsystem and implements

- Two planes, for graphics and video
- One CRTC that supports alpha blending
- One encoder for the DisplayPort transmitter
- One connector for an external monitor

It currently doesn't support

- Color keying
- Test pattern generation
- Audio
- Live input from the Programmable Logic (FPGA)
- Output to the Programmable Logic (FPGA)

Signed-off-by: Hyun Kwon <hyun.kwon@xilinx.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12 files changed:
MAINTAINERS
drivers/gpu/drm/Kconfig
drivers/gpu/drm/Makefile
drivers/gpu/drm/xlnx/Kconfig [new file with mode: 0644]
drivers/gpu/drm/xlnx/Makefile [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_disp.c [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_disp.h [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_disp_regs.h [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_dp.c [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_dp.h [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_dpsub.c [new file with mode: 0644]
drivers/gpu/drm/xlnx/zynqmp_dpsub.h [new file with mode: 0644]