amdgpu_drm.h 18.1 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 53 54 55 56 57 58 59 60 61
#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

#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 已提交
62
#define DRM_IOCTL_AMDGPU_GEM_VA		DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_VA, struct drm_amdgpu_gem_va)
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
#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)

#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 */
79
#define AMDGPU_GEM_CREATE_CPU_GTT_USWC		(1 << 2)
80 81 82

struct drm_amdgpu_gem_create_in  {
	/** the requested memory size */
83
	__u64 bo_size;
84
	/** physical start_addr alignment in bytes for some HW requirements */
85
	__u64 alignment;
86
	/** the requested memory domains */
87
	__u64 domains;
88
	/** allocation flags */
89
	__u64 domain_flags;
90 91 92 93
};

struct drm_amdgpu_gem_create_out  {
	/** returned GEM object handle */
94 95
	__u32 handle;
	__u32 _pad;
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
};

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 */
112
	__u32 operation;
113
	/** Handle of list or 0 if we want to create one */
114
	__u32 list_handle;
115
	/** Number of BOs in list  */
116
	__u32 bo_number;
117
	/** Size of each element describing BO */
118
	__u32 bo_info_size;
119
	/** Pointer to array describing BOs */
120
	__u64 bo_info_ptr;
121 122 123 124
};

struct drm_amdgpu_bo_list_entry {
	/** Handle of BO */
125
	__u32 bo_handle;
126
	/** New (if specified) BO priority to be used during migration */
127
	__u32 bo_priority;
128 129 130 131
};

struct drm_amdgpu_bo_list_out {
	/** Handle of resource list  */
132 133
	__u32 list_handle;
	__u32 _pad;
134 135 136 137 138 139 140 141 142 143 144 145
};

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

146 147
/* GPU reset status */
#define AMDGPU_CTX_NO_RESET		0
148 149 150 151 152 153
/* 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
154

155
struct drm_amdgpu_ctx_in {
156
	/** AMDGPU_CTX_OP_* */
157
	__u32	op;
158
	/** For future use, no flags defined so far */
159 160 161
	__u32	flags;
	__u32	ctx_id;
	__u32	_pad;
162 163 164 165
};

union drm_amdgpu_ctx_out {
		struct {
166 167
			__u32	ctx_id;
			__u32	_pad;
168 169 170
		} alloc;

		struct {
171
			/** For future use, no flags defined so far */
172
			__u64	flags;
173
			/** Number of resets caused by this context so far. */
174
			__u32	hangs;
175
			/** Reset status since the last call of the ioctl. */
176
			__u32	reset_status;
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
		} state;
};

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

/*
 * 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 {
196 197
	__u64		addr;
	__u64		size;
198
	/* AMDGPU_GEM_USERPTR_* */
199
	__u32		flags;
200
	/* Resulting GEM handle */
201
	__u32		handle;
202 203
};

M
Marek Olšák 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
/* 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

#define AMDGPU_TILING_SET(field, value) \
	(((value) & AMDGPU_TILING_##field##_MASK) << AMDGPU_TILING_##field##_SHIFT)
#define AMDGPU_TILING_GET(value, field) \
	(((value) >> AMDGPU_TILING_##field##_SHIFT) & AMDGPU_TILING_##field##_MASK)
226 227 228 229 230 231

#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 {
232
	/** GEM Object handle */
233
	__u32	handle;
234
	/** Do we want get or set metadata */
235
	__u32	op;
236
	struct {
237
		/** For future use, no flags defined so far */
238
		__u64	flags;
239
		/** family specific tiling info */
240 241 242
		__u64	tiling_info;
		__u32	data_size_bytes;
		__u32	data[64];
243 244 245 246
	} data;
};

struct drm_amdgpu_gem_mmap_in {
247
	/** the GEM object handle */
248 249
	__u32 handle;
	__u32 _pad;
250 251 252
};

struct drm_amdgpu_gem_mmap_out {
253
	/** mmap offset from the vma offset manager */
254
	__u64 addr_ptr;
255 256 257 258 259 260 261 262
};

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 {
263
	/** GEM object handle */
264
	__u32 handle;
265
	/** For future use, no flags defined so far */
266
	__u32 flags;
267
	/** Absolute timeout to wait */
268
	__u64 timeout;
269 270 271
};

struct drm_amdgpu_gem_wait_idle_out {
272
	/** BO status:  0 - BO is idle, 1 - BO is busy */
273
	__u32 status;
274
	/** Returned current memory domain */
275
	__u32 domain;
276 277 278 279 280 281 282 283
};

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 {
284
	/** Command submission handle */
285
	__u64 handle;
286
	/** Absolute timeout to wait */
287 288 289 290 291
	__u64 timeout;
	__u32 ip_type;
	__u32 ip_instance;
	__u32 ring;
	__u32 ctx_id;
292 293 294
};

