amd/common: add GFX10 chips
[mesa.git] / src / amd / common / ac_gpu_info.c
1 /*
2 * Copyright © 2017 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
14 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
16 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
18 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 */
25
26 #include "ac_gpu_info.h"
27 #include "sid.h"
28
29 #include "util/u_math.h"
30
31 #include <stdio.h>
32
33 #include <xf86drm.h>
34 #include <amdgpu_drm.h>
35
36 #include <amdgpu.h>
37
38 #define CIK_TILE_MODE_COLOR_2D 14
39
40 #define CIK__GB_TILE_MODE__PIPE_CONFIG(x) (((x) >> 6) & 0x1f)
41 #define CIK__PIPE_CONFIG__ADDR_SURF_P2 0
42 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_8x16 4
43 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_16x16 5
44 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_16x32 6
45 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_32x32 7
46 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_16x16_8x16 8
47 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_8x16 9
48 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_8x16 10
49 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_16x16 11
50 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x16 12
51 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x32 13
52 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x64_32x32 14
53 #define CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_8X16 16
54 #define CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_16X16 17
55
56 static unsigned cik_get_num_tile_pipes(struct amdgpu_gpu_info *info)
57 {
58 unsigned mode2d = info->gb_tile_mode[CIK_TILE_MODE_COLOR_2D];
59
60 switch (CIK__GB_TILE_MODE__PIPE_CONFIG(mode2d)) {
61 case CIK__PIPE_CONFIG__ADDR_SURF_P2:
62 return 2;
63 case CIK__PIPE_CONFIG__ADDR_SURF_P4_8x16:
64 case CIK__PIPE_CONFIG__ADDR_SURF_P4_16x16:
65 case CIK__PIPE_CONFIG__ADDR_SURF_P4_16x32:
66 case CIK__PIPE_CONFIG__ADDR_SURF_P4_32x32:
67 return 4;
68 case CIK__PIPE_CONFIG__ADDR_SURF_P8_16x16_8x16:
69 case CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_8x16:
70 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_8x16:
71 case CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_16x16:
72 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x16:
73 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x32:
74 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x64_32x32:
75 return 8;
76 case CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_8X16:
77 case CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_16X16:
78 return 16;
79 default:
80 fprintf(stderr, "Invalid GFX7 pipe configuration, assuming P2\n");
81 assert(!"this should never occur");
82 return 2;
83 }
84 }
85
86 static bool has_syncobj(int fd)
87 {
88 uint64_t value;
89 if (drmGetCap(fd, DRM_CAP_SYNCOBJ, &value))
90 return false;
91 return value ? true : false;
92 }
93
94 bool ac_query_gpu_info(int fd, void *dev_p,
95 struct radeon_info *info,
96 struct amdgpu_gpu_info *amdinfo)
97 {
98 struct drm_amdgpu_info_device device_info = {};
99 struct amdgpu_buffer_size_alignments alignment_info = {};
100 struct drm_amdgpu_info_hw_ip dma = {}, compute = {}, uvd = {};
101 struct drm_amdgpu_info_hw_ip uvd_enc = {}, vce = {}, vcn_dec = {}, vcn_jpeg = {};
102 struct drm_amdgpu_info_hw_ip vcn_enc = {}, gfx = {};
103 struct amdgpu_gds_resource_info gds = {};
104 uint32_t vce_version = 0, vce_feature = 0, uvd_version = 0, uvd_feature = 0;
105 int r, i, j;
106 amdgpu_device_handle dev = dev_p;
107 drmDevicePtr devinfo;
108
109 /* Get PCI info. */
110 r = drmGetDevice2(fd, 0, &devinfo);
111 if (r) {
112 fprintf(stderr, "amdgpu: drmGetDevice2 failed.\n");
113 return false;
114 }
115 info->pci_domain = devinfo->businfo.pci->domain;
116 info->pci_bus = devinfo->businfo.pci->bus;
117 info->pci_dev = devinfo->businfo.pci->dev;
118 info->pci_func = devinfo->businfo.pci->func;
119 drmFreeDevice(&devinfo);
120
121 assert(info->drm_major == 3);
122 info->is_amdgpu = true;
123
124 /* Query hardware and driver information. */
125 r = amdgpu_query_gpu_info(dev, amdinfo);
126 if (r) {
127 fprintf(stderr, "amdgpu: amdgpu_query_gpu_info failed.\n");
128 return false;
129 }
130
131 r = amdgpu_query_info(dev, AMDGPU_INFO_DEV_INFO, sizeof(device_info),
132 &device_info);
133 if (r) {
134 fprintf(stderr, "amdgpu: amdgpu_query_info(dev_info) failed.\n");
135 return false;
136 }
137
138 r = amdgpu_query_buffer_size_alignment(dev, &alignment_info);
139 if (r) {
140 fprintf(stderr, "amdgpu: amdgpu_query_buffer_size_alignment failed.\n");
141 return false;
142 }
143
144 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_DMA, 0, &dma);
145 if (r) {
146 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(dma) failed.\n");
147 return false;
148 }
149
150 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_GFX, 0, &gfx);
151 if (r) {
152 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(gfx) failed.\n");
153 return false;
154 }
155
156 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_COMPUTE, 0, &compute);
157 if (r) {
158 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(compute) failed.\n");
159 return false;
160 }
161
162 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_UVD, 0, &uvd);
163 if (r) {
164 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(uvd) failed.\n");
165 return false;
166 }
167
168 if (info->drm_minor >= 17) {
169 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_UVD_ENC, 0, &uvd_enc);
170 if (r) {
171 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(uvd_enc) failed.\n");
172 return false;
173 }
174 }
175
176 if (info->drm_minor >= 17) {
177 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_DEC, 0, &vcn_dec);
178 if (r) {
179 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_dec) failed.\n");
180 return false;
181 }
182 }
183
184 if (info->drm_minor >= 17) {
185 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_ENC, 0, &vcn_enc);
186 if (r) {
187 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_enc) failed.\n");
188 return false;
189 }
190 }
191
192 if (info->drm_minor >= 27) {
193 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_JPEG, 0, &vcn_jpeg);
194 if (r) {
195 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_jpeg) failed.\n");
196 return false;
197 }
198 }
199
200 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_GFX_ME, 0, 0,
201 &info->me_fw_version,
202 &info->me_fw_feature);
203 if (r) {
204 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(me) failed.\n");
205 return false;
206 }
207
208 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_GFX_PFP, 0, 0,
209 &info->pfp_fw_version,
210 &info->pfp_fw_feature);
211 if (r) {
212 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(pfp) failed.\n");
213 return false;
214 }
215
216 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_GFX_CE, 0, 0,
217 &info->ce_fw_version,
218 &info->ce_fw_feature);
219 if (r) {
220 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(ce) failed.\n");
221 return false;
222 }
223
224 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_UVD, 0, 0,
225 &uvd_version, &uvd_feature);
226 if (r) {
227 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(uvd) failed.\n");
228 return false;
229 }
230
231 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCE, 0, &vce);
232 if (r) {
233 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vce) failed.\n");
234 return false;
235 }
236
237 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_VCE, 0, 0,
238 &vce_version, &vce_feature);
239 if (r) {
240 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(vce) failed.\n");
241 return false;
242 }
243
244 r = amdgpu_query_sw_info(dev, amdgpu_sw_info_address32_hi, &info->address32_hi);
245 if (r) {
246 fprintf(stderr, "amdgpu: amdgpu_query_sw_info(address32_hi) failed.\n");
247 return false;
248 }
249
250 r = amdgpu_query_gds_info(dev, &gds);
251 if (r) {
252 fprintf(stderr, "amdgpu: amdgpu_query_gds_info failed.\n");
253 return false;
254 }
255
256 if (info->drm_minor >= 9) {
257 struct drm_amdgpu_memory_info meminfo = {};
258
259 r = amdgpu_query_info(dev, AMDGPU_INFO_MEMORY, sizeof(meminfo), &meminfo);
260 if (r) {
261 fprintf(stderr, "amdgpu: amdgpu_query_info(memory) failed.\n");
262 return false;
263 }
264
265 /* Note: usable_heap_size values can be random and can't be relied on. */
266 info->gart_size = meminfo.gtt.total_heap_size;
267 info->vram_size = meminfo.vram.total_heap_size;
268 info->vram_vis_size = meminfo.cpu_accessible_vram.total_heap_size;
269 } else {
270 /* This is a deprecated interface, which reports usable sizes
271 * (total minus pinned), but the pinned size computation is
272 * buggy, so the values returned from these functions can be
273 * random.
274 */
275 struct amdgpu_heap_info vram, vram_vis, gtt;
276
277 r = amdgpu_query_heap_info(dev, AMDGPU_GEM_DOMAIN_VRAM, 0, &vram);
278 if (r) {
279 fprintf(stderr, "amdgpu: amdgpu_query_heap_info(vram) failed.\n");
280 return false;
281 }
282
283 r = amdgpu_query_heap_info(dev, AMDGPU_GEM_DOMAIN_VRAM,
284 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
285 &vram_vis);
286 if (r) {
287 fprintf(stderr, "amdgpu: amdgpu_query_heap_info(vram_vis) failed.\n");
288 return false;
289 }
290
291 r = amdgpu_query_heap_info(dev, AMDGPU_GEM_DOMAIN_GTT, 0, &gtt);
292 if (r) {
293 fprintf(stderr, "amdgpu: amdgpu_query_heap_info(gtt) failed.\n");
294 return false;
295 }
296
297 info->gart_size = gtt.heap_size;
298 info->vram_size = vram.heap_size;
299 info->vram_vis_size = vram_vis.heap_size;
300 }
301
302 /* Set chip identification. */
303 info->pci_id = amdinfo->asic_id; /* TODO: is this correct? */
304 info->vce_harvest_config = amdinfo->vce_harvest_config;
305
306 switch (info->pci_id) {
307 #define CHIPSET(pci_id, cfamily) \
308 case pci_id: \
309 info->family = CHIP_##cfamily; \
310 info->name = #cfamily; \
311 break;
312 #include "pci_ids/radeonsi_pci_ids.h"
313 #undef CHIPSET
314
315 default:
316 fprintf(stderr, "amdgpu: Invalid PCI ID.\n");
317 return false;
318 }
319
320 /* Raven2 uses the same PCI IDs as Raven1, but different revision IDs. */
321 if (info->family == CHIP_RAVEN && amdinfo->chip_rev >= 0x8) {
322 info->family = CHIP_RAVEN2;
323 info->name = "RAVEN2";
324 }
325
326 if (info->family >= CHIP_NAVI10)
327 info->chip_class = GFX10;
328 else if (info->family >= CHIP_VEGA10)
329 info->chip_class = GFX9;
330 else if (info->family >= CHIP_TONGA)
331 info->chip_class = GFX8;
332 else if (info->family >= CHIP_BONAIRE)
333 info->chip_class = GFX7;
334 else if (info->family >= CHIP_TAHITI)
335 info->chip_class = GFX6;
336 else {
337 fprintf(stderr, "amdgpu: Unknown family.\n");
338 return false;
339 }
340
341 info->family_id = amdinfo->family_id;
342 info->chip_external_rev = amdinfo->chip_external_rev;
343 info->marketing_name = amdgpu_get_marketing_name(dev);
344 info->is_pro_graphics = info->marketing_name &&
345 (!strcmp(info->marketing_name, "Pro") ||
346 !strcmp(info->marketing_name, "PRO") ||
347 !strcmp(info->marketing_name, "Frontier"));
348
349 /* Set which chips have dedicated VRAM. */
350 info->has_dedicated_vram =
351 !(amdinfo->ids_flags & AMDGPU_IDS_FLAGS_FUSION);
352
353 /* The kernel can split large buffers in VRAM but not in GTT, so large
354 * allocations can fail or cause buffer movement failures in the kernel.
355 */
356 if (info->has_dedicated_vram)
357 info->max_alloc_size = info->vram_size * 0.8;
358 else
359 info->max_alloc_size = info->gart_size * 0.7;
360
361 /* Set hardware information. */
362 info->gds_size = gds.gds_total_size;
363 info->gds_gfx_partition_size = gds.gds_gfx_partition_size;
364 /* convert the shader clock from KHz to MHz */
365 info->max_shader_clock = amdinfo->max_engine_clk / 1000;
366 info->num_tcc_blocks = device_info.num_tcc_blocks;
367 info->max_se = amdinfo->num_shader_engines;
368 info->max_sh_per_se = amdinfo->num_shader_arrays_per_engine;
369 info->has_hw_decode =
370 (uvd.available_rings != 0) || (vcn_dec.available_rings != 0) ||
371 (vcn_jpeg.available_rings != 0);
372 info->uvd_fw_version =
373 uvd.available_rings ? uvd_version : 0;
374 info->vce_fw_version =
375 vce.available_rings ? vce_version : 0;
376 info->uvd_enc_supported =
377 uvd_enc.available_rings ? true : false;
378 info->has_userptr = true;
379 info->has_syncobj = has_syncobj(fd);
380 info->has_syncobj_wait_for_submit = info->has_syncobj && info->drm_minor >= 20;
381 info->has_fence_to_handle = info->has_syncobj && info->drm_minor >= 21;
382 info->has_ctx_priority = info->drm_minor >= 22;
383 info->has_local_buffers = info->drm_minor >= 20;
384 info->kernel_flushes_hdp_before_ib = true;
385 info->htile_cmask_support_1d_tiling = true;
386 info->si_TA_CS_BC_BASE_ADDR_allowed = true;
387 info->has_bo_metadata = true;
388 info->has_gpu_reset_status_query = true;
389 info->has_eqaa_surface_allocator = true;
390 info->has_format_bc1_through_bc7 = true;
391 /* DRM 3.1.0 doesn't flush TC for GFX8 correctly. */
392 info->kernel_flushes_tc_l2_after_ib = info->chip_class != GFX8 ||
393 info->drm_minor >= 2;
394 info->has_indirect_compute_dispatch = true;
395 /* GFX6 doesn't support unaligned loads. */
396 info->has_unaligned_shader_loads = info->chip_class != GFX6;
397 /* Disable sparse mappings on GFX6 due to VM faults in CP DMA. Enable them once
398 * these faults are mitigated in software.
399 * Disable sparse mappings on GFX9 due to hangs.
400 */
401 info->has_sparse_vm_mappings =
402 info->chip_class >= GFX7 && info->chip_class <= GFX8 &&
403 info->drm_minor >= 13;
404 info->has_2d_tiling = true;
405 info->has_read_registers_query = true;
406 info->has_scheduled_fence_dependency = info->drm_minor >= 28;
407
408 info->num_render_backends = amdinfo->rb_pipes;
409 /* The value returned by the kernel driver was wrong. */
410 if (info->family == CHIP_KAVERI)
411 info->num_render_backends = 2;
412
413 info->clock_crystal_freq = amdinfo->gpu_counter_freq;
414 if (!info->clock_crystal_freq) {
415 fprintf(stderr, "amdgpu: clock crystal frequency is 0, timestamps will be wrong\n");
416 info->clock_crystal_freq = 1;
417 }
418 if (info->chip_class >= GFX10) {
419 info->tcc_cache_line_size = 128;
420 } else {
421 info->tcc_cache_line_size = 64;
422 }
423 info->gb_addr_config = amdinfo->gb_addr_cfg;
424 if (info->chip_class == GFX9) {
425 info->num_tile_pipes = 1 << G_0098F8_NUM_PIPES(amdinfo->gb_addr_cfg);
426 info->pipe_interleave_bytes =
427 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX9(amdinfo->gb_addr_cfg);
428 } else {
429 info->num_tile_pipes = cik_get_num_tile_pipes(amdinfo);
430 info->pipe_interleave_bytes =
431 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX6(amdinfo->gb_addr_cfg);
432 }
433 info->r600_has_virtual_memory = true;
434
435 assert(util_is_power_of_two_or_zero(dma.available_rings + 1));
436 assert(util_is_power_of_two_or_zero(compute.available_rings + 1));
437
438 info->num_sdma_rings = util_bitcount(dma.available_rings);
439 info->num_compute_rings = util_bitcount(compute.available_rings);
440
441 /* Get the number of good compute units. */
442 info->num_good_compute_units = 0;
443 for (i = 0; i < info->max_se; i++)
444 for (j = 0; j < info->max_sh_per_se; j++)
445 info->num_good_compute_units +=
446 util_bitcount(amdinfo->cu_bitmap[i][j]);
447 info->num_good_cu_per_sh = info->num_good_compute_units /
448 (info->max_se * info->max_sh_per_se);
449
450 memcpy(info->si_tile_mode_array, amdinfo->gb_tile_mode,
451 sizeof(amdinfo->gb_tile_mode));
452 info->enabled_rb_mask = amdinfo->enabled_rb_pipes_mask;
453
454 memcpy(info->cik_macrotile_mode_array, amdinfo->gb_macro_tile_mode,
455 sizeof(amdinfo->gb_macro_tile_mode));
456
457 info->pte_fragment_size = alignment_info.size_local;
458 info->gart_page_size = alignment_info.size_remote;
459
460 if (info->chip_class == GFX6)
461 info->gfx_ib_pad_with_type2 = TRUE;
462
463 unsigned ib_align = 0;
464 ib_align = MAX2(ib_align, gfx.ib_start_alignment);
465 ib_align = MAX2(ib_align, compute.ib_start_alignment);
466 ib_align = MAX2(ib_align, dma.ib_start_alignment);
467 ib_align = MAX2(ib_align, uvd.ib_start_alignment);
468 ib_align = MAX2(ib_align, uvd_enc.ib_start_alignment);
469 ib_align = MAX2(ib_align, vce.ib_start_alignment);
470 ib_align = MAX2(ib_align, vcn_dec.ib_start_alignment);
471 ib_align = MAX2(ib_align, vcn_enc.ib_start_alignment);
472 ib_align = MAX2(ib_align, vcn_jpeg.ib_start_alignment);
473 assert(ib_align);
474 info->ib_start_alignment = ib_align;
475
476 if (info->drm_minor >= 31 &&
477 (info->family == CHIP_RAVEN ||
478 info->family == CHIP_RAVEN2)) {
479 if (info->num_render_backends == 1)
480 info->use_display_dcc_unaligned = true;
481 else
482 info->use_display_dcc_with_retile_blit = true;
483 }
484
485 info->has_gds_ordered_append = info->chip_class >= GFX7 &&
486 info->drm_minor >= 29 &&
487 HAVE_LLVM >= 0x0800;
488 return true;
489 }
490
491 void ac_compute_driver_uuid(char *uuid, size_t size)
492 {
493 char amd_uuid[] = "AMD-MESA-DRV";
494
495 assert(size >= sizeof(amd_uuid));
496
497 memset(uuid, 0, size);
498 strncpy(uuid, amd_uuid, size);
499 }
500
501 void ac_compute_device_uuid(struct radeon_info *info, char *uuid, size_t size)
502 {
503 uint32_t *uint_uuid = (uint32_t*)uuid;
504
505 assert(size >= sizeof(uint32_t)*4);
506
507 /**
508 * Use the device info directly instead of using a sha1. GL/VK UUIDs
509 * are 16 byte vs 20 byte for sha1, and the truncation that would be
510 * required would get rid of part of the little entropy we have.
511 * */
512 memset(uuid, 0, size);
513 uint_uuid[0] = info->pci_domain;
514 uint_uuid[1] = info->pci_bus;
515 uint_uuid[2] = info->pci_dev;
516 uint_uuid[3] = info->pci_func;
517 }
518
519 void ac_print_gpu_info(struct radeon_info *info)
520 {
521 printf("Device info:\n");
522 printf(" pci (domain:bus:dev.func): %04x:%02x:%02x.%x\n",
523 info->pci_domain, info->pci_bus,
524 info->pci_dev, info->pci_func);
525 printf(" pci_id = 0x%x\n", info->pci_id);
526 printf(" family = %i\n", info->family);
527 printf(" chip_class = %i\n", info->chip_class);
528 printf(" num_compute_rings = %u\n", info->num_compute_rings);
529 printf(" num_sdma_rings = %i\n", info->num_sdma_rings);
530 printf(" clock_crystal_freq = %i\n", info->clock_crystal_freq);
531 printf(" tcc_cache_line_size = %u\n", info->tcc_cache_line_size);
532
533 printf(" use_display_dcc_unaligned = %u\n", info->use_display_dcc_unaligned);
534 printf(" use_display_dcc_with_retile_blit = %u\n", info->use_display_dcc_with_retile_blit);
535
536 printf("Memory info:\n");
537 printf(" pte_fragment_size = %u\n", info->pte_fragment_size);
538 printf(" gart_page_size = %u\n", info->gart_page_size);
539 printf(" gart_size = %i MB\n", (int)DIV_ROUND_UP(info->gart_size, 1024*1024));
540 printf(" vram_size = %i MB\n", (int)DIV_ROUND_UP(info->vram_size, 1024*1024));
541 printf(" vram_vis_size = %i MB\n", (int)DIV_ROUND_UP(info->vram_vis_size, 1024*1024));
542 printf(" gds_size = %u kB\n", info->gds_size / 1024);
543 printf(" gds_gfx_partition_size = %u kB\n", info->gds_gfx_partition_size / 1024);
544 printf(" max_alloc_size = %i MB\n",
545 (int)DIV_ROUND_UP(info->max_alloc_size, 1024*1024));
546 printf(" min_alloc_size = %u\n", info->min_alloc_size);
547 printf(" address32_hi = %u\n", info->address32_hi);
548 printf(" has_dedicated_vram = %u\n", info->has_dedicated_vram);
549
550 printf("CP info:\n");
551 printf(" gfx_ib_pad_with_type2 = %i\n", info->gfx_ib_pad_with_type2);
552 printf(" ib_start_alignment = %u\n", info->ib_start_alignment);
553 printf(" me_fw_version = %i\n", info->me_fw_version);
554 printf(" me_fw_feature = %i\n", info->me_fw_feature);
555 printf(" pfp_fw_version = %i\n", info->pfp_fw_version);
556 printf(" pfp_fw_feature = %i\n", info->pfp_fw_feature);
557 printf(" ce_fw_version = %i\n", info->ce_fw_version);
558 printf(" ce_fw_feature = %i\n", info->ce_fw_feature);
559
560 printf("Multimedia info:\n");
561 printf(" has_hw_decode = %u\n", info->has_hw_decode);
562 printf(" uvd_enc_supported = %u\n", info->uvd_enc_supported);
563 printf(" uvd_fw_version = %u\n", info->uvd_fw_version);
564 printf(" vce_fw_version = %u\n", info->vce_fw_version);
565 printf(" vce_harvest_config = %i\n", info->vce_harvest_config);
566
567 printf("Kernel & winsys capabilities:\n");
568 printf(" drm = %i.%i.%i\n", info->drm_major,
569 info->drm_minor, info->drm_patchlevel);
570 printf(" has_userptr = %i\n", info->has_userptr);
571 printf(" has_syncobj = %u\n", info->has_syncobj);
572 printf(" has_syncobj_wait_for_submit = %u\n", info->has_syncobj_wait_for_submit);
573 printf(" has_fence_to_handle = %u\n", info->has_fence_to_handle);
574 printf(" has_ctx_priority = %u\n", info->has_ctx_priority);
575 printf(" has_local_buffers = %u\n", info->has_local_buffers);
576 printf(" kernel_flushes_hdp_before_ib = %u\n", info->kernel_flushes_hdp_before_ib);
577 printf(" htile_cmask_support_1d_tiling = %u\n", info->htile_cmask_support_1d_tiling);
578 printf(" si_TA_CS_BC_BASE_ADDR_allowed = %u\n", info->si_TA_CS_BC_BASE_ADDR_allowed);
579 printf(" has_bo_metadata = %u\n", info->has_bo_metadata);
580 printf(" has_gpu_reset_status_query = %u\n", info->has_gpu_reset_status_query);
581 printf(" has_eqaa_surface_allocator = %u\n", info->has_eqaa_surface_allocator);
582 printf(" has_format_bc1_through_bc7 = %u\n", info->has_format_bc1_through_bc7);
583 printf(" kernel_flushes_tc_l2_after_ib = %u\n", info->kernel_flushes_tc_l2_after_ib);
584 printf(" has_indirect_compute_dispatch = %u\n", info->has_indirect_compute_dispatch);
585 printf(" has_unaligned_shader_loads = %u\n", info->has_unaligned_shader_loads);
586 printf(" has_sparse_vm_mappings = %u\n", info->has_sparse_vm_mappings);
587 printf(" has_2d_tiling = %u\n", info->has_2d_tiling);
588 printf(" has_read_registers_query = %u\n", info->has_read_registers_query);
589 printf(" has_gds_ordered_append = %u\n", info->has_gds_ordered_append);
590 printf(" has_scheduled_fence_dependency = %u\n", info->has_scheduled_fence_dependency);
591
592 printf("Shader core info:\n");
593 printf(" max_shader_clock = %i\n", info->max_shader_clock);
594 printf(" num_good_compute_units = %i\n", info->num_good_compute_units);
595 printf(" num_good_cu_per_sh = %i\n", info->num_good_cu_per_sh);
596 printf(" num_tcc_blocks = %i\n", info->num_tcc_blocks);
597 printf(" max_se = %i\n", info->max_se);
598 printf(" max_sh_per_se = %i\n", info->max_sh_per_se);
599
600 printf("Render backend info:\n");
601 printf(" num_render_backends = %i\n", info->num_render_backends);
602 printf(" num_tile_pipes = %i\n", info->num_tile_pipes);
603 printf(" pipe_interleave_bytes = %i\n", info->pipe_interleave_bytes);
604 printf(" enabled_rb_mask = 0x%x\n", info->enabled_rb_mask);
605 printf(" max_alignment = %u\n", (unsigned)info->max_alignment);
606
607 printf("GB_ADDR_CONFIG:\n");
608 if (info->chip_class >= GFX9) {
609 printf(" num_pipes = %u\n",
610 1 << G_0098F8_NUM_PIPES(info->gb_addr_config));
611 printf(" pipe_interleave_size = %u\n",
612 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX9(info->gb_addr_config));
613 printf(" max_compressed_frags = %u\n",
614 1 << G_0098F8_MAX_COMPRESSED_FRAGS(info->gb_addr_config));
615 printf(" bank_interleave_size = %u\n",
616 1 << G_0098F8_BANK_INTERLEAVE_SIZE(info->gb_addr_config));
617 printf(" num_banks = %u\n",
618 1 << G_0098F8_NUM_BANKS(info->gb_addr_config));
619 printf(" shader_engine_tile_size = %u\n",
620 16 << G_0098F8_SHADER_ENGINE_TILE_SIZE(info->gb_addr_config));
621 printf(" num_shader_engines = %u\n",
622 1 << G_0098F8_NUM_SHADER_ENGINES_GFX9(info->gb_addr_config));
623 printf(" num_gpus = %u (raw)\n",
624 G_0098F8_NUM_GPUS_GFX9(info->gb_addr_config));
625 printf(" multi_gpu_tile_size = %u (raw)\n",
626 G_0098F8_MULTI_GPU_TILE_SIZE(info->gb_addr_config));
627 printf(" num_rb_per_se = %u\n",
628 1 << G_0098F8_NUM_RB_PER_SE(info->gb_addr_config));
629 printf(" row_size = %u\n",
630 1024 << G_0098F8_ROW_SIZE(info->gb_addr_config));
631 printf(" num_lower_pipes = %u (raw)\n",
632 G_0098F8_NUM_LOWER_PIPES(info->gb_addr_config));
633 printf(" se_enable = %u (raw)\n",
634 G_0098F8_SE_ENABLE(info->gb_addr_config));
635 } else {
636 printf(" num_pipes = %u\n",
637 1 << G_0098F8_NUM_PIPES(info->gb_addr_config));
638 printf(" pipe_interleave_size = %u\n",
639 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX6(info->gb_addr_config));
640 printf(" bank_interleave_size = %u\n",
641 1 << G_0098F8_BANK_INTERLEAVE_SIZE(info->gb_addr_config));
642 printf(" num_shader_engines = %u\n",
643 1 << G_0098F8_NUM_SHADER_ENGINES_GFX6(info->gb_addr_config));
644 printf(" shader_engine_tile_size = %u\n",
645 16 << G_0098F8_SHADER_ENGINE_TILE_SIZE(info->gb_addr_config));
646 printf(" num_gpus = %u (raw)\n",
647 G_0098F8_NUM_GPUS_GFX6(info->gb_addr_config));
648 printf(" multi_gpu_tile_size = %u (raw)\n",
649 G_0098F8_MULTI_GPU_TILE_SIZE(info->gb_addr_config));
650 printf(" row_size = %u\n",
651 1024 << G_0098F8_ROW_SIZE(info->gb_addr_config));
652 printf(" num_lower_pipes = %u (raw)\n",
653 G_0098F8_NUM_LOWER_PIPES(info->gb_addr_config));
654 }
655 }
656
657 int
658 ac_get_gs_table_depth(enum chip_class chip_class, enum radeon_family family)
659 {
660 if (chip_class >= GFX9)
661 return -1;
662
663 switch (family) {
664 case CHIP_OLAND:
665 case CHIP_HAINAN:
666 case CHIP_KAVERI:
667 case CHIP_KABINI:
668 case CHIP_ICELAND:
669 case CHIP_CARRIZO:
670 case CHIP_STONEY:
671 return 16;
672 case CHIP_TAHITI:
673 case CHIP_PITCAIRN:
674 case CHIP_VERDE:
675 case CHIP_BONAIRE:
676 case CHIP_HAWAII:
677 case CHIP_TONGA:
678 case CHIP_FIJI:
679 case CHIP_POLARIS10:
680 case CHIP_POLARIS11:
681 case CHIP_POLARIS12:
682 case CHIP_VEGAM:
683 return 32;
684 default:
685 unreachable("Unknown GPU");
686 }
687 }
688
689 void
690 ac_get_raster_config(struct radeon_info *info,
691 uint32_t *raster_config_p,
692 uint32_t *raster_config_1_p,
693 uint32_t *se_tile_repeat_p)
694 {
695 unsigned raster_config, raster_config_1, se_tile_repeat;
696
697 switch (info->family) {
698 /* 1 SE / 1 RB */
699 case CHIP_HAINAN:
700 case CHIP_KABINI:
701 case CHIP_STONEY:
702 raster_config = 0x00000000;
703 raster_config_1 = 0x00000000;
704 break;
705 /* 1 SE / 4 RBs */
706 case CHIP_VERDE:
707 raster_config = 0x0000124a;
708 raster_config_1 = 0x00000000;
709 break;
710 /* 1 SE / 2 RBs (Oland is special) */
711 case CHIP_OLAND:
712 raster_config = 0x00000082;
713 raster_config_1 = 0x00000000;
714 break;
715 /* 1 SE / 2 RBs */
716 case CHIP_KAVERI:
717 case CHIP_ICELAND:
718 case CHIP_CARRIZO:
719 raster_config = 0x00000002;
720 raster_config_1 = 0x00000000;
721 break;
722 /* 2 SEs / 4 RBs */
723 case CHIP_BONAIRE:
724 case CHIP_POLARIS11:
725 case CHIP_POLARIS12:
726 raster_config = 0x16000012;
727 raster_config_1 = 0x00000000;
728 break;
729 /* 2 SEs / 8 RBs */
730 case CHIP_TAHITI:
731 case CHIP_PITCAIRN:
732 raster_config = 0x2a00126a;
733 raster_config_1 = 0x00000000;
734 break;
735 /* 4 SEs / 8 RBs */
736 case CHIP_TONGA:
737 case CHIP_POLARIS10:
738 raster_config = 0x16000012;
739 raster_config_1 = 0x0000002a;
740 break;
741 /* 4 SEs / 16 RBs */
742 case CHIP_HAWAII:
743 case CHIP_FIJI:
744 case CHIP_VEGAM:
745 raster_config = 0x3a00161a;
746 raster_config_1 = 0x0000002e;
747 break;
748 default:
749 fprintf(stderr,
750 "ac: Unknown GPU, using 0 for raster_config\n");
751 raster_config = 0x00000000;
752 raster_config_1 = 0x00000000;
753 break;
754 }
755
756 /* drm/radeon on Kaveri is buggy, so disable 1 RB to work around it.
757 * This decreases performance by up to 50% when the RB is the bottleneck.
758 */
759 if (info->family == CHIP_KAVERI && !info->is_amdgpu)
760 raster_config = 0x00000000;
761
762 /* Fiji: Old kernels have incorrect tiling config. This decreases
763 * RB performance by 25%. (it disables 1 RB in the second packer)
764 */
765 if (info->family == CHIP_FIJI &&
766 info->cik_macrotile_mode_array[0] == 0x000000e8) {
767 raster_config = 0x16000012;
768 raster_config_1 = 0x0000002a;
769 }
770
771 unsigned se_width = 8 << G_028350_SE_XSEL_GFX6(raster_config);
772 unsigned se_height = 8 << G_028350_SE_YSEL_GFX6(raster_config);
773
774 /* I don't know how to calculate this, though this is probably a good guess. */
775 se_tile_repeat = MAX2(se_width, se_height) * info->max_se;
776
777 *raster_config_p = raster_config;
778 *raster_config_1_p = raster_config_1;
779 if (se_tile_repeat_p)
780 *se_tile_repeat_p = se_tile_repeat;
781 }
782
783 void
784 ac_get_harvested_configs(struct radeon_info *info,
785 unsigned raster_config,
786 unsigned *cik_raster_config_1_p,
787 unsigned *raster_config_se)
788 {
789 unsigned sh_per_se = MAX2(info->max_sh_per_se, 1);
790 unsigned num_se = MAX2(info->max_se, 1);
791 unsigned rb_mask = info->enabled_rb_mask;
792 unsigned num_rb = MIN2(info->num_render_backends, 16);
793 unsigned rb_per_pkr = MIN2(num_rb / num_se / sh_per_se, 2);
794 unsigned rb_per_se = num_rb / num_se;
795 unsigned se_mask[4];
796 unsigned se;
797
798 se_mask[0] = ((1 << rb_per_se) - 1) & rb_mask;
799 se_mask[1] = (se_mask[0] << rb_per_se) & rb_mask;
800 se_mask[2] = (se_mask[1] << rb_per_se) & rb_mask;
801 se_mask[3] = (se_mask[2] << rb_per_se) & rb_mask;
802
803 assert(num_se == 1 || num_se == 2 || num_se == 4);
804 assert(sh_per_se == 1 || sh_per_se == 2);
805 assert(rb_per_pkr == 1 || rb_per_pkr == 2);
806
807
808 if (info->chip_class >= GFX7) {
809 unsigned raster_config_1 = *cik_raster_config_1_p;
810 if ((num_se > 2) && ((!se_mask[0] && !se_mask[1]) ||
811 (!se_mask[2] && !se_mask[3]))) {
812 raster_config_1 &= C_028354_SE_PAIR_MAP;
813
814 if (!se_mask[0] && !se_mask[1]) {
815 raster_config_1 |=
816 S_028354_SE_PAIR_MAP(V_028354_RASTER_CONFIG_SE_PAIR_MAP_3);
817 } else {
818 raster_config_1 |=
819 S_028354_SE_PAIR_MAP(V_028354_RASTER_CONFIG_SE_PAIR_MAP_0);
820 }
821 *cik_raster_config_1_p = raster_config_1;
822 }
823 }
824
825 for (se = 0; se < num_se; se++) {
826 unsigned pkr0_mask = ((1 << rb_per_pkr) - 1) << (se * rb_per_se);
827 unsigned pkr1_mask = pkr0_mask << rb_per_pkr;
828 int idx = (se / 2) * 2;
829
830 raster_config_se[se] = raster_config;
831 if ((num_se > 1) && (!se_mask[idx] || !se_mask[idx + 1])) {
832 raster_config_se[se] &= C_028350_SE_MAP;
833
834 if (!se_mask[idx]) {
835 raster_config_se[se] |=
836 S_028350_SE_MAP(V_028350_RASTER_CONFIG_SE_MAP_3);
837 } else {
838 raster_config_se[se] |=
839 S_028350_SE_MAP(V_028350_RASTER_CONFIG_SE_MAP_0);
840 }
841 }
842
843 pkr0_mask &= rb_mask;
844 pkr1_mask &= rb_mask;
845 if (rb_per_se > 2 && (!pkr0_mask || !pkr1_mask)) {
846 raster_config_se[se] &= C_028350_PKR_MAP;
847
848 if (!pkr0_mask) {
849 raster_config_se[se] |=
850 S_028350_PKR_MAP(V_028350_RASTER_CONFIG_PKR_MAP_3);
851 } else {
852 raster_config_se[se] |=
853 S_028350_PKR_MAP(V_028350_RASTER_CONFIG_PKR_MAP_0);
854 }
855 }
856
857 if (rb_per_se >= 2) {
858 unsigned rb0_mask = 1 << (se * rb_per_se);
859 unsigned rb1_mask = rb0_mask << 1;
860
861 rb0_mask &= rb_mask;
862 rb1_mask &= rb_mask;
863 if (!rb0_mask || !rb1_mask) {
864 raster_config_se[se] &= C_028350_RB_MAP_PKR0;
865
866 if (!rb0_mask) {
867 raster_config_se[se] |=
868 S_028350_RB_MAP_PKR0(V_028350_RASTER_CONFIG_RB_MAP_3);
869 } else {
870 raster_config_se[se] |=
871 S_028350_RB_MAP_PKR0(V_028350_RASTER_CONFIG_RB_MAP_0);
872 }
873 }
874
875 if (rb_per_se > 2) {
876 rb0_mask = 1 << (se * rb_per_se + rb_per_pkr);
877 rb1_mask = rb0_mask << 1;
878 rb0_mask &= rb_mask;
879 rb1_mask &= rb_mask;
880 if (!rb0_mask || !rb1_mask) {
881 raster_config_se[se] &= C_028350_RB_MAP_PKR1;
882
883 if (!rb0_mask) {
884 raster_config_se[se] |=
885 S_028350_RB_MAP_PKR1(V_028350_RASTER_CONFIG_RB_MAP_3);
886 } else {
887 raster_config_se[se] |=
888 S_028350_RB_MAP_PKR1(V_028350_RASTER_CONFIG_RB_MAP_0);
889 }
890 }
891 }
892 }
893 }
894 }