From: Andi Shyti <andi.shyti@linux.intel.com>
To: John Harrison <John.C.Harrison@Intel.com>
Cc: intel-gfx <intel-gfx@lists.freedesktop.org>,
dri-devel <dri-devel@lists.freedesktop.org>,
Nirmoy Das <nirmoy.das@intel.com>
Subject: [Intel-gfx] [PATCH v3 0/4] Add gt_to_guc() helper
Date: Wed, 6 Dec 2023 21:46:40 +0100 [thread overview]
Message-ID: <20231206204644.105064-1-andi.shyti@linux.intel.com> (raw)
Hi,
this is just a resend of this series:
https://patchwork.freedesktop.org/series/125583/
but I removed patch one that introduces guc_to_i915()
Thanks,
Andi
Changelog:
==========
v2 -> v3:
- Remove patch 1 that contained guc_to_i915()
v1 -> v2:
- add the gt_to_guc() helper and change files in:
- i915/gt/
- i915/gt/uc
- i915/
Andi Shyti (4):
drm/i915/gt: Create the gt_to_guc() wrapper
drm/i915/guc: Use the new gt_to_guc() wrapper
drm/i915: Use the new gt_to_guc() wrapper
drm/i915/guc: Use the ce_to_guc() wrapper whenever possible
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 4 +--
drivers/gpu/drm/i915/gt/intel_ggtt.c | 9 ++----
drivers/gpu/drm/i915/gt/intel_gt.h | 5 ++++
drivers/gpu/drm/i915/gt/intel_gt_irq.c | 6 ++--
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 2 +-
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c | 8 ++---
drivers/gpu/drm/i915/gt/intel_rc6.c | 4 +--
drivers/gpu/drm/i915/gt/intel_rps.c | 2 +-
drivers/gpu/drm/i915/gt/intel_tlb.c | 2 +-
drivers/gpu/drm/i915/gt/selftest_slpc.c | 6 ++--
drivers/gpu/drm/i915/gt/uc/intel_gsc_fw.c | 4 +--
drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c | 3 +-
drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c | 2 +-
.../gpu/drm/i915/gt/uc/intel_guc_capture.c | 6 ++--
.../gpu/drm/i915/gt/uc/intel_guc_hwconfig.c | 2 +-
.../gpu/drm/i915/gt/uc/intel_guc_submission.c | 30 +++++++++----------
drivers/gpu/drm/i915/gt/uc/intel_huc.c | 4 +--
drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c | 4 +--
drivers/gpu/drm/i915/gt/uc/selftest_guc.c | 2 +-
drivers/gpu/drm/i915/i915_debugfs_params.c | 2 +-
.../i915/selftests/intel_scheduler_helpers.c | 4 +--
21 files changed, 57 insertions(+), 54 deletions(-)
--
2.43.0
WARNING: multiple messages have this Message-ID (diff)
From: Andi Shyti <andi.shyti@linux.intel.com>
To: John Harrison <John.C.Harrison@Intel.com>
Cc: intel-gfx <intel-gfx@lists.freedesktop.org>,
Andi Shyti <andi.shyti@linux.intel.com>,
dri-devel <dri-devel@lists.freedesktop.org>,
Nirmoy Das <nirmoy.das@intel.com>
Subject: [PATCH v3 0/4] Add gt_to_guc() helper
Date: Wed, 6 Dec 2023 21:46:40 +0100 [thread overview]
Message-ID: <20231206204644.105064-1-andi.shyti@linux.intel.com> (raw)
Hi,
this is just a resend of this series:
https://patchwork.freedesktop.org/series/125583/
but I removed patch one that introduces guc_to_i915()
Thanks,
Andi
Changelog:
==========
v2 -> v3:
- Remove patch 1 that contained guc_to_i915()
v1 -> v2:
- add the gt_to_guc() helper and change files in:
- i915/gt/
- i915/gt/uc
- i915/
Andi Shyti (4):
drm/i915/gt: Create the gt_to_guc() wrapper
drm/i915/guc: Use the new gt_to_guc() wrapper
drm/i915: Use the new gt_to_guc() wrapper
drm/i915/guc: Use the ce_to_guc() wrapper whenever possible
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 4 +--
drivers/gpu/drm/i915/gt/intel_ggtt.c | 9 ++----
drivers/gpu/drm/i915/gt/intel_gt.h | 5 ++++
drivers/gpu/drm/i915/gt/intel_gt_irq.c | 6 ++--
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 2 +-
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c | 8 ++---
drivers/gpu/drm/i915/gt/intel_rc6.c | 4 +--
drivers/gpu/drm/i915/gt/intel_rps.c | 2 +-
drivers/gpu/drm/i915/gt/intel_tlb.c | 2 +-
drivers/gpu/drm/i915/gt/selftest_slpc.c | 6 ++--
drivers/gpu/drm/i915/gt/uc/intel_gsc_fw.c | 4 +--
drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.c | 3 +-
drivers/gpu/drm/i915/gt/uc/intel_guc_ads.c | 2 +-
.../gpu/drm/i915/gt/uc/intel_guc_capture.c | 6 ++--
.../gpu/drm/i915/gt/uc/intel_guc_hwconfig.c | 2 +-
.../gpu/drm/i915/gt/uc/intel_guc_submission.c | 30 +++++++++----------
drivers/gpu/drm/i915/gt/uc/intel_huc.c | 4 +--
drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c | 4 +--
drivers/gpu/drm/i915/gt/uc/selftest_guc.c | 2 +-
drivers/gpu/drm/i915/i915_debugfs_params.c | 2 +-
.../i915/selftests/intel_scheduler_helpers.c | 4 +--
21 files changed, 57 insertions(+), 54 deletions(-)
--
2.43.0
next reply other threads:[~2023-12-06 20:48 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-06 20:46 Andi Shyti [this message]
2023-12-06 20:46 ` [PATCH v3 0/4] Add gt_to_guc() helper Andi Shyti
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 1/4] drm/i915/gt: Create the gt_to_guc() wrapper Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 9:19 ` Nirmoy Das
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 2/4] drm/i915/guc: Use the new " Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 9:20 ` Nirmoy Das
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 3/4] drm/i915: " Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 9:21 ` Nirmoy Das
2023-12-06 20:46 ` [Intel-gfx] [PATCH v3 4/4] drm/i915/guc: Use the ce_to_guc() wrapper whenever possible Andi Shyti
2023-12-06 20:46 ` Andi Shyti
2023-12-21 12:18 ` Nirmoy Das
2023-12-07 0:35 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for Add gt_to_guc() helper Patchwork
2023-12-07 0:53 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
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=20231206204644.105064-1-andi.shyti@linux.intel.com \
--to=andi.shyti@linux.intel.com \
--cc=John.C.Harrison@Intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=nirmoy.das@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 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.