File: amd_cp_dma.c

package info (click to toggle)
intel-gpu-tools 2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 63,368 kB
  • sloc: xml: 781,458; ansic: 360,567; python: 8,336; yacc: 2,781; perl: 1,196; sh: 1,177; lex: 487; asm: 227; lisp: 35; makefile: 30
file content (437 lines) | stat: -rw-r--r-- 11,830 bytes parent folder | download | duplicates (4)
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// SPDX-License-Identifier: MIT
// Copyright 2023 Advanced Micro Devices, Inc.

#include <unistd.h>
#include <amdgpu.h>

#include "amdgpu_drm.h"
#include "amd_memory.h"
#include "amd_cp_dma.h"

#define IB_SIZE 4096
#define MAX_RESOURCES 3

#define DMA_SIZE 4097
#define DMA_DATA_BYTE 0xea
#define DMA_SIZE_MAX (1<<26)

struct amdgpu_cp_dma_bo {
	amdgpu_bo_handle buf_handle;
	amdgpu_va_handle va_handle;
	uint64_t gpu_va;
	uint64_t size;
};

struct amdgpu_cp_dma_ib {
	amdgpu_bo_handle ib_handle;
	uint32_t *ib_cpu;
	uint64_t ib_mc_address;
	amdgpu_va_handle ib_va_handle;
};

struct amdgpu_cp_dma_contex {
	amdgpu_bo_handle resources[MAX_RESOURCES];
	unsigned int num_resources;
	uint32_t num_dword;
	uint8_t *reference_data;
};

static int
import_dma_buf_to_bo(amdgpu_device_handle dev, int dmabuf_fd,
					 struct amdgpu_cp_dma_bo *bo)
{
	amdgpu_va_handle va_handle;
	uint64_t vmc_addr;
	int r;
	struct amdgpu_bo_import_result bo_import_result = {};

	r = amdgpu_bo_import(dev, amdgpu_bo_handle_type_dma_buf_fd,
						 dmabuf_fd, &bo_import_result);
	if (r)
		goto error_bo_import;

	r = amdgpu_va_range_alloc(dev, amdgpu_gpu_va_range_general,
							  bo_import_result.alloc_size, 0, 0,
							  &vmc_addr, &va_handle, 0);
	if (r)
		goto error_va_alloc;

	r = amdgpu_bo_va_op(bo_import_result.buf_handle, 0,
			bo_import_result.alloc_size, vmc_addr,
			AMDGPU_VM_PAGE_READABLE | AMDGPU_VM_PAGE_WRITEABLE |
			AMDGPU_VM_PAGE_EXECUTABLE,
			AMDGPU_VA_OP_MAP);
	if (r)
		goto error_va_map;

	bo->buf_handle = bo_import_result.buf_handle;
	bo->va_handle = va_handle;
	bo->gpu_va = vmc_addr;
	bo->size = bo_import_result.alloc_size;

	return 0;

error_va_map:
	amdgpu_bo_va_op(bo_import_result.buf_handle, 0,
			bo_import_result.alloc_size, vmc_addr, 0, AMDGPU_VA_OP_UNMAP);

error_va_alloc:
	amdgpu_va_range_free(va_handle);

error_bo_import:
	amdgpu_bo_free(bo_import_result.buf_handle);

	return r;
}

static int
free_bo(struct amdgpu_cp_dma_bo bo)
{
	int r;

	r = amdgpu_bo_va_op(bo.buf_handle, 0, bo.size, bo.gpu_va, 0, AMDGPU_VA_OP_UNMAP);
	igt_assert_eq(r, 0);

	r = amdgpu_va_range_free(bo.va_handle);
	igt_assert_eq(r, 0);

	r = amdgpu_bo_free(bo.buf_handle);
	igt_assert_eq(r, 0);

	return r;
}

static int
submit_and_sync(amdgpu_device_handle device_handle, unsigned int ip_type,
				amdgpu_context_handle context_handle, uint64_t ib_mc_address,
				struct amdgpu_cp_dma_contex *dma_contex)
{
	struct amdgpu_cs_request ibs_request = {0};
	struct amdgpu_cs_ib_info ib_info = {0};
	struct amdgpu_cs_fence fence_status = {0};
	uint32_t expired;
	int r;

	r = amdgpu_bo_list_create(device_handle, dma_contex->num_resources,
							  dma_contex->resources,
							  NULL, &ibs_request.resources);
	igt_assert_eq(r, 0);

