cf1f79c0ec2ad924ff7f7b82be7258903c218016
[mesa.git] / src / gallium / winsys / amdgpu / drm / amdgpu_winsys.c
1 /*
2 * Copyright © 2009 Corbin Simpson <MostAwesomeDude@gmail.com>
3 * Copyright © 2009 Joakim Sindholt <opensource@zhasha.com>
4 * Copyright © 2011 Marek Olšák <maraeo@gmail.com>
5 * Copyright © 2015 Advanced Micro Devices, Inc.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining
9 * a copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
20 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23 * USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 * The above copyright notice and this permission notice (including the
26 * next paragraph) shall be included in all copies or substantial portions
27 * of the Software.
28 */
29
30 #include "amdgpu_cs.h"
31 #include "amdgpu_public.h"
32
33 #include "util/u_cpu_detect.h"
34 #include "util/u_hash_table.h"
35 #include "util/hash_table.h"
36 #include "util/xmlconfig.h"
37 #include <amdgpu_drm.h>
38 #include <xf86drm.h>
39 #include <stdio.h>
40 #include <sys/stat.h>
41 #include "amd/common/ac_llvm_util.h"
42 #include "amd/common/sid.h"
43
44 #ifndef AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS
45 #define AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS 0x1E
46 #endif
47
48 static struct util_hash_table *dev_tab = NULL;
49 static simple_mtx_t dev_tab_mutex = _SIMPLE_MTX_INITIALIZER_NP;
50
51 DEBUG_GET_ONCE_BOOL_OPTION(all_bos, "RADEON_ALL_BOS", false)
52
53 static void handle_env_var_force_family(struct amdgpu_winsys *ws)
54 {
55 const char *family = debug_get_option("SI_FORCE_FAMILY", NULL);
56 unsigned i;
57
58 if (!family)
59 return;
60
61 for (i = CHIP_TAHITI; i < CHIP_LAST; i++) {
62 if (!strcmp(family, ac_get_llvm_processor_name(i))) {
63 /* Override family and chip_class. */
64 ws->info.family = i;
65 ws->info.name = "GCN-NOOP";
66
67 if (i >= CHIP_VEGA10)
68 ws->info.chip_class = GFX9;
69 else if (i >= CHIP_TONGA)
70 ws->info.chip_class = GFX8;
71 else if (i >= CHIP_BONAIRE)
72 ws->info.chip_class = GFX7;
73 else
74 ws->info.chip_class = GFX6;
75
76 /* Don't submit any IBs. */
77 setenv("RADEON_NOOP", "1", 1);
78 return;
79 }
80 }
81
82 fprintf(stderr, "radeonsi: Unknown family: %s\n", family);
83 exit(1);
84 }
85
86 /* Helper function to do the ioctls needed for setup and init. */
87 static bool do_winsys_init(struct amdgpu_winsys *ws,
88 const struct pipe_screen_config *config,
89 int fd)
90 {
91 if (!ac_query_gpu_info(fd, ws->dev, &ws->info, &ws->amdinfo))
92 goto fail;
93
94 /* TODO: Enable this once the kernel handles it efficiently. */
95 if (ws->info.has_dedicated_vram)
96 ws->info.has_local_buffers = false;
97
98 handle_env_var_force_family(ws);
99
100 ws->addrlib = amdgpu_addr_create(&ws->info, &ws->amdinfo, &ws->info.max_alignment);
101 if (!ws->addrlib) {
102 fprintf(stderr, "amdgpu: Cannot create addrlib.\n");
103 goto fail;
104 }
105
106 ws->check_vm = strstr(debug_get_option("R600_DEBUG", ""), "check_vm") != NULL;
107 ws->debug_all_bos = debug_get_option_all_bos();
108 ws->reserve_vmid = strstr(debug_get_option("R600_DEBUG", ""), "reserve_vmid") != NULL;
109 ws->zero_all_vram_allocs = strstr(debug_get_option("R600_DEBUG", ""), "zerovram") != NULL ||
110 driQueryOptionb(config->options, "radeonsi_zerovram");
111
112 return true;
113
114 fail:
115 amdgpu_device_deinitialize(ws->dev);
116 ws->dev = NULL;
117 return false;
118 }
119
120 static void do_winsys_deinit(struct amdgpu_winsys *ws)
121 {
122 AddrDestroy(ws->addrlib);
123 amdgpu_device_deinitialize(ws->dev);
124 }
125
126 static void amdgpu_winsys_destroy(struct radeon_winsys *rws)
127 {
128 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
129
130 if (ws->reserve_vmid)
131 amdgpu_vm_unreserve_vmid(ws->dev, 0);
132
133 if (util_queue_is_initialized(&ws->cs_queue))
134 util_queue_destroy(&ws->cs_queue);
135
136 simple_mtx_destroy(&ws->bo_fence_lock);
137 for (unsigned i = 0; i < NUM_SLAB_ALLOCATORS; i++) {
138 if (ws->bo_slabs[i].groups)
139 pb_slabs_deinit(&ws->bo_slabs[i]);
140 }
141 pb_cache_deinit(&ws->bo_cache);
142 util_hash_table_destroy(ws->bo_export_table);
143 simple_mtx_destroy(&ws->global_bo_list_lock);
144 simple_mtx_destroy(&ws->bo_export_table_lock);
145 do_winsys_deinit(ws);
146 FREE(rws);
147 }
148
149 static void amdgpu_winsys_query_info(struct radeon_winsys *rws,
150 struct radeon_info *info)
151 {
152 *info = amdgpu_winsys(rws)->info;
153 }
154
155 static bool amdgpu_cs_request_feature(struct radeon_cmdbuf *rcs,
156 enum radeon_feature_id fid,
157 bool enable)
158 {
159 return false;
160 }
161
162 static uint64_t amdgpu_query_value(struct radeon_winsys *rws,
163 enum radeon_value_id value)
164 {
165 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
166 struct amdgpu_heap_info heap;
167 uint64_t retval = 0;
168
169 switch (value) {
170 case RADEON_REQUESTED_VRAM_MEMORY:
171 return ws->allocated_vram;
172 case RADEON_REQUESTED_GTT_MEMORY:
173 return ws->allocated_gtt;
174 case RADEON_MAPPED_VRAM:
175 return ws->mapped_vram;
176 case RADEON_MAPPED_GTT:
177 return ws->mapped_gtt;
178 case RADEON_BUFFER_WAIT_TIME_NS:
179 return ws->buffer_wait_time;
180 case RADEON_NUM_MAPPED_BUFFERS:
181 return ws->num_mapped_buffers;
182 case RADEON_TIMESTAMP:
183 amdgpu_query_info(ws->dev, AMDGPU_INFO_TIMESTAMP, 8, &retval);
184 return retval;
185 case RADEON_NUM_GFX_IBS:
186 return ws->num_gfx_IBs;
187 case RADEON_NUM_SDMA_IBS:
188 return ws->num_sdma_IBs;
189 case RADEON_GFX_BO_LIST_COUNTER:
190 return ws->gfx_bo_list_counter;
191 case RADEON_GFX_IB_SIZE_COUNTER:
192 return ws->gfx_ib_size_counter;
193 case RADEON_NUM_BYTES_MOVED:
194 amdgpu_query_info(ws->dev, AMDGPU_INFO_NUM_BYTES_MOVED, 8, &retval);
195 return retval;
196 case RADEON_NUM_EVICTIONS:
197 amdgpu_query_info(ws->dev, AMDGPU_INFO_NUM_EVICTIONS, 8, &retval);
198 return retval;
199 case RADEON_NUM_VRAM_CPU_PAGE_FAULTS:
200 amdgpu_query_info(ws->dev, AMDGPU_INFO_NUM_VRAM_CPU_PAGE_FAULTS, 8, &retval);
201 return retval;
202 case RADEON_VRAM_USAGE:
203 amdgpu_query_heap_info(ws->dev, AMDGPU_GEM_DOMAIN_VRAM, 0, &heap);
204 return heap.heap_usage;
205 case RADEON_VRAM_VIS_USAGE:
206 amdgpu_query_heap_info(ws->dev, AMDGPU_GEM_DOMAIN_VRAM,
207 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED, &heap);
208 return heap.heap_usage;
209 case RADEON_GTT_USAGE:
210 amdgpu_query_heap_info(ws->dev, AMDGPU_GEM_DOMAIN_GTT, 0, &heap);
211 return heap.heap_usage;
212 case RADEON_GPU_TEMPERATURE:
213 amdgpu_query_sensor_info(ws->dev, AMDGPU_INFO_SENSOR_GPU_TEMP, 4, &retval);
214 return retval;
215 case RADEON_CURRENT_SCLK:
216 amdgpu_query_sensor_info(ws->dev, AMDGPU_INFO_SENSOR_GFX_SCLK, 4, &retval);
217 return retval;
218 case RADEON_CURRENT_MCLK:
219 amdgpu_query_sensor_info(ws->dev, AMDGPU_INFO_SENSOR_GFX_MCLK, 4, &retval);
220 return retval;
221 case RADEON_CS_THREAD_TIME:
222 return util_queue_get_thread_time_nano(&ws->cs_queue, 0);
223 }
224 return 0;
225 }
226
227 static bool amdgpu_read_registers(struct radeon_winsys *rws,
228 unsigned reg_offset,
229 unsigned num_registers, uint32_t *out)
230 {
231 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
232
233 return amdgpu_read_mm_registers(ws->dev, reg_offset / 4, num_registers,
234 0xffffffff, 0, out) == 0;
235 }
236
237 static unsigned hash_pointer(void *key)
238 {
239 return _mesa_hash_pointer(key);
240 }
241
242 static int compare_pointers(void *key1, void *key2)
243 {
244 return key1 != key2;
245 }
246
247 static bool amdgpu_winsys_unref(struct radeon_winsys *rws)
248 {
249 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
250 bool destroy;
251
252 /* When the reference counter drops to zero, remove the device pointer
253 * from the table.
254 * This must happen while the mutex is locked, so that
255 * amdgpu_winsys_create in another thread doesn't get the winsys
256 * from the table when the counter drops to 0. */
257 simple_mtx_lock(&dev_tab_mutex);
258
259 destroy = pipe_reference(&ws->reference, NULL);
260 if (destroy && dev_tab) {
261 util_hash_table_remove(dev_tab, ws->dev);
262 if (util_hash_table_count(dev_tab) == 0) {
263 util_hash_table_destroy(dev_tab);
264 dev_tab = NULL;
265 }
266 }
267
268 simple_mtx_unlock(&dev_tab_mutex);
269 return destroy;
270 }
271
272 static void amdgpu_pin_threads_to_L3_cache(struct radeon_winsys *rws,
273 unsigned cache)
274 {
275 struct amdgpu_winsys *ws = amdgpu_winsys(rws);
276
277 util_pin_thread_to_L3(ws->cs_queue.threads[0], cache,
278 util_cpu_caps.cores_per_L3);
279 }
280
281 PUBLIC struct radeon_winsys *
282 amdgpu_winsys_create(int fd, const struct pipe_screen_config *config,
283 radeon_screen_create_t screen_create)
284 {
285 struct amdgpu_winsys *ws;
286 amdgpu_device_handle dev;
287 uint32_t drm_major, drm_minor, r;
288
289 /* Look up the winsys from the dev table. */
290 simple_mtx_lock(&dev_tab_mutex);
291 if (!dev_tab)
292 dev_tab = util_hash_table_create(hash_pointer, compare_pointers);
293
294 /* Initialize the amdgpu device. This should always return the same pointer
295 * for the same fd. */
296 r = amdgpu_device_initialize(fd, &drm_major, &drm_minor, &dev);
297 if (r) {
298 simple_mtx_unlock(&dev_tab_mutex);
299 fprintf(stderr, "amdgpu: amdgpu_device_initialize failed.\n");
300 return NULL;
301 }
302
303 /* Lookup a winsys if we have already created one for this device. */
304 ws = util_hash_table_get(dev_tab, dev);
305 if (ws) {
306 pipe_reference(NULL, &ws->reference);
307 simple_mtx_unlock(&dev_tab_mutex);
308
309 /* Release the device handle, because we don't need it anymore.
310 * This function is returning an existing winsys instance, which
311 * has its own device handle.
312 */
313 amdgpu_device_deinitialize(dev);
314 return &ws->base;
315 }
316
317 /* Create a new winsys. */
318 ws = CALLOC_STRUCT(amdgpu_winsys);
319 if (!ws)
320 goto fail;
321
322 ws->dev = dev;
323 ws->info.drm_major = drm_major;
324 ws->info.drm_minor = drm_minor;
325
326 if (!do_winsys_init(ws, config, fd))
327 goto fail_alloc;
328
329 /* Create managers. */
330 pb_cache_init(&ws->bo_cache, RADEON_MAX_CACHED_HEAPS,
331 500000, ws->check_vm ? 1.0f : 2.0f, 0,
332 (ws->info.vram_size + ws->info.gart_size) / 8,
333 amdgpu_bo_destroy, amdgpu_bo_can_reclaim);
334
335 unsigned min_slab_order = 9; /* 512 bytes */
336 unsigned max_slab_order = 18; /* 256 KB - higher numbers increase memory usage */
337 unsigned num_slab_orders_per_allocator = (max_slab_order - min_slab_order) /
338 NUM_SLAB_ALLOCATORS;
339
340 /* Divide the size order range among slab managers. */
341 for (unsigned i = 0; i < NUM_SLAB_ALLOCATORS; i++) {
342 unsigned min_order = min_slab_order;
343 unsigned max_order = MIN2(min_order + num_slab_orders_per_allocator,
344 max_slab_order);
345
346 if (!pb_slabs_init(&ws->bo_slabs[i],
347 min_order, max_order,
348 RADEON_MAX_SLAB_HEAPS,
349 ws,
350 amdgpu_bo_can_reclaim_slab,
351 amdgpu_bo_slab_alloc,
352 amdgpu_bo_slab_free)) {
353 amdgpu_winsys_destroy(&ws->base);
354 simple_mtx_unlock(&dev_tab_mutex);
355 return NULL;
356 }
357
358 min_slab_order = max_order + 1;
359 }
360
361 ws->info.min_alloc_size = 1 << ws->bo_slabs[0].min_order;
362
363 /* init reference */
364 pipe_reference_init(&ws->reference, 1);
365
366 /* Set functions. */
367 ws->base.unref = amdgpu_winsys_unref;
368 ws->base.destroy = amdgpu_winsys_destroy;
369 ws->base.query_info = amdgpu_winsys_query_info;
370 ws->base.cs_request_feature = amdgpu_cs_request_feature;
371 ws->base.query_value = amdgpu_query_value;
372 ws->base.read_registers = amdgpu_read_registers;
373 ws->base.pin_threads_to_L3_cache = amdgpu_pin_threads_to_L3_cache;
374
375 amdgpu_bo_init_functions(ws);
376 amdgpu_cs_init_functions(ws);
377 amdgpu_surface_init_functions(ws);
378
379 LIST_INITHEAD(&ws->global_bo_list);
380 ws->bo_export_table = util_hash_table_create(hash_pointer, compare_pointers);
381
382 (void) simple_mtx_init(&ws->global_bo_list_lock, mtx_plain);
383 (void) simple_mtx_init(&ws->bo_fence_lock, mtx_plain);
384 (void) simple_mtx_init(&ws->bo_export_table_lock, mtx_plain);
385
386 if (!util_queue_init(&ws->cs_queue, "cs", 8, 1,
387 UTIL_QUEUE_INIT_RESIZE_IF_FULL)) {
388 amdgpu_winsys_destroy(&ws->base);
389 simple_mtx_unlock(&dev_tab_mutex);
390 return NULL;
391 }
392
393 /* Create the screen at the end. The winsys must be initialized
394 * completely.
395 *
396 * Alternatively, we could create the screen based on "ws->gen"
397 * and link all drivers into one binary blob. */
398 ws->base.screen = screen_create(&ws->base, config);
399 if (!ws->base.screen) {
400 amdgpu_winsys_destroy(&ws->base);
401 simple_mtx_unlock(&dev_tab_mutex);
402 return NULL;
403 }
404
405 util_hash_table_set(dev_tab, dev, ws);
406
407 if (ws->reserve_vmid) {
408 r = amdgpu_vm_reserve_vmid(dev, 0);
409 if (r) {
410 fprintf(stderr, "amdgpu: amdgpu_vm_reserve_vmid failed. (%i)\n", r);
411 goto fail_cache;
412 }
413 }
414
415 /* We must unlock the mutex once the winsys is fully initialized, so that
416 * other threads attempting to create the winsys from the same fd will
417 * get a fully initialized winsys and not just half-way initialized. */
418 simple_mtx_unlock(&dev_tab_mutex);
419
420 return &ws->base;
421
422 fail_cache:
423 pb_cache_deinit(&ws->bo_cache);
424 do_winsys_deinit(ws);
425 fail_alloc:
426 FREE(ws);
427 fail:
428 simple_mtx_unlock(&dev_tab_mutex);
429 return NULL;
430 }