1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2023 Intel Corporation
*/
#include <fcntl.h>
#include <sys/stat.h>
#include "igt_core.h"
#include "igt_sysfs.h"
#include "lib/intel_chipset.h"
#include "xe_gt.h"
#include "xe_ioctl.h"
#include "xe_query.h"
#ifdef __linux__
#include <sys/sysmacros.h>
#else
#define minor(__v__) ((__v__) & 0xff)
#endif
/**
* has_xe_gt_reset:
* @fd: open xe drm file descriptor
*
* Check gt force reset sysfs entry is available or not
*
* Returns: reset sysfs entry available
*/
bool has_xe_gt_reset(int fd)
{
char reset_sysfs_path[100];
struct stat st;
int gt;
int reset_sysfs_fd = -1;
int sysfs_fd = -1;
igt_assert_eq(fstat(fd, &st), 0);
sysfs_fd = igt_sysfs_open(fd);
igt_assert(sysfs_fd != -1);
xe_for_each_gt(fd, gt) {
sprintf(reset_sysfs_path, "/sys/kernel/debug/dri/%d/gt%d/force_reset",
minor(st.st_rdev), gt);
reset_sysfs_fd = openat(sysfs_fd, reset_sysfs_path, O_RDONLY);
if (reset_sysfs_fd == -1) {
close(sysfs_fd);
return 0;
}
close(reset_sysfs_fd);
}
close(sysfs_fd);
return 1;
}
/**
* xe_force_gt_reset_all:
*
* Forces reset of all the GT's.
*/
void xe_force_gt_reset_all(int xe_fd)
{
int gt;
xe_for_each_gt(xe_fd, gt)
xe_force_gt_reset_async(xe_fd, gt);
}
/**
* xe_hang_ring:
* @fd: open xe drm file descriptor
* @ring: execbuf ring flag
*
* This helper function injects a hanging batch into @ring. It returns a
* #igt_hang_t structure which must be passed to xe_post_hang_ring() for
* hang post-processing (after the gpu hang interaction has been tested).
*
* Returns:
* Structure with helper internal state for xe_post_hang_ring().
*/
igt_hang_t xe_hang_ring(int fd, uint64_t ahnd, uint32_t ctx, int ring,
unsigned int flags)
{
uint16_t class;
uint32_t vm;
unsigned int exec_queue;
igt_spin_t *spin_t;
vm = xe_vm_create(fd, 0, 0);
switch (ring) {
case I915_EXEC_DEFAULT:
if (IS_PONTEVECCHIO(intel_get_drm_devid(fd)))
class = DRM_XE_ENGINE_CLASS_COPY;
else
class = DRM_XE_ENGINE_CLASS_RENDER;
break;
case I915_EXEC_RENDER:
if (IS_PONTEVECCHIO(intel_get_drm_devid(fd)))
igt_skip("Render engine not supported on this platform.\n");
else
class = DRM_XE_ENGINE_CLASS_RENDER;
break;
case I915_EXEC_BLT:
class = DRM_XE_ENGINE_CLASS_COPY;
break;
case I915_EXEC_BSD:
class = DRM_XE_ENGINE_CLASS_VIDEO_DECODE;
break;
case I915_EXEC_VEBOX:
class = DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE;
break;
default:
igt_assert_f(false, "Unknown engine: %x", (uint32_t) flags);
}
exec_queue = xe_exec_queue_create_class(fd, vm, class);
spin_t = igt_spin_new(fd, .ahnd = ahnd, .engine = exec_queue, .vm = vm,
.flags = IGT_SPIN_NO_PREEMPTION);
return (igt_hang_t){ spin_t, exec_queue, 0, flags };
}
/**
* xe_post_hang_ring:
* @fd: open xe drm file descriptor
* @arg: hang state from xe_hang_ring()
*
* This function does the necessary post-processing after a gpu hang injected
* with xe_hang_ring().
*/
void xe_post_hang_ring(int fd, igt_hang_t arg)
{
xe_exec_queue_destroy(fd, arg.ctx);
xe_vm_destroy(fd, arg.spin->vm);
}
/**
* xe_gt_stats_get_count:
* @fd: open xe drm file descriptor
* @gt: gt_id
* @stat: name of the stat of which counter is needed
*
* This function returns the counter for a given stat.
*/
int xe_gt_stats_get_count(int fd, int gt, const char *stat)
{
FILE *f;
struct stat st;
char tlb_path[4096];
char path[256];
int count;
igt_assert_eq(fstat(fd, &st), 0);
sprintf(path, "/sys/kernel/debug/dri/%d/gt%d/stats",
minor(st.st_rdev), gt);
f = fopen(path, "r");
igt_assert_f(f, "Failed to open /sys/kernel/debug/dri/%d/gt%d/stats",
minor(st.st_rdev), gt);
while (fgets(tlb_path, sizeof(tlb_path), f)) {
if (strstr(tlb_path, stat) != NULL) {
sscanf(tlb_path, "%*[^:]: %d", &count);
break;
}
}
fclose(f);
return count;
}
/**
* xe_gt_is_in_c6:
* @fd: pointer to xe drm fd
* @gt: gt number
*
* Check if GT is in C6 state
*/
bool xe_gt_is_in_c6(int fd, int gt)
{
char gt_c_state[16];
int gt_fd;
gt_fd = xe_sysfs_gt_open(fd, gt);
igt_assert(gt_fd >= 0);
igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_status", "%s", gt_c_state) == 1);
close(gt_fd);
return strcmp(gt_c_state, "gt-c6") == 0;
}
/**
* xe_gt_fill_engines_by_class:
* @fd: pointer to xe drm fd
* @gt: gt number
* @class: engine class to use to filter engines
* @eci: output argument to copy engines to
*
* Fill out @drm_xe_engine_class_instance with all the engines in @gt that have
* a certain @class.
*
* Return: number of engines that match the gt and clas
*/
int xe_gt_fill_engines_by_class(int fd, int gt, int class,
struct drm_xe_engine_class_instance eci[static XE_MAX_ENGINE_INSTANCE])
{
struct drm_xe_engine_class_instance *hwe;
int n = 0;
xe_for_each_engine(fd, hwe)
if (hwe->engine_class == class && hwe->gt_id == gt)
eci[n++] = *hwe;
return n;
}
/**
* xe_gt_count_engines_by_class:
* @fd: pointer to xe drm fd
* @gt: gt number
* @class: engine class to use to filter engines
*
* Count number of engines in @gt that have a certain @class.
*
* Return: number of engines that match the gt and clas
*/
int xe_gt_count_engines_by_class(int fd, int gt, int class)
{
struct drm_xe_engine_class_instance *hwe;
int n = 0;
xe_for_each_engine(fd, hwe)
if (hwe->engine_class == class && hwe->gt_id == gt)
n++;
return n;
}
|