All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH v3 0/6] Re-org uC debugfs files and move them under GT
@ 2020-03-26 18:11 Daniele Ceraolo Spurio
  2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 1/6] drm/i915/gt: allow setting generic data pointer Daniele Ceraolo Spurio
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Daniele Ceraolo Spurio @ 2020-03-26 18:11 UTC (permalink / raw)
  To: intel-gfx

Minor changes applied to patch 5, which is the only one missing a
review.

As multiple people have noted, intel_gt_debugfs_register_files is
now generic enough to be pulled out of gt/. Andi has patches for that
and will follow up after this series is merged.

Cc: Andi Shyti <andi.shyti@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>

Andi Shyti (1):
  drm/i915/gt: allow setting generic data pointer

Daniele Ceraolo Spurio (5):
  drm/i915/guc: drop stage_pool debugfs
  drm/i915/huc: make "support huc" reflect HW capabilities
  drm/i915/debugfs: move uC printers and update debugfs file names
  drm/i915/uc: Move uC debugfs to its own folder under GT
  drm/i915/uc: do not free err log on uc_fini

 drivers/gpu/drm/i915/Makefile                 |   4 +
 drivers/gpu/drm/i915/gt/debugfs_engines.c     |   2 +-
 drivers/gpu/drm/i915/gt/debugfs_gt.c          |  15 +-
 drivers/gpu/drm/i915/gt/debugfs_gt.h          |   9 +-
 drivers/gpu/drm/i915/gt/debugfs_gt_pm.c       |  14 +-
 drivers/gpu/drm/i915/gt/intel_gt.c            |   3 +-
 drivers/gpu/drm/i915/gt/uc/intel_guc.c        |  46 ++-
 drivers/gpu/drm/i915/gt/uc/intel_guc.h        |   7 +
 .../gpu/drm/i915/gt/uc/intel_guc_debugfs.c    |  42 +++
 .../gpu/drm/i915/gt/uc/intel_guc_debugfs.h    |  14 +
 drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c     |  14 -
 drivers/gpu/drm/i915/gt/uc/intel_guc_fw.h     |   1 -
 drivers/gpu/drm/i915/gt/uc/intel_guc_log.c    |  97 +++++-
 drivers/gpu/drm/i915/gt/uc/intel_guc_log.h    |   4 +
 .../drm/i915/gt/uc/intel_guc_log_debugfs.c    | 124 ++++++++
 .../drm/i915/gt/uc/intel_guc_log_debugfs.h    |  15 +
 drivers/gpu/drm/i915/gt/uc/intel_huc.c        |  31 +-
 drivers/gpu/drm/i915/gt/uc/intel_huc.h        |   2 +
 .../gpu/drm/i915/gt/uc/intel_huc_debugfs.c    |  36 +++
 .../gpu/drm/i915/gt/uc/intel_huc_debugfs.h    |  14 +
 drivers/gpu/drm/i915/gt/uc/intel_huc_fw.c     |  17 --
 drivers/gpu/drm/i915/gt/uc/intel_huc_fw.h     |   1 -
 drivers/gpu/drm/i915/gt/uc/intel_uc.c         |   9 +-
 drivers/gpu/drm/i915/gt/uc/intel_uc.h         |   1 +
 drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.c |  30 ++
 drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.h |  14 +
 drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c      |  25 +-
 drivers/gpu/drm/i915/gt/uc/intel_uc_fw.h      |   3 +-
 drivers/gpu/drm/i915/i915_debugfs.c           | 289 ------------------
 29 files changed, 523 insertions(+), 360 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.h
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.h
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.h
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.h

-- 
2.24.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2020-03-27 11:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-26 18:11 [Intel-gfx] [PATCH v3 0/6] Re-org uC debugfs files and move them under GT Daniele Ceraolo Spurio
2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 1/6] drm/i915/gt: allow setting generic data pointer Daniele Ceraolo Spurio
2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 2/6] drm/i915/guc: drop stage_pool debugfs Daniele Ceraolo Spurio
2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 3/6] drm/i915/huc: make "support huc" reflect HW capabilities Daniele Ceraolo Spurio
2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 4/6] drm/i915/debugfs: move uC printers and update debugfs file names Daniele Ceraolo Spurio
2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 5/6] drm/i915/uc: Move uC debugfs to its own folder under GT Daniele Ceraolo Spurio
2020-03-26 18:11 ` [Intel-gfx] [PATCH v3 6/6] drm/i915/uc: do not free err log on uc_fini Daniele Ceraolo Spurio
2020-03-26 20:31 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Re-org uC debugfs files and move them under GT (rev3) Patchwork
2020-03-26 20:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-03-27 11:49 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.