amdgpu_drm.h 26.6 KB
Newer Older
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
/* amdgpu_drm.h -- Public header for the amdgpu driver -*- linux-c -*-
 *
 * Copyright 2000 Precision Insight, Inc., Cedar Park, Texas.
 * Copyright 2000 VA Linux Systems, Inc., Fremont, California.
 * Copyright 2002 Tungsten Graphics, Inc., Cedar Park, Texas.
 * Copyright 2014 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 *    Kevin E. Martin <martin@valinux.com>
 *    Gareth Hughes <gareth@valinux.com>
 *    Keith Whitwell <keith@tungstengraphics.com>
 */

#ifndef __AMDGPU_DRM_H__
#define __AMDGPU_DRM_H__

35
#include "drm.h"
36

37 38 39 40
#if defined(__cplusplus)
extern "C" {
#endif

41 42 43 44 45 46 47 48 49 50 51 52
#define DRM_AMDGPU_GEM_CREATE		0x00
#define DRM_AMDGPU_GEM_MMAP		0x01
#define DRM_AMDGPU_CTX			0x02
#define DRM_AMDGPU_BO_LIST		0x03
#define DRM_AMDGPU_CS			0x04
#define DRM_AMDGPU_INFO			0x05
#define DRM_AMDGPU_GEM_METADATA		0x06
#define DRM_AMDGPU_GEM_WAIT_IDLE	0x07
#define DRM_AMDGPU_GEM_VA		0x08
#define DRM_AMDGPU_WAIT_CS		0x09
#define DRM_AMDGPU_GEM_OP		0x10
#define DRM_AMDGPU_GEM_USERPTR		0x11
53
#define DRM_AMDGPU_WAIT_FENCES		0x12
C
Chunming Zhou 已提交
54
#define DRM_AMDGPU_VM			0x13
55
#define DRM_AMDGPU_FENCE_TO_HANDLE	0x14
56
#define DRM_AMDGPU_SCHED		0x15
57 58 59 60 61 62 63 64 65

#define DRM_IOCTL_AMDGPU_GEM_CREATE	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create)
#define DRM_IOCTL_AMDGPU_GEM_MMAP	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap)
#define DRM_IOCTL_AMDGPU_CTX		DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_CTX, union drm_amdgpu_ctx)
#define DRM_IOCTL_AMDGPU_BO_LIST	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_BO_LIST, union drm_amdgpu_bo_list)
#define DRM_IOCTL_AMDGPU_CS		DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_CS, union drm_amdgpu_cs)
#define DRM_IOCTL_AMDGPU_INFO		DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_INFO, struct drm_amdgpu_info)
#define DRM_IOCTL_AMDGPU_GEM_METADATA	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_METADATA, struct drm_amdgpu_gem_metadata)
#define DRM_IOCTL_AMDGPU_GEM_WAIT_IDLE	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_WAIT_IDLE, union drm_amdgpu_gem_wait_idle)
C
Christian König 已提交
66
#define DRM_IOCTL_AMDGPU_GEM_VA		DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_VA, struct drm_amdgpu_gem_va)
67 68 69
#define DRM_IOCTL_AMDGPU_WAIT_CS	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_CS, union drm_amdgpu_wait_cs)
#define DRM_IOCTL_AMDGPU_GEM_OP		DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_OP, struct drm_amdgpu_gem_op)
#define DRM_IOCTL_AMDGPU_GEM_USERPTR	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_USERPTR, struct drm_amdgpu_gem_userptr)
70
#define DRM_IOCTL_AMDGPU_WAIT_FENCES	DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_FENCES, union drm_amdgpu_wait_fences)
C
Chunming Zhou 已提交
71
#define DRM_IOCTL_AMDGPU_VM		DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_VM, union drm_amdgpu_vm)
72
#define DRM_IOCTL_AMDGPU_FENCE_TO_HANDLE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_FENCE_TO_HANDLE, union drm_amdgpu_fence_to_handle)
73
#define DRM_IOCTL_AMDGPU_SCHED		DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_SCHED, union drm_amdgpu_sched)
74 75 76 77 78 79 80 81 82 83 84 85 86

#define AMDGPU_GEM_DOMAIN_CPU		0x1
#define AMDGPU_GEM_DOMAIN_GTT		0x2
#define AMDGPU_GEM_DOMAIN_VRAM		0x4
#define AMDGPU_GEM_DOMAIN_GDS		0x8
#define AMDGPU_GEM_DOMAIN_GWS		0x10
#define AMDGPU_GEM_DOMAIN_OA		0x20

/* Flag that CPU access will be required for the case of VRAM domain */
#define AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED	(1 << 0)
/* Flag that CPU access will not work, this VRAM domain is invisible */
#define AMDGPU_GEM_CREATE_NO_CPU_ACCESS		(1 << 1)
/* Flag that USWC attributes should be used for GTT */
87
#define AMDGPU_GEM_CREATE_CPU_GTT_USWC		(1 << 2)
88 89
/* Flag that the memory should be in VRAM and cleared */
#define AMDGPU_GEM_CREATE_VRAM_CLEARED		(1 << 3)
90 91
/* Flag that create shadow bo(GTT) while allocating vram bo */
#define AMDGPU_GEM_CREATE_SHADOW		(1 << 4)
92 93
/* Flag that allocating the BO should use linear VRAM */
#define AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS	(1 << 5)
94 95
/* Flag that BO is always valid in this VM */
#define AMDGPU_GEM_CREATE_VM_ALWAYS_VALID	(1 << 6)
96 97
/* Flag that BO sharing will be explicitly synchronized */
#define AMDGPU_GEM_CREATE_EXPLICIT_SYNC		(1 << 7)
98 99 100

struct drm_amdgpu_gem_create_in  {
	/** the requested memory size */
101
	__u64 bo_size;
102
	/** physical start_addr alignment in bytes for some HW requirements */
103
	__u64 alignment;
104
	/** the requested memory domains */
105
	__u64 domains;
106
	/** allocation flags */
107
	__u64 domain_flags;
108 109 110 111
};

struct drm_amdgpu_gem_create_out  {
	/** returned GEM object handle */
112 113
	__u32 handle;
	__u32 _pad;
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
};

union drm_amdgpu_gem_create {
	struct drm_amdgpu_gem_create_in		in;
	struct drm_amdgpu_gem_create_out	out;
};

/** Opcode to create new residency list.  */
#define AMDGPU_BO_LIST_OP_CREATE	0
/** Opcode to destroy previously created residency list */
#define AMDGPU_BO_LIST_OP_DESTROY	1
/** Opcode to update resource information in the list */
#define AMDGPU_BO_LIST_OP_UPDATE	2

struct drm_amdgpu_bo_list_in {
	/** Type of operation */
130
	__u32 operation;
131
	/** Handle of list or 0 if we want to create one */
132
	__u32 list_handle;
133
	/** Number of BOs in list  */
134
	__u32 bo_number;
135
	/** Size of each element describing BO */
136
	__u32 bo_info_size;
137
	/** Pointer to array describing BOs */
138
	__u64 bo_info_ptr;
139 140 141 142
};

struct drm_amdgpu_bo_list_entry {
	/** Handle of BO */
143
	__u32 bo_handle;
144
	/** New (if specified) BO priority to be used during migration */
145
	__u32 bo_priority;
146 147 148 149
};

struct drm_amdgpu_bo_list_out {
	/** Handle of resource list  */
150 151
	__u32 list_handle;
	__u32 _pad;
152 153 154 155 156 157 158 159 160 161 162
};

union drm_amdgpu_bo_list {
	struct drm_amdgpu_bo_list_in in;
	struct drm_amdgpu_bo_list_out out;
};

/* context related */
#define AMDGPU_CTX_OP_ALLOC_CTX	1
#define AMDGPU_CTX_OP_FREE_CTX	2
#define AMDGPU_CTX_OP_QUERY_STATE	3
M
Monk Liu 已提交
163
#define AMDGPU_CTX_OP_QUERY_STATE2	4
164

165 166
/* GPU reset status */
#define AMDGPU_CTX_NO_RESET		0
167 168 169 170 171 172
/* this the context caused it */
#define AMDGPU_CTX_GUILTY_RESET		1
/* some other context caused it */
#define AMDGPU_CTX_INNOCENT_RESET	2
/* unknown cause */
#define AMDGPU_CTX_UNKNOWN_RESET	3
173

M
Monk Liu 已提交
174 175 176 177 178 179 180
/* indicate gpu reset occured after ctx created */
#define AMDGPU_CTX_QUERY2_FLAGS_RESET    (1<<0)
/* indicate vram lost occured after ctx created */
#define AMDGPU_CTX_QUERY2_FLAGS_VRAMLOST (1<<1)
/* indicate some job from this context once cause gpu hang */
#define AMDGPU_CTX_QUERY2_FLAGS_GUILTY   (1<<2)

181
/* Context priority level */
182
#define AMDGPU_CTX_PRIORITY_UNSET       -2048
183 184
#define AMDGPU_CTX_PRIORITY_VERY_LOW    -1023
#define AMDGPU_CTX_PRIORITY_LOW         -512
185 186
#define AMDGPU_CTX_PRIORITY_NORMAL      0
/* Selecting a priority above NORMAL requires CAP_SYS_NICE or DRM_MASTER */
187 188
#define AMDGPU_CTX_PRIORITY_HIGH        512
#define AMDGPU_CTX_PRIORITY_VERY_HIGH   1023
189

190
struct drm_amdgpu_ctx_in {
191
	/** AMDGPU_CTX_OP_* */
192
	__u32	op;
193
	/** For future use, no flags defined so far */
194 195
	__u32	flags;
	__u32	ctx_id;
196
	__s32	priority;
197 198 199 200
};

union drm_amdgpu_ctx_out {
		struct {
201 202
			__u32	ctx_id;
			__u32	_pad;
203 204 205
		} alloc;

		struct {
206
			/** For future use, no flags defined so far */
207
			__u64	flags;
208
			/** Number of resets caused by this context so far. */
209
			__u32	hangs;
210
			/** Reset status since the last call of the ioctl. */
211
			__u32	reset_status;
212 213 214 215 216 217 218 219
		} state;
};

union drm_amdgpu_ctx {
	struct drm_amdgpu_ctx_in in;
	union drm_amdgpu_ctx_out out;
};

C
Chunming Zhou 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
/* vm ioctl */
#define AMDGPU_VM_OP_RESERVE_VMID	1
#define AMDGPU_VM_OP_UNRESERVE_VMID	2

struct drm_amdgpu_vm_in {
	/** AMDGPU_VM_OP_* */
	__u32	op;
	__u32	flags;
};

struct drm_amdgpu_vm_out {
	/** For future use, no flags defined so far */
	__u64	flags;
};

union drm_amdgpu_vm {
	struct drm_amdgpu_vm_in in;
	struct drm_amdgpu_vm_out out;
};

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
/* sched ioctl */
#define AMDGPU_SCHED_OP_PROCESS_PRIORITY_OVERRIDE	1

struct drm_amdgpu_sched_in {
	/* AMDGPU_SCHED_OP_* */
	__u32	op;
	__u32	fd;
	__s32	priority;
	__u32	flags;
};

union drm_amdgpu_sched {
	struct drm_amdgpu_sched_in in;
};

255 256 257 258 259 260 261 262 263 264 265
/*
 * This is not a reliable API and you should expect it to fail for any
 * number of reasons and have fallback path that do not use userptr to
 * perform any operation.
 */
#define AMDGPU_GEM_USERPTR_READONLY	(1 << 0)
#define AMDGPU_GEM_USERPTR_ANONONLY	(1 << 1)
#define AMDGPU_GEM_USERPTR_VALIDATE	(1 << 2)
#define AMDGPU_GEM_USERPTR_REGISTER	(1 << 3)

struct drm_amdgpu_gem_userptr {
266 267
	__u64		addr;
	__u64		size;
268
	/* AMDGPU_GEM_USERPTR_* */
269
	__u32		flags;
270
	/* Resulting GEM handle */
271
	__u32		handle;
272 273
};

274
/* SI-CI-VI: */
M
Marek Olšák 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
/* same meaning as the GB_TILE_MODE and GL_MACRO_TILE_MODE fields */
#define AMDGPU_TILING_ARRAY_MODE_SHIFT			0
#define AMDGPU_TILING_ARRAY_MODE_MASK			0xf
#define AMDGPU_TILING_PIPE_CONFIG_SHIFT			4
#define AMDGPU_TILING_PIPE_CONFIG_MASK			0x1f
#define AMDGPU_TILING_TILE_SPLIT_SHIFT			9
#define AMDGPU_TILING_TILE_SPLIT_MASK			0x7
#define AMDGPU_TILING_MICRO_TILE_MODE_SHIFT		12
#define AMDGPU_TILING_MICRO_TILE_MODE_MASK		0x7
#define AMDGPU_TILING_BANK_WIDTH_SHIFT			15
#define AMDGPU_TILING_BANK_WIDTH_MASK			0x3
#define AMDGPU_TILING_BANK_HEIGHT_SHIFT			17
#define AMDGPU_TILING_BANK_HEIGHT_MASK			0x3
#define AMDGPU_TILING_MACRO_TILE_ASPECT_SHIFT		19
#define AMDGPU_TILING_MACRO_TILE_ASPECT_MASK		0x3
#define AMDGPU_TILING_NUM_BANKS_SHIFT			21
#define AMDGPU_TILING_NUM_BANKS_MASK			0x3

293 294 295 296 297
/* GFX9 and later: */
#define AMDGPU_TILING_SWIZZLE_MODE_SHIFT		0
#define AMDGPU_TILING_SWIZZLE_MODE_MASK			0x1f

/* Set/Get helpers for tiling flags. */
M
Marek Olšák 已提交
298
#define AMDGPU_TILING_SET(field, value) \
299
	(((__u64)(value) & AMDGPU_TILING_##field##_MASK) << AMDGPU_TILING_##field##_SHIFT)
M
Marek Olšák 已提交
300
#define AMDGPU_TILING_GET(value, field) \
301
	(((__u64)(value) >> AMDGPU_TILING_##field##_SHIFT) & AMDGPU_TILING_##field##_MASK)
302 303 304 305 306 307

#define AMDGPU_GEM_METADATA_OP_SET_METADATA                  1
#define AMDGPU_GEM_METADATA_OP_GET_METADATA                  2

/** The same structure is shared for input/output */
struct drm_amdgpu_gem_metadata {
308
	/** GEM Object handle */
309
	__u32	handle;
310
	/** Do we want get or set metadata */
311
	__u32	op;
312
	struct {
313
		/** For future use, no flags defined so far */
314
		__u64	flags;
315
		/** family specific tiling info */
316 317 318
		__u64	tiling_info;
		__u32	data_size_bytes;
		__u32	data[64];
319 320 321 322
	} data;
};

struct drm_amdgpu_gem_mmap_in {
323
	/** the GEM object handle */
324 325
	__u32 handle;
	__u32 _pad;
326 327 328
};

struct drm_amdgpu_gem_mmap_out {
329
	/** mmap offset from the vma offset manager */
330
	__u64 addr_ptr;
331 332 333 334 335 336 337 338
};

union drm_amdgpu_gem_mmap {
	struct drm_amdgpu_gem_mmap_in   in;
	struct drm_amdgpu_gem_mmap_out out;
};

struct drm_amdgpu_gem_wait_idle_in {
339
	/** GEM object handle */
340
	__u32 handle;
341
	/** For future use, no flags defined so far */
342
	__u32 flags;
343
	/** Absolute timeout to wait */
344
	__u64 timeout;
345 346 347
};

struct drm_amdgpu_gem_wait_idle_out {
348
	/** BO status:  0 - BO is idle, 1 - BO is busy */
349
	__u32 status;
350
	/** Returned current memory domain */
351
	__u32 domain;
352 353 354 355 356 357 358 359
};

union drm_amdgpu_gem_wait_idle {
	struct drm_amdgpu_gem_wait_idle_in  in;
	struct drm_amdgpu_gem_wait_idle_out out;
};

struct drm_amdgpu_wait_cs_in {
M
Monk Liu 已提交
360 361
	/* Command submission handle
         * handle equals 0 means none to wait for
362
         * handle equals ~0ull means wait for the latest sequence number
M
Monk Liu 已提交
363
         */
364
	__u64 handle;
365
	/** Absolute timeout to wait */
366 367 368 369 370
	__u64 timeout;
	__u32 ip_type;
	__u32 ip_instance;
	__u32 ring;
	__u32 ctx_id;
371 372 373
};

struct drm_amdgpu_wait_cs_out {
374
	/** CS status:  0 - CS completed, 1 - CS still busy */
375
	__u64 status;
376 377 378 379 380 381 382
};

union drm_amdgpu_wait_cs {
	struct drm_amdgpu_wait_cs_in in;
	struct drm_amdgpu_wait_cs_out out;
};

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
struct drm_amdgpu_fence {
	__u32 ctx_id;
	__u32 ip_type;
	__u32 ip_instance;
	__u32 ring;
	__u64 seq_no;
};

struct drm_amdgpu_wait_fences_in {
	/** This points to uint64_t * which points to fences */
	__u64 fences;
	__u32 fence_count;
	__u32 wait_all;
	__u64 timeout_ns;
};

struct drm_amdgpu_wait_fences_out {
	__u32 status;
	__u32 first_signaled;
};

union drm_amdgpu_wait_fences {
	struct drm_amdgpu_wait_fences_in in;
	struct drm_amdgpu_wait_fences_out out;
};

409 410 411
#define AMDGPU_GEM_OP_GET_GEM_CREATE_INFO	0
#define AMDGPU_GEM_OP_SET_PLACEMENT		1

412 413
/* Sets or returns a value associated with a buffer. */
struct drm_amdgpu_gem_op {
414
	/** GEM object handle */
415
	__u32	handle;
416
	/** AMDGPU_GEM_OP_* */
417
	__u32	op;
418
	/** Input or return value */
419
	__u64	value;
420 421 422 423
};

#define AMDGPU_VA_OP_MAP			1
#define AMDGPU_VA_OP_UNMAP			2
424
#define AMDGPU_VA_OP_CLEAR			3
425
#define AMDGPU_VA_OP_REPLACE			4
426

427 428 429
/* Delay the page table update till the next CS */
#define AMDGPU_VM_DELAY_UPDATE		(1 << 0)

430 431 432 433 434 435 436
/* Mapping flags */
/* readable mapping */
#define AMDGPU_VM_PAGE_READABLE		(1 << 1)
/* writable mapping */
#define AMDGPU_VM_PAGE_WRITEABLE	(1 << 2)
/* executable mapping, new for VI */
#define AMDGPU_VM_PAGE_EXECUTABLE	(1 << 3)
437 438
/* partially resident texture */
#define AMDGPU_VM_PAGE_PRT		(1 << 4)
439 440 441 442 443 444 445 446 447 448 449 450
/* MTYPE flags use bit 5 to 8 */
#define AMDGPU_VM_MTYPE_MASK		(0xf << 5)
/* Default MTYPE. Pre-AI must use this.  Recommended for newer ASICs. */
#define AMDGPU_VM_MTYPE_DEFAULT		(0 << 5)
/* Use NC MTYPE instead of default MTYPE */
#define AMDGPU_VM_MTYPE_NC		(1 << 5)
/* Use WC MTYPE instead of default MTYPE */
#define AMDGPU_VM_MTYPE_WC		(2 << 5)
/* Use CC MTYPE instead of default MTYPE */
#define AMDGPU_VM_MTYPE_CC		(3 << 5)
/* Use UC MTYPE instead of default MTYPE */
#define AMDGPU_VM_MTYPE_UC		(4 << 5)
451

C
Christian König 已提交
452
struct drm_amdgpu_gem_va {
453
	/** GEM object handle */
454 455
	__u32 handle;
	__u32 _pad;
456
	/** AMDGPU_VA_OP_* */
457
	__u32 operation;
458
	/** AMDGPU_VM_PAGE_* */
459
	__u32 flags;
460
	/** va address to assign . Must be correctly aligned.*/
461
	__u64 va_address;
462
	/** Specify offset inside of BO to assign. Must be correctly aligned.*/
463
	__u64 offset_in_bo;
464
	/** Specify mapping size. Must be correctly aligned. */
465
	__u64 map_size;
466 467 468 469 470 471 472
};

#define AMDGPU_HW_IP_GFX          0
#define AMDGPU_HW_IP_COMPUTE      1
#define AMDGPU_HW_IP_DMA          2
#define AMDGPU_HW_IP_UVD          3
#define AMDGPU_HW_IP_VCE          4
L
Leo Liu 已提交
473
#define AMDGPU_HW_IP_UVD_ENC      5
474
#define AMDGPU_HW_IP_VCN_DEC      6
475 476
#define AMDGPU_HW_IP_VCN_ENC      7
#define AMDGPU_HW_IP_NUM          8
477 478 479 480 481

#define AMDGPU_HW_IP_INSTANCE_MAX_COUNT 1

#define AMDGPU_CHUNK_ID_IB		0x01
#define AMDGPU_CHUNK_ID_FENCE		0x02
482
#define AMDGPU_CHUNK_ID_DEPENDENCIES	0x03
483 484
#define AMDGPU_CHUNK_ID_SYNCOBJ_IN      0x04
#define AMDGPU_CHUNK_ID_SYNCOBJ_OUT     0x05
485

486
struct drm_amdgpu_cs_chunk {
487 488 489
	__u32		chunk_id;
	__u32		length_dw;
	__u64		chunk_data;
490 491 492 493
};

struct drm_amdgpu_cs_in {
	/** Rendering context id */
494
	__u32		ctx_id;
495
	/**  Handle of resource list associated with CS */
496 497 498 499 500
	__u32		bo_list_handle;
	__u32		num_chunks;
	__u32		_pad;
	/** this points to __u64 * which point to cs chunks */
	__u64		chunks;
501 502 503
};

struct drm_amdgpu_cs_out {
504
	__u64 handle;
505 506 507
};

union drm_amdgpu_cs {
508 509
	struct drm_amdgpu_cs_in in;
	struct drm_amdgpu_cs_out out;
510 511 512 513 514 515 516
};

/* Specify flags to be used for IB */

/* This IB should be submitted to CE */
#define AMDGPU_IB_FLAG_CE	(1<<0)

M
Monk Liu 已提交
517
/* Preamble flag, which means the IB could be dropped if no context switch */
518
#define AMDGPU_IB_FLAG_PREAMBLE (1<<1)
J
Jammy Zhou 已提交
519

M
Monk Liu 已提交
520 521 522
/* Preempt flag, IB should set Pre_enb bit if PREEMPT flag detected */
#define AMDGPU_IB_FLAG_PREEMPT (1<<2)

523
struct drm_amdgpu_cs_chunk_ib {
524
	__u32 _pad;
525
	/** AMDGPU_IB_FLAG_* */
526
	__u32 flags;
527
	/** Virtual address to begin IB execution */
528
	__u64 va_start;
529
	/** Size of submission */
530
	__u32 ib_bytes;
531
	/** HW IP to submit to */
532
	__u32 ip_type;
533
	/** HW IP index of the same type to submit to  */
534
	__u32 ip_instance;
535
	/** Ring index to submit to */
536
	__u32 ring;
537 538
};

539
struct drm_amdgpu_cs_chunk_dep {
540 541 542 543 544
	__u32 ip_type;
	__u32 ip_instance;
	__u32 ring;
	__u32 ctx_id;
	__u64 handle;
545 546
};

547
struct drm_amdgpu_cs_chunk_fence {
548 549
	__u32 handle;
	__u32 offset;
550 551
};

552 553 554 555
struct drm_amdgpu_cs_chunk_sem {
	__u32 handle;
};

556 557 558 559 560 561 562 563
#define AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ	0
#define AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD	1
#define AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD	2

union drm_amdgpu_fence_to_handle {
	struct {
		struct drm_amdgpu_fence fence;
		__u32 what;
564
		__u32 pad;
565 566 567 568 569 570
	} in;
	struct {
		__u32 handle;
	} out;
};

571 572 573 574 575 576 577 578 579 580 581 582
struct drm_amdgpu_cs_chunk_data {
	union {
		struct drm_amdgpu_cs_chunk_ib		ib_data;
		struct drm_amdgpu_cs_chunk_fence	fence_data;
	};
};

/**
 *  Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU
 *
 */
#define AMDGPU_IDS_FLAGS_FUSION         0x1
M
Monk Liu 已提交
583
#define AMDGPU_IDS_FLAGS_PREEMPTION     0x2
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616

/* indicate if acceleration can be working */
#define AMDGPU_INFO_ACCEL_WORKING		0x00
/* get the crtc_id from the mode object id? */
#define AMDGPU_INFO_CRTC_FROM_ID		0x01
/* query hw IP info */
#define AMDGPU_INFO_HW_IP_INFO			0x02
/* query hw IP instance count for the specified type */
#define AMDGPU_INFO_HW_IP_COUNT			0x03
/* timestamp for GL_ARB_timer_query */
#define AMDGPU_INFO_TIMESTAMP			0x05
/* Query the firmware version */
#define AMDGPU_INFO_FW_VERSION			0x0e
	/* Subquery id: Query VCE firmware version */
	#define AMDGPU_INFO_FW_VCE		0x1
	/* Subquery id: Query UVD firmware version */
	#define AMDGPU_INFO_FW_UVD		0x2
	/* Subquery id: Query GMC firmware version */
	#define AMDGPU_INFO_FW_GMC		0x03
	/* Subquery id: Query GFX ME firmware version */
	#define AMDGPU_INFO_FW_GFX_ME		0x04
	/* Subquery id: Query GFX PFP firmware version */
	#define AMDGPU_INFO_FW_GFX_PFP		0x05
	/* Subquery id: Query GFX CE firmware version */
	#define AMDGPU_INFO_FW_GFX_CE		0x06
	/* Subquery id: Query GFX RLC firmware version */
	#define AMDGPU_INFO_FW_GFX_RLC		0x07
	/* Subquery id: Query GFX MEC firmware version */
	#define AMDGPU_INFO_FW_GFX_MEC		0x08
	/* Subquery id: Query SMC firmware version */
	#define AMDGPU_INFO_FW_SMC		0x0a
	/* Subquery id: Query SDMA firmware version */
	#define AMDGPU_INFO_FW_SDMA		0x0b
617 618 619 620
	/* Subquery id: Query PSP SOS firmware version */
	#define AMDGPU_INFO_FW_SOS		0x0c
	/* Subquery id: Query PSP ASD firmware version */
	#define AMDGPU_INFO_FW_ASD		0x0d
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
/* number of bytes moved for TTM migration */
#define AMDGPU_INFO_NUM_BYTES_MOVED		0x0f
/* the used VRAM size */
#define AMDGPU_INFO_VRAM_USAGE			0x10
/* the used GTT size */
#define AMDGPU_INFO_GTT_USAGE			0x11
/* Information about GDS, etc. resource configuration */
#define AMDGPU_INFO_GDS_CONFIG			0x13
/* Query information about VRAM and GTT domains */
#define AMDGPU_INFO_VRAM_GTT			0x14
/* Query information about register in MMR address space*/
#define AMDGPU_INFO_READ_MMR_REG		0x15
/* Query information about device: rev id, family, etc. */
#define AMDGPU_INFO_DEV_INFO			0x16
/* visible vram usage */
#define AMDGPU_INFO_VIS_VRAM_USAGE		0x17
637 638
/* number of TTM buffer evictions */
#define AMDGPU_INFO_NUM_EVICTIONS		0x18
639 640
/* Query memory about VRAM and GTT domains */
#define AMDGPU_INFO_MEMORY			0x19
641 642
/* Query vce clock table */
#define AMDGPU_INFO_VCE_CLOCK_TABLE		0x1A
643 644 645 646 647 648
/* Query vbios related information */
#define AMDGPU_INFO_VBIOS			0x1B
	/* Subquery id: Query vbios size */
	#define AMDGPU_INFO_VBIOS_SIZE		0x1
	/* Subquery id: Query vbios image */
	#define AMDGPU_INFO_VBIOS_IMAGE		0x2
649 650
/* Query UVD handles */
#define AMDGPU_INFO_NUM_HANDLES			0x1C
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
/* Query sensor related information */
#define AMDGPU_INFO_SENSOR			0x1D
	/* Subquery id: Query GPU shader clock */
	#define AMDGPU_INFO_SENSOR_GFX_SCLK		0x1
	/* Subquery id: Query GPU memory clock */
	#define AMDGPU_INFO_SENSOR_GFX_MCLK		0x2
	/* Subquery id: Query GPU temperature */
	#define AMDGPU_INFO_SENSOR_GPU_TEMP		0x3
	/* Subquery id: Query GPU load */
	#define AMDGPU_INFO_SENSOR_GPU_LOAD		0x4
	/* Subquery id: Query average GPU power	*/
	#define AMDGPU_INFO_SENSOR_GPU_AVG_POWER	0x5
	/* Subquery id: Query northbridge voltage */
	#define AMDGPU_INFO_SENSOR_VDDNB		0x6
	/* Subquery id: Query graphics voltage */
	#define AMDGPU_INFO_SENSOR_VDDGFX		0x7
667 668
/* Number of VRAM page faults on CPU access. */
#define AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS	0x1E
C
Christian König 已提交
669
#define AMDGPU_INFO_VRAM_LOST_COUNTER		0x1F
670 671 672 673 674 675

#define AMDGPU_INFO_MMR_SE_INDEX_SHIFT	0
#define AMDGPU_INFO_MMR_SE_INDEX_MASK	0xff
#define AMDGPU_INFO_MMR_SH_INDEX_SHIFT	8
#define AMDGPU_INFO_MMR_SH_INDEX_MASK	0xff

676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
struct drm_amdgpu_query_fw {
	/** AMDGPU_INFO_FW_* */
	__u32 fw_type;
	/**
	 * Index of the IP if there are more IPs of
	 * the same type.
	 */
	__u32 ip_instance;
	/**
	 * Index of the engine. Whether this is used depends
	 * on the firmware type. (e.g. MEC, SDMA)
	 */
	__u32 index;
	__u32 _pad;
};

692 693 694
/* Input structure for the INFO ioctl */
struct drm_amdgpu_info {
	/* Where the return value will be stored */
695
	__u64 return_pointer;
696 697
	/* The size of the return value. Just like "size" in "snprintf",
	 * it limits how many bytes the kernel can write. */
698
	__u32 return_size;
699
	/* The query request id. */
700
	__u32 query;
701 702 703

	union {
		struct {
704 705
			__u32 id;
			__u32 _pad;
706 707 708 709
		} mode_crtc;

		struct {
			/** AMDGPU_HW_IP_* */
710
			__u32 type;
711
			/**
712 713
			 * Index of the IP if there are more IPs of the same
			 * type. Ignored by AMDGPU_INFO_HW_IP_COUNT.
714
			 */
715
			__u32 ip_instance;
716 717 718
		} query_hw_ip;

		struct {
719
			__u32 dword_offset;
720
			/** number of registers to read */
721 722
			__u32 count;
			__u32 instance;
723
			/** For future use, no flags defined so far */
724
			__u32 flags;
725 726
		} read_mmr_reg;

727
		struct drm_amdgpu_query_fw query_fw;
728 729 730 731 732

		struct {
			__u32 type;
			__u32 offset;
		} vbios_info;
733 734 735 736

		struct {
			__u32 type;
		} sensor_info;
737 738 739 740 741
	};
};

struct drm_amdgpu_info_gds {
	/** GDS GFX partition size */
742
	__u32 gds_gfx_partition_size;
743
	/** GDS compute partition size */
744
	__u32 compute_partition_size;
745
	/** total GDS memory size */
746
	__u32 gds_total_size;
747
	/** GWS size per GFX partition */
748
	__u32 gws_per_gfx_partition;
749
	/** GSW size per compute partition */
750
	__u32 gws_per_compute_partition;
751
	/** OA size per GFX partition */
752
	__u32 oa_per_gfx_partition;
753
	/** OA size per compute partition */
754 755
	__u32 oa_per_compute_partition;
	__u32 _pad;
756 757 758
};

struct drm_amdgpu_info_vram_gtt {
759 760 761
	__u64 vram_size;
	__u64 vram_cpu_accessible_size;
	__u64 gtt_size;
762 763
};

764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
struct drm_amdgpu_heap_info {
	/** max. physical memory */
	__u64 total_heap_size;

	/** Theoretical max. available memory in the given heap */
	__u64 usable_heap_size;

	/**
	 * Number of bytes allocated in the heap. This includes all processes
	 * and private allocations in the kernel. It changes when new buffers
	 * are allocated, freed, and moved. It cannot be larger than
	 * heap_size.
	 */
	__u64 heap_usage;

	/**
	 * Theoretical possible max. size of buffer which
	 * could be allocated in the given heap
	 */
	__u64 max_allocation;
784 785
};

786 787 788 789
struct drm_amdgpu_memory_info {
	struct drm_amdgpu_heap_info vram;
	struct drm_amdgpu_heap_info cpu_accessible_vram;
	struct drm_amdgpu_heap_info gtt;
790 791
};

792
struct drm_amdgpu_info_firmware {
793 794
	__u32 ver;
	__u32 feature;
795 796
};

797 798 799 800 801 802 803 804 805
#define AMDGPU_VRAM_TYPE_UNKNOWN 0
#define AMDGPU_VRAM_TYPE_GDDR1 1
#define AMDGPU_VRAM_TYPE_DDR2  2
#define AMDGPU_VRAM_TYPE_GDDR3 3
#define AMDGPU_VRAM_TYPE_GDDR4 4
#define AMDGPU_VRAM_TYPE_GDDR5 5
#define AMDGPU_VRAM_TYPE_HBM   6
#define AMDGPU_VRAM_TYPE_DDR3  7

806 807
struct drm_amdgpu_info_device {
	/** PCI Device ID */
808
	__u32 device_id;
809
	/** Internal chip revision: A0, A1, etc.) */
810 811
	__u32 chip_rev;
	__u32 external_rev;
812
	/** Revision id in PCI Config space */
813 814 815 816
	__u32 pci_rev;
	__u32 family;
	__u32 num_shader_engines;
	__u32 num_shader_arrays_per_engine;
817
	/* in KHz */
818 819 820
	__u32 gpu_counter_freq;
	__u64 max_engine_clock;
	__u64 max_memory_clock;
821
	/* cu information */
822
	__u32 cu_active_number;
823
	/* NOTE: cu_ao_mask is INVALID, DON'T use it */
824 825
	__u32 cu_ao_mask;
	__u32 cu_bitmap[4][4];
826
	/** Render backend pipe mask. One render backend is CB+DB. */
827 828 829 830 831
	__u32 enabled_rb_pipes_mask;
	__u32 num_rb_pipes;
	__u32 num_hw_gfx_contexts;
	__u32 _pad;
	__u64 ids_flags;
832
	/** Starting virtual address for UMDs. */
833
	__u64 virtual_address_offset;
834
	/** The maximum virtual address */
835
	__u64 virtual_address_max;
836
	/** Required alignment of virtual addresses. */
837
	__u32 virtual_address_alignment;
838
	/** Page table entry - fragment size */
839 840
	__u32 pte_fragment_size;
	__u32 gart_page_size;
841
	/** constant engine ram size*/
842
	__u32 ce_ram_size;
843
	/** video memory type info*/
844
	__u32 vram_type;
845
	/** video memory bit width*/
846
	__u32 vram_bit_width;
847
	/* vce harvesting instance */
848
	__u32 vce_harvest_config;
849 850
	/* gfx double offchip LDS buffers */
	__u32 gc_double_offchip_lds_buf;
A
Alex Deucher 已提交
851 852 853 854 855 856 857 858
	/* NGG Primitive Buffer */
	__u64 prim_buf_gpu_addr;
	/* NGG Position Buffer */
	__u64 pos_buf_gpu_addr;
	/* NGG Control Sideband */
	__u64 cntl_sb_buf_gpu_addr;
	/* NGG Parameter Cache */
	__u64 param_buf_gpu_addr;
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
	__u32 prim_buf_size;
	__u32 pos_buf_size;
	__u32 cntl_sb_buf_size;
	__u32 param_buf_size;
	/* wavefront size*/
	__u32 wave_front_size;
	/* shader visible vgprs*/
	__u32 num_shader_visible_vgprs;
	/* CU per shader array*/
	__u32 num_cu_per_sh;
	/* number of tcc blocks*/
	__u32 num_tcc_blocks;
	/* gs vgt table depth*/
	__u32 gs_vgt_table_depth;
	/* gs primitive buffer depth*/
	__u32 gs_prim_buffer_depth;
	/* max gs wavefront per vgt*/
	__u32 max_gs_waves_per_vgt;
	__u32 _pad1;
878 879
	/* always on cu bitmap */
	__u32 cu_ao_bitmap[4][4];
880 881 882 883
	/** Starting high virtual address for UMDs. */
	__u64 high_va_offset;
	/** The maximum high virtual address */
	__u64 high_va_max;
884 885 886 887
};

struct drm_amdgpu_info_hw_ip {
	/** Version of h/w IP */
888 889
	__u32  hw_ip_version_major;
	__u32  hw_ip_version_minor;
890
	/** Capabilities */
891
	__u64  capabilities_flags;
892
	/** command buffer address start alignment*/
893
	__u32  ib_start_alignment;
894
	/** command buffer size alignment*/
895
	__u32  ib_size_alignment;
896
	/** Bitmask of available rings. Bit 0 means ring 0, etc. */
897 898
	__u32  available_rings;
	__u32  _pad;
899 900
};

901 902 903 904 905 906 907
struct drm_amdgpu_info_num_handles {
	/** Max handles as supported by firmware for UVD */
	__u32  uvd_max_handles;
	/** Handles currently in use for UVD */
	__u32  uvd_used_handles;
};

908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
#define AMDGPU_VCE_CLOCK_TABLE_ENTRIES		6

struct drm_amdgpu_info_vce_clock_table_entry {
	/** System clock */
	__u32 sclk;
	/** Memory clock */
	__u32 mclk;
	/** VCE clock */
	__u32 eclk;
	__u32 pad;
};

struct drm_amdgpu_info_vce_clock_table {
	struct drm_amdgpu_info_vce_clock_table_entry entries[AMDGPU_VCE_CLOCK_TABLE_ENTRIES];
	__u32 num_valid_entries;
	__u32 pad;
};

926 927 928 929
/*
 * Supported GPU families
 */
#define AMDGPU_FAMILY_UNKNOWN			0
K
Ken Wang 已提交
930
#define AMDGPU_FAMILY_SI			110 /* Hainan, Oland, Verde, Pitcairn, Tahiti */
931 932 933
#define AMDGPU_FAMILY_CI			120 /* Bonaire, Hawaii */
#define AMDGPU_FAMILY_KV			125 /* Kaveri, Kabini, Mullins */
#define AMDGPU_FAMILY_VI			130 /* Iceland, Tonga */
934
#define AMDGPU_FAMILY_CZ			135 /* Carrizo, Stoney */
935
#define AMDGPU_FAMILY_AI			141 /* Vega10 */
936
#define AMDGPU_FAMILY_RV			142 /* Raven */
937

938 939 940 941
#if defined(__cplusplus)
}
#endif

942
#endif