From: Hyun Kwon <hyun.kwon@xilinx.com>
To: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
Rob Herring <robh+dt@kernel.org>,
Michal Simek <michal.simek@xilinx.com>,
Hyun Kwon <hyun.kwon@xilinx.com>
Subject: [PATCH v8 0/5] Xilinx ZynqMP DisplayPort KMS driver
Date: Sat, 7 Jul 2018 19:05:33 -0700 [thread overview]
Message-ID: <1531015538-32268-1-git-send-email-hyun.kwon@xilinx.com> (raw)
Hi Laurent,
This series is primary waiting for your ack as I didn't hear back on v7 [1].
Please take a look and let me know if there's any concern. I've addressed
most of your comments in v6.
Thanks,
-hyun
[1] https://www.mail-archive.com/dri-devel@lists.freedesktop.org/msg218915.html
Hyun Kwon (5):
drm: xlnx: Xilinx DRM KMS module
dt-bindings: display: xlnx: Add ZynqMP DP subsystem bindings
drm: xlnx: DRM KMS driver for Xilinx ZynqMP DP subsystem display
drm: xlnx: DRM KMS driver for Xilinx ZynqMP DisplayPort
drm: xlnx: ZynqMP DP subsystem DRM KMS driver
.../bindings/display/xlnx/xlnx,zynqmp-dpsub.txt | 77 +
MAINTAINERS | 9 +
drivers/gpu/drm/Kconfig | 2 +
drivers/gpu/drm/Makefile | 1 +
drivers/gpu/drm/xlnx/Kconfig | 23 +
drivers/gpu/drm/xlnx/Makefile | 5 +
drivers/gpu/drm/xlnx/xlnx_crtc.c | 142 +
drivers/gpu/drm/xlnx/xlnx_crtc.h | 83 +
drivers/gpu/drm/xlnx/xlnx_drv.c | 433 +++
drivers/gpu/drm/xlnx/xlnx_drv.h | 23 +
drivers/gpu/drm/xlnx/xlnx_fb.c | 249 ++
drivers/gpu/drm/xlnx/xlnx_fb.h | 27 +
drivers/gpu/drm/xlnx/xlnx_gem.c | 36 +
drivers/gpu/drm/xlnx/xlnx_gem.h | 21 +
drivers/gpu/drm/xlnx/zynqmp_disp.c | 2777 ++++++++++++++++++++
drivers/gpu/drm/xlnx/zynqmp_disp.h | 29 +
drivers/gpu/drm/xlnx/zynqmp_dp.c | 1756 +++++++++++++
drivers/gpu/drm/xlnx/zynqmp_dp.h | 30 +
drivers/gpu/drm/xlnx/zynqmp_dpsub.c | 158 ++
drivers/gpu/drm/xlnx/zynqmp_dpsub.h | 23 +
20 files changed, 5904 insertions(+)
create mode 100644 Documentation/devicetree/bindings/display/xlnx/xlnx,zynqmp-dpsub.txt
create mode 100644 drivers/gpu/drm/xlnx/Kconfig
create mode 100644 drivers/gpu/drm/xlnx/Makefile
create mode 100644 drivers/gpu/drm/xlnx/xlnx_crtc.c
create mode 100644 drivers/gpu/drm/xlnx/xlnx_crtc.h
create mode 100644 drivers/gpu/drm/xlnx/xlnx_drv.c
create mode 100644 drivers/gpu/drm/xlnx/xlnx_drv.h
create mode 100644 drivers/gpu/drm/xlnx/xlnx_fb.c
create mode 100644 drivers/gpu/drm/xlnx/xlnx_fb.h
create mode 100644 drivers/gpu/drm/xlnx/xlnx_gem.c
create mode 100644 drivers/gpu/drm/xlnx/xlnx_gem.h
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_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
--
2.7.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next reply other threads:[~2018-07-08 2:05 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-08 2:05 Hyun Kwon [this message]
2018-07-08 2:05 ` [PATCH v8 1/5] drm: xlnx: Xilinx DRM KMS module Hyun Kwon
2019-02-17 23:33 ` Laurent Pinchart
2018-07-08 2:05 ` [PATCH v8 2/5] dt-bindings: display: xlnx: Add ZynqMP DP subsystem bindings Hyun Kwon
2019-02-17 23:33 ` Laurent Pinchart
2018-07-08 2:05 ` [PATCH v8 3/5] drm: xlnx: DRM KMS driver for Xilinx ZynqMP DP subsystem display Hyun Kwon
2019-02-17 23:34 ` Laurent Pinchart
2018-07-08 2:05 ` [PATCH v8 4/5] drm: xlnx: DRM KMS driver for Xilinx ZynqMP DisplayPort Hyun Kwon
2018-07-08 2:05 ` [PATCH v8 5/5] drm: xlnx: ZynqMP DP subsystem DRM KMS driver Hyun Kwon
2019-02-17 23:34 ` Laurent Pinchart
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1531015538-32268-1-git-send-email-hyun.kwon@xilinx.com \
--to=hyun.kwon@xilinx.com \
--cc=daniel.vetter@ffwll.ch \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=michal.simek@xilinx.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).