Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Enable media OA
@ 2025-06-06 19:26 Ashutosh Dixit
  2025-06-06 19:26 ` [PATCH 1/5] drm/xe/oa/uapi: Expose media OA units Ashutosh Dixit
                   ` (12 more replies)
  0 siblings, 13 replies; 19+ messages in thread
From: Ashutosh Dixit @ 2025-06-06 19:26 UTC (permalink / raw)
  To: intel-xe

 We had previously enabled render and compute OA units. Enable media OA
units with this series.

v5: Added DRM_XE_OA_CAPS_OAM
v4: Address code review
v3: Introduce DRM_XE_OA_UNIT_TYPE_OAM_SAG
v2: Added Patch 5

Ashutosh Dixit (5):
  drm/xe/oa/uapi: Expose media OA units
  drm/xe/oa: Print hwe to OA unit mapping
  drm/xe/oa: Introduce stream->oa_unit
  drm/xe/oa: Assign hwe for OAM_SAG
  drm/xe/oa: Enable OAM latency measurement

 drivers/gpu/drm/xe/regs/xe_oa_regs.h |   3 +
 drivers/gpu/drm/xe/xe_oa.c           | 213 ++++++++++++++++++++-------
 drivers/gpu/drm/xe/xe_oa_types.h     |   6 +
 drivers/gpu/drm/xe/xe_query.c        |   4 +-
 include/uapi/drm/xe_drm.h            |   4 +
 5 files changed, 174 insertions(+), 56 deletions(-)

-- 
2.48.1


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH v4 0/5] Enable media OA
@ 2025-06-06 16:02 Ashutosh Dixit
  2025-06-06 16:02 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit
  0 siblings, 1 reply; 19+ messages in thread
From: Ashutosh Dixit @ 2025-06-06 16:02 UTC (permalink / raw)
  To: intel-xe; +Cc: Umesh Nerlige Ramappa

We had previously enabled render and compute OA units. Enable media OA
units with this series.

v4: Address code review
v3: Introduce DRM_XE_OA_UNIT_TYPE_OAM_SAG
v2: Added Patch 5

Ashutosh Dixit (5):
  drm/xe/oa/uapi: Expose media OA units
  drm/xe/oa: Print hwe to OA unit mapping
  drm/xe/oa: Introduce stream->oa_unit
  drm/xe/oa: Assign hwe for OAM_SAG
  drm/xe/oa: Enable OAM latency measurement

 drivers/gpu/drm/xe/regs/xe_oa_regs.h |   3 +
 drivers/gpu/drm/xe/xe_oa.c           | 213 ++++++++++++++++++++-------
 drivers/gpu/drm/xe/xe_oa_types.h     |   6 +
 include/uapi/drm/xe_drm.h            |   3 +
 4 files changed, 171 insertions(+), 54 deletions(-)

-- 
2.48.1


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH v3 0/5] Enable media OA
@ 2025-06-03 20:21 Ashutosh Dixit
  2025-06-03 20:21 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit
  0 siblings, 1 reply; 19+ messages in thread
From: Ashutosh Dixit @ 2025-06-03 20:21 UTC (permalink / raw)
  To: intel-xe; +Cc: Umesh Nerlige Ramappa

We had previously enabled render and compute OA units. Enable media OA
units with this series.

v3: Introduce DRM_XE_OA_UNIT_TYPE_OAM_SAG
v2: Added Patch 5

Ashutosh Dixit (5):
  drm/xe/oa/uapi: Expose media OA units
  drm/xe/oa: Print hwe to OA unit mapping
  drm/xe/oa: Introduce stream->oa_unit
  drm/xe/oa: Assign hwe for OAM_SAG
  drm/xe/oa: Enable OAM latency measurement

 drivers/gpu/drm/xe/regs/xe_oa_regs.h |   3 +
 drivers/gpu/drm/xe/xe_oa.c           | 205 ++++++++++++++++++++-------
 drivers/gpu/drm/xe/xe_oa_types.h     |   6 +
 include/uapi/drm/xe_drm.h            |   3 +
 4 files changed, 163 insertions(+), 54 deletions(-)

-- 
2.48.1


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCH v2 0/5] Enable media OA
@ 2025-05-31  0:12 Ashutosh Dixit
  2025-05-31  0:12 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit
  0 siblings, 1 reply; 19+ messages in thread
From: Ashutosh Dixit @ 2025-05-31  0:12 UTC (permalink / raw)
  To: intel-xe; +Cc: Umesh Nerlige Ramappa

We had previously enabled render and compute OA units. Enable media OA
units with this series.

v2: Added Patch 5

Ashutosh Dixit (5):
  drm/xe/oa: Expose media OA units
  drm/xe/oa: Print hwe to OA unit mapping
  drm/xe/oa: Introduce stream->oa_unit
  drm/xe/oa: Assign hwe for OAM_SAG
  drm/xe/oa: Enable OAM latency measurement

 drivers/gpu/drm/xe/regs/xe_oa_regs.h |   3 +
 drivers/gpu/drm/xe/xe_oa.c           | 197 ++++++++++++++++++++-------
 drivers/gpu/drm/xe/xe_oa_types.h     |   6 +
 3 files changed, 153 insertions(+), 53 deletions(-)

-- 
2.48.1


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

end of thread, other threads:[~2025-06-09  3:26 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-06 19:26 [PATCH 0/5] Enable media OA Ashutosh Dixit
2025-06-06 19:26 ` [PATCH 1/5] drm/xe/oa/uapi: Expose media OA units Ashutosh Dixit
2025-06-06 19:26 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit
2025-06-06 19:26 ` [PATCH 3/5] drm/xe/oa: Introduce stream->oa_unit Ashutosh Dixit
2025-06-06 19:26 ` [PATCH 4/5] drm/xe/oa: Assign hwe for OAM_SAG Ashutosh Dixit
2025-06-06 19:26 ` [PATCH 5/5] drm/xe/oa: Enable OAM latency measurement Ashutosh Dixit
2025-06-06 19:31 ` ✓ CI.Patch_applied: success for Enable media OA Patchwork
2025-06-06 19:31 ` ✓ CI.checkpatch: " Patchwork
2025-06-06 19:33 ` ✓ CI.KUnit: " Patchwork
2025-06-06 19:43 ` ✓ CI.Build: " Patchwork
2025-06-06 19:46 ` ✓ CI.Hooks: " Patchwork
2025-06-06 19:48 ` ✓ CI.checksparse: " Patchwork
2025-06-06 20:23 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-09  3:26 ` ✓ Xe.CI.Full: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2025-06-06 16:02 [PATCH v4 0/5] " Ashutosh Dixit
2025-06-06 16:02 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit
2025-06-03 20:21 [PATCH v3 0/5] Enable media OA Ashutosh Dixit
2025-06-03 20:21 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit
2025-06-04 23:49   ` Umesh Nerlige Ramappa
2025-06-06 16:05     ` Dixit, Ashutosh
2025-05-31  0:12 [PATCH v2 0/5] Enable media OA Ashutosh Dixit
2025-05-31  0:12 ` [PATCH 2/5] drm/xe/oa: Print hwe to OA unit mapping Ashutosh Dixit

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