struct drm_amdgpu_wait_cs_out {
295
	/** CS status:  0 - CS completed, 1 - CS still busy */
296
	__u64 status;
297 298 299 300 301 302 303
};

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

304 305 306
#define AMDGPU_GEM_OP_GET_GEM_CREATE_INFO	0
#define AMDGPU_GEM_OP_SET_PLACEMENT		1

307 308
/* Sets or returns a value associated with a buffer. */
struct drm_amdgpu_gem_op {
309
	/** GEM object handle */
310
	__u32	handle;
311
	/** AMDGPU_GEM_OP_* */
312
	__u32	op;
313
	/** Input or return value */
314
	__u64	value;
315 316 317 318 319
};

#define AMDGPU_VA_OP_MAP			1
#define AMDGPU_VA_OP_UNMAP			2

320 321 322
/* Delay the page table update till the next CS */
#define AMDGPU_VM_DELAY_UPDATE		(1 << 0)

323 324 325 326 327 328 329 330
/* 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)

C
Christian König 已提交
331
struct drm_amdgpu_gem_va {
332
	/** GEM object handle */
333 334
	__u32 handle;
	__u32 _pad;
335
	/** AMDGPU_VA_OP_* */
336
	__u32 operation;
337
	/** AMDGPU_VM_PAGE_* */
338
	__u32 flags;
339
	/** va address to assign . Must be correctly aligned.*/
340
	__u64 va_address;
341
	/** Specify offset inside of BO to assign. Must be correctly aligned.*/
342
	__u64 offset_in_bo;
343
	/** Specify mapping size. Must be correctly aligned. */
344
	__u64 map_size;
345 346 347 348 349 350 351 352 353 354 355 356 357
};

#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
#define AMDGPU_HW_IP_NUM          5

#define AMDGPU_HW_IP_INSTANCE_MAX_COUNT 1

#define AMDGPU_CHUNK_ID_IB		0x01
#define AMDGPU_CHUNK_ID_FENCE		0x02
358
#define AMDGPU_CHUNK_ID_DEPENDENCIES	0x03
359

360
struct drm_amdgpu_cs_chunk {
361 362 363
	__u32		chunk_id;
	__u32		length_dw;
	__u64		chunk_data;
364 365 366 367
};

struct drm_amdgpu_cs_in {
	/** Rendering context id */
368
	__u32		ctx_id;
369
	/**  Handle of resource list associated with CS */
370 371 372 373 374
	__u32		bo_list_handle;
	__u32		num_chunks;
	__u32		_pad;
	/** this points to __u64 * which point to cs chunks */
	__u64		chunks;
375 376 377
};

struct drm_amdgpu_cs_out {
378
	__u64 handle;
379 380 381
};

union drm_amdgpu_cs {
382 383
	struct drm_amdgpu_cs_in in;
	struct drm_amdgpu_cs_out out;
384 385 386 387 388 389 390
};

/* Specify flags to be used for IB */

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

J
Jammy Zhou 已提交
391
/* CE Preamble */
392
#define AMDGPU_IB_FLAG_PREAMBLE (1<<1)
J
Jammy Zhou 已提交
393

394
struct drm_amdgpu_cs_chunk_ib {
395
	__u32 _pad;
396
	/** AMDGPU_IB_FLAG_* */
397
	__u32 flags;
398
	/** Virtual address to begin IB execution */
399
	__u64 va_start;
400
	/** Size of submission */
401
	__u32 ib_bytes;
402
	/** HW IP to submit to */
403
	__u32 ip_type;
404
	/** HW IP index of the same type to submit to  */
405
	__u32 ip_instance;
406
	/** Ring index to submit to */
407
	__u32 ring;
408 409
};

410
struct drm_amdgpu_cs_chunk_dep {
411 412 413 414 415
	__u32 ip_type;
	__u32 ip_instance;
	__u32 ring;
	__u32 ctx_id;
	__u64 handle;
416 417
};

418
struct drm_amdgpu_cs_chunk_fence {
419 420
	__u32 handle;
	__u32 offset;
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
};

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

/* 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
/* 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

#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

490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
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;
};

506 507 508
/* Input structure for the INFO ioctl */
struct drm_amdgpu_info {
	/* Where the return value will be stored */
509
	__u64 return_pointer;
510 511
	/* The size of the return value. Just like "size" in "snprintf",
	 * it limits how many bytes the kernel can write. */
512
	__u32 return_size;
513
	/* The query request id. */
514
	__u32 query;
515 516 517

	union {
		struct {
518 519
			__u32 id;
			__u32 _pad;
520 521 522 523
		} mode_crtc;

