Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [RFC 0/7] Promote GuC ABI headers to shared location
@ 2024-06-11 14:30 Michal Wajdeczko
  2024-06-11 14:30 ` [RFC 1/7] drm/xe/guc: " Michal Wajdeczko
                   ` (16 more replies)
  0 siblings, 17 replies; 22+ messages in thread
From: Michal Wajdeczko @ 2024-06-11 14:30 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: Michal Wajdeczko, Jani Nikula, Rodrigo Vivi, Lucas De Marchi,
	Matthew Brost, Daniele Ceraolo Spurio, John Harrison

There are many GuC ABI definitions named in the same way by the i915
and Xe drivers, preventing proper generation of the documentation.

Promote GuC ABI definitions to shared location that can be used by
both drivers and can be included in documentation.

Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>

Michal Wajdeczko (7):
  drm/xe/guc: Promote GuC ABI headers to shared location
  Documentation/gpu: Separate GuC ABI section
  Documentation/gpu: Switch to shared GuC ABI definitions
  drm/intel/guc: Update CTB communication ABI
  drm/intel/guc: Add new KLV definitions
  drm/i915: Use shared GuC ABI definitions
  drm/xe: Promote SR-IOV GuC ABI definitions to shared location

 Documentation/gpu/drivers.rst                 |   1 +
 Documentation/gpu/guc.rst                     |  23 ++
 Documentation/gpu/i915.rst                    |   9 -
 drivers/gpu/drm/i915/Makefile                 |   5 +
 .../gt/uc/abi/guc_communication_ctb_abi.h     | 170 -----------
 .../gt/uc/abi/guc_communication_mmio_abi.h    |  49 ----
 drivers/gpu/drm/i915/gt/uc/abi/guc_klvs_abi.h | 112 --------
 .../gpu/drm/i915/gt/uc/abi/guc_messages_abi.h | 264 ------------------
 .../guc}/abi/guc_actions_sriov_abi.h          |   0
 .../guc}/abi/guc_communication_ctb_abi.h      |   2 +
 .../guc}/abi/guc_communication_mmio_abi.h     |   0
 .../drm/{xe => intel/guc}/abi/guc_klvs_abi.h  |  18 +-
 .../{xe => intel/guc}/abi/guc_messages_abi.h  |   0
 .../guc}/abi/guc_relay_actions_abi.h          |   0
 .../guc}/abi/guc_relay_communication_abi.h    |   0
 drivers/gpu/drm/xe/Makefile                   |   5 +
 16 files changed, 49 insertions(+), 609 deletions(-)
 create mode 100644 Documentation/gpu/guc.rst
 delete mode 100644 drivers/gpu/drm/i915/gt/uc/abi/guc_communication_ctb_abi.h
 delete mode 100644 drivers/gpu/drm/i915/gt/uc/abi/guc_communication_mmio_abi.h
 delete mode 100644 drivers/gpu/drm/i915/gt/uc/abi/guc_klvs_abi.h
 delete mode 100644 drivers/gpu/drm/i915/gt/uc/abi/guc_messages_abi.h
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_actions_sriov_abi.h (100%)
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_communication_ctb_abi.h (98%)
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_communication_mmio_abi.h (100%)
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_klvs_abi.h (97%)
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_messages_abi.h (100%)
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_relay_actions_abi.h (100%)
 rename drivers/gpu/drm/{xe => intel/guc}/abi/guc_relay_communication_abi.h (100%)

-- 
2.43.0


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

end of thread, other threads:[~2024-06-12 21:18 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11 14:30 [RFC 0/7] Promote GuC ABI headers to shared location Michal Wajdeczko
2024-06-11 14:30 ` [RFC 1/7] drm/xe/guc: " Michal Wajdeczko
2024-06-11 14:30 ` [RFC 2/7] Documentation/gpu: Separate GuC ABI section Michal Wajdeczko
2024-06-11 14:30 ` [RFC 3/7] Documentation/gpu: Switch to shared GuC ABI definitions Michal Wajdeczko
2024-06-11 14:30 ` [RFC 4/7] drm/intel/guc: Update CTB communication ABI Michal Wajdeczko
2024-06-11 14:30 ` [RFC 5/7] drm/intel/guc: Add new KLV definitions Michal Wajdeczko
2024-06-11 14:30 ` [RFC 6/7] drm/i915: Use shared GuC ABI definitions Michal Wajdeczko
2024-06-11 14:30 ` [RFC 7/7] drm/xe: Promote SR-IOV GuC ABI definitions to shared location Michal Wajdeczko
2024-06-11 14:36 ` ✓ CI.Patch_applied: success for Promote GuC ABI headers " Patchwork
2024-06-11 14:36 ` ✗ CI.checkpatch: warning " Patchwork
2024-06-11 14:37 ` ✓ CI.KUnit: success " Patchwork
2024-06-11 14:49 ` ✓ CI.Build: " Patchwork
2024-06-11 14:51 ` ✗ CI.Hooks: failure " Patchwork
2024-06-11 14:52 ` ✗ CI.checksparse: warning " Patchwork
2024-06-11 15:13 ` [RFC 0/7] " Lucas De Marchi
2024-06-11 15:34 ` ✓ CI.BAT: success for " Patchwork
2024-06-11 17:08 ` ✗ CI.FULL: failure " Patchwork
2024-06-11 20:32 ` [RFC 0/7] " John Harrison
2024-06-11 21:45   ` Michal Wajdeczko
2024-06-11 22:12     ` Rodrigo Vivi
2024-06-12  4:12       ` Lucas De Marchi
2024-06-12 21:18     ` John Harrison

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox