ac,radeonsi: start adding support for gfx10.3
[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 "addrlib/src/amdgpu_asic_addr.h"
28 #include "sid.h"
29
30 #include "util/macros.h"
31 #include "util/u_math.h"
32
33 #include <stdio.h>
34
35 #include <xf86drm.h>
36 #include "drm-uapi/amdgpu_drm.h"
37
38 #include <amdgpu.h>
39
40 #define CIK_TILE_MODE_COLOR_2D 14
41
42 #define CIK__GB_TILE_MODE__PIPE_CONFIG(x) (((x) >> 6) & 0x1f)
43 #define CIK__PIPE_CONFIG__ADDR_SURF_P2 0
44 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_8x16 4
45 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_16x16 5
46 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_16x32 6
47 #define CIK__PIPE_CONFIG__ADDR_SURF_P4_32x32 7
48 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_16x16_8x16 8
49 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_8x16 9
50 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_8x16 10
51 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_16x16 11
52 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x16 12
53 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x32 13
54 #define CIK__PIPE_CONFIG__ADDR_SURF_P8_32x64_32x32 14
55 #define CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_8X16 16
56 #define CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_16X16 17
57
58 static unsigned cik_get_num_tile_pipes(struct amdgpu_gpu_info *info)
59 {
60 unsigned mode2d = info->gb_tile_mode[CIK_TILE_MODE_COLOR_2D];
61
62 switch (CIK__GB_TILE_MODE__PIPE_CONFIG(mode2d)) {
63 case CIK__PIPE_CONFIG__ADDR_SURF_P2:
64 return 2;
65 case CIK__PIPE_CONFIG__ADDR_SURF_P4_8x16:
66 case CIK__PIPE_CONFIG__ADDR_SURF_P4_16x16:
67 case CIK__PIPE_CONFIG__ADDR_SURF_P4_16x32:
68 case CIK__PIPE_CONFIG__ADDR_SURF_P4_32x32:
69 return 4;
70 case CIK__PIPE_CONFIG__ADDR_SURF_P8_16x16_8x16:
71 case CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_8x16:
72 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_8x16:
73 case CIK__PIPE_CONFIG__ADDR_SURF_P8_16x32_16x16:
74 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x16:
75 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x32_16x32:
76 case CIK__PIPE_CONFIG__ADDR_SURF_P8_32x64_32x32:
77 return 8;
78 case CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_8X16:
79 case CIK__PIPE_CONFIG__ADDR_SURF_P16_32X32_16X16:
80 return 16;
81 default:
82 fprintf(stderr, "Invalid GFX7 pipe configuration, assuming P2\n");
83 assert(!"this should never occur");
84 return 2;
85 }
86 }
87
88 static bool has_syncobj(int fd)
89 {
90 uint64_t value;
91 if (drmGetCap(fd, DRM_CAP_SYNCOBJ, &value))
92 return false;
93 return value ? true : false;
94 }
95
96 static uint64_t fix_vram_size(uint64_t size)
97 {
98 /* The VRAM size is underreported, so we need to fix it, because
99 * it's used to compute the number of memory modules for harvesting.
100 */
101 return align64(size, 256*1024*1024);
102 }
103
104 static uint32_t
105 get_l2_cache_size(enum radeon_family family)
106 {
107 switch (family) {
108 case CHIP_KABINI:
109 case CHIP_STONEY:
110 return 128 * 1024;
111 case CHIP_OLAND:
112 case CHIP_HAINAN:
113 case CHIP_ICELAND:
114 return 256 * 1024;
115 case CHIP_PITCAIRN:
116 case CHIP_VERDE:
117 case CHIP_BONAIRE:
118 case CHIP_KAVERI:
119 case CHIP_POLARIS12:
120 case CHIP_CARRIZO:
121 return 512 * 1024;
122 case CHIP_TAHITI:
123 case CHIP_TONGA:
124 return 768 * 1024;
125 break;
126 case CHIP_HAWAII:
127 case CHIP_POLARIS11:
128 return 1024 * 1024;
129 case CHIP_FIJI:
130 case CHIP_POLARIS10:
131 return 2048 * 1024;
132 break;
133 default:
134 return 4096 * 1024;
135 }
136 }
137
138 bool ac_query_gpu_info(int fd, void *dev_p,
139 struct radeon_info *info,
140 struct amdgpu_gpu_info *amdinfo)
141 {
142 struct drm_amdgpu_info_device device_info = {};
143 struct amdgpu_buffer_size_alignments alignment_info = {};
144 struct drm_amdgpu_info_hw_ip dma = {}, compute = {}, uvd = {};
145 struct drm_amdgpu_info_hw_ip uvd_enc = {}, vce = {}, vcn_dec = {}, vcn_jpeg = {};
146 struct drm_amdgpu_info_hw_ip vcn_enc = {}, gfx = {};
147 struct amdgpu_gds_resource_info gds = {};
148 uint32_t vce_version = 0, vce_feature = 0, uvd_version = 0, uvd_feature = 0;
149 int r, i, j;
150 amdgpu_device_handle dev = dev_p;
151 drmDevicePtr devinfo;
152
153 /* Get PCI info. */
154 r = drmGetDevice2(fd, 0, &devinfo);
155 if (r) {
156 fprintf(stderr, "amdgpu: drmGetDevice2 failed.\n");
157 return false;
158 }
159 info->pci_domain = devinfo->businfo.pci->domain;
160 info->pci_bus = devinfo->businfo.pci->bus;
161 info->pci_dev = devinfo->businfo.pci->dev;
162 info->pci_func = devinfo->businfo.pci->func;
163 drmFreeDevice(&devinfo);
164
165 assert(info->drm_major == 3);
166 info->is_amdgpu = true;
167
168 /* Query hardware and driver information. */
169 r = amdgpu_query_gpu_info(dev, amdinfo);
170 if (r) {
171 fprintf(stderr, "amdgpu: amdgpu_query_gpu_info failed.\n");
172 return false;
173 }
174
175 r = amdgpu_query_info(dev, AMDGPU_INFO_DEV_INFO, sizeof(device_info),
176 &device_info);
177 if (r) {
178 fprintf(stderr, "amdgpu: amdgpu_query_info(dev_info) failed.\n");
179 return false;
180 }
181
182 r = amdgpu_query_buffer_size_alignment(dev, &alignment_info);
183 if (r) {
184 fprintf(stderr, "amdgpu: amdgpu_query_buffer_size_alignment failed.\n");
185 return false;
186 }
187
188 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_DMA, 0, &dma);
189 if (r) {
190 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(dma) failed.\n");
191 return false;
192 }
193
194 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_GFX, 0, &gfx);
195 if (r) {
196 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(gfx) failed.\n");
197 return false;
198 }
199
200 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_COMPUTE, 0, &compute);
201 if (r) {
202 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(compute) failed.\n");
203 return false;
204 }
205
206 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_UVD, 0, &uvd);
207 if (r) {
208 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(uvd) failed.\n");
209 return false;
210 }
211
212 if (info->drm_minor >= 17) {
213 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_UVD_ENC, 0, &uvd_enc);
214 if (r) {
215 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(uvd_enc) failed.\n");
216 return false;
217 }
218 }
219
220 if (info->drm_minor >= 17) {
221 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_DEC, 0, &vcn_dec);
222 if (r) {
223 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_dec) failed.\n");
224 return false;
225 }
226 }
227
228 if (info->drm_minor >= 17) {
229 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_ENC, 0, &vcn_enc);
230 if (r) {
231 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_enc) failed.\n");
232 return false;
233 }
234 }
235
236 if (info->drm_minor >= 27) {
237 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_JPEG, 0, &vcn_jpeg);
238 if (r) {
239 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_jpeg) failed.\n");
240 return false;
241 }
242 }
243
244 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_GFX_ME, 0, 0,
245 &info->me_fw_version,
246 &info->me_fw_feature);
247 if (r) {
248 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(me) failed.\n");
249 return false;
250 }
251
252 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_GFX_PFP, 0, 0,
253 &info->pfp_fw_version,
254 &info->pfp_fw_feature);
255 if (r) {
256 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(pfp) failed.\n");
257 return false;
258 }
259
260 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_GFX_CE, 0, 0,
261 &info->ce_fw_version,
262 &info->ce_fw_feature);
263 if (r) {
264 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(ce) failed.\n");
265 return false;
266 }
267
268 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_UVD, 0, 0,
269 &uvd_version, &uvd_feature);
270 if (r) {
271 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(uvd) failed.\n");
272 return false;
273 }
274
275 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCE, 0, &vce);
276 if (r) {
277 fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vce) failed.\n");
278 return false;
279 }
280
281 r = amdgpu_query_firmware_version(dev, AMDGPU_INFO_FW_VCE, 0, 0,
282 &vce_version, &vce_feature);
283 if (r) {
284 fprintf(stderr, "amdgpu: amdgpu_query_firmware_version(vce) failed.\n");
285 return false;
286 }
287
288 r = amdgpu_query_sw_info(dev, amdgpu_sw_info_address32_hi, &info->address32_hi);
289 if (r) {
290 fprintf(stderr, "amdgpu: amdgpu_query_sw_info(address32_hi) failed.\n");
291 return false;
292 }
293
294 r = amdgpu_query_gds_info(dev, &gds);
295 if (r) {
296 fprintf(stderr, "amdgpu: amdgpu_query_gds_info failed.\n");
297 return false;
298 }
299
300 if (info->drm_minor >= 9) {
301 struct drm_amdgpu_memory_info meminfo = {};
302
303 r = amdgpu_query_info(dev, AMDGPU_INFO_MEMORY, sizeof(meminfo), &meminfo);
304 if (r) {
305 fprintf(stderr, "amdgpu: amdgpu_query_info(memory) failed.\n");
306 return false;
307 }
308
309 /* Note: usable_heap_size values can be random and can't be relied on. */
310 info->gart_size = meminfo.gtt.total_heap_size;
311 info->vram_size = fix_vram_size(meminfo.vram.total_heap_size);
312 info->vram_vis_size = meminfo.cpu_accessible_vram.total_heap_size;
313 } else {
314 /* This is a deprecated interface, which reports usable sizes
315 * (total minus pinned), but the pinned size computation is
316 * buggy, so the values returned from these functions can be
317 * random.
318 */
319 struct amdgpu_heap_info vram, vram_vis, gtt;
320
321 r = amdgpu_query_heap_info(dev, AMDGPU_GEM_DOMAIN_VRAM, 0, &vram);
322 if (r) {
323 fprintf(stderr, "amdgpu: amdgpu_query_heap_info(vram) failed.\n");
324 return false;
325 }
326
327 r = amdgpu_query_heap_info(dev, AMDGPU_GEM_DOMAIN_VRAM,
328 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
329 &vram_vis);
330 if (r) {
331 fprintf(stderr, "amdgpu: amdgpu_query_heap_info(vram_vis) failed.\n");
332 return false;
333 }
334
335 r = amdgpu_query_heap_info(dev, AMDGPU_GEM_DOMAIN_GTT, 0, &gtt);
336 if (r) {
337 fprintf(stderr, "amdgpu: amdgpu_query_heap_info(gtt) failed.\n");
338 return false;
339 }
340
341 info->gart_size = gtt.heap_size;
342 info->vram_size = fix_vram_size(vram.heap_size);
343 info->vram_vis_size = vram_vis.heap_size;
344 }
345
346 /* Set chip identification. */
347 info->pci_id = amdinfo->asic_id; /* TODO: is this correct? */
348 info->pci_rev_id = amdinfo->pci_rev_id;
349 info->vce_harvest_config = amdinfo->vce_harvest_config;
350
351 #define identify_chip2(asic, chipname) \
352 if (ASICREV_IS(amdinfo->chip_external_rev, asic)) { \
353 info->family = CHIP_##chipname; \
354 info->name = #chipname; \
355 }
356 #define identify_chip(chipname) identify_chip2(chipname, chipname)
357
358 switch (amdinfo->family_id) {
359 case FAMILY_SI:
360 identify_chip(TAHITI);
361 identify_chip(PITCAIRN);
362 identify_chip2(CAPEVERDE, VERDE);
363 identify_chip(OLAND);
364 identify_chip(HAINAN);
365 break;
366 case FAMILY_CI:
367 identify_chip(BONAIRE);
368 identify_chip(HAWAII);
369 break;
370 case FAMILY_KV:
371 identify_chip2(SPECTRE, KAVERI);
372 identify_chip2(SPOOKY, KAVERI);
373 identify_chip2(KALINDI, KABINI);
374 identify_chip2(GODAVARI, KABINI);
375 break;
376 case FAMILY_VI:
377 identify_chip(ICELAND);
378 identify_chip(TONGA);
379 identify_chip(FIJI);
380 identify_chip(POLARIS10);
381 identify_chip(POLARIS11);
382 identify_chip(POLARIS12);
383 identify_chip(VEGAM);
384 break;
385 case FAMILY_CZ:
386 identify_chip(CARRIZO);
387 identify_chip(STONEY);
388 break;
389 case FAMILY_AI:
390 identify_chip(VEGA10);
391 identify_chip(VEGA12);
392 identify_chip(VEGA20);
393 identify_chip(ARCTURUS);
394 break;
395 case FAMILY_RV:
396 identify_chip(RAVEN);
397 identify_chip(RAVEN2);
398 identify_chip(RENOIR);
399 break;
400 case FAMILY_NV:
401 identify_chip(NAVI10);
402 identify_chip(NAVI12);
403 identify_chip(NAVI14);
404 break;
405 }
406
407 if (!info->name) {
408 fprintf(stderr, "amdgpu: unknown (family_id, chip_external_rev): (%u, %u)\n",
409 amdinfo->family_id, amdinfo->chip_external_rev);
410 return false;
411 }
412
413 if (info->family >= CHIP_NAVI10)
414 info->chip_class = GFX10;
415 else if (info->family >= CHIP_VEGA10)
416 info->chip_class = GFX9;
417 else if (info->family >= CHIP_TONGA)
418 info->chip_class = GFX8;
419 else if (info->family >= CHIP_BONAIRE)
420 info->chip_class = GFX7;
421 else if (info->family >= CHIP_TAHITI)
422 info->chip_class = GFX6;
423 else {
424 fprintf(stderr, "amdgpu: Unknown family.\n");
425 return false;
426 }
427
428 info->family_id = amdinfo->family_id;
429 info->chip_external_rev = amdinfo->chip_external_rev;
430 info->marketing_name = amdgpu_get_marketing_name(dev);
431 info->is_pro_graphics = info->marketing_name &&
432 (!strcmp(info->marketing_name, "Pro") ||
433 !strcmp(info->marketing_name, "PRO") ||
434 !strcmp(info->marketing_name, "Frontier"));
435
436 /* Set which chips have dedicated VRAM. */
437 info->has_dedicated_vram =
438 !(amdinfo->ids_flags & AMDGPU_IDS_FLAGS_FUSION);
439
440 /* The kernel can split large buffers in VRAM but not in GTT, so large
441 * allocations can fail or cause buffer movement failures in the kernel.
442 */
443 if (info->has_dedicated_vram)
444 info->max_alloc_size = info->vram_size * 0.8;
445 else
446 info->max_alloc_size = info->gart_size * 0.7;
447
448 info->vram_type = amdinfo->vram_type;
449 info->vram_bit_width = amdinfo->vram_bit_width;
450 info->ce_ram_size = amdinfo->ce_ram_size;
451
452 info->l2_cache_size = get_l2_cache_size(info->family);
453 info->l1_cache_size = 16384;
454
455 /* Set which chips have uncached device memory. */
456 info->has_l2_uncached = info->chip_class >= GFX9;
457
458 /* Set hardware information. */
459 info->gds_size = gds.gds_total_size;
460 info->gds_gfx_partition_size = gds.gds_gfx_partition_size;
461 /* convert the shader/memory clocks from KHz to MHz */
462 info->max_shader_clock = amdinfo->max_engine_clk / 1000;
463 info->max_memory_clock = amdinfo->max_memory_clk / 1000;
464 info->num_tcc_blocks = device_info.num_tcc_blocks;
465 info->max_se = amdinfo->num_shader_engines;
466 info->max_sh_per_se = amdinfo->num_shader_arrays_per_engine;
467 info->has_hw_decode =
468 (uvd.available_rings != 0) || (vcn_dec.available_rings != 0) ||
469 (vcn_jpeg.available_rings != 0);
470 info->uvd_fw_version =
471 uvd.available_rings ? uvd_version : 0;
472 info->vce_fw_version =
473 vce.available_rings ? vce_version : 0;
474 info->uvd_enc_supported =
475 uvd_enc.available_rings ? true : false;
476 info->has_userptr = true;
477 info->has_syncobj = has_syncobj(fd);
478 info->has_syncobj_wait_for_submit = info->has_syncobj && info->drm_minor >= 20;
479 info->has_fence_to_handle = info->has_syncobj && info->drm_minor >= 21;
480 info->has_ctx_priority = info->drm_minor >= 22;
481 info->has_local_buffers = info->drm_minor >= 20;
482 info->kernel_flushes_hdp_before_ib = true;
483 info->htile_cmask_support_1d_tiling = true;
484 info->si_TA_CS_BC_BASE_ADDR_allowed = true;
485 info->has_bo_metadata = true;
486 info->has_gpu_reset_status_query = true;
487 info->has_eqaa_surface_allocator = true;
488 info->has_format_bc1_through_bc7 = true;
489 /* DRM 3.1.0 doesn't flush TC for GFX8 correctly. */
490 info->kernel_flushes_tc_l2_after_ib = info->chip_class != GFX8 ||
491 info->drm_minor >= 2;
492 info->has_indirect_compute_dispatch = true;
493 /* GFX6 doesn't support unaligned loads. */
494 info->has_unaligned_shader_loads = info->chip_class != GFX6;
495 /* Disable sparse mappings on GFX6 due to VM faults in CP DMA. Enable them once
496 * these faults are mitigated in software.
497 */
498 info->has_sparse_vm_mappings = info->chip_class >= GFX7 && info->drm_minor >= 13;
499 info->has_2d_tiling = true;
500 info->has_read_registers_query = true;
501 info->has_scheduled_fence_dependency = info->drm_minor >= 28;
502
503 info->pa_sc_tile_steering_override = device_info.pa_sc_tile_steering_override;
504 info->num_render_backends = amdinfo->rb_pipes;
505 /* The value returned by the kernel driver was wrong. */
506 if (info->family == CHIP_KAVERI)
507 info->num_render_backends = 2;
508
509 info->clock_crystal_freq = amdinfo->gpu_counter_freq;
510 if (!info->clock_crystal_freq) {
511 fprintf(stderr, "amdgpu: clock crystal frequency is 0, timestamps will be wrong\n");
512 info->clock_crystal_freq = 1;
513 }
514 if (info->chip_class >= GFX10) {
515 info->tcc_cache_line_size = 128;
516
517 if (info->drm_minor >= 35) {
518 info->tcc_harvested = device_info.tcc_disabled_mask != 0;
519 } else {
520 /* This is a hack, but it's all we can do without a kernel upgrade. */
521 info->tcc_harvested =
522 (info->vram_size / info->num_tcc_blocks) != 512*1024*1024;
523 }
524 } else {
525 info->tcc_cache_line_size = 64;
526 }
527 info->gb_addr_config = amdinfo->gb_addr_cfg;
528 if (info->chip_class == GFX9) {
529 info->num_tile_pipes = 1 << G_0098F8_NUM_PIPES(amdinfo->gb_addr_cfg);
530 info->pipe_interleave_bytes =
531 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX9(amdinfo->gb_addr_cfg);
532 } else {
533 info->num_tile_pipes = cik_get_num_tile_pipes(amdinfo);
534 info->pipe_interleave_bytes =
535 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX6(amdinfo->gb_addr_cfg);
536 }
537 info->r600_has_virtual_memory = true;
538
539 /* LDS is 64KB per CU (4 SIMDs), which is 16KB per SIMD (usage above
540 * 16KB makes some SIMDs unoccupied).
541 *
542 * LDS is 128KB in WGP mode and 64KB in CU mode. Assume the WGP mode is used.
543 */
544 info->lds_size_per_workgroup = info->chip_class >= GFX10 ? 128 * 1024 : 64 * 1024;
545 info->lds_granularity = info->chip_class >= GFX7 ? 128 * 4 : 64 * 4;
546
547 assert(util_is_power_of_two_or_zero(dma.available_rings + 1));
548 assert(util_is_power_of_two_or_zero(compute.available_rings + 1));
549
550 info->has_graphics = gfx.available_rings > 0;
551 info->num_rings[RING_GFX] = util_bitcount(gfx.available_rings);
552 info->num_rings[RING_COMPUTE] = util_bitcount(compute.available_rings);
553 info->num_rings[RING_DMA] = util_bitcount(dma.available_rings);
554 info->num_rings[RING_UVD] = util_bitcount(uvd.available_rings);
555 info->num_rings[RING_VCE] = util_bitcount(vce.available_rings);
556 info->num_rings[RING_UVD_ENC] = util_bitcount(uvd_enc.available_rings);
557 info->num_rings[RING_VCN_DEC] = util_bitcount(vcn_dec.available_rings);
558 info->num_rings[RING_VCN_ENC] = util_bitcount(vcn_enc.available_rings);
559 info->num_rings[RING_VCN_JPEG] = util_bitcount(vcn_jpeg.available_rings);
560
561 /* The mere presence of CLEAR_STATE in the IB causes random GPU hangs
562 * on GFX6. Some CLEAR_STATE cause asic hang on radeon kernel, etc.
563 * SPI_VS_OUT_CONFIG. So only enable GFX7 CLEAR_STATE on amdgpu kernel.
564 */
565 info->has_clear_state = info->chip_class >= GFX7;
566
567 info->has_distributed_tess = info->chip_class >= GFX10 ||
568 (info->chip_class >= GFX8 && info->max_se >= 2);
569
570 info->has_dcc_constant_encode = info->family == CHIP_RAVEN2 ||
571 info->family == CHIP_RENOIR ||
572 info->chip_class >= GFX10;
573
574 info->has_rbplus = info->family == CHIP_STONEY ||
575 info->chip_class >= GFX9;
576
577 /* Some chips have RB+ registers, but don't support RB+. Those must
578 * always disable it.
579 */
580 info->rbplus_allowed = info->has_rbplus &&
581 (info->family == CHIP_STONEY ||
582 info->family == CHIP_VEGA12 ||
583 info->family == CHIP_RAVEN ||
584 info->family == CHIP_RAVEN2 ||
585 info->family == CHIP_RENOIR ||
586 info->chip_class >= GFX10_3);
587
588 info->has_out_of_order_rast = info->chip_class >= GFX8 &&
589 info->chip_class <= GFX9 &&
590 info->max_se >= 2;
591
592 /* Whether chips support double rate packed math instructions. */
593 info->has_packed_math_16bit = info->chip_class >= GFX9;
594
595 /* TODO: Figure out how to use LOAD_CONTEXT_REG on GFX6-GFX7. */
596 info->has_load_ctx_reg_pkt = info->chip_class >= GFX9 ||
597 (info->chip_class >= GFX8 &&
598 info->me_fw_feature >= 41);
599
600 info->cpdma_prefetch_writes_memory = info->chip_class <= GFX8;
601
602 info->has_gfx9_scissor_bug = info->family == CHIP_VEGA10 ||
603 info->family == CHIP_RAVEN;
604
605 info->has_tc_compat_zrange_bug = info->chip_class >= GFX8 &&
606 info->chip_class <= GFX9;
607
608 info->has_msaa_sample_loc_bug = (info->family >= CHIP_POLARIS10 &&
609 info->family <= CHIP_POLARIS12) ||
610 info->family == CHIP_VEGA10 ||
611 info->family == CHIP_RAVEN;
612
613 info->has_ls_vgpr_init_bug = info->family == CHIP_VEGA10 ||
614 info->family == CHIP_RAVEN;
615
616 /* Get the number of good compute units. */
617 info->num_good_compute_units = 0;
618 for (i = 0; i < info->max_se; i++) {
619 for (j = 0; j < info->max_sh_per_se; j++) {
620 /*
621 * The cu bitmap in amd gpu info structure is
622 * 4x4 size array, and it's usually suitable for Vega
623 * ASICs which has 4*2 SE/SH layout.
624 * But for Arcturus, SE/SH layout is changed to 8*1.
625 * To mostly reduce the impact, we make it compatible
626 * with current bitmap array as below:
627 * SE4,SH0 --> cu_bitmap[0][1]
628 * SE5,SH0 --> cu_bitmap[1][1]
629 * SE6,SH0 --> cu_bitmap[2][1]
630 * SE7,SH0 --> cu_bitmap[3][1]
631 */
632 info->cu_mask[i%4][j+i/4] = amdinfo->cu_bitmap[i%4][j+i/4];
633 info->num_good_compute_units +=
634 util_bitcount(info->cu_mask[i][j]);
635 }
636 }
637
638 /* On GFX10, only whole WGPs (in units of 2 CUs) can be disabled,
639 * and max - min <= 2.
640 */
641 unsigned cu_group = info->chip_class >= GFX10 ? 2 : 1;
642 info->max_good_cu_per_sa = DIV_ROUND_UP(info->num_good_compute_units,
643 (info->max_se * info->max_sh_per_se * cu_group)) * cu_group;
644 info->min_good_cu_per_sa = (info->num_good_compute_units /
645 (info->max_se * info->max_sh_per_se * cu_group)) * cu_group;
646
647 memcpy(info->si_tile_mode_array, amdinfo->gb_tile_mode,
648 sizeof(amdinfo->gb_tile_mode));
649 info->enabled_rb_mask = amdinfo->enabled_rb_pipes_mask;
650
651 memcpy(info->cik_macrotile_mode_array, amdinfo->gb_macro_tile_mode,
652 sizeof(amdinfo->gb_macro_tile_mode));
653
654 info->pte_fragment_size = alignment_info.size_local;
655 info->gart_page_size = alignment_info.size_remote;
656
657 if (info->chip_class == GFX6)
658 info->gfx_ib_pad_with_type2 = true;
659
660 unsigned ib_align = 0;
661 ib_align = MAX2(ib_align, gfx.ib_start_alignment);
662 ib_align = MAX2(ib_align, gfx.ib_size_alignment);
663 ib_align = MAX2(ib_align, compute.ib_start_alignment);
664 ib_align = MAX2(ib_align, compute.ib_size_alignment);
665 ib_align = MAX2(ib_align, dma.ib_start_alignment);
666 ib_align = MAX2(ib_align, dma.ib_size_alignment);
667 ib_align = MAX2(ib_align, uvd.ib_start_alignment);
668 ib_align = MAX2(ib_align, uvd.ib_size_alignment);
669 ib_align = MAX2(ib_align, uvd_enc.ib_start_alignment);
670 ib_align = MAX2(ib_align, uvd_enc.ib_size_alignment);
671 ib_align = MAX2(ib_align, vce.ib_start_alignment);
672 ib_align = MAX2(ib_align, vce.ib_size_alignment);
673 ib_align = MAX2(ib_align, vcn_dec.ib_start_alignment);
674 ib_align = MAX2(ib_align, vcn_dec.ib_size_alignment);
675 ib_align = MAX2(ib_align, vcn_enc.ib_start_alignment);
676 ib_align = MAX2(ib_align, vcn_enc.ib_size_alignment);
677 ib_align = MAX2(ib_align, vcn_jpeg.ib_start_alignment);
678 ib_align = MAX2(ib_align, vcn_jpeg.ib_size_alignment);
679 /* GFX10 and maybe GFX9 need this alignment for cache coherency. */
680 if (info->chip_class >= GFX9)
681 ib_align = MAX2(ib_align, info->tcc_cache_line_size);
682 assert(ib_align);
683 info->ib_alignment = ib_align;
684
685 if ((info->drm_minor >= 31 &&
686 (info->family == CHIP_RAVEN ||
687 info->family == CHIP_RAVEN2 ||
688 info->family == CHIP_RENOIR)) ||
689 (info->drm_minor >= 34 &&
690 (info->family == CHIP_NAVI12 ||
691 info->family == CHIP_NAVI14))) {
692 if (info->num_render_backends == 1)
693 info->use_display_dcc_unaligned = true;
694 else
695 info->use_display_dcc_with_retile_blit = true;
696 }
697
698 info->has_gds_ordered_append = info->chip_class >= GFX7 &&
699 info->drm_minor >= 29;
700
701 if (info->chip_class >= GFX9) {
702 unsigned pc_lines = 0;
703
704 switch (info->family) {
705 case CHIP_VEGA10:
706 case CHIP_VEGA12:
707 case CHIP_VEGA20:
708 pc_lines = 2048;
709 break;
710 case CHIP_RAVEN:
711 case CHIP_RAVEN2:
712 case CHIP_RENOIR:
713 case CHIP_NAVI10:
714 case CHIP_NAVI12:
715 pc_lines = 1024;
716 break;
717 case CHIP_NAVI14:
718 pc_lines = 512;
719 break;
720 case CHIP_ARCTURUS:
721 break;
722 default:
723 assert(0);
724 }
725
726 info->pc_lines = pc_lines;
727
728 if (info->chip_class >= GFX10) {
729 info->pbb_max_alloc_count = pc_lines / 3;
730 } else {
731 info->pbb_max_alloc_count =
732 MIN2(128, pc_lines / (4 * info->max_se));
733 }
734 }
735
736 /* The number of SDPs is the same as the number of TCCs for now. */
737 if (info->chip_class >= GFX10)
738 info->num_sdp_interfaces = device_info.num_tcc_blocks;
739
740 if (info->chip_class >= GFX10_3)
741 info->max_wave64_per_simd = 16;
742 else if (info->chip_class == GFX10)
743 info->max_wave64_per_simd = 20;
744 else if (info->family >= CHIP_POLARIS10 && info->family <= CHIP_VEGAM)
745 info->max_wave64_per_simd = 8;
746 else
747 info->max_wave64_per_simd = 10;
748
749 /* The number is per SIMD. There is enough SGPRs for the maximum number
750 * of Wave32, which is double the number for Wave64.
751 */
752 if (info->chip_class >= GFX10) {
753 info->num_physical_sgprs_per_simd = 128 * info->max_wave64_per_simd * 2;
754 info->min_sgpr_alloc = 128;
755 info->sgpr_alloc_granularity = 128;
756 /* Don't use late alloc on small chips. */
757 info->use_late_alloc = info->num_render_backends > 4;
758 } else if (info->chip_class >= GFX8) {
759 info->num_physical_sgprs_per_simd = 800;
760 info->min_sgpr_alloc = 16;
761 info->sgpr_alloc_granularity = 16;
762 info->use_late_alloc = true;
763 } else {
764 info->num_physical_sgprs_per_simd = 512;
765 info->min_sgpr_alloc = 8;
766 info->sgpr_alloc_granularity = 8;
767 /* Potential hang on Kabini: */
768 info->use_late_alloc = info->family != CHIP_KABINI;
769 }
770
771 info->max_sgpr_alloc = info->family == CHIP_TONGA ||
772 info->family == CHIP_ICELAND ? 96 : 104;
773
774 info->min_wave64_vgpr_alloc = 4;
775 info->max_vgpr_alloc = 256;
776 info->wave64_vgpr_alloc_granularity = 4;
777
778 info->num_physical_wave64_vgprs_per_simd = info->chip_class >= GFX10 ? 512 : 256;
779 info->num_simd_per_compute_unit = info->chip_class >= GFX10 ? 2 : 4;
780
781 return true;
782 }
783
784 void ac_compute_driver_uuid(char *uuid, size_t size)
785 {
786 char amd_uuid[] = "AMD-MESA-DRV";
787
788 assert(size >= sizeof(amd_uuid));
789
790 memset(uuid, 0, size);
791 strncpy(uuid, amd_uuid, size);
792 }
793
794 void ac_compute_device_uuid(struct radeon_info *info, char *uuid, size_t size)
795 {
796 uint32_t *uint_uuid = (uint32_t*)uuid;
797
798 assert(size >= sizeof(uint32_t)*4);
799
800 /**
801 * Use the device info directly instead of using a sha1. GL/VK UUIDs
802 * are 16 byte vs 20 byte for sha1, and the truncation that would be
803 * required would get rid of part of the little entropy we have.
804 * */
805 memset(uuid, 0, size);
806 uint_uuid[0] = info->pci_domain;
807 uint_uuid[1] = info->pci_bus;
808 uint_uuid[2] = info->pci_dev;
809 uint_uuid[3] = info->pci_func;
810 }
811
812 void ac_print_gpu_info(struct radeon_info *info)
813 {
814 printf("Device info:\n");
815 printf(" pci (domain:bus:dev.func): %04x:%02x:%02x.%x\n",
816 info->pci_domain, info->pci_bus,
817 info->pci_dev, info->pci_func);
818
819 printf(" name = %s\n", info->name);
820 printf(" marketing_name = %s\n", info->marketing_name);
821 printf(" is_pro_graphics = %u\n", info->is_pro_graphics);
822 printf(" pci_id = 0x%x\n", info->pci_id);
823 printf(" pci_rev_id = 0x%x\n", info->pci_rev_id);
824 printf(" family = %i\n", info->family);
825 printf(" chip_class = %i\n", info->chip_class);
826 printf(" family_id = %i\n", info->family_id);
827 printf(" chip_external_rev = %i\n", info->chip_external_rev);
828 printf(" clock_crystal_freq = %i\n", info->clock_crystal_freq);
829
830 printf("Features:\n");
831 printf(" has_graphics = %i\n", info->has_graphics);
832 printf(" num_rings[RING_GFX] = %i\n", info->num_rings[RING_GFX]);
833 printf(" num_rings[RING_DMA] = %i\n", info->num_rings[RING_DMA]);
834 printf(" num_rings[RING_COMPUTE] = %u\n", info->num_rings[RING_COMPUTE]);
835 printf(" num_rings[RING_UVD] = %i\n", info->num_rings[RING_UVD]);
836 printf(" num_rings[RING_VCE] = %i\n", info->num_rings[RING_VCE]);
837 printf(" num_rings[RING_UVD_ENC] = %i\n", info->num_rings[RING_UVD_ENC]);
838 printf(" num_rings[RING_VCN_DEC] = %i\n", info->num_rings[RING_VCN_DEC]);
839 printf(" num_rings[RING_VCN_ENC] = %i\n", info->num_rings[RING_VCN_ENC]);
840 printf(" num_rings[RING_VCN_JPEG] = %i\n", info->num_rings[RING_VCN_JPEG]);
841 printf(" has_clear_state = %u\n", info->has_clear_state);
842 printf(" has_distributed_tess = %u\n", info->has_distributed_tess);
843 printf(" has_dcc_constant_encode = %u\n", info->has_dcc_constant_encode);
844 printf(" has_rbplus = %u\n", info->has_rbplus);
845 printf(" rbplus_allowed = %u\n", info->rbplus_allowed);
846 printf(" has_load_ctx_reg_pkt = %u\n", info->has_load_ctx_reg_pkt);
847 printf(" has_out_of_order_rast = %u\n", info->has_out_of_order_rast);
848 printf(" cpdma_prefetch_writes_memory = %u\n", info->cpdma_prefetch_writes_memory);
849 printf(" has_gfx9_scissor_bug = %i\n", info->has_gfx9_scissor_bug);
850 printf(" has_tc_compat_zrange_bug = %i\n", info->has_tc_compat_zrange_bug);
851 printf(" has_msaa_sample_loc_bug = %i\n", info->has_msaa_sample_loc_bug);
852 printf(" has_ls_vgpr_init_bug = %i\n", info->has_ls_vgpr_init_bug);
853
854 printf("Display features:\n");
855 printf(" use_display_dcc_unaligned = %u\n", info->use_display_dcc_unaligned);
856 printf(" use_display_dcc_with_retile_blit = %u\n", info->use_display_dcc_with_retile_blit);
857
858 printf("Memory info:\n");
859 printf(" pte_fragment_size = %u\n", info->pte_fragment_size);
860 printf(" gart_page_size = %u\n", info->gart_page_size);
861 printf(" gart_size = %i MB\n", (int)DIV_ROUND_UP(info->gart_size, 1024*1024));
862 printf(" vram_size = %i MB\n", (int)DIV_ROUND_UP(info->vram_size, 1024*1024));
863 printf(" vram_vis_size = %i MB\n", (int)DIV_ROUND_UP(info->vram_vis_size, 1024*1024));
864 printf(" vram_type = %i\n", info->vram_type);
865 printf(" vram_bit_width = %i\n", info->vram_bit_width);
866 printf(" gds_size = %u kB\n", info->gds_size / 1024);
867 printf(" gds_gfx_partition_size = %u kB\n", info->gds_gfx_partition_size / 1024);
868 printf(" max_alloc_size = %i MB\n",
869 (int)DIV_ROUND_UP(info->max_alloc_size, 1024*1024));
870 printf(" min_alloc_size = %u\n", info->min_alloc_size);
871 printf(" address32_hi = %u\n", info->address32_hi);
872 printf(" has_dedicated_vram = %u\n", info->has_dedicated_vram);
873 printf(" num_sdp_interfaces = %u\n", info->num_sdp_interfaces);
874 printf(" num_tcc_blocks = %i\n", info->num_tcc_blocks);
875 printf(" tcc_cache_line_size = %u\n", info->tcc_cache_line_size);
876 printf(" tcc_harvested = %u\n", info->tcc_harvested);
877 printf(" pc_lines = %u\n", info->pc_lines);
878 printf(" lds_size_per_workgroup = %u\n", info->lds_size_per_workgroup);
879 printf(" lds_granularity = %i\n", info->lds_granularity);
880 printf(" max_memory_clock = %i\n", info->max_memory_clock);
881 printf(" ce_ram_size = %i\n", info->ce_ram_size);
882 printf(" l1_cache_size = %i\n", info->l1_cache_size);
883 printf(" l2_cache_size = %i\n", info->l2_cache_size);
884
885 printf("CP info:\n");
886 printf(" gfx_ib_pad_with_type2 = %i\n", info->gfx_ib_pad_with_type2);
887 printf(" ib_alignment = %u\n", info->ib_alignment);
888 printf(" me_fw_version = %i\n", info->me_fw_version);
889 printf(" me_fw_feature = %i\n", info->me_fw_feature);
890 printf(" pfp_fw_version = %i\n", info->pfp_fw_version);
891 printf(" pfp_fw_feature = %i\n", info->pfp_fw_feature);
892 printf(" ce_fw_version = %i\n", info->ce_fw_version);
893 printf(" ce_fw_feature = %i\n", info->ce_fw_feature);
894
895 printf("Multimedia info:\n");
896 printf(" has_hw_decode = %u\n", info->has_hw_decode);
897 printf(" uvd_enc_supported = %u\n", info->uvd_enc_supported);
898 printf(" uvd_fw_version = %u\n", info->uvd_fw_version);
899 printf(" vce_fw_version = %u\n", info->vce_fw_version);
900 printf(" vce_harvest_config = %i\n", info->vce_harvest_config);
901
902 printf("Kernel & winsys capabilities:\n");
903 printf(" drm = %i.%i.%i\n", info->drm_major,
904 info->drm_minor, info->drm_patchlevel);
905 printf(" has_userptr = %i\n", info->has_userptr);
906 printf(" has_syncobj = %u\n", info->has_syncobj);
907 printf(" has_syncobj_wait_for_submit = %u\n", info->has_syncobj_wait_for_submit);
908 printf(" has_fence_to_handle = %u\n", info->has_fence_to_handle);
909 printf(" has_ctx_priority = %u\n", info->has_ctx_priority);
910 printf(" has_local_buffers = %u\n", info->has_local_buffers);
911 printf(" kernel_flushes_hdp_before_ib = %u\n", info->kernel_flushes_hdp_before_ib);
912 printf(" htile_cmask_support_1d_tiling = %u\n", info->htile_cmask_support_1d_tiling);
913 printf(" si_TA_CS_BC_BASE_ADDR_allowed = %u\n", info->si_TA_CS_BC_BASE_ADDR_allowed);
914 printf(" has_bo_metadata = %u\n", info->has_bo_metadata);
915 printf(" has_gpu_reset_status_query = %u\n", info->has_gpu_reset_status_query);
916 printf(" has_eqaa_surface_allocator = %u\n", info->has_eqaa_surface_allocator);
917 printf(" has_format_bc1_through_bc7 = %u\n", info->has_format_bc1_through_bc7);
918 printf(" kernel_flushes_tc_l2_after_ib = %u\n", info->kernel_flushes_tc_l2_after_ib);
919 printf(" has_indirect_compute_dispatch = %u\n", info->has_indirect_compute_dispatch);
920 printf(" has_unaligned_shader_loads = %u\n", info->has_unaligned_shader_loads);
921 printf(" has_sparse_vm_mappings = %u\n", info->has_sparse_vm_mappings);
922 printf(" has_2d_tiling = %u\n", info->has_2d_tiling);
923 printf(" has_read_registers_query = %u\n", info->has_read_registers_query);
924 printf(" has_gds_ordered_append = %u\n", info->has_gds_ordered_append);
925 printf(" has_scheduled_fence_dependency = %u\n", info->has_scheduled_fence_dependency);
926
927 printf("Shader core info:\n");
928 printf(" max_shader_clock = %i\n", info->max_shader_clock);
929 printf(" num_good_compute_units = %i\n", info->num_good_compute_units);
930 printf(" max_good_cu_per_sa = %i\n", info->max_good_cu_per_sa);
931 printf(" min_good_cu_per_sa = %i\n", info->min_good_cu_per_sa);
932 printf(" max_se = %i\n", info->max_se);
933 printf(" max_sh_per_se = %i\n", info->max_sh_per_se);
934 printf(" max_wave64_per_simd = %i\n", info->max_wave64_per_simd);
935 printf(" num_physical_sgprs_per_simd = %i\n", info->num_physical_sgprs_per_simd);
936 printf(" num_physical_wave64_vgprs_per_simd = %i\n", info->num_physical_wave64_vgprs_per_simd);
937 printf(" num_simd_per_compute_unit = %i\n", info->num_simd_per_compute_unit);
938 printf(" min_sgpr_alloc = %i\n", info->min_sgpr_alloc);
939 printf(" max_sgpr_alloc = %i\n", info->max_sgpr_alloc);
940 printf(" sgpr_alloc_granularity = %i\n", info->sgpr_alloc_granularity);
941 printf(" min_wave64_vgpr_alloc = %i\n", info->min_wave64_vgpr_alloc);
942 printf(" max_vgpr_alloc = %i\n", info->max_vgpr_alloc);
943 printf(" wave64_vgpr_alloc_granularity = %i\n", info->wave64_vgpr_alloc_granularity);
944
945 printf("Render backend info:\n");
946 printf(" pa_sc_tile_steering_override = 0x%x\n", info->pa_sc_tile_steering_override);
947 printf(" num_render_backends = %i\n", info->num_render_backends);
948 printf(" num_tile_pipes = %i\n", info->num_tile_pipes);
949 printf(" pipe_interleave_bytes = %i\n", info->pipe_interleave_bytes);
950 printf(" enabled_rb_mask = 0x%x\n", info->enabled_rb_mask);
951 printf(" max_alignment = %u\n", (unsigned)info->max_alignment);
952 printf(" pbb_max_alloc_count = %u\n", info->pbb_max_alloc_count);
953
954 printf("GB_ADDR_CONFIG: 0x%08x\n", info->gb_addr_config);
955 if (info->chip_class >= GFX10) {
956 printf(" num_pipes = %u\n",
957 1 << G_0098F8_NUM_PIPES(info->gb_addr_config));
958 printf(" pipe_interleave_size = %u\n",
959 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX9(info->gb_addr_config));
960 printf(" max_compressed_frags = %u\n",
961 1 << G_0098F8_MAX_COMPRESSED_FRAGS(info->gb_addr_config));
962 } else if (info->chip_class == GFX9) {
963 printf(" num_pipes = %u\n",
964 1 << G_0098F8_NUM_PIPES(info->gb_addr_config));
965 printf(" pipe_interleave_size = %u\n",
966 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX9(info->gb_addr_config));
967 printf(" max_compressed_frags = %u\n",
968 1 << G_0098F8_MAX_COMPRESSED_FRAGS(info->gb_addr_config));
969 printf(" bank_interleave_size = %u\n",
970 1 << G_0098F8_BANK_INTERLEAVE_SIZE(info->gb_addr_config));
971 printf(" num_banks = %u\n",
972 1 << G_0098F8_NUM_BANKS(info->gb_addr_config));
973 printf(" shader_engine_tile_size = %u\n",
974 16 << G_0098F8_SHADER_ENGINE_TILE_SIZE(info->gb_addr_config));
975 printf(" num_shader_engines = %u\n",
976 1 << G_0098F8_NUM_SHADER_ENGINES_GFX9(info->gb_addr_config));
977 printf(" num_gpus = %u (raw)\n",
978 G_0098F8_NUM_GPUS_GFX9(info->gb_addr_config));
979 printf(" multi_gpu_tile_size = %u (raw)\n",
980 G_0098F8_MULTI_GPU_TILE_SIZE(info->gb_addr_config));
981 printf(" num_rb_per_se = %u\n",
982 1 << G_0098F8_NUM_RB_PER_SE(info->gb_addr_config));
983 printf(" row_size = %u\n",
984 1024 << G_0098F8_ROW_SIZE(info->gb_addr_config));
985 printf(" num_lower_pipes = %u (raw)\n",
986 G_0098F8_NUM_LOWER_PIPES(info->gb_addr_config));
987 printf(" se_enable = %u (raw)\n",
988 G_0098F8_SE_ENABLE(info->gb_addr_config));
989 } else {
990 printf(" num_pipes = %u\n",
991 1 << G_0098F8_NUM_PIPES(info->gb_addr_config));
992 printf(" pipe_interleave_size = %u\n",
993 256 << G_0098F8_PIPE_INTERLEAVE_SIZE_GFX6(info->gb_addr_config));
994 printf(" bank_interleave_size = %u\n",
995 1 << G_0098F8_BANK_INTERLEAVE_SIZE(info->gb_addr_config));
996 printf(" num_shader_engines = %u\n",
997 1 << G_0098F8_NUM_SHADER_ENGINES_GFX6(info->gb_addr_config));
998 printf(" shader_engine_tile_size = %u\n",
999 16 << G_0098F8_SHADER_ENGINE_TILE_SIZE(info->gb_addr_config));
1000 printf(" num_gpus = %u (raw)\n",
1001 G_0098F8_NUM_GPUS_GFX6(info->gb_addr_config));
1002 printf(" multi_gpu_tile_size = %u (raw)\n",
1003 G_0098F8_MULTI_GPU_TILE_SIZE(info->gb_addr_config));
1004 printf(" row_size = %u\n",
1005 1024 << G_0098F8_ROW_SIZE(info->gb_addr_config));
1006 printf(" num_lower_pipes = %u (raw)\n",
1007 G_0098F8_NUM_LOWER_PIPES(info->gb_addr_config));
1008 }
1009 }
1010
1011 int
1012 ac_get_gs_table_depth(enum chip_class chip_class, enum radeon_family family)
1013 {
1014 if (chip_class >= GFX9)
1015 return -1;
1016
1017 switch (family) {
1018 case CHIP_OLAND:
1019 case CHIP_HAINAN:
1020 case CHIP_KAVERI:
1021 case CHIP_KABINI:
1022 case CHIP_ICELAND:
1023 case CHIP_CARRIZO:
1024 case CHIP_STONEY:
1025 return 16;
1026 case CHIP_TAHITI:
1027 case CHIP_PITCAIRN:
1028 case CHIP_VERDE:
1029 case CHIP_BONAIRE:
1030 case CHIP_HAWAII:
1031 case CHIP_TONGA:
1032 case CHIP_FIJI:
1033 case CHIP_POLARIS10:
1034 case CHIP_POLARIS11:
1035 case CHIP_POLARIS12:
1036 case CHIP_VEGAM:
1037 return 32;
1038 default:
1039 unreachable("Unknown GPU");
1040 }
1041 }
1042
1043 void
1044 ac_get_raster_config(struct radeon_info *info,
1045 uint32_t *raster_config_p,
1046 uint32_t *raster_config_1_p,
1047 uint32_t *se_tile_repeat_p)
1048 {
1049 unsigned raster_config, raster_config_1, se_tile_repeat;
1050
1051 switch (info->family) {
1052 /* 1 SE / 1 RB */
1053 case CHIP_HAINAN:
1054 case CHIP_KABINI:
1055 case CHIP_STONEY:
1056 raster_config = 0x00000000;
1057 raster_config_1 = 0x00000000;
1058 break;
1059 /* 1 SE / 4 RBs */
1060 case CHIP_VERDE:
1061 raster_config = 0x0000124a;
1062 raster_config_1 = 0x00000000;
1063 break;
1064 /* 1 SE / 2 RBs (Oland is special) */
1065 case CHIP_OLAND:
1066 raster_config = 0x00000082;
1067 raster_config_1 = 0x00000000;
1068 break;
1069 /* 1 SE / 2 RBs */
1070 case CHIP_KAVERI:
1071 case CHIP_ICELAND:
1072 case CHIP_CARRIZO:
1073 raster_config = 0x00000002;
1074 raster_config_1 = 0x00000000;
1075 break;
1076 /* 2 SEs / 4 RBs */
1077 case CHIP_BONAIRE:
1078 case CHIP_POLARIS11:
1079 case CHIP_POLARIS12:
1080 raster_config = 0x16000012;
1081 raster_config_1 = 0x00000000;
1082 break;
1083 /* 2 SEs / 8 RBs */
1084 case CHIP_TAHITI:
1085 case CHIP_PITCAIRN:
1086 raster_config = 0x2a00126a;
1087 raster_config_1 = 0x00000000;
1088 break;
1089 /* 4 SEs / 8 RBs */
1090 case CHIP_TONGA:
1091 case CHIP_POLARIS10:
1092 raster_config = 0x16000012;
1093 raster_config_1 = 0x0000002a;
1094 break;
1095 /* 4 SEs / 16 RBs */
1096 case CHIP_HAWAII:
1097 case CHIP_FIJI:
1098 case CHIP_VEGAM:
1099 raster_config = 0x3a00161a;
1100 raster_config_1 = 0x0000002e;
1101 break;
1102 default:
1103 fprintf(stderr,
1104 "ac: Unknown GPU, using 0 for raster_config\n");
1105 raster_config = 0x00000000;
1106 raster_config_1 = 0x00000000;
1107 break;
1108 }
1109
1110 /* drm/radeon on Kaveri is buggy, so disable 1 RB to work around it.
1111 * This decreases performance by up to 50% when the RB is the bottleneck.
1112 */
1113 if (info->family == CHIP_KAVERI && !info->is_amdgpu)
1114 raster_config = 0x00000000;
1115
1116 /* Fiji: Old kernels have incorrect tiling config. This decreases
1117 * RB performance by 25%. (it disables 1 RB in the second packer)
1118 */
1119 if (info->family == CHIP_FIJI &&
1120 info->cik_macrotile_mode_array[0] == 0x000000e8) {
1121 raster_config = 0x16000012;
1122 raster_config_1 = 0x0000002a;
1123 }
1124
1125 unsigned se_width = 8 << G_028350_SE_XSEL_GFX6(raster_config);
1126 unsigned se_height = 8 << G_028350_SE_YSEL_GFX6(raster_config);
1127
1128 /* I don't know how to calculate this, though this is probably a good guess. */
1129 se_tile_repeat = MAX2(se_width, se_height) * info->max_se;
1130
1131 *raster_config_p = raster_config;
1132 *raster_config_1_p = raster_config_1;
1133 if (se_tile_repeat_p)
1134 *se_tile_repeat_p = se_tile_repeat;
1135 }
1136
1137 void
1138 ac_get_harvested_configs(struct radeon_info *info,
1139 unsigned raster_config,
1140 unsigned *cik_raster_config_1_p,
1141 unsigned *raster_config_se)
1142 {
1143 unsigned sh_per_se = MAX2(info->max_sh_per_se, 1);
1144 unsigned num_se = MAX2(info->max_se, 1);
1145 unsigned rb_mask = info->enabled_rb_mask;
1146 unsigned num_rb = MIN2(info->num_render_backends, 16);
1147 unsigned rb_per_pkr = MIN2(num_rb / num_se / sh_per_se, 2);
1148 unsigned rb_per_se = num_rb / num_se;
1149 unsigned se_mask[4];
1150 unsigned se;
1151
1152 se_mask[0] = ((1 << rb_per_se) - 1) & rb_mask;
1153 se_mask[1] = (se_mask[0] << rb_per_se) & rb_mask;
1154 se_mask[2] = (se_mask[1] << rb_per_se) & rb_mask;
1155 se_mask[3] = (se_mask[2] << rb_per_se) & rb_mask;
1156
1157 assert(num_se == 1 || num_se == 2 || num_se == 4);
1158 assert(sh_per_se == 1 || sh_per_se == 2);
1159 assert(rb_per_pkr == 1 || rb_per_pkr == 2);
1160
1161
1162 if (info->chip_class >= GFX7) {
1163 unsigned raster_config_1 = *cik_raster_config_1_p;
1164 if ((num_se > 2) && ((!se_mask[0] && !se_mask[1]) ||
1165 (!se_mask[2] && !se_mask[3]))) {
1166 raster_config_1 &= C_028354_SE_PAIR_MAP;
1167
1168 if (!se_mask[0] && !se_mask[1]) {
1169 raster_config_1 |=
1170 S_028354_SE_PAIR_MAP(V_028354_RASTER_CONFIG_SE_PAIR_MAP_3);
1171 } else {
1172 raster_config_1 |=
1173 S_028354_SE_PAIR_MAP(V_028354_RASTER_CONFIG_SE_PAIR_MAP_0);
1174 }
1175 *cik_raster_config_1_p = raster_config_1;
1176 }
1177 }
1178
1179 for (se = 0; se < num_se; se++) {
1180 unsigned pkr0_mask = ((1 << rb_per_pkr) - 1) << (se * rb_per_se);
1181 unsigned pkr1_mask = pkr0_mask << rb_per_pkr;
1182 int idx = (se / 2) * 2;
1183
1184 raster_config_se[se] = raster_config;
1185 if ((num_se > 1) && (!se_mask[idx] || !se_mask[idx + 1])) {
1186 raster_config_se[se] &= C_028350_SE_MAP;
1187
1188 if (!se_mask[idx]) {
1189 raster_config_se[se] |=
1190 S_028350_SE_MAP(V_028350_RASTER_CONFIG_SE_MAP_3);
1191 } else {
1192 raster_config_se[se] |=
1193 S_028350_SE_MAP(V_028350_RASTER_CONFIG_SE_MAP_0);
1194 }
1195 }
1196
1197 pkr0_mask &= rb_mask;
1198 pkr1_mask &= rb_mask;
1199 if (rb_per_se > 2 && (!pkr0_mask || !pkr1_mask)) {
1200 raster_config_se[se] &= C_028350_PKR_MAP;
1201
1202 if (!pkr0_mask) {
1203 raster_config_se[se] |=
1204 S_028350_PKR_MAP(V_028350_RASTER_CONFIG_PKR_MAP_3);
1205 } else {
1206 raster_config_se[se] |=
1207 S_028350_PKR_MAP(V_028350_RASTER_CONFIG_PKR_MAP_0);
1208 }
1209 }
1210
1211 if (rb_per_se >= 2) {
1212 unsigned rb0_mask = 1 << (se * rb_per_se);
1213 unsigned rb1_mask = rb0_mask << 1;
1214
1215 rb0_mask &= rb_mask;
1216 rb1_mask &= rb_mask;
1217 if (!rb0_mask || !rb1_mask) {
1218 raster_config_se[se] &= C_028350_RB_MAP_PKR0;
1219
1220 if (!rb0_mask) {
1221 raster_config_se[se] |=
1222 S_028350_RB_MAP_PKR0(V_028350_RASTER_CONFIG_RB_MAP_3);
1223 } else {
1224 raster_config_se[se] |=
1225 S_028350_RB_MAP_PKR0(V_028350_RASTER_CONFIG_RB_MAP_0);
1226 }
1227 }
1228
1229 if (rb_per_se > 2) {
1230 rb0_mask = 1 << (se * rb_per_se + rb_per_pkr);
1231 rb1_mask = rb0_mask << 1;
1232 rb0_mask &= rb_mask;
1233 rb1_mask &= rb_mask;
1234 if (!rb0_mask || !rb1_mask) {
1235 raster_config_se[se] &= C_028350_RB_MAP_PKR1;
1236
1237 if (!rb0_mask) {
1238 raster_config_se[se] |=
1239 S_028350_RB_MAP_PKR1(V_028350_RASTER_CONFIG_RB_MAP_3);
1240 } else {
1241 raster_config_se[se] |=
1242 S_028350_RB_MAP_PKR1(V_028350_RASTER_CONFIG_RB_MAP_0);
1243 }
1244 }
1245 }
1246 }
1247 }
1248 }
1249
1250 unsigned ac_get_compute_resource_limits(struct radeon_info *info,
1251 unsigned waves_per_threadgroup,
1252 unsigned max_waves_per_sh,
1253 unsigned threadgroups_per_cu)
1254 {
1255 unsigned compute_resource_limits =
1256 S_00B854_SIMD_DEST_CNTL(waves_per_threadgroup % 4 == 0);
1257
1258 if (info->chip_class >= GFX7) {
1259 unsigned num_cu_per_se = info->num_good_compute_units /
1260 info->max_se;
1261
1262 /* Force even distribution on all SIMDs in CU if the workgroup
1263 * size is 64. This has shown some good improvements if # of CUs
1264 * per SE is not a multiple of 4.
1265 */
1266 if (num_cu_per_se % 4 && waves_per_threadgroup == 1)
1267 compute_resource_limits |= S_00B854_FORCE_SIMD_DIST(1);
1268
1269 assert(threadgroups_per_cu >= 1 && threadgroups_per_cu <= 8);
1270 compute_resource_limits |= S_00B854_WAVES_PER_SH(max_waves_per_sh) |
1271 S_00B854_CU_GROUP_COUNT(threadgroups_per_cu - 1);
1272 } else {
1273 /* GFX6 */
1274 if (max_waves_per_sh) {
1275 unsigned limit_div16 = DIV_ROUND_UP(max_waves_per_sh, 16);
1276 compute_resource_limits |= S_00B854_WAVES_PER_SH_SI(limit_div16);
1277 }
1278 }
1279 return compute_resource_limits;
1280 }