	ib_info.ib_mc_address = ib_mc_address;
	ib_info.size = dma_contex->num_dword;

	ibs_request.ip_type = ip_type;
	ibs_request.number_of_ibs = 1;
	ibs_request.ibs = &ib_info;
	ibs_request.fence_info.handle = NULL;

	r = amdgpu_cs_submit(context_handle, 0, &ibs_request, 1);
	igt_assert_eq(r, 0);

	r = amdgpu_bo_list_destroy(ibs_request.resources);
	igt_assert_eq(r, 0);

	fence_status.context = context_handle;
	fence_status.ip_type = ip_type;
	fence_status.fence = ibs_request.seq_no;

	r = amdgpu_cs_query_fence_status(&fence_status, AMDGPU_TIMEOUT_INFINITE,
									 0, &expired);
	return r;
}

static void
cp_dma_cmd(const struct amdgpu_cp_dma_ib *ib, struct amdgpu_cp_dma_contex *dma_contex,
		   const struct amdgpu_cp_dma_bo *src_bo, const struct amdgpu_cp_dma_bo *dst_bo)
{
	/* TODO use spec defines */
	ib->ib_cpu[0] = 0xc0055000;
	ib->ib_cpu[1] = 0x80000000;
	ib->ib_cpu[2] = src_bo->gpu_va & 0x00000000ffffffff;
	ib->ib_cpu[3] = (src_bo->gpu_va & 0xffffffff00000000) >> 32;
	ib->ib_cpu[4] = dst_bo->gpu_va & 0x00000000ffffffff;
	ib->ib_cpu[5] = (dst_bo->gpu_va & 0xffffffff00000000) >> 32;
	// size is read from the lower 26bits.
	ib->ib_cpu[6] = ((1 << 26) - 1) & DMA_SIZE;
	ib->ib_cpu[7] = 0xffff1000;

	dma_contex->num_dword = 8;

	dma_contex->resources[0] = src_bo->buf_handle;
	dma_contex->resources[1] = dst_bo->buf_handle;
	dma_contex->resources[2] = ib->ib_handle;
	dma_contex->num_resources = 3;
}

static int
amdgpu_cp_dma(amdgpu_device_handle device_handle, unsigned int ip_type,
			  amdgpu_context_handle context_handle,
			  const struct amdgpu_cp_dma_ib *ib,
			  struct amdgpu_cp_dma_contex *dma_contex,
			  uint32_t src_heap, uint32_t dst_heap)
{
	int r;
	struct amdgpu_cp_dma_bo src_bo = {0};
	struct amdgpu_cp_dma_bo dst_bo = {0};
	void *src_bo_cpu;
	void *dst_bo_cpu;

	/* allocate the src bo, set its data to DMA_DATA_BYTE */
	src_bo.buf_handle = gpu_mem_alloc(device_handle, DMA_SIZE, 4096,
						src_heap, AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
						&src_bo.gpu_va, &src_bo.va_handle);

	r = amdgpu_bo_cpu_map(src_bo.buf_handle, (void **)&src_bo_cpu);
	igt_assert_eq(r, 0);
	memset(src_bo_cpu, DMA_DATA_BYTE, DMA_SIZE);

	r = amdgpu_bo_cpu_unmap(src_bo.buf_handle);
	igt_assert_eq(r, 0);

	/* allocate the dst bo and clear its content to all 0 */
	dst_bo.buf_handle = gpu_mem_alloc(device_handle, DMA_SIZE, 4096, dst_heap,
							AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
							&dst_bo.gpu_va, &dst_bo.va_handle);

	r = amdgpu_bo_cpu_map(dst_bo.buf_handle, (void **)&dst_bo_cpu);
	igt_assert_eq(r, 0);

	memset(dst_bo_cpu, 0, DMA_SIZE);

	/* record CP DMA command and dispatch the command */
	cp_dma_cmd(ib, dma_contex, &src_bo, &dst_bo);

	r = submit_and_sync(device_handle, ip_type, context_handle,
						ib->ib_mc_address, dma_contex);
	igt_assert_eq(r, 0);

	/* verify the dst bo is filled with DMA_DATA_BYTE */
	r = memcmp(dst_bo_cpu, dma_contex->reference_data, DMA_SIZE);
	igt_assert_eq(r, 0);

	r = amdgpu_bo_cpu_unmap(dst_bo.buf_handle);
	igt_assert_eq(r, 0);

	r = free_bo(src_bo);
	igt_assert_eq(r, 0);

	r = free_bo(dst_bo);
	igt_assert_eq(r, 0);

	return r;
}

