blob: 919248fb4028bd084c0949dcea30f86796741367 [file] [log] [blame]
Christopher Ferris12e1f282016-02-04 12:35:07 -08001/* amdgpu_drm.h -- Public header for the amdgpu driver -*- linux-c -*-
2 *
3 * Copyright 2000 Precision Insight, Inc., Cedar Park, Texas.
4 * Copyright 2000 VA Linux Systems, Inc., Fremont, California.
5 * Copyright 2002 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * Copyright 2014 Advanced Micro Devices, Inc.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25 *
26 * Authors:
27 * Kevin E. Martin <martin@valinux.com>
28 * Gareth Hughes <gareth@valinux.com>
29 * Keith Whitwell <keith@tungstengraphics.com>
30 */
31
32#ifndef __AMDGPU_DRM_H__
33#define __AMDGPU_DRM_H__
34
35#include "drm.h"
36
Christopher Ferrisccfaccd2016-08-24 12:11:31 -070037#if defined(__cplusplus)
38extern "C" {
39#endif
40
Christopher Ferris12e1f282016-02-04 12:35:07 -080041#define DRM_AMDGPU_GEM_CREATE 0x00
42#define DRM_AMDGPU_GEM_MMAP 0x01
43#define DRM_AMDGPU_CTX 0x02
44#define DRM_AMDGPU_BO_LIST 0x03
45#define DRM_AMDGPU_CS 0x04
46#define DRM_AMDGPU_INFO 0x05
47#define DRM_AMDGPU_GEM_METADATA 0x06
48#define DRM_AMDGPU_GEM_WAIT_IDLE 0x07
49#define DRM_AMDGPU_GEM_VA 0x08
50#define DRM_AMDGPU_WAIT_CS 0x09
51#define DRM_AMDGPU_GEM_OP 0x10
52#define DRM_AMDGPU_GEM_USERPTR 0x11
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -080053#define DRM_AMDGPU_WAIT_FENCES 0x12
Christopher Ferris25981132017-11-14 16:53:49 -080054#define DRM_AMDGPU_VM 0x13
Christopher Ferrisa1a109e2018-01-31 15:03:12 -080055#define DRM_AMDGPU_FENCE_TO_HANDLE 0x14
56#define DRM_AMDGPU_SCHED 0x15
Christopher Ferris12e1f282016-02-04 12:35:07 -080057
58#define DRM_IOCTL_AMDGPU_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create)
59#define DRM_IOCTL_AMDGPU_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap)
60#define DRM_IOCTL_AMDGPU_CTX DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_CTX, union drm_amdgpu_ctx)
61#define DRM_IOCTL_AMDGPU_BO_LIST DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_BO_LIST, union drm_amdgpu_bo_list)
62#define DRM_IOCTL_AMDGPU_CS DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_CS, union drm_amdgpu_cs)
63#define DRM_IOCTL_AMDGPU_INFO DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_INFO, struct drm_amdgpu_info)
64#define DRM_IOCTL_AMDGPU_GEM_METADATA DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_METADATA, struct drm_amdgpu_gem_metadata)
65#define DRM_IOCTL_AMDGPU_GEM_WAIT_IDLE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_WAIT_IDLE, union drm_amdgpu_gem_wait_idle)
66#define DRM_IOCTL_AMDGPU_GEM_VA DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_VA, struct drm_amdgpu_gem_va)
67#define DRM_IOCTL_AMDGPU_WAIT_CS DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_CS, union drm_amdgpu_wait_cs)
68#define DRM_IOCTL_AMDGPU_GEM_OP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_OP, struct drm_amdgpu_gem_op)
69#define DRM_IOCTL_AMDGPU_GEM_USERPTR DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_USERPTR, struct drm_amdgpu_gem_userptr)
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -080070#define DRM_IOCTL_AMDGPU_WAIT_FENCES DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_FENCES, union drm_amdgpu_wait_fences)
Christopher Ferris25981132017-11-14 16:53:49 -080071#define DRM_IOCTL_AMDGPU_VM DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_VM, union drm_amdgpu_vm)
Christopher Ferrisa1a109e2018-01-31 15:03:12 -080072#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)
Christopher Ferris12e1f282016-02-04 12:35:07 -080074
75#define AMDGPU_GEM_DOMAIN_CPU 0x1
76#define AMDGPU_GEM_DOMAIN_GTT 0x2
77#define AMDGPU_GEM_DOMAIN_VRAM 0x4
78#define AMDGPU_GEM_DOMAIN_GDS 0x8
79#define AMDGPU_GEM_DOMAIN_GWS 0x10
80#define AMDGPU_GEM_DOMAIN_OA 0x20
81
82/* Flag that CPU access will be required for the case of VRAM domain */
83#define AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED (1 << 0)
84/* Flag that CPU access will not work, this VRAM domain is invisible */
85#define AMDGPU_GEM_CREATE_NO_CPU_ACCESS (1 << 1)
86/* Flag that USWC attributes should be used for GTT */
87#define AMDGPU_GEM_CREATE_CPU_GTT_USWC (1 << 2)
Christopher Ferris33185402017-01-13 13:28:52 -080088/* Flag that the memory should be in VRAM and cleared */
89#define AMDGPU_GEM_CREATE_VRAM_CLEARED (1 << 3)
90/* Flag that create shadow bo(GTT) while allocating vram bo */
91#define AMDGPU_GEM_CREATE_SHADOW (1 << 4)
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -080092/* Flag that allocating the BO should use linear VRAM */
93#define AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS (1 << 5)
Christopher Ferrisa1a109e2018-01-31 15:03:12 -080094/* Flag that BO is always valid in this VM */
95#define AMDGPU_GEM_CREATE_VM_ALWAYS_VALID (1 << 6)
96/* Flag that BO sharing will be explicitly synchronized */
97#define AMDGPU_GEM_CREATE_EXPLICIT_SYNC (1 << 7)
Christopher Ferris12e1f282016-02-04 12:35:07 -080098
99struct drm_amdgpu_gem_create_in {
100 /** the requested memory size */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700101 __u64 bo_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800102 /** physical start_addr alignment in bytes for some HW requirements */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700103 __u64 alignment;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800104 /** the requested memory domains */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700105 __u64 domains;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800106 /** allocation flags */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700107 __u64 domain_flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800108};
109
110struct drm_amdgpu_gem_create_out {
111 /** returned GEM object handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700112 __u32 handle;
113 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800114};
115
116union drm_amdgpu_gem_create {
117 struct drm_amdgpu_gem_create_in in;
118 struct drm_amdgpu_gem_create_out out;
119};
120
121/** Opcode to create new residency list. */
122#define AMDGPU_BO_LIST_OP_CREATE 0
123/** Opcode to destroy previously created residency list */
124#define AMDGPU_BO_LIST_OP_DESTROY 1
125/** Opcode to update resource information in the list */
126#define AMDGPU_BO_LIST_OP_UPDATE 2
127
128struct drm_amdgpu_bo_list_in {
129 /** Type of operation */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700130 __u32 operation;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800131 /** Handle of list or 0 if we want to create one */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700132 __u32 list_handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800133 /** Number of BOs in list */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700134 __u32 bo_number;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800135 /** Size of each element describing BO */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700136 __u32 bo_info_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800137 /** Pointer to array describing BOs */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700138 __u64 bo_info_ptr;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800139};
140
141struct drm_amdgpu_bo_list_entry {
142 /** Handle of BO */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700143 __u32 bo_handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800144 /** New (if specified) BO priority to be used during migration */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700145 __u32 bo_priority;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800146};
147
148struct drm_amdgpu_bo_list_out {
149 /** Handle of resource list */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700150 __u32 list_handle;
151 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800152};
153
154union drm_amdgpu_bo_list {
155 struct drm_amdgpu_bo_list_in in;
156 struct drm_amdgpu_bo_list_out out;
157};
158
159/* context related */
160#define AMDGPU_CTX_OP_ALLOC_CTX 1
161#define AMDGPU_CTX_OP_FREE_CTX 2
162#define AMDGPU_CTX_OP_QUERY_STATE 3
163
164/* GPU reset status */
165#define AMDGPU_CTX_NO_RESET 0
166/* this the context caused it */
167#define AMDGPU_CTX_GUILTY_RESET 1
168/* some other context caused it */
169#define AMDGPU_CTX_INNOCENT_RESET 2
170/* unknown cause */
171#define AMDGPU_CTX_UNKNOWN_RESET 3
172
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800173/* Context priority level */
174#define AMDGPU_CTX_PRIORITY_UNSET -2048
175#define AMDGPU_CTX_PRIORITY_VERY_LOW -1023
176#define AMDGPU_CTX_PRIORITY_LOW -512
177#define AMDGPU_CTX_PRIORITY_NORMAL 0
178/* Selecting a priority above NORMAL requires CAP_SYS_NICE or DRM_MASTER */
179#define AMDGPU_CTX_PRIORITY_HIGH 512
180#define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
181
Christopher Ferris12e1f282016-02-04 12:35:07 -0800182struct drm_amdgpu_ctx_in {
183 /** AMDGPU_CTX_OP_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700184 __u32 op;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800185 /** For future use, no flags defined so far */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700186 __u32 flags;
187 __u32 ctx_id;
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800188 __s32 priority;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800189};
190
191union drm_amdgpu_ctx_out {
192 struct {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700193 __u32 ctx_id;
194 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800195 } alloc;
196
197 struct {
198 /** For future use, no flags defined so far */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700199 __u64 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800200 /** Number of resets caused by this context so far. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700201 __u32 hangs;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800202 /** Reset status since the last call of the ioctl. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700203 __u32 reset_status;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800204 } state;
205};
206
207union drm_amdgpu_ctx {
208 struct drm_amdgpu_ctx_in in;
209 union drm_amdgpu_ctx_out out;
210};
211
Christopher Ferris25981132017-11-14 16:53:49 -0800212/* vm ioctl */
213#define AMDGPU_VM_OP_RESERVE_VMID 1
214#define AMDGPU_VM_OP_UNRESERVE_VMID 2
215
216struct drm_amdgpu_vm_in {
217 /** AMDGPU_VM_OP_* */
218 __u32 op;
219 __u32 flags;
220};
221
222struct drm_amdgpu_vm_out {
223 /** For future use, no flags defined so far */
224 __u64 flags;
225};
226
227union drm_amdgpu_vm {
228 struct drm_amdgpu_vm_in in;
229 struct drm_amdgpu_vm_out out;
230};
231
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800232/* sched ioctl */
233#define AMDGPU_SCHED_OP_PROCESS_PRIORITY_OVERRIDE 1
234
235struct drm_amdgpu_sched_in {
236 /* AMDGPU_SCHED_OP_* */
237 __u32 op;
238 __u32 fd;
239 __s32 priority;
240 __u32 flags;
241};
242
243union drm_amdgpu_sched {
244 struct drm_amdgpu_sched_in in;
245};
246
Christopher Ferris12e1f282016-02-04 12:35:07 -0800247/*
248 * This is not a reliable API and you should expect it to fail for any
249 * number of reasons and have fallback path that do not use userptr to
250 * perform any operation.
251 */
252#define AMDGPU_GEM_USERPTR_READONLY (1 << 0)
253#define AMDGPU_GEM_USERPTR_ANONONLY (1 << 1)
254#define AMDGPU_GEM_USERPTR_VALIDATE (1 << 2)
255#define AMDGPU_GEM_USERPTR_REGISTER (1 << 3)
256
257struct drm_amdgpu_gem_userptr {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700258 __u64 addr;
259 __u64 size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800260 /* AMDGPU_GEM_USERPTR_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700261 __u32 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800262 /* Resulting GEM handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700263 __u32 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800264};
265
Christopher Ferris0543f742017-07-26 13:09:46 -0700266/* SI-CI-VI: */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800267/* same meaning as the GB_TILE_MODE and GL_MACRO_TILE_MODE fields */
268#define AMDGPU_TILING_ARRAY_MODE_SHIFT 0
269#define AMDGPU_TILING_ARRAY_MODE_MASK 0xf
270#define AMDGPU_TILING_PIPE_CONFIG_SHIFT 4
271#define AMDGPU_TILING_PIPE_CONFIG_MASK 0x1f
272#define AMDGPU_TILING_TILE_SPLIT_SHIFT 9
273#define AMDGPU_TILING_TILE_SPLIT_MASK 0x7
274#define AMDGPU_TILING_MICRO_TILE_MODE_SHIFT 12
275#define AMDGPU_TILING_MICRO_TILE_MODE_MASK 0x7
276#define AMDGPU_TILING_BANK_WIDTH_SHIFT 15
277#define AMDGPU_TILING_BANK_WIDTH_MASK 0x3
278#define AMDGPU_TILING_BANK_HEIGHT_SHIFT 17
279#define AMDGPU_TILING_BANK_HEIGHT_MASK 0x3
280#define AMDGPU_TILING_MACRO_TILE_ASPECT_SHIFT 19
281#define AMDGPU_TILING_MACRO_TILE_ASPECT_MASK 0x3
282#define AMDGPU_TILING_NUM_BANKS_SHIFT 21
283#define AMDGPU_TILING_NUM_BANKS_MASK 0x3
284
Christopher Ferris0543f742017-07-26 13:09:46 -0700285/* GFX9 and later: */
286#define AMDGPU_TILING_SWIZZLE_MODE_SHIFT 0
287#define AMDGPU_TILING_SWIZZLE_MODE_MASK 0x1f
288
289/* Set/Get helpers for tiling flags. */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800290#define AMDGPU_TILING_SET(field, value) \
Christopher Ferris0543f742017-07-26 13:09:46 -0700291 (((__u64)(value) & AMDGPU_TILING_##field##_MASK) << AMDGPU_TILING_##field##_SHIFT)
Christopher Ferris12e1f282016-02-04 12:35:07 -0800292#define AMDGPU_TILING_GET(value, field) \
Christopher Ferris0543f742017-07-26 13:09:46 -0700293 (((__u64)(value) >> AMDGPU_TILING_##field##_SHIFT) & AMDGPU_TILING_##field##_MASK)
Christopher Ferris12e1f282016-02-04 12:35:07 -0800294
295#define AMDGPU_GEM_METADATA_OP_SET_METADATA 1
296#define AMDGPU_GEM_METADATA_OP_GET_METADATA 2
297
298/** The same structure is shared for input/output */
299struct drm_amdgpu_gem_metadata {
300 /** GEM Object handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700301 __u32 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800302 /** Do we want get or set metadata */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700303 __u32 op;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800304 struct {
305 /** For future use, no flags defined so far */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700306 __u64 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800307 /** family specific tiling info */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700308 __u64 tiling_info;
309 __u32 data_size_bytes;
310 __u32 data[64];
Christopher Ferris12e1f282016-02-04 12:35:07 -0800311 } data;
312};
313
314struct drm_amdgpu_gem_mmap_in {
315 /** the GEM object handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700316 __u32 handle;
317 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800318};
319
320struct drm_amdgpu_gem_mmap_out {
321 /** mmap offset from the vma offset manager */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700322 __u64 addr_ptr;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800323};
324
325union drm_amdgpu_gem_mmap {
326 struct drm_amdgpu_gem_mmap_in in;
327 struct drm_amdgpu_gem_mmap_out out;
328};
329
330struct drm_amdgpu_gem_wait_idle_in {
331 /** GEM object handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700332 __u32 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800333 /** For future use, no flags defined so far */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700334 __u32 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800335 /** Absolute timeout to wait */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700336 __u64 timeout;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800337};
338
339struct drm_amdgpu_gem_wait_idle_out {
340 /** BO status: 0 - BO is idle, 1 - BO is busy */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700341 __u32 status;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800342 /** Returned current memory domain */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700343 __u32 domain;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800344};
345
346union drm_amdgpu_gem_wait_idle {
347 struct drm_amdgpu_gem_wait_idle_in in;
348 struct drm_amdgpu_gem_wait_idle_out out;
349};
350
351struct drm_amdgpu_wait_cs_in {
Christopher Ferris0543f742017-07-26 13:09:46 -0700352 /* Command submission handle
353 * handle equals 0 means none to wait for
354 * handle equals ~0ull means wait for the latest sequence number
355 */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700356 __u64 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800357 /** Absolute timeout to wait */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700358 __u64 timeout;
359 __u32 ip_type;
360 __u32 ip_instance;
361 __u32 ring;
362 __u32 ctx_id;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800363};
364
365struct drm_amdgpu_wait_cs_out {
366 /** CS status: 0 - CS completed, 1 - CS still busy */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700367 __u64 status;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800368};
369
370union drm_amdgpu_wait_cs {
371 struct drm_amdgpu_wait_cs_in in;
372 struct drm_amdgpu_wait_cs_out out;
373};
374
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800375struct drm_amdgpu_fence {
376 __u32 ctx_id;
377 __u32 ip_type;
378 __u32 ip_instance;
379 __u32 ring;
380 __u64 seq_no;
381};
382
383struct drm_amdgpu_wait_fences_in {
384 /** This points to uint64_t * which points to fences */
385 __u64 fences;
386 __u32 fence_count;
387 __u32 wait_all;
388 __u64 timeout_ns;
389};
390
391struct drm_amdgpu_wait_fences_out {
392 __u32 status;
393 __u32 first_signaled;
394};
395
396union drm_amdgpu_wait_fences {
397 struct drm_amdgpu_wait_fences_in in;
398 struct drm_amdgpu_wait_fences_out out;
399};
400
Christopher Ferris12e1f282016-02-04 12:35:07 -0800401#define AMDGPU_GEM_OP_GET_GEM_CREATE_INFO 0
402#define AMDGPU_GEM_OP_SET_PLACEMENT 1
403
404/* Sets or returns a value associated with a buffer. */
405struct drm_amdgpu_gem_op {
406 /** GEM object handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700407 __u32 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800408 /** AMDGPU_GEM_OP_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700409 __u32 op;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800410 /** Input or return value */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700411 __u64 value;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800412};
413
414#define AMDGPU_VA_OP_MAP 1
415#define AMDGPU_VA_OP_UNMAP 2
Christopher Ferris0543f742017-07-26 13:09:46 -0700416#define AMDGPU_VA_OP_CLEAR 3
417#define AMDGPU_VA_OP_REPLACE 4
Christopher Ferris12e1f282016-02-04 12:35:07 -0800418
419/* Delay the page table update till the next CS */
420#define AMDGPU_VM_DELAY_UPDATE (1 << 0)
421
422/* Mapping flags */
423/* readable mapping */
424#define AMDGPU_VM_PAGE_READABLE (1 << 1)
425/* writable mapping */
426#define AMDGPU_VM_PAGE_WRITEABLE (1 << 2)
427/* executable mapping, new for VI */
428#define AMDGPU_VM_PAGE_EXECUTABLE (1 << 3)
Christopher Ferris0543f742017-07-26 13:09:46 -0700429/* partially resident texture */
430#define AMDGPU_VM_PAGE_PRT (1 << 4)
431/* MTYPE flags use bit 5 to 8 */
432#define AMDGPU_VM_MTYPE_MASK (0xf << 5)
433/* Default MTYPE. Pre-AI must use this. Recommended for newer ASICs. */
434#define AMDGPU_VM_MTYPE_DEFAULT (0 << 5)
435/* Use NC MTYPE instead of default MTYPE */
436#define AMDGPU_VM_MTYPE_NC (1 << 5)
437/* Use WC MTYPE instead of default MTYPE */
438#define AMDGPU_VM_MTYPE_WC (2 << 5)
439/* Use CC MTYPE instead of default MTYPE */
440#define AMDGPU_VM_MTYPE_CC (3 << 5)
441/* Use UC MTYPE instead of default MTYPE */
442#define AMDGPU_VM_MTYPE_UC (4 << 5)
Christopher Ferris12e1f282016-02-04 12:35:07 -0800443
444struct drm_amdgpu_gem_va {
445 /** GEM object handle */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700446 __u32 handle;
447 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800448 /** AMDGPU_VA_OP_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700449 __u32 operation;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800450 /** AMDGPU_VM_PAGE_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700451 __u32 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800452 /** va address to assign . Must be correctly aligned.*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700453 __u64 va_address;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800454 /** Specify offset inside of BO to assign. Must be correctly aligned.*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700455 __u64 offset_in_bo;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800456 /** Specify mapping size. Must be correctly aligned. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700457 __u64 map_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800458};
459
460#define AMDGPU_HW_IP_GFX 0
461#define AMDGPU_HW_IP_COMPUTE 1
462#define AMDGPU_HW_IP_DMA 2
463#define AMDGPU_HW_IP_UVD 3
464#define AMDGPU_HW_IP_VCE 4
Christopher Ferris0543f742017-07-26 13:09:46 -0700465#define AMDGPU_HW_IP_UVD_ENC 5
Christopher Ferris25981132017-11-14 16:53:49 -0800466#define AMDGPU_HW_IP_VCN_DEC 6
467#define AMDGPU_HW_IP_VCN_ENC 7
468#define AMDGPU_HW_IP_NUM 8
Christopher Ferris12e1f282016-02-04 12:35:07 -0800469
470#define AMDGPU_HW_IP_INSTANCE_MAX_COUNT 1
471
472#define AMDGPU_CHUNK_ID_IB 0x01
473#define AMDGPU_CHUNK_ID_FENCE 0x02
474#define AMDGPU_CHUNK_ID_DEPENDENCIES 0x03
Christopher Ferris25981132017-11-14 16:53:49 -0800475#define AMDGPU_CHUNK_ID_SYNCOBJ_IN 0x04
476#define AMDGPU_CHUNK_ID_SYNCOBJ_OUT 0x05
Christopher Ferris12e1f282016-02-04 12:35:07 -0800477
478struct drm_amdgpu_cs_chunk {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700479 __u32 chunk_id;
480 __u32 length_dw;
481 __u64 chunk_data;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800482};
483
484struct drm_amdgpu_cs_in {
485 /** Rendering context id */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700486 __u32 ctx_id;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800487 /** Handle of resource list associated with CS */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700488 __u32 bo_list_handle;
489 __u32 num_chunks;
490 __u32 _pad;
491 /** this points to __u64 * which point to cs chunks */
492 __u64 chunks;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800493};
494
495struct drm_amdgpu_cs_out {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700496 __u64 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800497};
498
499union drm_amdgpu_cs {
500 struct drm_amdgpu_cs_in in;
501 struct drm_amdgpu_cs_out out;
502};
503
504/* Specify flags to be used for IB */
505
506/* This IB should be submitted to CE */
507#define AMDGPU_IB_FLAG_CE (1<<0)
508
Christopher Ferris0543f742017-07-26 13:09:46 -0700509/* Preamble flag, which means the IB could be dropped if no context switch */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800510#define AMDGPU_IB_FLAG_PREAMBLE (1<<1)
511
Christopher Ferris0543f742017-07-26 13:09:46 -0700512/* Preempt flag, IB should set Pre_enb bit if PREEMPT flag detected */
513#define AMDGPU_IB_FLAG_PREEMPT (1<<2)
514
Christopher Ferris12e1f282016-02-04 12:35:07 -0800515struct drm_amdgpu_cs_chunk_ib {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700516 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800517 /** AMDGPU_IB_FLAG_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700518 __u32 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800519 /** Virtual address to begin IB execution */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700520 __u64 va_start;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800521 /** Size of submission */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700522 __u32 ib_bytes;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800523 /** HW IP to submit to */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700524 __u32 ip_type;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800525 /** HW IP index of the same type to submit to */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700526 __u32 ip_instance;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800527 /** Ring index to submit to */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700528 __u32 ring;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800529};
530
531struct drm_amdgpu_cs_chunk_dep {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700532 __u32 ip_type;
533 __u32 ip_instance;
534 __u32 ring;
535 __u32 ctx_id;
536 __u64 handle;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800537};
538
539struct drm_amdgpu_cs_chunk_fence {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700540 __u32 handle;
541 __u32 offset;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800542};
543
Christopher Ferris25981132017-11-14 16:53:49 -0800544struct drm_amdgpu_cs_chunk_sem {
545 __u32 handle;
546};
547
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800548#define AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ 0
549#define AMDGPU_FENCE_TO_HANDLE_GET_SYNCOBJ_FD 1
550#define AMDGPU_FENCE_TO_HANDLE_GET_SYNC_FILE_FD 2
551
552union drm_amdgpu_fence_to_handle {
553 struct {
554 struct drm_amdgpu_fence fence;
555 __u32 what;
556 __u32 pad;
557 } in;
558 struct {
559 __u32 handle;
560 } out;
561};
562
Christopher Ferris12e1f282016-02-04 12:35:07 -0800563struct drm_amdgpu_cs_chunk_data {
564 union {
565 struct drm_amdgpu_cs_chunk_ib ib_data;
566 struct drm_amdgpu_cs_chunk_fence fence_data;
567 };
568};
569
570/**
571 * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU
572 *
573 */
574#define AMDGPU_IDS_FLAGS_FUSION 0x1
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800575#define AMDGPU_IDS_FLAGS_PREEMPTION 0x2
Christopher Ferris12e1f282016-02-04 12:35:07 -0800576
577/* indicate if acceleration can be working */
578#define AMDGPU_INFO_ACCEL_WORKING 0x00
579/* get the crtc_id from the mode object id? */
580#define AMDGPU_INFO_CRTC_FROM_ID 0x01
581/* query hw IP info */
582#define AMDGPU_INFO_HW_IP_INFO 0x02
583/* query hw IP instance count for the specified type */
584#define AMDGPU_INFO_HW_IP_COUNT 0x03
585/* timestamp for GL_ARB_timer_query */
586#define AMDGPU_INFO_TIMESTAMP 0x05
587/* Query the firmware version */
588#define AMDGPU_INFO_FW_VERSION 0x0e
589 /* Subquery id: Query VCE firmware version */
590 #define AMDGPU_INFO_FW_VCE 0x1
591 /* Subquery id: Query UVD firmware version */
592 #define AMDGPU_INFO_FW_UVD 0x2
593 /* Subquery id: Query GMC firmware version */
594 #define AMDGPU_INFO_FW_GMC 0x03
595 /* Subquery id: Query GFX ME firmware version */
596 #define AMDGPU_INFO_FW_GFX_ME 0x04
597 /* Subquery id: Query GFX PFP firmware version */
598 #define AMDGPU_INFO_FW_GFX_PFP 0x05
599 /* Subquery id: Query GFX CE firmware version */
600 #define AMDGPU_INFO_FW_GFX_CE 0x06
601 /* Subquery id: Query GFX RLC firmware version */
602 #define AMDGPU_INFO_FW_GFX_RLC 0x07
603 /* Subquery id: Query GFX MEC firmware version */
604 #define AMDGPU_INFO_FW_GFX_MEC 0x08
605 /* Subquery id: Query SMC firmware version */
606 #define AMDGPU_INFO_FW_SMC 0x0a
607 /* Subquery id: Query SDMA firmware version */
608 #define AMDGPU_INFO_FW_SDMA 0x0b
Christopher Ferris0543f742017-07-26 13:09:46 -0700609 /* Subquery id: Query PSP SOS firmware version */
610 #define AMDGPU_INFO_FW_SOS 0x0c
611 /* Subquery id: Query PSP ASD firmware version */
612 #define AMDGPU_INFO_FW_ASD 0x0d
Christopher Ferris12e1f282016-02-04 12:35:07 -0800613/* number of bytes moved for TTM migration */
614#define AMDGPU_INFO_NUM_BYTES_MOVED 0x0f
615/* the used VRAM size */
616#define AMDGPU_INFO_VRAM_USAGE 0x10
617/* the used GTT size */
618#define AMDGPU_INFO_GTT_USAGE 0x11
619/* Information about GDS, etc. resource configuration */
620#define AMDGPU_INFO_GDS_CONFIG 0x13
621/* Query information about VRAM and GTT domains */
622#define AMDGPU_INFO_VRAM_GTT 0x14
623/* Query information about register in MMR address space*/
624#define AMDGPU_INFO_READ_MMR_REG 0x15
625/* Query information about device: rev id, family, etc. */
626#define AMDGPU_INFO_DEV_INFO 0x16
627/* visible vram usage */
628#define AMDGPU_INFO_VIS_VRAM_USAGE 0x17
Christopher Ferris33185402017-01-13 13:28:52 -0800629/* number of TTM buffer evictions */
630#define AMDGPU_INFO_NUM_EVICTIONS 0x18
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800631/* Query memory about VRAM and GTT domains */
632#define AMDGPU_INFO_MEMORY 0x19
633/* Query vce clock table */
634#define AMDGPU_INFO_VCE_CLOCK_TABLE 0x1A
635/* Query vbios related information */
636#define AMDGPU_INFO_VBIOS 0x1B
637 /* Subquery id: Query vbios size */
638 #define AMDGPU_INFO_VBIOS_SIZE 0x1
639 /* Subquery id: Query vbios image */
640 #define AMDGPU_INFO_VBIOS_IMAGE 0x2
Christopher Ferris0543f742017-07-26 13:09:46 -0700641/* Query UVD handles */
642#define AMDGPU_INFO_NUM_HANDLES 0x1C
643/* Query sensor related information */
644#define AMDGPU_INFO_SENSOR 0x1D
645 /* Subquery id: Query GPU shader clock */
646 #define AMDGPU_INFO_SENSOR_GFX_SCLK 0x1
647 /* Subquery id: Query GPU memory clock */
648 #define AMDGPU_INFO_SENSOR_GFX_MCLK 0x2
649 /* Subquery id: Query GPU temperature */
650 #define AMDGPU_INFO_SENSOR_GPU_TEMP 0x3
651 /* Subquery id: Query GPU load */
652 #define AMDGPU_INFO_SENSOR_GPU_LOAD 0x4
653 /* Subquery id: Query average GPU power */
654 #define AMDGPU_INFO_SENSOR_GPU_AVG_POWER 0x5
655 /* Subquery id: Query northbridge voltage */
656 #define AMDGPU_INFO_SENSOR_VDDNB 0x6
657 /* Subquery id: Query graphics voltage */
658 #define AMDGPU_INFO_SENSOR_VDDGFX 0x7
Christopher Ferris25981132017-11-14 16:53:49 -0800659/* Number of VRAM page faults on CPU access. */
660#define AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS 0x1E
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800661#define AMDGPU_INFO_VRAM_LOST_COUNTER 0x1F
Christopher Ferris12e1f282016-02-04 12:35:07 -0800662
663#define AMDGPU_INFO_MMR_SE_INDEX_SHIFT 0
664#define AMDGPU_INFO_MMR_SE_INDEX_MASK 0xff
665#define AMDGPU_INFO_MMR_SH_INDEX_SHIFT 8
666#define AMDGPU_INFO_MMR_SH_INDEX_MASK 0xff
667
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800668struct drm_amdgpu_query_fw {
669 /** AMDGPU_INFO_FW_* */
670 __u32 fw_type;
671 /**
672 * Index of the IP if there are more IPs of
673 * the same type.
674 */
675 __u32 ip_instance;
676 /**
677 * Index of the engine. Whether this is used depends
678 * on the firmware type. (e.g. MEC, SDMA)
679 */
680 __u32 index;
681 __u32 _pad;
682};
683
Christopher Ferris12e1f282016-02-04 12:35:07 -0800684/* Input structure for the INFO ioctl */
685struct drm_amdgpu_info {
686 /* Where the return value will be stored */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700687 __u64 return_pointer;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800688 /* The size of the return value. Just like "size" in "snprintf",
689 * it limits how many bytes the kernel can write. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700690 __u32 return_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800691 /* The query request id. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700692 __u32 query;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800693
694 union {
695 struct {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700696 __u32 id;
697 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800698 } mode_crtc;
699
700 struct {
701 /** AMDGPU_HW_IP_* */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700702 __u32 type;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800703 /**
704 * Index of the IP if there are more IPs of the same
705 * type. Ignored by AMDGPU_INFO_HW_IP_COUNT.
706 */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700707 __u32 ip_instance;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800708 } query_hw_ip;
709
710 struct {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700711 __u32 dword_offset;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800712 /** number of registers to read */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700713 __u32 count;
714 __u32 instance;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800715 /** For future use, no flags defined so far */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700716 __u32 flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800717 } read_mmr_reg;
718
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800719 struct drm_amdgpu_query_fw query_fw;
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800720
721 struct {
722 __u32 type;
723 __u32 offset;
724 } vbios_info;
Christopher Ferris0543f742017-07-26 13:09:46 -0700725
726 struct {
727 __u32 type;
728 } sensor_info;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800729 };
730};
731
732struct drm_amdgpu_info_gds {
733 /** GDS GFX partition size */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700734 __u32 gds_gfx_partition_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800735 /** GDS compute partition size */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700736 __u32 compute_partition_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800737 /** total GDS memory size */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700738 __u32 gds_total_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800739 /** GWS size per GFX partition */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700740 __u32 gws_per_gfx_partition;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800741 /** GSW size per compute partition */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700742 __u32 gws_per_compute_partition;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800743 /** OA size per GFX partition */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700744 __u32 oa_per_gfx_partition;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800745 /** OA size per compute partition */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700746 __u32 oa_per_compute_partition;
747 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800748};
749
750struct drm_amdgpu_info_vram_gtt {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700751 __u64 vram_size;
752 __u64 vram_cpu_accessible_size;
753 __u64 gtt_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800754};
755
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800756struct drm_amdgpu_heap_info {
757 /** max. physical memory */
758 __u64 total_heap_size;
759
760 /** Theoretical max. available memory in the given heap */
761 __u64 usable_heap_size;
762
763 /**
764 * Number of bytes allocated in the heap. This includes all processes
765 * and private allocations in the kernel. It changes when new buffers
766 * are allocated, freed, and moved. It cannot be larger than
767 * heap_size.
768 */
769 __u64 heap_usage;
770
771 /**
772 * Theoretical possible max. size of buffer which
773 * could be allocated in the given heap
774 */
775 __u64 max_allocation;
776};
777
778struct drm_amdgpu_memory_info {
779 struct drm_amdgpu_heap_info vram;
780 struct drm_amdgpu_heap_info cpu_accessible_vram;
781 struct drm_amdgpu_heap_info gtt;
782};
783
Christopher Ferris12e1f282016-02-04 12:35:07 -0800784struct drm_amdgpu_info_firmware {
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700785 __u32 ver;
786 __u32 feature;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800787};
788
789#define AMDGPU_VRAM_TYPE_UNKNOWN 0
790#define AMDGPU_VRAM_TYPE_GDDR1 1
791#define AMDGPU_VRAM_TYPE_DDR2 2
792#define AMDGPU_VRAM_TYPE_GDDR3 3
793#define AMDGPU_VRAM_TYPE_GDDR4 4
794#define AMDGPU_VRAM_TYPE_GDDR5 5
795#define AMDGPU_VRAM_TYPE_HBM 6
796#define AMDGPU_VRAM_TYPE_DDR3 7
797
798struct drm_amdgpu_info_device {
799 /** PCI Device ID */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700800 __u32 device_id;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800801 /** Internal chip revision: A0, A1, etc.) */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700802 __u32 chip_rev;
803 __u32 external_rev;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800804 /** Revision id in PCI Config space */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700805 __u32 pci_rev;
806 __u32 family;
807 __u32 num_shader_engines;
808 __u32 num_shader_arrays_per_engine;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800809 /* in KHz */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700810 __u32 gpu_counter_freq;
811 __u64 max_engine_clock;
812 __u64 max_memory_clock;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800813 /* cu information */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700814 __u32 cu_active_number;
Christopher Ferris25981132017-11-14 16:53:49 -0800815 /* NOTE: cu_ao_mask is INVALID, DON'T use it */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700816 __u32 cu_ao_mask;
817 __u32 cu_bitmap[4][4];
Christopher Ferris12e1f282016-02-04 12:35:07 -0800818 /** Render backend pipe mask. One render backend is CB+DB. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700819 __u32 enabled_rb_pipes_mask;
820 __u32 num_rb_pipes;
821 __u32 num_hw_gfx_contexts;
822 __u32 _pad;
823 __u64 ids_flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800824 /** Starting virtual address for UMDs. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700825 __u64 virtual_address_offset;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800826 /** The maximum virtual address */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700827 __u64 virtual_address_max;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800828 /** Required alignment of virtual addresses. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700829 __u32 virtual_address_alignment;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800830 /** Page table entry - fragment size */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700831 __u32 pte_fragment_size;
832 __u32 gart_page_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800833 /** constant engine ram size*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700834 __u32 ce_ram_size;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800835 /** video memory type info*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700836 __u32 vram_type;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800837 /** video memory bit width*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700838 __u32 vram_bit_width;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800839 /* vce harvesting instance */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700840 __u32 vce_harvest_config;
Christopher Ferris0543f742017-07-26 13:09:46 -0700841 /* gfx double offchip LDS buffers */
842 __u32 gc_double_offchip_lds_buf;
843 /* NGG Primitive Buffer */
844 __u64 prim_buf_gpu_addr;
845 /* NGG Position Buffer */
846 __u64 pos_buf_gpu_addr;
847 /* NGG Control Sideband */
848 __u64 cntl_sb_buf_gpu_addr;
849 /* NGG Parameter Cache */
850 __u64 param_buf_gpu_addr;
851 __u32 prim_buf_size;
852 __u32 pos_buf_size;
853 __u32 cntl_sb_buf_size;
854 __u32 param_buf_size;
855 /* wavefront size*/
856 __u32 wave_front_size;
857 /* shader visible vgprs*/
858 __u32 num_shader_visible_vgprs;
859 /* CU per shader array*/
860 __u32 num_cu_per_sh;
861 /* number of tcc blocks*/
862 __u32 num_tcc_blocks;
863 /* gs vgt table depth*/
864 __u32 gs_vgt_table_depth;
865 /* gs primitive buffer depth*/
866 __u32 gs_prim_buffer_depth;
867 /* max gs wavefront per vgt*/
868 __u32 max_gs_waves_per_vgt;
869 __u32 _pad1;
Christopher Ferris25981132017-11-14 16:53:49 -0800870 /* always on cu bitmap */
871 __u32 cu_ao_bitmap[4][4];
Christopher Ferris12e1f282016-02-04 12:35:07 -0800872};
873
874struct drm_amdgpu_info_hw_ip {
875 /** Version of h/w IP */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700876 __u32 hw_ip_version_major;
877 __u32 hw_ip_version_minor;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800878 /** Capabilities */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700879 __u64 capabilities_flags;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800880 /** command buffer address start alignment*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700881 __u32 ib_start_alignment;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800882 /** command buffer size alignment*/
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700883 __u32 ib_size_alignment;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800884 /** Bitmask of available rings. Bit 0 means ring 0, etc. */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700885 __u32 available_rings;
886 __u32 _pad;
Christopher Ferris12e1f282016-02-04 12:35:07 -0800887};
888
Christopher Ferris0543f742017-07-26 13:09:46 -0700889struct drm_amdgpu_info_num_handles {
890 /** Max handles as supported by firmware for UVD */
891 __u32 uvd_max_handles;
892 /** Handles currently in use for UVD */
893 __u32 uvd_used_handles;
894};
895
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -0800896#define AMDGPU_VCE_CLOCK_TABLE_ENTRIES 6
897
898struct drm_amdgpu_info_vce_clock_table_entry {
899 /** System clock */
900 __u32 sclk;
901 /** Memory clock */
902 __u32 mclk;
903 /** VCE clock */
904 __u32 eclk;
905 __u32 pad;
906};
907
908struct drm_amdgpu_info_vce_clock_table {
909 struct drm_amdgpu_info_vce_clock_table_entry entries[AMDGPU_VCE_CLOCK_TABLE_ENTRIES];
910 __u32 num_valid_entries;
911 __u32 pad;
912};
913
Christopher Ferris12e1f282016-02-04 12:35:07 -0800914/*
915 * Supported GPU families
916 */
917#define AMDGPU_FAMILY_UNKNOWN 0
Christopher Ferris33185402017-01-13 13:28:52 -0800918#define AMDGPU_FAMILY_SI 110 /* Hainan, Oland, Verde, Pitcairn, Tahiti */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800919#define AMDGPU_FAMILY_CI 120 /* Bonaire, Hawaii */
920#define AMDGPU_FAMILY_KV 125 /* Kaveri, Kabini, Mullins */
921#define AMDGPU_FAMILY_VI 130 /* Iceland, Tonga */
922#define AMDGPU_FAMILY_CZ 135 /* Carrizo, Stoney */
Christopher Ferris0543f742017-07-26 13:09:46 -0700923#define AMDGPU_FAMILY_AI 141 /* Vega10 */
Christopher Ferris25981132017-11-14 16:53:49 -0800924#define AMDGPU_FAMILY_RV 142 /* Raven */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800925
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700926#if defined(__cplusplus)
927}
928#endif
929
Christopher Ferris12e1f282016-02-04 12:35:07 -0800930#endif