Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 1 | /* 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 | |
Michel Dänzer | b3fcf36a | 2015-07-22 17:29:01 +0900 | [diff] [blame] | 35 | #include "drm.h" |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 36 | |
Emil Velikov | cfa7152 | 2016-04-07 18:45:18 +0100 | [diff] [blame] | 37 | #if defined(__cplusplus) |
| 38 | extern "C" { |
| 39 | #endif |
| 40 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 41 | #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 |
Junwei Zhang | eef18a8 | 2016-11-04 16:16:10 -0400 | [diff] [blame] | 53 | #define DRM_AMDGPU_WAIT_FENCES 0x12 |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 54 | |
| 55 | #define DRM_IOCTL_AMDGPU_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_CREATE, union drm_amdgpu_gem_create) |
| 56 | #define DRM_IOCTL_AMDGPU_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_MMAP, union drm_amdgpu_gem_mmap) |
| 57 | #define DRM_IOCTL_AMDGPU_CTX DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_CTX, union drm_amdgpu_ctx) |
| 58 | #define DRM_IOCTL_AMDGPU_BO_LIST DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_BO_LIST, union drm_amdgpu_bo_list) |
| 59 | #define DRM_IOCTL_AMDGPU_CS DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_CS, union drm_amdgpu_cs) |
| 60 | #define DRM_IOCTL_AMDGPU_INFO DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_INFO, struct drm_amdgpu_info) |
| 61 | #define DRM_IOCTL_AMDGPU_GEM_METADATA DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_METADATA, struct drm_amdgpu_gem_metadata) |
| 62 | #define DRM_IOCTL_AMDGPU_GEM_WAIT_IDLE DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_WAIT_IDLE, union drm_amdgpu_gem_wait_idle) |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 63 | #define DRM_IOCTL_AMDGPU_GEM_VA DRM_IOW(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_VA, struct drm_amdgpu_gem_va) |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 64 | #define DRM_IOCTL_AMDGPU_WAIT_CS DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_CS, union drm_amdgpu_wait_cs) |
| 65 | #define DRM_IOCTL_AMDGPU_GEM_OP DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_OP, struct drm_amdgpu_gem_op) |
| 66 | #define DRM_IOCTL_AMDGPU_GEM_USERPTR DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_GEM_USERPTR, struct drm_amdgpu_gem_userptr) |
Junwei Zhang | eef18a8 | 2016-11-04 16:16:10 -0400 | [diff] [blame] | 67 | #define DRM_IOCTL_AMDGPU_WAIT_FENCES DRM_IOWR(DRM_COMMAND_BASE + DRM_AMDGPU_WAIT_FENCES, union drm_amdgpu_wait_fences) |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 68 | |
| 69 | #define AMDGPU_GEM_DOMAIN_CPU 0x1 |
| 70 | #define AMDGPU_GEM_DOMAIN_GTT 0x2 |
| 71 | #define AMDGPU_GEM_DOMAIN_VRAM 0x4 |
| 72 | #define AMDGPU_GEM_DOMAIN_GDS 0x8 |
| 73 | #define AMDGPU_GEM_DOMAIN_GWS 0x10 |
| 74 | #define AMDGPU_GEM_DOMAIN_OA 0x20 |
| 75 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 76 | /* Flag that CPU access will be required for the case of VRAM domain */ |
| 77 | #define AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED (1 << 0) |
| 78 | /* Flag that CPU access will not work, this VRAM domain is invisible */ |
| 79 | #define AMDGPU_GEM_CREATE_NO_CPU_ACCESS (1 << 1) |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 80 | /* Flag that USWC attributes should be used for GTT */ |
Jammy Zhou | 8867128 | 2015-05-06 18:44:29 +0800 | [diff] [blame] | 81 | #define AMDGPU_GEM_CREATE_CPU_GTT_USWC (1 << 2) |
Flora Cui | 4fea83f | 2016-07-20 14:44:38 +0800 | [diff] [blame] | 82 | /* Flag that the memory should be in VRAM and cleared */ |
| 83 | #define AMDGPU_GEM_CREATE_VRAM_CLEARED (1 << 3) |
Chunming Zhou | e7893c4 | 2016-07-26 14:13:21 +0800 | [diff] [blame] | 84 | /* Flag that create shadow bo(GTT) while allocating vram bo */ |
| 85 | #define AMDGPU_GEM_CREATE_SHADOW (1 << 4) |
Christian König | 03f48dd | 2016-08-15 17:00:22 +0200 | [diff] [blame] | 86 | /* Flag that allocating the BO should use linear VRAM */ |
| 87 | #define AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS (1 << 5) |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 88 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 89 | struct drm_amdgpu_gem_create_in { |
| 90 | /** the requested memory size */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 91 | __u64 bo_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 92 | /** physical start_addr alignment in bytes for some HW requirements */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 93 | __u64 alignment; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 94 | /** the requested memory domains */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 95 | __u64 domains; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 96 | /** allocation flags */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 97 | __u64 domain_flags; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | struct drm_amdgpu_gem_create_out { |
| 101 | /** returned GEM object handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 102 | __u32 handle; |
| 103 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | union drm_amdgpu_gem_create { |
| 107 | struct drm_amdgpu_gem_create_in in; |
| 108 | struct drm_amdgpu_gem_create_out out; |
| 109 | }; |
| 110 | |
| 111 | /** Opcode to create new residency list. */ |
| 112 | #define AMDGPU_BO_LIST_OP_CREATE 0 |
| 113 | /** Opcode to destroy previously created residency list */ |
| 114 | #define AMDGPU_BO_LIST_OP_DESTROY 1 |
| 115 | /** Opcode to update resource information in the list */ |
| 116 | #define AMDGPU_BO_LIST_OP_UPDATE 2 |
| 117 | |
| 118 | struct drm_amdgpu_bo_list_in { |
| 119 | /** Type of operation */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 120 | __u32 operation; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 121 | /** Handle of list or 0 if we want to create one */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 122 | __u32 list_handle; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 123 | /** Number of BOs in list */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 124 | __u32 bo_number; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 125 | /** Size of each element describing BO */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 126 | __u32 bo_info_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 127 | /** Pointer to array describing BOs */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 128 | __u64 bo_info_ptr; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 129 | }; |
| 130 | |
| 131 | struct drm_amdgpu_bo_list_entry { |
| 132 | /** Handle of BO */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 133 | __u32 bo_handle; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 134 | /** New (if specified) BO priority to be used during migration */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 135 | __u32 bo_priority; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | struct drm_amdgpu_bo_list_out { |
| 139 | /** Handle of resource list */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 140 | __u32 list_handle; |
| 141 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | union drm_amdgpu_bo_list { |
| 145 | struct drm_amdgpu_bo_list_in in; |
| 146 | struct drm_amdgpu_bo_list_out out; |
| 147 | }; |
| 148 | |
| 149 | /* context related */ |
| 150 | #define AMDGPU_CTX_OP_ALLOC_CTX 1 |
| 151 | #define AMDGPU_CTX_OP_FREE_CTX 2 |
| 152 | #define AMDGPU_CTX_OP_QUERY_STATE 3 |
| 153 | |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 154 | /* GPU reset status */ |
| 155 | #define AMDGPU_CTX_NO_RESET 0 |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 156 | /* this the context caused it */ |
| 157 | #define AMDGPU_CTX_GUILTY_RESET 1 |
| 158 | /* some other context caused it */ |
| 159 | #define AMDGPU_CTX_INNOCENT_RESET 2 |
| 160 | /* unknown cause */ |
| 161 | #define AMDGPU_CTX_UNKNOWN_RESET 3 |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 162 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 163 | struct drm_amdgpu_ctx_in { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 164 | /** AMDGPU_CTX_OP_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 165 | __u32 op; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 166 | /** For future use, no flags defined so far */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 167 | __u32 flags; |
| 168 | __u32 ctx_id; |
| 169 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | union drm_amdgpu_ctx_out { |
| 173 | struct { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 174 | __u32 ctx_id; |
| 175 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 176 | } alloc; |
| 177 | |
| 178 | struct { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 179 | /** For future use, no flags defined so far */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 180 | __u64 flags; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 181 | /** Number of resets caused by this context so far. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 182 | __u32 hangs; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 183 | /** Reset status since the last call of the ioctl. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 184 | __u32 reset_status; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 185 | } state; |
| 186 | }; |
| 187 | |
| 188 | union drm_amdgpu_ctx { |
| 189 | struct drm_amdgpu_ctx_in in; |
| 190 | union drm_amdgpu_ctx_out out; |
| 191 | }; |
| 192 | |
| 193 | /* |
| 194 | * This is not a reliable API and you should expect it to fail for any |
| 195 | * number of reasons and have fallback path that do not use userptr to |
| 196 | * perform any operation. |
| 197 | */ |
| 198 | #define AMDGPU_GEM_USERPTR_READONLY (1 << 0) |
| 199 | #define AMDGPU_GEM_USERPTR_ANONONLY (1 << 1) |
| 200 | #define AMDGPU_GEM_USERPTR_VALIDATE (1 << 2) |
| 201 | #define AMDGPU_GEM_USERPTR_REGISTER (1 << 3) |
| 202 | |
| 203 | struct drm_amdgpu_gem_userptr { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 204 | __u64 addr; |
| 205 | __u64 size; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 206 | /* AMDGPU_GEM_USERPTR_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 207 | __u32 flags; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 208 | /* Resulting GEM handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 209 | __u32 handle; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 210 | }; |
| 211 | |
Marek Olšák | fbd76d5 | 2015-05-14 23:48:26 +0200 | [diff] [blame] | 212 | /* same meaning as the GB_TILE_MODE and GL_MACRO_TILE_MODE fields */ |
| 213 | #define AMDGPU_TILING_ARRAY_MODE_SHIFT 0 |
| 214 | #define AMDGPU_TILING_ARRAY_MODE_MASK 0xf |
| 215 | #define AMDGPU_TILING_PIPE_CONFIG_SHIFT 4 |
| 216 | #define AMDGPU_TILING_PIPE_CONFIG_MASK 0x1f |
| 217 | #define AMDGPU_TILING_TILE_SPLIT_SHIFT 9 |
| 218 | #define AMDGPU_TILING_TILE_SPLIT_MASK 0x7 |
| 219 | #define AMDGPU_TILING_MICRO_TILE_MODE_SHIFT 12 |
| 220 | #define AMDGPU_TILING_MICRO_TILE_MODE_MASK 0x7 |
| 221 | #define AMDGPU_TILING_BANK_WIDTH_SHIFT 15 |
| 222 | #define AMDGPU_TILING_BANK_WIDTH_MASK 0x3 |
| 223 | #define AMDGPU_TILING_BANK_HEIGHT_SHIFT 17 |
| 224 | #define AMDGPU_TILING_BANK_HEIGHT_MASK 0x3 |
| 225 | #define AMDGPU_TILING_MACRO_TILE_ASPECT_SHIFT 19 |
| 226 | #define AMDGPU_TILING_MACRO_TILE_ASPECT_MASK 0x3 |
| 227 | #define AMDGPU_TILING_NUM_BANKS_SHIFT 21 |
| 228 | #define AMDGPU_TILING_NUM_BANKS_MASK 0x3 |
| 229 | |
| 230 | #define AMDGPU_TILING_SET(field, value) \ |
| 231 | (((value) & AMDGPU_TILING_##field##_MASK) << AMDGPU_TILING_##field##_SHIFT) |
| 232 | #define AMDGPU_TILING_GET(value, field) \ |
| 233 | (((value) >> AMDGPU_TILING_##field##_SHIFT) & AMDGPU_TILING_##field##_MASK) |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 234 | |
| 235 | #define AMDGPU_GEM_METADATA_OP_SET_METADATA 1 |
| 236 | #define AMDGPU_GEM_METADATA_OP_GET_METADATA 2 |
| 237 | |
| 238 | /** The same structure is shared for input/output */ |
| 239 | struct drm_amdgpu_gem_metadata { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 240 | /** GEM Object handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 241 | __u32 handle; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 242 | /** Do we want get or set metadata */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 243 | __u32 op; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 244 | struct { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 245 | /** For future use, no flags defined so far */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 246 | __u64 flags; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 247 | /** family specific tiling info */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 248 | __u64 tiling_info; |
| 249 | __u32 data_size_bytes; |
| 250 | __u32 data[64]; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 251 | } data; |
| 252 | }; |
| 253 | |
| 254 | struct drm_amdgpu_gem_mmap_in { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 255 | /** the GEM object handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 256 | __u32 handle; |
| 257 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 258 | }; |
| 259 | |
| 260 | struct drm_amdgpu_gem_mmap_out { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 261 | /** mmap offset from the vma offset manager */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 262 | __u64 addr_ptr; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | union drm_amdgpu_gem_mmap { |
| 266 | struct drm_amdgpu_gem_mmap_in in; |
| 267 | struct drm_amdgpu_gem_mmap_out out; |
| 268 | }; |
| 269 | |
| 270 | struct drm_amdgpu_gem_wait_idle_in { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 271 | /** GEM object handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 272 | __u32 handle; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 273 | /** For future use, no flags defined so far */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 274 | __u32 flags; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 275 | /** Absolute timeout to wait */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 276 | __u64 timeout; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 277 | }; |
| 278 | |
| 279 | struct drm_amdgpu_gem_wait_idle_out { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 280 | /** BO status: 0 - BO is idle, 1 - BO is busy */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 281 | __u32 status; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 282 | /** Returned current memory domain */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 283 | __u32 domain; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 284 | }; |
| 285 | |
| 286 | union drm_amdgpu_gem_wait_idle { |
| 287 | struct drm_amdgpu_gem_wait_idle_in in; |
| 288 | struct drm_amdgpu_gem_wait_idle_out out; |
| 289 | }; |
| 290 | |
| 291 | struct drm_amdgpu_wait_cs_in { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 292 | /** Command submission handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 293 | __u64 handle; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 294 | /** Absolute timeout to wait */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 295 | __u64 timeout; |
| 296 | __u32 ip_type; |
| 297 | __u32 ip_instance; |
| 298 | __u32 ring; |
| 299 | __u32 ctx_id; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | struct drm_amdgpu_wait_cs_out { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 303 | /** CS status: 0 - CS completed, 1 - CS still busy */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 304 | __u64 status; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 305 | }; |
| 306 | |
| 307 | union drm_amdgpu_wait_cs { |
| 308 | struct drm_amdgpu_wait_cs_in in; |
| 309 | struct drm_amdgpu_wait_cs_out out; |
| 310 | }; |
| 311 | |
Junwei Zhang | eef18a8 | 2016-11-04 16:16:10 -0400 | [diff] [blame] | 312 | struct drm_amdgpu_fence { |
| 313 | __u32 ctx_id; |
| 314 | __u32 ip_type; |
| 315 | __u32 ip_instance; |
| 316 | __u32 ring; |
| 317 | __u64 seq_no; |
| 318 | }; |
| 319 | |
| 320 | struct drm_amdgpu_wait_fences_in { |
| 321 | /** This points to uint64_t * which points to fences */ |
| 322 | __u64 fences; |
| 323 | __u32 fence_count; |
| 324 | __u32 wait_all; |
| 325 | __u64 timeout_ns; |
| 326 | }; |
| 327 | |
| 328 | struct drm_amdgpu_wait_fences_out { |
| 329 | __u32 status; |
| 330 | __u32 first_signaled; |
| 331 | }; |
| 332 | |
| 333 | union drm_amdgpu_wait_fences { |
| 334 | struct drm_amdgpu_wait_fences_in in; |
| 335 | struct drm_amdgpu_wait_fences_out out; |
| 336 | }; |
| 337 | |
Marek Olšák | d8f65a2 | 2015-05-27 14:30:38 +0200 | [diff] [blame] | 338 | #define AMDGPU_GEM_OP_GET_GEM_CREATE_INFO 0 |
| 339 | #define AMDGPU_GEM_OP_SET_PLACEMENT 1 |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 340 | |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 341 | /* Sets or returns a value associated with a buffer. */ |
| 342 | struct drm_amdgpu_gem_op { |
| 343 | /** GEM object handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 344 | __u32 handle; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 345 | /** AMDGPU_GEM_OP_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 346 | __u32 op; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 347 | /** Input or return value */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 348 | __u64 value; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 349 | }; |
| 350 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 351 | #define AMDGPU_VA_OP_MAP 1 |
| 352 | #define AMDGPU_VA_OP_UNMAP 2 |
| 353 | |
Christian König | fc220f6 | 2015-06-29 17:12:20 +0200 | [diff] [blame] | 354 | /* Delay the page table update till the next CS */ |
| 355 | #define AMDGPU_VM_DELAY_UPDATE (1 << 0) |
| 356 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 357 | /* Mapping flags */ |
| 358 | /* readable mapping */ |
| 359 | #define AMDGPU_VM_PAGE_READABLE (1 << 1) |
| 360 | /* writable mapping */ |
| 361 | #define AMDGPU_VM_PAGE_WRITEABLE (1 << 2) |
| 362 | /* executable mapping, new for VI */ |
| 363 | #define AMDGPU_VM_PAGE_EXECUTABLE (1 << 3) |
| 364 | |
Christian König | 34b5f6a | 2015-06-08 15:03:00 +0200 | [diff] [blame] | 365 | struct drm_amdgpu_gem_va { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 366 | /** GEM object handle */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 367 | __u32 handle; |
| 368 | __u32 _pad; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 369 | /** AMDGPU_VA_OP_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 370 | __u32 operation; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 371 | /** AMDGPU_VM_PAGE_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 372 | __u32 flags; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 373 | /** va address to assign . Must be correctly aligned.*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 374 | __u64 va_address; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 375 | /** Specify offset inside of BO to assign. Must be correctly aligned.*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 376 | __u64 offset_in_bo; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 377 | /** Specify mapping size. Must be correctly aligned. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 378 | __u64 map_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 379 | }; |
| 380 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 381 | #define AMDGPU_HW_IP_GFX 0 |
| 382 | #define AMDGPU_HW_IP_COMPUTE 1 |
| 383 | #define AMDGPU_HW_IP_DMA 2 |
| 384 | #define AMDGPU_HW_IP_UVD 3 |
| 385 | #define AMDGPU_HW_IP_VCE 4 |
| 386 | #define AMDGPU_HW_IP_NUM 5 |
| 387 | |
| 388 | #define AMDGPU_HW_IP_INSTANCE_MAX_COUNT 1 |
| 389 | |
| 390 | #define AMDGPU_CHUNK_ID_IB 0x01 |
| 391 | #define AMDGPU_CHUNK_ID_FENCE 0x02 |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 392 | #define AMDGPU_CHUNK_ID_DEPENDENCIES 0x03 |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 393 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 394 | struct drm_amdgpu_cs_chunk { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 395 | __u32 chunk_id; |
| 396 | __u32 length_dw; |
| 397 | __u64 chunk_data; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 398 | }; |
| 399 | |
| 400 | struct drm_amdgpu_cs_in { |
| 401 | /** Rendering context id */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 402 | __u32 ctx_id; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 403 | /** Handle of resource list associated with CS */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 404 | __u32 bo_list_handle; |
| 405 | __u32 num_chunks; |
| 406 | __u32 _pad; |
| 407 | /** this points to __u64 * which point to cs chunks */ |
| 408 | __u64 chunks; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 409 | }; |
| 410 | |
| 411 | struct drm_amdgpu_cs_out { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 412 | __u64 handle; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 413 | }; |
| 414 | |
| 415 | union drm_amdgpu_cs { |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 416 | struct drm_amdgpu_cs_in in; |
| 417 | struct drm_amdgpu_cs_out out; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 418 | }; |
| 419 | |
| 420 | /* Specify flags to be used for IB */ |
| 421 | |
| 422 | /* This IB should be submitted to CE */ |
| 423 | #define AMDGPU_IB_FLAG_CE (1<<0) |
| 424 | |
Jammy Zhou | aa2bdb24 | 2015-05-11 23:49:34 +0800 | [diff] [blame] | 425 | /* CE Preamble */ |
Jammy Zhou | cab6d57 | 2015-06-06 04:49:22 +0800 | [diff] [blame] | 426 | #define AMDGPU_IB_FLAG_PREAMBLE (1<<1) |
Jammy Zhou | aa2bdb24 | 2015-05-11 23:49:34 +0800 | [diff] [blame] | 427 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 428 | struct drm_amdgpu_cs_chunk_ib { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 429 | __u32 _pad; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 430 | /** AMDGPU_IB_FLAG_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 431 | __u32 flags; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 432 | /** Virtual address to begin IB execution */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 433 | __u64 va_start; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 434 | /** Size of submission */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 435 | __u32 ib_bytes; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 436 | /** HW IP to submit to */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 437 | __u32 ip_type; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 438 | /** HW IP index of the same type to submit to */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 439 | __u32 ip_instance; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 440 | /** Ring index to submit to */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 441 | __u32 ring; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 442 | }; |
| 443 | |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 444 | struct drm_amdgpu_cs_chunk_dep { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 445 | __u32 ip_type; |
| 446 | __u32 ip_instance; |
| 447 | __u32 ring; |
| 448 | __u32 ctx_id; |
| 449 | __u64 handle; |
Christian König | 2b48d32 | 2015-06-19 17:31:29 +0200 | [diff] [blame] | 450 | }; |
| 451 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 452 | struct drm_amdgpu_cs_chunk_fence { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 453 | __u32 handle; |
| 454 | __u32 offset; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 455 | }; |
| 456 | |
| 457 | struct drm_amdgpu_cs_chunk_data { |
| 458 | union { |
| 459 | struct drm_amdgpu_cs_chunk_ib ib_data; |
| 460 | struct drm_amdgpu_cs_chunk_fence fence_data; |
| 461 | }; |
| 462 | }; |
| 463 | |
| 464 | /** |
| 465 | * Query h/w info: Flag that this is integrated (a.h.a. fusion) GPU |
| 466 | * |
| 467 | */ |
| 468 | #define AMDGPU_IDS_FLAGS_FUSION 0x1 |
Monk Liu | aafcafa | 2016-10-24 11:36:17 +0800 | [diff] [blame] | 469 | #define AMDGPU_IDS_FLAGS_PREEMPTION 0x2 |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 470 | |
| 471 | /* indicate if acceleration can be working */ |
| 472 | #define AMDGPU_INFO_ACCEL_WORKING 0x00 |
| 473 | /* get the crtc_id from the mode object id? */ |
| 474 | #define AMDGPU_INFO_CRTC_FROM_ID 0x01 |
| 475 | /* query hw IP info */ |
| 476 | #define AMDGPU_INFO_HW_IP_INFO 0x02 |
| 477 | /* query hw IP instance count for the specified type */ |
| 478 | #define AMDGPU_INFO_HW_IP_COUNT 0x03 |
| 479 | /* timestamp for GL_ARB_timer_query */ |
| 480 | #define AMDGPU_INFO_TIMESTAMP 0x05 |
| 481 | /* Query the firmware version */ |
| 482 | #define AMDGPU_INFO_FW_VERSION 0x0e |
| 483 | /* Subquery id: Query VCE firmware version */ |
| 484 | #define AMDGPU_INFO_FW_VCE 0x1 |
| 485 | /* Subquery id: Query UVD firmware version */ |
| 486 | #define AMDGPU_INFO_FW_UVD 0x2 |
| 487 | /* Subquery id: Query GMC firmware version */ |
| 488 | #define AMDGPU_INFO_FW_GMC 0x03 |
| 489 | /* Subquery id: Query GFX ME firmware version */ |
| 490 | #define AMDGPU_INFO_FW_GFX_ME 0x04 |
| 491 | /* Subquery id: Query GFX PFP firmware version */ |
| 492 | #define AMDGPU_INFO_FW_GFX_PFP 0x05 |
| 493 | /* Subquery id: Query GFX CE firmware version */ |
| 494 | #define AMDGPU_INFO_FW_GFX_CE 0x06 |
| 495 | /* Subquery id: Query GFX RLC firmware version */ |
| 496 | #define AMDGPU_INFO_FW_GFX_RLC 0x07 |
| 497 | /* Subquery id: Query GFX MEC firmware version */ |
| 498 | #define AMDGPU_INFO_FW_GFX_MEC 0x08 |
| 499 | /* Subquery id: Query SMC firmware version */ |
| 500 | #define AMDGPU_INFO_FW_SMC 0x0a |
| 501 | /* Subquery id: Query SDMA firmware version */ |
| 502 | #define AMDGPU_INFO_FW_SDMA 0x0b |
| 503 | /* number of bytes moved for TTM migration */ |
| 504 | #define AMDGPU_INFO_NUM_BYTES_MOVED 0x0f |
| 505 | /* the used VRAM size */ |
| 506 | #define AMDGPU_INFO_VRAM_USAGE 0x10 |
| 507 | /* the used GTT size */ |
| 508 | #define AMDGPU_INFO_GTT_USAGE 0x11 |
| 509 | /* Information about GDS, etc. resource configuration */ |
| 510 | #define AMDGPU_INFO_GDS_CONFIG 0x13 |
| 511 | /* Query information about VRAM and GTT domains */ |
| 512 | #define AMDGPU_INFO_VRAM_GTT 0x14 |
| 513 | /* Query information about register in MMR address space*/ |
| 514 | #define AMDGPU_INFO_READ_MMR_REG 0x15 |
| 515 | /* Query information about device: rev id, family, etc. */ |
| 516 | #define AMDGPU_INFO_DEV_INFO 0x16 |
| 517 | /* visible vram usage */ |
| 518 | #define AMDGPU_INFO_VIS_VRAM_USAGE 0x17 |
Marek Olšák | 83a59b6 | 2016-08-17 23:58:58 +0200 | [diff] [blame] | 519 | /* number of TTM buffer evictions */ |
| 520 | #define AMDGPU_INFO_NUM_EVICTIONS 0x18 |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 521 | /* Query memory about VRAM and GTT domains */ |
| 522 | #define AMDGPU_INFO_MEMORY 0x19 |
Alex Deucher | bbe8797 | 2016-10-07 12:12:46 -0400 | [diff] [blame] | 523 | /* Query vce clock table */ |
| 524 | #define AMDGPU_INFO_VCE_CLOCK_TABLE 0x1A |
Evan Quan | 40ee588 | 2016-12-07 10:05:09 +0800 | [diff] [blame] | 525 | /* Query vbios related information */ |
| 526 | #define AMDGPU_INFO_VBIOS 0x1B |
| 527 | /* Subquery id: Query vbios size */ |
| 528 | #define AMDGPU_INFO_VBIOS_SIZE 0x1 |
| 529 | /* Subquery id: Query vbios image */ |
| 530 | #define AMDGPU_INFO_VBIOS_IMAGE 0x2 |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 531 | |
| 532 | #define AMDGPU_INFO_MMR_SE_INDEX_SHIFT 0 |
| 533 | #define AMDGPU_INFO_MMR_SE_INDEX_MASK 0xff |
| 534 | #define AMDGPU_INFO_MMR_SH_INDEX_SHIFT 8 |
| 535 | #define AMDGPU_INFO_MMR_SH_INDEX_MASK 0xff |
| 536 | |
Huang Rui | 000cab9 | 2016-06-12 15:44:44 +0800 | [diff] [blame] | 537 | struct drm_amdgpu_query_fw { |
| 538 | /** AMDGPU_INFO_FW_* */ |
| 539 | __u32 fw_type; |
| 540 | /** |
| 541 | * Index of the IP if there are more IPs of |
| 542 | * the same type. |
| 543 | */ |
| 544 | __u32 ip_instance; |
| 545 | /** |
| 546 | * Index of the engine. Whether this is used depends |
| 547 | * on the firmware type. (e.g. MEC, SDMA) |
| 548 | */ |
| 549 | __u32 index; |
| 550 | __u32 _pad; |
| 551 | }; |
| 552 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 553 | /* Input structure for the INFO ioctl */ |
| 554 | struct drm_amdgpu_info { |
| 555 | /* Where the return value will be stored */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 556 | __u64 return_pointer; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 557 | /* The size of the return value. Just like "size" in "snprintf", |
| 558 | * it limits how many bytes the kernel can write. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 559 | __u32 return_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 560 | /* The query request id. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 561 | __u32 query; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 562 | |
| 563 | union { |
| 564 | struct { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 565 | __u32 id; |
| 566 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 567 | } mode_crtc; |
| 568 | |
| 569 | struct { |
| 570 | /** AMDGPU_HW_IP_* */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 571 | __u32 type; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 572 | /** |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 573 | * Index of the IP if there are more IPs of the same |
| 574 | * type. Ignored by AMDGPU_INFO_HW_IP_COUNT. |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 575 | */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 576 | __u32 ip_instance; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 577 | } query_hw_ip; |
| 578 | |
| 579 | struct { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 580 | __u32 dword_offset; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 581 | /** number of registers to read */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 582 | __u32 count; |
| 583 | __u32 instance; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 584 | /** For future use, no flags defined so far */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 585 | __u32 flags; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 586 | } read_mmr_reg; |
| 587 | |
Huang Rui | 000cab9 | 2016-06-12 15:44:44 +0800 | [diff] [blame] | 588 | struct drm_amdgpu_query_fw query_fw; |
Evan Quan | 40ee588 | 2016-12-07 10:05:09 +0800 | [diff] [blame] | 589 | |
| 590 | struct { |
| 591 | __u32 type; |
| 592 | __u32 offset; |
| 593 | } vbios_info; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 594 | }; |
| 595 | }; |
| 596 | |
| 597 | struct drm_amdgpu_info_gds { |
| 598 | /** GDS GFX partition size */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 599 | __u32 gds_gfx_partition_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 600 | /** GDS compute partition size */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 601 | __u32 compute_partition_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 602 | /** total GDS memory size */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 603 | __u32 gds_total_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 604 | /** GWS size per GFX partition */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 605 | __u32 gws_per_gfx_partition; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 606 | /** GSW size per compute partition */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 607 | __u32 gws_per_compute_partition; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 608 | /** OA size per GFX partition */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 609 | __u32 oa_per_gfx_partition; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 610 | /** OA size per compute partition */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 611 | __u32 oa_per_compute_partition; |
| 612 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 613 | }; |
| 614 | |
| 615 | struct drm_amdgpu_info_vram_gtt { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 616 | __u64 vram_size; |
| 617 | __u64 vram_cpu_accessible_size; |
| 618 | __u64 gtt_size; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 619 | }; |
| 620 | |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 621 | struct drm_amdgpu_heap_info { |
| 622 | /** max. physical memory */ |
| 623 | __u64 total_heap_size; |
| 624 | |
| 625 | /** Theoretical max. available memory in the given heap */ |
| 626 | __u64 usable_heap_size; |
| 627 | |
| 628 | /** |
| 629 | * Number of bytes allocated in the heap. This includes all processes |
| 630 | * and private allocations in the kernel. It changes when new buffers |
| 631 | * are allocated, freed, and moved. It cannot be larger than |
| 632 | * heap_size. |
| 633 | */ |
| 634 | __u64 heap_usage; |
| 635 | |
| 636 | /** |
| 637 | * Theoretical possible max. size of buffer which |
| 638 | * could be allocated in the given heap |
| 639 | */ |
| 640 | __u64 max_allocation; |
Junwei Zhang | 9f6163e | 2016-09-21 10:17:22 +0800 | [diff] [blame] | 641 | }; |
| 642 | |
Junwei Zhang | e0adf6c | 2016-09-29 09:39:10 +0800 | [diff] [blame] | 643 | struct drm_amdgpu_memory_info { |
| 644 | struct drm_amdgpu_heap_info vram; |
| 645 | struct drm_amdgpu_heap_info cpu_accessible_vram; |
| 646 | struct drm_amdgpu_heap_info gtt; |
Junwei Zhang | cfa3255 | 2016-09-21 10:33:26 +0800 | [diff] [blame] | 647 | }; |
| 648 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 649 | struct drm_amdgpu_info_firmware { |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 650 | __u32 ver; |
| 651 | __u32 feature; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 652 | }; |
| 653 | |
Ken Wang | 81c59f5 | 2015-06-03 21:02:01 +0800 | [diff] [blame] | 654 | #define AMDGPU_VRAM_TYPE_UNKNOWN 0 |
| 655 | #define AMDGPU_VRAM_TYPE_GDDR1 1 |
| 656 | #define AMDGPU_VRAM_TYPE_DDR2 2 |
| 657 | #define AMDGPU_VRAM_TYPE_GDDR3 3 |
| 658 | #define AMDGPU_VRAM_TYPE_GDDR4 4 |
| 659 | #define AMDGPU_VRAM_TYPE_GDDR5 5 |
| 660 | #define AMDGPU_VRAM_TYPE_HBM 6 |
| 661 | #define AMDGPU_VRAM_TYPE_DDR3 7 |
| 662 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 663 | struct drm_amdgpu_info_device { |
| 664 | /** PCI Device ID */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 665 | __u32 device_id; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 666 | /** Internal chip revision: A0, A1, etc.) */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 667 | __u32 chip_rev; |
| 668 | __u32 external_rev; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 669 | /** Revision id in PCI Config space */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 670 | __u32 pci_rev; |
| 671 | __u32 family; |
| 672 | __u32 num_shader_engines; |
| 673 | __u32 num_shader_arrays_per_engine; |
Christian König | 675da0d | 2015-06-09 15:54:37 +0200 | [diff] [blame] | 674 | /* in KHz */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 675 | __u32 gpu_counter_freq; |
| 676 | __u64 max_engine_clock; |
| 677 | __u64 max_memory_clock; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 678 | /* cu information */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 679 | __u32 cu_active_number; |
| 680 | __u32 cu_ao_mask; |
| 681 | __u32 cu_bitmap[4][4]; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 682 | /** Render backend pipe mask. One render backend is CB+DB. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 683 | __u32 enabled_rb_pipes_mask; |
| 684 | __u32 num_rb_pipes; |
| 685 | __u32 num_hw_gfx_contexts; |
| 686 | __u32 _pad; |
| 687 | __u64 ids_flags; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 688 | /** Starting virtual address for UMDs. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 689 | __u64 virtual_address_offset; |
Jammy Zhou | 02b70c8 | 2015-05-12 22:46:45 +0800 | [diff] [blame] | 690 | /** The maximum virtual address */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 691 | __u64 virtual_address_max; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 692 | /** Required alignment of virtual addresses. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 693 | __u32 virtual_address_alignment; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 694 | /** Page table entry - fragment size */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 695 | __u32 pte_fragment_size; |
| 696 | __u32 gart_page_size; |
Ken Wang | a101a89 | 2015-06-03 17:47:54 +0800 | [diff] [blame] | 697 | /** constant engine ram size*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 698 | __u32 ce_ram_size; |
Jammy Zhou | cab6d57 | 2015-06-06 04:49:22 +0800 | [diff] [blame] | 699 | /** video memory type info*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 700 | __u32 vram_type; |
Ken Wang | 81c59f5 | 2015-06-03 21:02:01 +0800 | [diff] [blame] | 701 | /** video memory bit width*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 702 | __u32 vram_bit_width; |
Leo Liu | fa92754 | 2015-07-13 12:46:23 -0400 | [diff] [blame] | 703 | /* vce harvesting instance */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 704 | __u32 vce_harvest_config; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 705 | }; |
| 706 | |
| 707 | struct drm_amdgpu_info_hw_ip { |
| 708 | /** Version of h/w IP */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 709 | __u32 hw_ip_version_major; |
| 710 | __u32 hw_ip_version_minor; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 711 | /** Capabilities */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 712 | __u64 capabilities_flags; |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 713 | /** command buffer address start alignment*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 714 | __u32 ib_start_alignment; |
Ken Wang | 71062f4 | 2015-06-04 21:26:57 +0800 | [diff] [blame] | 715 | /** command buffer size alignment*/ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 716 | __u32 ib_size_alignment; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 717 | /** Bitmask of available rings. Bit 0 means ring 0, etc. */ |
Mikko Rapeli | 2ce9dde | 2015-12-02 23:44:33 +0100 | [diff] [blame] | 718 | __u32 available_rings; |
| 719 | __u32 _pad; |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 720 | }; |
| 721 | |
Alex Deucher | bbe8797 | 2016-10-07 12:12:46 -0400 | [diff] [blame] | 722 | #define AMDGPU_VCE_CLOCK_TABLE_ENTRIES 6 |
| 723 | |
| 724 | struct drm_amdgpu_info_vce_clock_table_entry { |
| 725 | /** System clock */ |
| 726 | __u32 sclk; |
| 727 | /** Memory clock */ |
| 728 | __u32 mclk; |
| 729 | /** VCE clock */ |
| 730 | __u32 eclk; |
| 731 | __u32 pad; |
| 732 | }; |
| 733 | |
| 734 | struct drm_amdgpu_info_vce_clock_table { |
| 735 | struct drm_amdgpu_info_vce_clock_table_entry entries[AMDGPU_VCE_CLOCK_TABLE_ENTRIES]; |
| 736 | __u32 num_valid_entries; |
| 737 | __u32 pad; |
| 738 | }; |
| 739 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 740 | /* |
| 741 | * Supported GPU families |
| 742 | */ |
| 743 | #define AMDGPU_FAMILY_UNKNOWN 0 |
Ken Wang | 295d0da | 2016-05-24 21:02:53 +0800 | [diff] [blame] | 744 | #define AMDGPU_FAMILY_SI 110 /* Hainan, Oland, Verde, Pitcairn, Tahiti */ |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 745 | #define AMDGPU_FAMILY_CI 120 /* Bonaire, Hawaii */ |
| 746 | #define AMDGPU_FAMILY_KV 125 /* Kaveri, Kabini, Mullins */ |
| 747 | #define AMDGPU_FAMILY_VI 130 /* Iceland, Tonga */ |
Samuel Li | 39bb0c9 | 2015-10-08 16:31:43 -0400 | [diff] [blame] | 748 | #define AMDGPU_FAMILY_CZ 135 /* Carrizo, Stoney */ |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 749 | |
Emil Velikov | cfa7152 | 2016-04-07 18:45:18 +0100 | [diff] [blame] | 750 | #if defined(__cplusplus) |
| 751 | } |
| 752 | #endif |
| 753 | |
Alex Deucher | 81629cb | 2015-04-20 16:42:01 -0400 | [diff] [blame] | 754 | #endif |