From: Dominik Grzegorzek <dominik.grzegorzek@xxxxxxxxx> Scan for EU debugging attention bits periodically to detect if some EU thread has entered the system routine (SIP) due to EU thread exception. Make the scanning interval 10 times slower when there is no debugger connection open. Send attention event whenever we see attention with debugger presence. If there is no debugger connection active - reset. Based on work by authors and other folks who were part of attentions in i915. v2: - use xa_array for files - null ptr deref fix for non-debugged context (Dominik) - checkpatch (Tilak) - use discovery_lock during list traversal v3: - engine status per gen improvements, force_wake ref - __counted_by (Mika) Signed-off-by: Dominik Grzegorzek <dominik.grzegorzek@xxxxxxxxx> Signed-off-by: Christoph Manszewski <christoph.manszewski@xxxxxxxxx> Signed-off-by: Maciej Patelczyk <maciej.patelczyk@xxxxxxxxx> Signed-off-by: Mika Kuoppala <mika.kuoppala@xxxxxxxxxxxxxxx> --- drivers/gpu/drm/xe/Makefile | 1 + drivers/gpu/drm/xe/regs/xe_engine_regs.h | 3 + drivers/gpu/drm/xe/regs/xe_gt_regs.h | 7 + drivers/gpu/drm/xe/xe_device.c | 2 + drivers/gpu/drm/xe/xe_device_types.h | 3 + drivers/gpu/drm/xe/xe_eudebug.c | 410 ++++++++++++++++++++++- drivers/gpu/drm/xe/xe_eudebug.h | 2 + drivers/gpu/drm/xe/xe_eudebug_types.h | 32 ++ drivers/gpu/drm/xe/xe_gt_debug.c | 148 ++++++++ drivers/gpu/drm/xe/xe_gt_debug.h | 21 ++ include/uapi/drm/xe_drm_eudebug.h | 13 + 11 files changed, 640 insertions(+), 2 deletions(-) create mode 100644 drivers/gpu/drm/xe/xe_gt_debug.c create mode 100644 drivers/gpu/drm/xe/xe_gt_debug.h diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile index deabcdd3ea52..33f457e4fcd3 100644 --- a/drivers/gpu/drm/xe/Makefile +++ b/drivers/gpu/drm/xe/Makefile @@ -48,6 +48,7 @@ xe-y += xe_bb.o \ xe_gt_clock.o \ xe_gt_freq.o \ xe_gt_idle.o \ + xe_gt_debug.o \ xe_gt_mcr.o \ xe_gt_pagefault.o \ xe_gt_sysfs.o \ diff --git a/drivers/gpu/drm/xe/regs/xe_engine_regs.h b/drivers/gpu/drm/xe/regs/xe_engine_regs.h index e45c4d5378e5..83b26cb174d6 100644 --- a/drivers/gpu/drm/xe/regs/xe_engine_regs.h +++ b/drivers/gpu/drm/xe/regs/xe_engine_regs.h @@ -133,6 +133,9 @@ #define RING_EXECLIST_STATUS_LO(base) XE_REG((base) + 0x234) #define RING_EXECLIST_STATUS_HI(base) XE_REG((base) + 0x234 + 4) +#define RING_CURRENT_LRCA(base) XE_REG((base) + 0x240) +#define CURRENT_LRCA_VALID REG_BIT(0) + #define RING_CONTEXT_CONTROL(base) XE_REG((base) + 0x244, XE_REG_OPTION_MASKED) #define CTX_CTRL_OAC_CONTEXT_ENABLE REG_BIT(8) #define CTX_CTRL_RUN_ALONE REG_BIT(7) diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h index cd8c49a9000f..a20331b6c20e 100644 --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h @@ -467,6 +467,8 @@ #define DISABLE_ECC REG_BIT(5) #define ENABLE_PREFETCH_INTO_IC REG_BIT(3) +#define TD_ATT(x) XE_REG_MCR(0xe470 + (x) * 4) + #define ROW_CHICKEN4 XE_REG_MCR(0xe48c, XE_REG_OPTION_MASKED) #define DISABLE_GRF_CLEAR REG_BIT(13) #define XEHP_DIS_BBL_SYSPIPE REG_BIT(11) @@ -547,6 +549,11 @@ #define CCS_MODE_CSLICE(cslice, ccs) \ ((ccs) << ((cslice) * CCS_MODE_CSLICE_WIDTH)) +#define RCU_DEBUG_1 XE_REG(0x14a00) +#define RCU_DEBUG_1_ENGINE_STATUS REG_GENMASK(2, 0) +#define RCU_DEBUG_1_RUNALONE_ACTIVE REG_BIT(2) +#define RCU_DEBUG_1_CONTEXT_ACTIVE REG_BIT(0) + #define FORCEWAKE_ACK_GT XE_REG(0x130044) /* Applicable for all FORCEWAKE_DOMAIN and FORCEWAKE_ACK_DOMAIN regs */ diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c index f051612908de..dc0336215912 100644 --- a/drivers/gpu/drm/xe/xe_device.c +++ b/drivers/gpu/drm/xe/xe_device.c @@ -777,6 +777,8 @@ int xe_device_probe(struct xe_device *xe) xe_debugfs_register(xe); + xe_eudebug_init_late(xe); + xe_hwmon_register(xe); for_each_gt(gt, xe, id) diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h index 9941ea1400c6..7b893a86d83f 100644 --- a/drivers/gpu/drm/xe/xe_device_types.h +++ b/drivers/gpu/drm/xe/xe_device_types.h @@ -556,6 +556,9 @@ struct xe_device { /** discovery_lock: used for discovery to block xe ioctls */ struct rw_semaphore discovery_lock; + + /** @attention_scan: attention scan worker */ + struct delayed_work attention_scan; } eudebug; #endif diff --git a/drivers/gpu/drm/xe/xe_eudebug.c b/drivers/gpu/drm/xe/xe_eudebug.c index 4644d6846aae..39e927100222 100644 --- a/drivers/gpu/drm/xe/xe_eudebug.c +++ b/drivers/gpu/drm/xe/xe_eudebug.c @@ -20,9 +20,17 @@ #include "xe_eudebug.h" #include "xe_eudebug_types.h" #include "xe_exec_queue.h" +#include "xe_force_wake.h" +#include "xe_gt.h" +#include "xe_gt_debug.h" +#include "xe_hw_engine.h" +#include "xe_lrc.h" #include "xe_macros.h" +#include "xe_mmio.h" +#include "xe_pm.h" #include "xe_reg_sr.h" #include "xe_rtp.h" +#include "xe_sched_job.h" #include "xe_vm.h" #include "xe_wa.h" @@ -725,7 +733,7 @@ static struct xe_eudebug_event * xe_eudebug_create_event(struct xe_eudebug *d, u16 type, u64 seqno, u16 flags, u32 len) { - const u16 max_event = DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS; + const u16 max_event = DRM_XE_EUDEBUG_EVENT_EU_ATTENTION; const u16 known_flags = DRM_XE_EUDEBUG_EVENT_CREATE | DRM_XE_EUDEBUG_EVENT_DESTROY | @@ -760,7 +768,7 @@ static long xe_eudebug_read_event(struct xe_eudebug *d, u64_to_user_ptr(arg); struct drm_xe_eudebug_event user_event; struct xe_eudebug_event *event; - const unsigned int max_event = DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS; + const unsigned int max_event = DRM_XE_EUDEBUG_EVENT_EU_ATTENTION; long ret = 0; if (XE_IOCTL_DBG(xe, copy_from_user(&user_event, user_orig, sizeof(user_event)))) @@ -867,6 +875,392 @@ static const struct file_operations fops = { .unlocked_ioctl = xe_eudebug_ioctl, }; +static int __current_lrca(struct xe_hw_engine *hwe, u32 *lrc_hw) +{ + u32 lrc_reg; + + lrc_reg = xe_hw_engine_mmio_read32(hwe, RING_CURRENT_LRCA(0)); + + if (!(lrc_reg & CURRENT_LRCA_VALID)) + return -ENOENT; + + *lrc_hw = lrc_reg & GENMASK(31, 12); + + return 0; +} + +static int current_lrca(struct xe_hw_engine *hwe, u32 *lrc_hw) +{ + unsigned int fw_ref; + int ret; + + fw_ref = xe_force_wake_get(gt_to_fw(hwe->gt), hwe->domain); + if (!fw_ref) + return -ETIMEDOUT; + + ret = __current_lrca(hwe, lrc_hw); + + xe_force_wake_put(gt_to_fw(hwe->gt), fw_ref); + + return ret; +} + +static bool lrca_equals(u32 a, u32 b) +{ + return (a & GENMASK(31, 12)) == (b & GENMASK(31, 12)); +} + +static int match_exec_queue_lrca(struct xe_exec_queue *q, u32 lrc_hw) +{ + int i; + + for (i = 0; i < q->width; i++) + if (lrca_equals(lower_32_bits(xe_lrc_descriptor(q->lrc[i])), lrc_hw)) + return i; + + return -1; +} + +static int rcu_debug1_engine_index(const struct xe_hw_engine * const hwe) +{ + if (hwe->class == XE_ENGINE_CLASS_RENDER) { + XE_WARN_ON(hwe->instance); + return 0; + } + + XE_WARN_ON(hwe->instance > 3); + + return hwe->instance + 1; +} + +static u32 engine_status_xe1(const struct xe_hw_engine * const hwe, + u32 rcu_debug1) +{ + const unsigned int first = 7; + const unsigned int incr = 3; + const unsigned int i = rcu_debug1_engine_index(hwe); + const unsigned int shift = first + (i * incr); + + return (rcu_debug1 >> shift) & RCU_DEBUG_1_ENGINE_STATUS; +} + +static u32 engine_status_xe2(const struct xe_hw_engine * const hwe, + u32 rcu_debug1) +{ + const unsigned int first = 7; + const unsigned int incr = 4; + const unsigned int i = rcu_debug1_engine_index(hwe); + const unsigned int shift = first + (i * incr); + + return (rcu_debug1 >> shift) & RCU_DEBUG_1_ENGINE_STATUS; +} + +static u32 engine_status(const struct xe_hw_engine * const hwe, + u32 rcu_debug1) +{ + u32 status = 0; + + if (GRAPHICS_VER(gt_to_xe(hwe->gt)) < 20) + status = engine_status_xe1(hwe, rcu_debug1); + else if (GRAPHICS_VER(gt_to_xe(hwe->gt)) < 30) + status = engine_status_xe2(hwe, rcu_debug1); + else + XE_WARN_ON(GRAPHICS_VER(gt_to_xe(hwe->gt))); + + return status; +} + +static bool engine_is_runalone_set(const struct xe_hw_engine * const hwe, + u32 rcu_debug1) +{ + return engine_status(hwe, rcu_debug1) & RCU_DEBUG_1_RUNALONE_ACTIVE; +} + +static bool engine_is_context_set(const struct xe_hw_engine * const hwe, + u32 rcu_debug1) +{ + return engine_status(hwe, rcu_debug1) & RCU_DEBUG_1_CONTEXT_ACTIVE; +} + +static bool engine_has_runalone(const struct xe_hw_engine * const hwe) +{ + return hwe->class == XE_ENGINE_CLASS_RENDER || + hwe->class == XE_ENGINE_CLASS_COMPUTE; +} + +static struct xe_hw_engine *get_runalone_active_hw_engine(struct xe_gt *gt) +{ + struct xe_hw_engine *hwe, *first = NULL; + unsigned int num_active, id, fw_ref; + u32 val; + + fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); + if (!fw_ref) { + drm_dbg(>_to_xe(gt)->drm, "eudbg: runalone failed to get force wake\n"); + return NULL; + } + + val = xe_mmio_read32(>->mmio, RCU_DEBUG_1); + xe_force_wake_put(gt_to_fw(gt), fw_ref); + + drm_dbg(>_to_xe(gt)->drm, "eudbg: runalone RCU_DEBUG_1 = 0x%08x\n", val); + + num_active = 0; + for_each_hw_engine(hwe, gt, id) { + bool runalone, ctx; + + if (!engine_has_runalone(hwe)) + continue; + + runalone = engine_is_runalone_set(hwe, val); + ctx = engine_is_context_set(hwe, val); + + drm_dbg(>_to_xe(gt)->drm, "eudbg: engine %s: runalone=%s, context=%s", + hwe->name, runalone ? "active" : "inactive", + ctx ? "active" : "inactive"); + + /* + * On earlier gen12 the context status seems to be idle when + * it has raised attention. We have to omit the active bit. + */ + if (IS_DGFX(gt_to_xe(gt))) + ctx = true; + + if (runalone && ctx) { + num_active++; + + drm_dbg(>_to_xe(gt)->drm, "eudbg: runalone engine %s %s", + hwe->name, first ? "selected" : "found"); + if (!first) + first = hwe; + } + } + + if (num_active > 1) + drm_err(>_to_xe(gt)->drm, "eudbg: %d runalone engines active!", + num_active); + + return first; +} + +static struct xe_exec_queue *runalone_active_queue_get(struct xe_gt *gt, int *lrc_idx) +{ + struct xe_device *xe = gt_to_xe(gt); + struct xe_exec_queue *q, *found = NULL; + struct xe_hw_engine *active; + struct xe_file *xef; + unsigned long i; + int idx, err; + u32 lrc_hw; + + active = get_runalone_active_hw_engine(gt); + if (!active) { + drm_dbg(>_to_xe(gt)->drm, "Runalone engine not found!"); + return ERR_PTR(-ENOENT); + } + + err = current_lrca(active, &lrc_hw); + if (err) + return ERR_PTR(err); + + /* Take write so that we can safely check the lists */ + down_write(&xe->eudebug.discovery_lock); + list_for_each_entry(xef, &xe->clients.list, eudebug.client_link) { + xa_for_each(&xef->exec_queue.xa, i, q) { + if (q->gt != gt) + continue; + + if (q->class != active->class) + continue; + + if (xe_exec_queue_is_idle(q)) + continue; + + idx = match_exec_queue_lrca(q, lrc_hw); + if (idx < 0) + continue; + + found = xe_exec_queue_get(q); + + if (lrc_idx) + *lrc_idx = idx; + + break; + } + + if (found) + break; + } + up_write(&xe->eudebug.discovery_lock); + + if (!found) + return ERR_PTR(-ENOENT); + + if (XE_WARN_ON(current_lrca(active, &lrc_hw)) && + XE_WARN_ON(match_exec_queue_lrca(found, lrc_hw) < 0)) { + xe_exec_queue_put(found); + return ERR_PTR(-ENOENT); + } + + return found; +} + +static int send_attention_event(struct xe_eudebug *d, struct xe_exec_queue *q, int lrc_idx) +{ + struct xe_eudebug_event_eu_attention *ea; + struct xe_eudebug_event *event; + int h_c, h_queue, h_lrc; + u32 size = xe_gt_eu_attention_bitmap_size(q->gt); + u32 sz = struct_size(ea, bitmask, size); + int ret; + + XE_WARN_ON(lrc_idx < 0 || lrc_idx >= q->width); + + XE_WARN_ON(!xe_exec_queue_is_debuggable(q)); + + h_c = find_handle(d->res, XE_EUDEBUG_RES_TYPE_CLIENT, q->vm->xef); + if (h_c < 0) + return h_c; + + h_queue = find_handle(d->res, XE_EUDEBUG_RES_TYPE_EXEC_QUEUE, q); + if (h_queue < 0) + return h_queue; + + h_lrc = find_handle(d->res, XE_EUDEBUG_RES_TYPE_LRC, q->lrc[lrc_idx]); + if (h_lrc < 0) + return h_lrc; + + event = xe_eudebug_create_event(d, DRM_XE_EUDEBUG_EVENT_EU_ATTENTION, 0, + DRM_XE_EUDEBUG_EVENT_STATE_CHANGE, sz); + + if (!event) + return -ENOSPC; + + ea = cast_event(ea, event); + write_member(struct drm_xe_eudebug_event_eu_attention, ea, client_handle, (u64)h_c); + write_member(struct drm_xe_eudebug_event_eu_attention, ea, exec_queue_handle, (u64)h_queue); + write_member(struct drm_xe_eudebug_event_eu_attention, ea, lrc_handle, (u64)h_lrc); + write_member(struct drm_xe_eudebug_event_eu_attention, ea, bitmask_size, size); + + mutex_lock(&d->eu_lock); + event->seqno = atomic_long_inc_return(&d->events.seqno); + ret = xe_gt_eu_attention_bitmap(q->gt, &ea->bitmask[0], ea->bitmask_size); + mutex_unlock(&d->eu_lock); + + if (ret) + return ret; + + return xe_eudebug_queue_event(d, event); +} + + +static int xe_send_gt_attention(struct xe_gt *gt) +{ + struct xe_eudebug *d; + struct xe_exec_queue *q; + int ret, lrc_idx; + + if (list_empty_careful(>_to_xe(gt)->eudebug.list)) + return -ENOTCONN; + + q = runalone_active_queue_get(gt, &lrc_idx); + if (IS_ERR(q)) + return PTR_ERR(q); + + if (!xe_exec_queue_is_debuggable(q)) { + ret = -EPERM; + goto err_exec_queue_put; + } + + d = _xe_eudebug_get(q->vm->xef); + if (!d) { + ret = -ENOTCONN; + goto err_exec_queue_put; + } + + if (!completion_done(&d->discovery)) { + eu_dbg(d, "discovery not yet done\n"); + ret = -EBUSY; + goto err_eudebug_put; + } + + ret = send_attention_event(d, q, lrc_idx); + if (ret) + xe_eudebug_disconnect(d, ret); + +err_eudebug_put: + xe_eudebug_put(d); +err_exec_queue_put: + xe_exec_queue_put(q); + + return ret; +} + +static int xe_eudebug_handle_gt_attention(struct xe_gt *gt) +{ + int ret; + + ret = xe_gt_eu_threads_needing_attention(gt); + if (ret <= 0) + return ret; + + ret = xe_send_gt_attention(gt); + + /* Discovery in progress, fake it */ + if (ret == -EBUSY) + return 0; + + return ret; +} + +#define XE_EUDEBUG_ATTENTION_INTERVAL 100 +static void attention_scan_fn(struct work_struct *work) +{ + struct xe_device *xe = container_of(work, typeof(*xe), eudebug.attention_scan.work); + long delay = msecs_to_jiffies(XE_EUDEBUG_ATTENTION_INTERVAL); + struct xe_gt *gt; + u8 gt_id; + + if (list_empty_careful(&xe->eudebug.list)) + delay *= 10; + + if (delay >= HZ) + delay = round_jiffies_up_relative(delay); + + if (xe_pm_runtime_get_if_active(xe)) { + for_each_gt(gt, xe, gt_id) { + int ret; + + if (gt->info.type != XE_GT_TYPE_MAIN) + continue; + + ret = xe_eudebug_handle_gt_attention(gt); + if (ret) { + // TODO: error capture + drm_info(>_to_xe(gt)->drm, + "gt:%d unable to handle eu attention ret=%d\n", + gt_id, ret); + + xe_gt_reset_async(gt); + } + } + + xe_pm_runtime_put(xe); + } + + schedule_delayed_work(&xe->eudebug.attention_scan, delay); +} + +static void attention_scan_cancel(struct xe_device *xe) +{ + cancel_delayed_work_sync(&xe->eudebug.attention_scan); +} + +static void attention_scan_flush(struct xe_device *xe) +{ + mod_delayed_work(system_wq, &xe->eudebug.attention_scan, 0); +} + static void discovery_work_fn(struct work_struct *work); static int @@ -901,6 +1295,7 @@ xe_eudebug_connect(struct xe_device *xe, kref_init(&d->ref); spin_lock_init(&d->connection.lock); + mutex_init(&d->eu_lock); init_waitqueue_head(&d->events.write_done); init_waitqueue_head(&d->events.read_done); init_completion(&d->discovery); @@ -927,6 +1322,7 @@ xe_eudebug_connect(struct xe_device *xe, kref_get(&d->ref); queue_work(xe->eudebug.ordered_wq, &d->discovery_work); + attention_scan_flush(xe); eu_dbg(d, "connected session %lld", d->session); @@ -1004,13 +1400,23 @@ void xe_eudebug_init(struct xe_device *xe) spin_lock_init(&xe->clients.lock); INIT_LIST_HEAD(&xe->clients.list); init_rwsem(&xe->eudebug.discovery_lock); + INIT_DELAYED_WORK(&xe->eudebug.attention_scan, attention_scan_fn); xe->eudebug.ordered_wq = alloc_ordered_workqueue("xe-eudebug-ordered-wq", 0); xe->eudebug.available = !!xe->eudebug.ordered_wq; } +void xe_eudebug_init_late(struct xe_device *xe) +{ + if (!xe->eudebug.available) + return; + + attention_scan_flush(xe); +} + void xe_eudebug_fini(struct xe_device *xe) { + attention_scan_cancel(xe); xe_assert(xe, list_empty_careful(&xe->eudebug.list)); if (xe->eudebug.ordered_wq) diff --git a/drivers/gpu/drm/xe/xe_eudebug.h b/drivers/gpu/drm/xe/xe_eudebug.h index 3cd6bc7bb682..1fe86bec99e1 100644 --- a/drivers/gpu/drm/xe/xe_eudebug.h +++ b/drivers/gpu/drm/xe/xe_eudebug.h @@ -20,6 +20,7 @@ int xe_eudebug_connect_ioctl(struct drm_device *dev, struct drm_file *file); void xe_eudebug_init(struct xe_device *xe); +void xe_eudebug_init_late(struct xe_device *xe); void xe_eudebug_fini(struct xe_device *xe); void xe_eudebug_init_hw_engine(struct xe_hw_engine *hwe); @@ -39,6 +40,7 @@ static inline int xe_eudebug_connect_ioctl(struct drm_device *dev, struct drm_file *file) { return 0; } static inline void xe_eudebug_init(struct xe_device *xe) { } +static inline void xe_eudebug_init_late(struct xe_device *xe) { } static inline void xe_eudebug_fini(struct xe_device *xe) { } static inline void xe_eudebug_init_hw_engine(struct xe_hw_engine *hwe) { } diff --git a/drivers/gpu/drm/xe/xe_eudebug_types.h b/drivers/gpu/drm/xe/xe_eudebug_types.h index bdffdfb1abff..410b3ecccc12 100644 --- a/drivers/gpu/drm/xe/xe_eudebug_types.h +++ b/drivers/gpu/drm/xe/xe_eudebug_types.h @@ -105,6 +105,9 @@ struct xe_eudebug { /** @discovery_work: worker to discover resources for target_task */ struct work_struct discovery_work; + /** eu_lock: guards operations on eus (eu thread control and attention) */ + struct mutex eu_lock; + /** @events: kfifo queue of to-be-delivered events */ struct { /** @lock: guards access to fifo */ @@ -228,4 +231,33 @@ struct xe_eudebug_event_exec_queue_placements { u64 instances[]; __counted_by(num_placements); }; +/** + * struct xe_eudebug_event_eu_attention - Internal event for EU attention + */ +struct xe_eudebug_event_eu_attention { + /** @base: base event */ + struct xe_eudebug_event base; + + /** @client_handle: client for the attention */ + u64 client_handle; + + /** @exec_queue_handle: handle of exec_queue which raised attention */ + u64 exec_queue_handle; + + /** @lrc_handle: lrc handle of the workload which raised attention */ + u64 lrc_handle; + + /** @flags: eu attention event flags, currently MBZ */ + u32 flags; + + /** @bitmask_size: size of the bitmask, specific to device */ + u32 bitmask_size; + + /** + * @bitmask: reflects threads currently signalling attention, + * starting from natural hardware order of DSS=0, eu=0 + */ + u8 bitmask[] __counted_by(bitmask_size); +}; + #endif diff --git a/drivers/gpu/drm/xe/xe_gt_debug.c b/drivers/gpu/drm/xe/xe_gt_debug.c new file mode 100644 index 000000000000..c4f0d11a20a6 --- /dev/null +++ b/drivers/gpu/drm/xe/xe_gt_debug.c @@ -0,0 +1,148 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2023 Intel Corporation + */ + +#include "regs/xe_gt_regs.h" +#include "xe_device.h" +#include "xe_force_wake.h" +#include "xe_gt.h" +#include "xe_gt_topology.h" +#include "xe_gt_debug.h" +#include "xe_gt_mcr.h" +#include "xe_pm.h" +#include "xe_macros.h" + +static int xe_gt_foreach_dss_group_instance(struct xe_gt *gt, + int (*fn)(struct xe_gt *gt, + void *data, + u16 group, + u16 instance), + void *data) +{ + const enum xe_force_wake_domains fw_domains = XE_FW_GT; + unsigned int dss, fw_ref; + u16 group, instance; + int ret = 0; + + fw_ref = xe_force_wake_get(gt_to_fw(gt), fw_domains); + if (!fw_ref) + return -ETIMEDOUT; + + for_each_dss_steering(dss, gt, group, instance) { + ret = fn(gt, data, group, instance); + if (ret) + break; + } + + xe_force_wake_put(gt_to_fw(gt), fw_ref); + + return ret; +} + +static int read_first_attention_mcr(struct xe_gt *gt, void *data, + u16 group, u16 instance) +{ + unsigned int row; + + for (row = 0; row < 2; row++) { + u32 val; + + val = xe_gt_mcr_unicast_read(gt, TD_ATT(row), group, instance); + + if (val) + return 1; + } + + return 0; +} + +#define MAX_EUS_PER_ROW 4u +#define MAX_THREADS 8u + +/** + * xe_gt_eu_attention_bitmap_size - query size of the attention bitmask + * + * @gt: pointer to struct xe_gt + * + * Return: size in bytes. + */ +int xe_gt_eu_attention_bitmap_size(struct xe_gt *gt) +{ + xe_dss_mask_t dss_mask; + + bitmap_or(dss_mask, gt->fuse_topo.c_dss_mask, + gt->fuse_topo.g_dss_mask, XE_MAX_DSS_FUSE_BITS); + + return bitmap_weight(dss_mask, XE_MAX_DSS_FUSE_BITS) * + TD_EU_ATTENTION_MAX_ROWS * MAX_THREADS * + MAX_EUS_PER_ROW / 8; +} + +struct attn_read_iter { + struct xe_gt *gt; + unsigned int i; + unsigned int size; + u8 *bits; +}; + +static int read_eu_attentions_mcr(struct xe_gt *gt, void *data, + u16 group, u16 instance) +{ + struct attn_read_iter * const iter = data; + unsigned int row; + + for (row = 0; row < TD_EU_ATTENTION_MAX_ROWS; row++) { + u32 val; + + if (iter->i >= iter->size) + return 0; + + XE_WARN_ON(iter->i + sizeof(val) > xe_gt_eu_attention_bitmap_size(gt)); + + val = xe_gt_mcr_unicast_read(gt, TD_ATT(row), group, instance); + + memcpy(&iter->bits[iter->i], &val, sizeof(val)); + iter->i += sizeof(val); + } + + return 0; +} + +/** + * xe_gt_eu_attention_bitmap - query host attention + * + * @gt: pointer to struct xe_gt + * + * Return: 0 on success, negative otherwise. + */ +int xe_gt_eu_attention_bitmap(struct xe_gt *gt, u8 *bits, + unsigned int bitmap_size) +{ + struct attn_read_iter iter = { + .gt = gt, + .i = 0, + .size = bitmap_size, + .bits = bits + }; + + return xe_gt_foreach_dss_group_instance(gt, read_eu_attentions_mcr, &iter); +} + +/** + * xe_gt_eu_threads_needing_attention - Query host attention + * + * @gt: pointer to struct xe_gt + * + * Return: 1 if threads waiting host attention, 0 otherwise. + */ +int xe_gt_eu_threads_needing_attention(struct xe_gt *gt) +{ + int err; + + err = xe_gt_foreach_dss_group_instance(gt, read_first_attention_mcr, NULL); + + XE_WARN_ON(err < 0); + + return err < 0 ? 0 : err; +} diff --git a/drivers/gpu/drm/xe/xe_gt_debug.h b/drivers/gpu/drm/xe/xe_gt_debug.h new file mode 100644 index 000000000000..3f13dbb17a5f --- /dev/null +++ b/drivers/gpu/drm/xe/xe_gt_debug.h @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#ifndef __XE_GT_DEBUG_ +#define __XE_GT_DEBUG_ + +#define TD_EU_ATTENTION_MAX_ROWS 2u + +#include "xe_gt_types.h" + +#define XE_GT_ATTENTION_TIMEOUT_MS 100 + +int xe_gt_eu_threads_needing_attention(struct xe_gt *gt); + +int xe_gt_eu_attention_bitmap_size(struct xe_gt *gt); +int xe_gt_eu_attention_bitmap(struct xe_gt *gt, u8 *bits, + unsigned int bitmap_size); + +#endif diff --git a/include/uapi/drm/xe_drm_eudebug.h b/include/uapi/drm/xe_drm_eudebug.h index 21690008a869..144c7cf888bb 100644 --- a/include/uapi/drm/xe_drm_eudebug.h +++ b/include/uapi/drm/xe_drm_eudebug.h @@ -28,12 +28,14 @@ struct drm_xe_eudebug_event { #define DRM_XE_EUDEBUG_EVENT_VM 3 #define DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE 4 #define DRM_XE_EUDEBUG_EVENT_EXEC_QUEUE_PLACEMENTS 5 +#define DRM_XE_EUDEBUG_EVENT_EU_ATTENTION 6 __u16 flags; #define DRM_XE_EUDEBUG_EVENT_CREATE (1 << 0) #define DRM_XE_EUDEBUG_EVENT_DESTROY (1 << 1) #define DRM_XE_EUDEBUG_EVENT_STATE_CHANGE (1 << 2) #define DRM_XE_EUDEBUG_EVENT_NEED_ACK (1 << 3) + __u64 seqno; __u64 reserved; }; @@ -78,6 +80,17 @@ struct drm_xe_eudebug_event_exec_queue_placements { __u64 instances[]; }; +struct drm_xe_eudebug_event_eu_attention { + struct drm_xe_eudebug_event base; + + __u64 client_handle; + __u64 exec_queue_handle; + __u64 lrc_handle; + __u32 flags; + __u32 bitmask_size; + __u8 bitmask[]; +}; + #if defined(__cplusplus) } #endif -- 2.43.0