devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
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@intel.com>,
	Rob Herring <robh+dt@kernel.org>,
	Michal Simek <michal.simek@xilinx.com>,
	Hyun Kwon <hyun.kwon@xilinx.com>
Subject: [PATCH v7 0/5] Xilinx ZynqMP DisplayPort KMS driver
Date: Tue, 1 May 2018 17:31:41 -0700	[thread overview]
Message-ID: <1525221106-32269-1-git-send-email-hyun.kwon@xilinx.com> (raw)

Hi Laurent,

On top of addressing your comments in v6, I've incorporated some
relatively small fixes in v7. I'm mainly waiting for your feedback
before committing this series, unless there's any additional review
comments. Please take a look.

Thanks,
-hyun

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                 | 2755 ++++++++++++++++++++
 drivers/gpu/drm/xlnx/zynqmp_disp.h                 |   29 +
 drivers/gpu/drm/xlnx/zynqmp_dp.c                   | 1733 ++++++++++++
 drivers/gpu/drm/xlnx/zynqmp_dp.h                   |   30 +
 drivers/gpu/drm/xlnx/zynqmp_dpsub.c                |  152 ++
 drivers/gpu/drm/xlnx/zynqmp_dpsub.h                |   23 +
 20 files changed, 5853 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

             reply	other threads:[~2018-05-02  0:31 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-02  0:31 Hyun Kwon [this message]
2018-05-02  0:31 ` [PATCH v7 1/5] drm: xlnx: Xilinx DRM KMS module Hyun Kwon
2018-05-02  0:31 ` [PATCH v7 2/5] dt-bindings: display: xlnx: Add ZynqMP DP subsystem bindings Hyun Kwon
2018-05-02  0:31 ` [PATCH v7 3/5] drm: xlnx: DRM KMS driver for Xilinx ZynqMP DP subsystem display Hyun Kwon
2018-05-02  0:31 ` [PATCH v7 4/5] drm: xlnx: DRM KMS driver for Xilinx ZynqMP DisplayPort Hyun Kwon
2018-05-02  0:31 ` [PATCH v7 5/5] drm: xlnx: ZynqMP DP subsystem DRM KMS driver Hyun Kwon

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=1525221106-32269-1-git-send-email-hyun.kwon@xilinx.com \
    --to=hyun.kwon@xilinx.com \
    --cc=daniel.vetter@intel.com \
    --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).