mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Lyude Paul <lyude@redhat.com>
To: dri-devel@lists.freedesktop.org
Cc: "Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
	"Daniel Stone" <daniel@fooishbar.org>,
	"David Airlie" <airlied@linux.ie>,
	"Sean Paul" <seanpaul@chromium.org>,
	linux-kernel@vger.kernel.org,
	"Gustavo Padovan" <gustavo@padovan.org>,
	"Andrey Grodzovsky" <andrey.grodzovsky@amd.com>,
	"Alex Deucher" <alexander.deucher@amd.com>,
	"Leo Li" <sunpeng.li@amd.com>,
	nouveau@lists.freedesktop.org,
	"Christian König" <christian.koenig@amd.com>,
	"Thierry Reding" <treding@nvidia.com>,
	"Daniel Vetter" <daniel.vetter@ffwll.ch>,
	"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
	"Roman Li" <roman.li@amd.com>, "Ben Skeggs" <bskeggs@redhat.com>,
	"Jani Nikula" <jani.nikula@linux.intel.com>,
	"David (ChunMing) Zhou" <david1.zhou@amd.com>,
	intel-gfx@lists.freedesktop.org, "Shirish S" <shirish.s@amd.com>,
	"Tony Cheng" <tony.cheng@amd.com>,
	"Jerry (Fangzhi) Zuo" <jerry.zuo@amd.com>,
	"Harry Wentland" <harry.wentland@amd.com>,
	"Ville Syrjälä" <ville.syrjala@linux.intel.com>,
	"Joonas Lahtinen" <joonas.lahtinen@linux.intel.com>,
	amd-gfx@lists.freedesktop.org, "Lyude Paul" <lyude@redhat.com>
Subject: [PATCH 0/4] drm/dp_mst: Add DP MST debugfs nodes for all drivers
Date: Mon, 27 Aug 2018 20:36:23 -0400	[thread overview]
Message-ID: <20180828003635.8200-1-lyude@redhat.com> (raw)

This is the next version of my patch series for teaching DRM how to
automatically create debugfs nodes for drivers with MST topologies. This
was originally intended just for nouveau, but has since been expanded to
all DRM drivers.

Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Daniel Stone <daniel@fooishbar.org>

Lyude Paul (4):
  drm/debugfs: Add support for dynamic debugfs initialization
  drm/dp_mst: Pass entire connector to drm_dp_mst_topology_mgr_init()
  drm/dp_mst: Add dp_mst_status debugfs node for all drivers
  drm/i915: Remove i915_drm_dp_mst_status

 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |   2 +-
 drivers/gpu/drm/drm_debugfs.c                 | 173 +++++++++++++++++-
 drivers/gpu/drm/drm_dp_mst_topology.c         | 114 +++++++++++-
 drivers/gpu/drm/drm_drv.c                     |   3 +
 drivers/gpu/drm/drm_internal.h                |   5 +
 drivers/gpu/drm/i915/i915_debugfs.c           |  32 ----
 drivers/gpu/drm/i915/intel_dp.c               |   2 +-
 drivers/gpu/drm/i915/intel_dp_mst.c           |   6 +-
 drivers/gpu/drm/i915/intel_drv.h              |   3 +-
 drivers/gpu/drm/nouveau/dispnv50/disp.c       |   6 +-
 drivers/gpu/drm/radeon/radeon_dp_mst.c        |   2 +-
 include/drm/drm_debugfs.h                     |  27 +++
 include/drm/drm_dp_mst_helper.h               |  17 +-
 include/drm/drm_file.h                        |   4 +
 14 files changed, 342 insertions(+), 54 deletions(-)

-- 
2.17.1


             reply	other threads:[~2018-08-28  0:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-28  0:36 Lyude Paul [this message]
2018-08-28  0:36 ` [PATCH 1/4] drm/debugfs: Add support for dynamic debugfs initialization Lyude Paul
2018-08-31  8:53   ` Daniel Vetter
2018-08-31 23:31     ` Lyude Paul
2018-09-03  7:38       ` Daniel Vetter
2018-08-28  0:36 ` [PATCH 2/4] drm/dp_mst: Pass entire connector to drm_dp_mst_topology_mgr_init() Lyude Paul
2018-08-28 13:14   ` [Intel-gfx] " kbuild test robot
2018-08-28  0:36 ` [PATCH 3/4] drm/dp_mst: Add dp_mst_status debugfs node for all drivers Lyude Paul
2018-08-28 19:48   ` kbuild test robot
2018-08-28  0:36 ` [PATCH 4/4] drm/i915: Remove i915_drm_dp_mst_status Lyude Paul

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=20180828003635.8200-1-lyude@redhat.com \
    --to=lyude@redhat.com \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=andrey.grodzovsky@amd.com \
    --cc=bskeggs@redhat.com \
    --cc=christian.koenig@amd.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=daniel@fooishbar.org \
    --cc=david1.zhou@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gustavo@padovan.org \
    --cc=harry.wentland@amd.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=jerry.zuo@amd.com \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=nouveau@lists.freedesktop.org \
    --cc=rodrigo.vivi@intel.com \
    --cc=roman.li@amd.com \
    --cc=seanpaul@chromium.org \
    --cc=shirish.s@amd.com \
    --cc=sunpeng.li@amd.com \
    --cc=tony.cheng@amd.com \
    --cc=treding@nvidia.com \
    --cc=ville.syrjala@linux.intel.com \
    /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

Powered by JetHome