		struct {
			/** AMDGPU_HW_IP_* */
524
			__u32 type;
525
			/**
526 527
			 * Index of the IP if there are more IPs of the same
			 * type. Ignored by AMDGPU_INFO_HW_IP_COUNT.
528
			 */
529
			__u32 ip_instance;
530 531 532
		} query_hw_ip;

		struct {
533
			__u32 dword_offset;
534
			/** number of registers to read */
535 536
			__u32 count;
			__u32 instance;
537
			/** For future use, no flags defined so far */
538
			__u32 flags;
539 540
		} read_mmr_reg;

541
		struct drm_amdgpu_query_fw query_fw;
542 543 544 545 546
	};
};

struct drm_amdgpu_info_gds {
	/** GDS GFX partition size */
547
	__u32 gds_gfx_partition_size;
548
	/** GDS compute partition size */
549
	__u32 compute_partition_size;
550
	/** total GDS memory size */
551
	__u32 gds_total_size;
552
	/** GWS size per GFX partition */
553
	__u32 gws_per_gfx_partition;
554
	/** GSW size per compute partition */
555
	__u32 gws_per_compute_partition;
556
	/** OA size per GFX partition */
557
	__u32 oa_per_gfx_partition;
558
	/** OA size per compute partition */
559 560
	__u32 oa_per_compute_partition;
	__u32 _pad;
561 562 563
};

struct drm_amdgpu_info_vram_gtt {
564 565 566
	__u64 vram_size;
	__u64 vram_cpu_accessible_size;
	__u64 gtt_size;
567 568 569
};

struct drm_amdgpu_info_firmware {
570 571
	__u32 ver;
	__u32 feature;
572 573
};

574 575 576 577 578 579 580 581 582
#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

583 584
struct drm_amdgpu_info_device {
	/** PCI Device ID */
585
	__u32 device_id;
586
	/** Internal chip revision: A0, A1, etc.) */
587 588
	__u32 chip_rev;
	__u32 external_rev;
589
	/** Revision id in PCI Config space */
590 591 592 593
	__u32 pci_rev;
	__u32 family;
	__u32 num_shader_engines;
	__u32 num_shader_arrays_per_engine;
594
	/* in KHz */
595 596 597
	__u32 gpu_counter_freq;
	__u64 max_engine_clock;
	__u64 max_memory_clock;
598
	/* cu information */
599 600 601
	__u32 cu_active_number;
	__u32 cu_ao_mask;
	__u32 cu_bitmap[4][4];
602
	/** Render backend pipe mask. One render backend is CB+DB. */
603 604 605 606 607
	__u32 enabled_rb_pipes_mask;
	__u32 num_rb_pipes;
	__u32 num_hw_gfx_contexts;
	__u32 _pad;
	__u64 ids_flags;
608
	/** Starting virtual address for UMDs. */
609
	__u64 virtual_address_offset;
610
	/** The maximum virtual address */
611
	__u64 virtual_address_max;
612
	/** Required alignment of virtual addresses. */
613
	__u32 virtual_address_alignment;
614
	/** Page table entry - fragment size */
615 616
	__u32 pte_fragment_size;
	__u32 gart_page_size;
617
	/** constant engine ram size*/
618
	__u32 ce_ram_size;
619
	/** video memory type info*/
620
	__u32 vram_type;
621
	/** video memory bit width*/
622
	__u32 vram_bit_width;
623
	/* vce harvesting instance */
624
	__u32 vce_harvest_config;
625 626 627 628
};

struct drm_amdgpu_info_hw_ip {
	/** Version of h/w IP */
629 630
	__u32  hw_ip_version_major;
	__u32  hw_ip_version_minor;
631
	/** Capabilities */
632
	__u64  capabilities_flags;
633
	/** command buffer address start alignment*/
634
	__u32  ib_start_alignment;
635
	/** command buffer size alignment*/
636
	__u32  ib_size_alignment;
637
	/** Bitmask of available rings. Bit 0 means ring 0, etc. */
638 639
	__u32  available_rings;
	__u32  _pad;
640 641 642 643 644 645 646 647 648
};

/*
 * Supported GPU families
 */
#define AMDGPU_FAMILY_UNKNOWN			0
#define AMDGPU_FAMILY_CI			120 /* Bonaire, Hawaii */
#define AMDGPU_FAMILY_KV			125 /* Kaveri, Kabini, Mullins */
#define AMDGPU_FAMILY_VI			130 /* Iceland, Tonga */
649
#define AMDGPU_FAMILY_CZ			135 /* Carrizo, Stoney */
650

651 652 653 654
#if defined(__cplusplus)
}
#endif

655
#endif