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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
// SPDX-License-Identifier: MIT
/*
* Copyright © 2023 Intel Corporation
*/
#include "drm.h"
#include "igt.h"
#include "igt_device.h"
#include "intel_blt.h"
#include "intel_mocs.h"
#include "lib/igt_sysfs.h"
#include "lib/intel_chipset.h"
#include "lib/intel_pat.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
#include "xe/xe_util.h"
/**
* TEST: xe_peer2peer
* Category: Core
* Mega feature: General Core features
* Sub-category: MultiGPU
* Functionality: dma buf copy
* Description: Peer2peer dma buf copy tests
* Test category: xe
*
* SUBTEST: read
* Description:
* dma buf copy read
*
* SUBTEST: write
* Description:
* dma buf copy write
*/
IGT_TEST_DESCRIPTION("Exercise blitter read/writes between two Xe devices");
struct blt_fast_copy_data {
int xe;
struct blt_copy_object src;
struct blt_copy_object mid;
struct blt_copy_object dst;
struct blt_copy_batch bb;
enum blt_color_depth color_depth;
};
struct gpu_info {
uint32_t id;
int fd;
struct igt_collection *set;
};
static bool has_prime(int fd)
{
uint64_t value;
uint64_t mask = DRM_PRIME_CAP_IMPORT | DRM_PRIME_CAP_EXPORT;
if (drmGetCap(fd, DRM_CAP_PRIME, &value))
return false;
return (value & mask) == mask;
}
static int get_device_info(struct gpu_info gpus[], int num_gpus)
{
int cnt;
int xe;
int i;
for (i = 0, cnt = 0 && i < 128; cnt < num_gpus; i++) {
xe = __drm_open_driver_another(i, DRIVER_XE);
if (xe < 0)
break;
/* dma-buf is required */
if (!has_prime(xe) || !blt_has_fast_copy(xe)) {
close(xe);
continue;
}
gpus[cnt].fd = xe;
gpus[cnt].set = xe_get_memory_region_set(xe,
DRM_XE_MEM_REGION_CLASS_SYSMEM,
DRM_XE_MEM_REGION_CLASS_VRAM);
cnt++;
}
return cnt;
}
/**
* test_read - Read an imported buffer from an external GPU via dma-buf
* @ex_gpu: device providing the original object
* @im_gpu: device doing the read
* @ex_reg: the source region to copy from
* @im_reg: the destination region to copy to
*
*/
static void test_read(struct gpu_info *ex_gpu, struct gpu_info *im_gpu,
uint32_t ex_reg, uint32_t im_reg)
{
struct blt_copy_data im_blt = {};
struct blt_copy_data ex_blt = {};
struct blt_copy_object *dst;
struct blt_copy_object *im_src;
struct blt_copy_object *src;
const uint32_t bpp = 32;
uint64_t im_bb_size = xe_bb_size(im_gpu->fd, SZ_4K);
uint64_t ahnd;
uint32_t bb;
uint32_t width = 1024, height = 1024;
int result;
uint32_t vm, exec_queue;
uint32_t ex_xe = ex_gpu->fd;
uint32_t im_xe = im_gpu->fd;
uint32_t ex_src, dmabuf;
uint32_t stride;
struct drm_xe_engine_class_instance inst = {
.engine_class = DRM_XE_ENGINE_CLASS_COPY,
};
intel_ctx_t *ctx;
vm = xe_vm_create(im_xe, 0, 0);
exec_queue = xe_exec_queue_create(im_xe, vm, &inst, 0);
ctx = intel_ctx_xe(im_xe, vm, exec_queue, 0, 0, 0);
ahnd = intel_allocator_open_full(im_xe, ctx->vm, 0, 0,
INTEL_ALLOCATOR_SIMPLE,
ALLOC_STRATEGY_LOW_TO_HIGH, 0);
blt_copy_init(ex_xe, &ex_blt);
blt_copy_init(im_xe, &im_blt);
src = blt_create_object(&ex_blt, ex_reg, width, height, bpp, 0,
T_LINEAR, COMPRESSION_DISABLED, 0, true);
dst = blt_create_object(&im_blt, im_reg, width, height, bpp, 0,
T_LINEAR, COMPRESSION_DISABLED, 0, true);
blt_surface_fill_rect(ex_xe, src, width, height);
dmabuf = prime_handle_to_fd(ex_xe, src->handle);
ex_src = prime_fd_to_handle(im_xe, dmabuf);
im_src = calloc(1, sizeof(*im_src));
stride = width * 4;
blt_set_object(im_src, ex_src, src->size, ex_reg, 0, DEFAULT_PAT_INDEX,
T_LINEAR, COMPRESSION_DISABLED, 0);
blt_set_geom(im_src, stride, 0, 0, width, height, 0, 0);
igt_assert(im_src->size == dst->size);
im_blt.color_depth = CD_32bit;
blt_set_copy_object(&im_blt.src, im_src);
blt_set_copy_object(&im_blt.dst, dst);
bb = xe_bo_create(im_xe, 0, im_bb_size, im_reg, 0);
blt_set_batch(&im_blt.bb, bb, im_bb_size, im_reg);
blt_fast_copy(im_xe, ctx, NULL, ahnd, &im_blt);
result = memcmp(src->ptr, im_blt.dst.ptr, src->size);
put_offset(ahnd, im_src->handle);
put_offset(ahnd, dst->handle);
put_offset(ahnd, bb);
intel_allocator_bind(ahnd, 0, 0);
blt_destroy_object(im_xe, im_src);
blt_destroy_object(im_xe, dst);
blt_destroy_object(ex_xe, src);
put_ahnd(ahnd);
igt_assert_f(!result, "source and destination surfaces differs!\n");
}
/**
* test_write - Write an imported buffer to an external GPU via dma-buf
* @ex_gpu: device providing the destination object
* @im_gpu: device doing the write
* @ex_reg: the source region to copy from
* @im_reg: the destination region to copy to
*
*/
static void test_write(struct gpu_info *ex_gpu, struct gpu_info *im_gpu,
uint32_t ex_reg, uint32_t im_reg)
{
struct blt_copy_data im_blt = {};
struct blt_copy_data ex_blt = {};
struct blt_copy_object *dst;
struct blt_copy_object *im_dst;
struct blt_copy_object *src;
const uint32_t bpp = 32;
uint64_t im_bb_size = xe_bb_size(im_gpu->fd, SZ_4K);
uint64_t ahnd;
uint32_t bb;
uint32_t width = 1024, height = 1024;
int result;
uint32_t vm, exec_queue;
uint32_t ex_xe = ex_gpu->fd;
uint32_t im_xe = im_gpu->fd;
uint32_t ex_dst, dmabuf;
uint32_t stride;
struct drm_xe_engine_class_instance inst = {
.engine_class = DRM_XE_ENGINE_CLASS_COPY,
};
intel_ctx_t *ctx;
vm = xe_vm_create(im_xe, 0, 0);
exec_queue = xe_exec_queue_create(im_xe, vm, &inst, 0);
ctx = intel_ctx_xe(im_xe, vm, exec_queue, 0, 0, 0);
ahnd = intel_allocator_open_full(im_xe, ctx->vm, 0, 0,
INTEL_ALLOCATOR_SIMPLE,
ALLOC_STRATEGY_LOW_TO_HIGH, 0);
blt_copy_init(ex_xe, &ex_blt);
blt_copy_init(im_xe, &im_blt);
dst = blt_create_object(&ex_blt, ex_reg, width, height, bpp, 0,
T_LINEAR, COMPRESSION_DISABLED, 0, true);
src = blt_create_object(&im_blt, im_reg, width, height, bpp, 0,
T_LINEAR, COMPRESSION_DISABLED, 0, true);
blt_surface_fill_rect(im_xe, src, width, height);
dmabuf = prime_handle_to_fd(ex_xe, dst->handle);
ex_dst = prime_fd_to_handle(im_xe, dmabuf);
im_dst = calloc(1, sizeof(*im_dst));
stride = width * 4;
blt_set_object(im_dst, ex_dst, src->size, ex_reg, 0, DEFAULT_PAT_INDEX,
T_LINEAR, COMPRESSION_DISABLED, 0);
blt_set_geom(im_dst, stride, 0, 0, width, height, 0, 0);
igt_assert(im_dst->size == src->size);
im_blt.color_depth = CD_32bit;
blt_set_copy_object(&im_blt.src, src);
blt_set_copy_object(&im_blt.dst, im_dst);
bb = xe_bo_create(im_xe, 0, im_bb_size, im_reg, 0);
blt_set_batch(&im_blt.bb, bb, im_bb_size, im_reg);
blt_fast_copy(im_xe, ctx, NULL, ahnd, &im_blt);
result = memcmp(dst->ptr, im_blt.src.ptr, src->size);
put_offset(ahnd, im_dst->handle);
put_offset(ahnd, dst->handle);
put_offset(ahnd, bb);
intel_allocator_bind(ahnd, 0, 0);
blt_destroy_object(im_xe, src);
blt_destroy_object(im_xe, im_dst);
blt_destroy_object(ex_xe, dst);
put_ahnd(ahnd);
igt_assert_f(!result, "source and destination surfaces differs!\n");
}
static const char *p2p_path(int ex_reg, struct gpu_info *ex_gpu, struct gpu_info *im_gpu)
{
return "-p2p";
}
static char *region_name(int xe, uint32_t region)
{
char *name;
struct drm_xe_mem_region *memreg;
int r;
int len = 7;
/* enough for "name%d" * n */
name = malloc(len);
igt_assert(name);
memreg = xe_mem_region(xe, region);
if (XE_IS_CLASS_VRAM(memreg))
r = snprintf(name, len, "%s%d",
xe_region_name(region),
memreg->instance);
else
r = snprintf(name, len, "%s",
xe_region_name(region));
igt_assert_lt(0, r);
return name;
}
/**
* gpu_read - Set up a read from the exporting GPU to the importing GPU
* @ex_gpu: GPU that is exporting a buffer for read
* @im_gpu: GPU that is importing and reading the buffer
*/
static void gpu_read(struct gpu_info *ex_gpu, struct gpu_info *im_gpu)
{
struct igt_collection *ex_regs, *im_regs;
int ex_reg, im_reg;
char *ex_name, *im_name;
const char *path;
for_each_variation_r(ex_regs, 1, ex_gpu->set) {
ex_reg = igt_collection_get_value(ex_regs, 0);
ex_name = region_name(ex_gpu->fd, ex_reg);
for_each_variation_r(im_regs, 1, im_gpu->set) {
im_reg = igt_collection_get_value(im_regs, 0);
im_name = region_name(im_gpu->fd, im_reg);
path = p2p_path(ex_reg, ex_gpu, im_gpu);
igt_dynamic_f("read-gpuA-%s-gpuB-%s%s", ex_name,
im_name, path)
test_read(ex_gpu, im_gpu, ex_reg, im_reg);
free(im_name);
}
free(ex_name);
}
}
/**
* gpu_write - Set up a write from the importing GPU to the exporting GPU
* @ex_gpu: GPU that is exporting a buffer for read
* @im_gpu: GPU that is importing and reading the buffer
*/
static void gpu_write(struct gpu_info *ex_gpu, struct gpu_info *im_gpu)
{
struct igt_collection *ex_regs, *im_regs;
int ex_reg, im_reg;
char *ex_name, *im_name;
const char *path;
for_each_variation_r(ex_regs, 1, ex_gpu->set) {
ex_reg = igt_collection_get_value(ex_regs, 0);
ex_name = region_name(ex_gpu->fd, ex_reg);
for_each_variation_r(im_regs, 1, im_gpu->set) {
im_reg = igt_collection_get_value(im_regs, 0);
im_name = region_name(im_gpu->fd, im_reg);
path = p2p_path(ex_reg, ex_gpu, im_gpu);
igt_dynamic_f("write-gpuA-%s-gpuB-%s%s", ex_name,
im_name, path)
test_write(ex_gpu, im_gpu, ex_reg, im_reg);
free(im_name);
}
free(ex_name);
}
}
#define DEFAULT_SIZE 0
igt_main_args("", NULL, NULL, NULL, NULL)
{
struct gpu_info gpus[2];
int gpu_cnt;
igt_fixture {
gpu_cnt = get_device_info(gpus, ARRAY_SIZE(gpus));
igt_skip_on(gpu_cnt < 2);
}
igt_describe("dmabuf gpu-gpu read");
igt_subtest_with_dynamic_f("read")
gpu_read(&gpus[0], &gpus[1]);
igt_describe("dmabuf gpu-gpu write");
igt_subtest_with_dynamic_f("write")
gpu_write(&gpus[0], &gpus[1]);
igt_fixture {
int cnt;
for (cnt = 0; cnt < gpu_cnt; cnt++)
drm_close_driver(gpus[cnt].fd);
}
}
|