intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [Intel-gfx] [PATCH v2 0/6] Re-org uC debugfs files and move them under GT
Date: Wed, 11 Mar 2020 18:16:25 -0700	[thread overview]
Message-ID: <20200312011631.15262-1-daniele.ceraolospurio@intel.com> (raw)

Rebased on top of Andi's patch. Note that some discussion is still
ongoing on that patch.

Also dropped the patch that caused a const->non-const conversion and
fixed a couple of bugs:
- keep printing HUC_STATUS register
- correcly set permissions for writable debugfs files

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                |   7 +-
 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/debugfs_guc.c     |  42 +++
 drivers/gpu/drm/i915/gt/uc/debugfs_guc.h     |  14 +
 drivers/gpu/drm/i915/gt/uc/debugfs_guc_log.c | 124 ++++++++
 drivers/gpu/drm/i915/gt/uc/debugfs_guc_log.h |  15 +
 drivers/gpu/drm/i915/gt/uc/debugfs_huc.c     |  36 +++
 drivers/gpu/drm/i915/gt/uc/debugfs_huc.h     |  14 +
 drivers/gpu/drm/i915/gt/uc/debugfs_uc.c      |  31 ++
 drivers/gpu/drm/i915/gt/uc/debugfs_uc.h      |  14 +
 drivers/gpu/drm/i915/gt/uc/intel_guc.c       |  46 ++-
 drivers/gpu/drm/i915/gt/uc/intel_guc.h       |   7 +
 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 +
 drivers/gpu/drm/i915/gt/uc/intel_huc.c       |  31 +-
 drivers/gpu/drm/i915/gt/uc/intel_huc.h       |   2 +
 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_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, 526 insertions(+), 361 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_guc.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_guc.h
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_guc_log.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_guc_log.h
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_huc.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_huc.h
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_uc.c
 create mode 100644 drivers/gpu/drm/i915/gt/uc/debugfs_uc.h

-- 
2.24.1

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

             reply	other threads:[~2020-03-12  1:17 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-12  1:16 Daniele Ceraolo Spurio [this message]
2020-03-12  1:16 ` [Intel-gfx] [PATCH v2 1/6] drm/i915/gt: allow setting generic data pointer Daniele Ceraolo Spurio
2020-03-12  1:16 ` [Intel-gfx] [PATCH v2 2/6] drm/i915/guc: drop stage_pool debugfs Daniele Ceraolo Spurio
2020-03-13 11:37   ` Andi Shyti
2020-03-12  1:16 ` [Intel-gfx] [PATCH v2 3/6] drm/i915/huc: make "support huc" reflect HW capabilities Daniele Ceraolo Spurio
2020-03-13 14:55   ` Andi Shyti
2020-03-25 16:49   ` John Harrison
2020-03-12  1:16 ` [Intel-gfx] [PATCH v2 4/6] drm/i915/debugfs: move uC printers and update debugfs file names Daniele Ceraolo Spurio
2020-03-25 17:05   ` John Harrison
2020-03-25 17:14     ` Daniele Ceraolo Spurio
2020-03-25 17:35       ` John Harrison
2020-03-12  1:16 ` [Intel-gfx] [PATCH v2 5/6] drm/i915/uc: Move uC debugfs to its own folder under GT Daniele Ceraolo Spurio
2020-03-12  9:10   ` Jani Nikula
2020-03-13 15:38   ` Andi Shyti
2020-03-25 21:03   ` Daniele Ceraolo Spurio
2020-03-12  1:16 ` [Intel-gfx] [PATCH v2 6/6] drm/i915/uc: do not free err log on uc_fini Daniele Ceraolo Spurio
2020-03-25 17:58   ` John Harrison
2020-03-25 18:03     ` Daniele Ceraolo Spurio
2020-03-25 18:05       ` John Harrison
2020-03-12  4:10 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Re-org uC debugfs files and move them under GT (rev2) Patchwork
2020-03-12  4:14 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-03-12  4:34 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-03-12 22:43 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2020-03-25  1:47 ` [Intel-gfx] [PATCH v2 0/6] Re-org uC debugfs files and move them under GT Andi Shyti
2020-03-25 16:25   ` Daniele Ceraolo Spurio

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=20200312011631.15262-1-daniele.ceraolospurio@intel.com \
    --to=daniele.ceraolospurio@intel.com \
    --cc=intel-gfx@lists.freedesktop.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).