static int
amdgpu_cp_dma_p2p(amdgpu_device_handle device_handle,
				  amdgpu_device_handle exporting_device_handle,
				  unsigned int ip_type, amdgpu_context_handle context_handle,
				  uint32_t src_heap, uint32_t dst_heap,
				  const struct amdgpu_cp_dma_ib *ib,
				  struct amdgpu_cp_dma_contex *dma_contex)
{
	int r;
	struct amdgpu_cp_dma_bo exported_bo = {0};
	int dma_buf_fd;
	int dma_buf_fd_dup;
	struct amdgpu_cp_dma_bo src_bo = {0};
	struct amdgpu_cp_dma_bo imported_dst_bo = {0};

	void *exported_bo_cpu;
	void *src_bo_cpu;

	/* allocate a bo on the peer device and export it to dma-buf */
	exported_bo.buf_handle = gpu_mem_alloc(exporting_device_handle,
			DMA_SIZE, 4096, src_heap,
			AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
			&exported_bo.gpu_va, &exported_bo.va_handle);

	/* map the exported bo and clear its content to 0 */
	r = amdgpu_bo_cpu_map(exported_bo.buf_handle, (void **)&exported_bo_cpu);
	igt_assert_eq(r, 0);
	memset(exported_bo_cpu, 0, DMA_SIZE);

	r = amdgpu_bo_export(exported_bo.buf_handle,
			amdgpu_bo_handle_type_dma_buf_fd, (uint32_t *)&dma_buf_fd);
	igt_assert_eq(r, 0);

    // According to amdgpu_drm:
	// "Buffer must be "imported" only using new "fd"
	// (different from one used by "exporter")"
	dma_buf_fd_dup = dup(dma_buf_fd);
	r = close(dma_buf_fd);
	igt_assert_eq(r, 0);

	/* import the dma-buf to the executing device, imported bo is the DMA destination */
	r = import_dma_buf_to_bo(device_handle, dma_buf_fd_dup, &imported_dst_bo);
	igt_assert_eq(r, 0);

	r = close(dma_buf_fd_dup);
	igt_assert_eq(r, 0);

	r = amdgpu_cs_ctx_create(device_handle, &context_handle);
	/* allocate the src bo and set its content to DMA_DATA_BYTE */

	src_bo.buf_handle = gpu_mem_alloc(device_handle, DMA_SIZE, 4096,
						dst_heap, AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
						&src_bo.gpu_va, &src_bo.va_handle);

	igt_assert_eq(r, 0);

	r = amdgpu_bo_cpu_map(src_bo.buf_handle, (void **)&src_bo_cpu);
	igt_assert_eq(r, 0);

	memset(src_bo_cpu, DMA_DATA_BYTE, DMA_SIZE);

	r = amdgpu_bo_cpu_unmap(src_bo.buf_handle);
	igt_assert_eq(r, 0);

	/* record CP DMA command and dispatch the command */
	cp_dma_cmd(ib, dma_contex, &src_bo, &imported_dst_bo);

	r = submit_and_sync(device_handle, ip_type, context_handle,
						ib->ib_mc_address, dma_contex);

	igt_assert_eq(r, 0);

	/* verify the exported_bo_cpu is filled with DMA_DATA_BYTE */
	r = memcmp(exported_bo_cpu, dma_contex->reference_data, DMA_SIZE);
	igt_assert_eq(r, 0);

	r = amdgpu_bo_cpu_unmap(exported_bo.buf_handle);
	igt_assert_eq(r, 0);

	r = free_bo(exported_bo);
	igt_assert_eq(r, 0);

	r = free_bo(imported_dst_bo);
	igt_assert_eq(r, 0);

	r = free_bo(src_bo);
	igt_assert_eq(r, 0);

	return r;
}

static int
amdgpu_cp_dma_misc(amdgpu_device_handle device_handle, unsigned int ip_type,
				  uint32_t src_heap, uint32_t dst_heap)
{
	amdgpu_context_handle context_handle;
	struct amdgpu_cp_dma_contex dma_contex = {};
	struct amdgpu_cp_dma_ib dma_ib = {};
	int r;

	r = amdgpu_cs_ctx_create(device_handle, &context_handle);
	igt_assert_eq(r, 0);
	r = amdgpu_bo_alloc_and_map(device_handle, IB_SIZE, 4096,
					AMDGPU_GEM_DOMAIN_GTT, 0,
					&dma_ib.ib_handle, (void **)&dma_ib.ib_cpu,
					&dma_ib.ib_mc_address, &dma_ib.ib_va_handle);
	igt_assert_eq(r, 0);

	dma_contex.reference_data = (uint8_t *)malloc(DMA_SIZE);
	memset(dma_contex.reference_data, DMA_DATA_BYTE, DMA_SIZE);

	r = amdgpu_cp_dma(device_handle, ip_type, context_handle, &dma_ib,
					  &dma_contex, src_heap, dst_heap);
	igt_assert_eq(r, 0);

	amdgpu_cs_ctx_free(context_handle);
	free(dma_contex.reference_data);
	amdgpu_bo_unmap_and_free(dma_ib.ib_handle, dma_ib.ib_va_handle,
						dma_ib.ib_mc_address, IB_SIZE);

	return r;
}

static int
amdgpu_cp_dma_misc_p2p(amdgpu_device_handle device_handle,
					   amdgpu_device_handle exporting_device_handle,
					   unsigned int ip_type,
					   uint32_t src_heap, uint32_t dst_heap)
{
	amdgpu_context_handle context_handle;
	struct amdgpu_cp_dma_contex dma_contex = {};
	struct amdgpu_cp_dma_ib dma_ib = {};
	int r;

	/* create context */
	r = amdgpu_cs_ctx_create(device_handle, &context_handle);
	igt_assert_eq(r, 0);

	/* init dma_ib */
	r = amdgpu_bo_alloc_and_map(device_handle, IB_SIZE, 4096,
			AMDGPU_GEM_DOMAIN_GTT, 0,
			&dma_ib.ib_handle, (void **)&dma_ib.ib_cpu,
			&dma_ib.ib_mc_address, &dma_ib.ib_va_handle);
	igt_assert_eq(r, 0);

	/* init dma context */
	dma_contex.reference_data = (uint8_t *)malloc(DMA_SIZE);
	memset(dma_contex.reference_data, DMA_DATA_BYTE, DMA_SIZE);

	r = amdgpu_cp_dma_p2p(device_handle, exporting_device_handle, ip_type,
				context_handle, src_heap, dst_heap, &dma_ib, &dma_contex);
	igt_assert_eq(r, 0);

	amdgpu_cs_ctx_free(context_handle);
	free(dma_contex.reference_data);
	amdgpu_bo_unmap_and_free(dma_ib.ib_handle, dma_ib.ib_va_handle,
					dma_ib.ib_mc_address, IB_SIZE);

	return r;
}

bool
amdgpu_cp_dma_misc_is_supported(const struct amdgpu_gpu_info *gpu_info)
{
	//if (!(gpu_info->family_id >= AMDGPU_FAMILY_AI &&
	//		gpu_info->family_id <= AMDGPU_FAMILY_NV)) {
	//	return false;
	//}
	return true;
}

bool
asic_is_gfx_pipe_removed(const struct amdgpu_gpu_info *gpu_info)
{
	int chip_id;

	if (gpu_info->family_id != AMDGPU_FAMILY_AI)
		return false;

	chip_id = gpu_info->chip_external_rev - gpu_info->chip_rev;

	switch (chip_id) {
	/* Arcturus */
	case 0x32:
	/* Aldebaran */
	case 0x3c:
		return true; /* the gfx pipe is removed */
	}
	return false;
}

bool
amdgpu_cp_dma_misc_p2p_is_supported(const struct amdgpu_gpu_info *gpu_info)
{
	bool ret = amdgpu_cp_dma_misc_is_supported(gpu_info);
	return ret;
}

int
amdgpu_cp_dma_generic(amdgpu_device_handle device_handle,
			amdgpu_device_handle exporting_device_handle, unsigned int ip_type,
			uint32_t src_heap, uint32_t dst_heap)
{
	int r;

	if (exporting_device_handle != NULL)
		r = amdgpu_cp_dma_misc_p2p(device_handle, exporting_device_handle,
							ip_type, src_heap, dst_heap);
	else
		amdgpu_cp_dma_misc(device_handle, ip_type, src_heap, dst_heap);

	return r;
}