winsys/radeon: set more radeon_info fields

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23221>
This commit is contained in:
Marek Olšák
2023-05-24 17:28:17 -04:00
committed by Marge Bot
parent 474f9fbe86
commit c5054b1dfd

View File

@@ -565,6 +565,22 @@ static bool do_winsys_init(struct radeon_drm_winsys *ws)
ws->info.spi_cu_en_has_effect = false;
ws->info.spi_cu_en = 0xffff;
ws->info.never_stop_sq_perf_counters = false;
ws->info.num_rb = util_bitcount64(ws->info.enabled_rb_mask);
ws->info.max_gflops = 128 * ws->info.num_cu * ws->info.max_gpu_freq_mhz / 1000;
ws->info.num_tcc_blocks = ws->info.max_tcc_blocks;
ws->info.tcp_cache_size = 16 * 1024;
ws->info.num_simd_per_compute_unit = 4;
ws->info.min_sgpr_alloc = 8;
ws->info.max_sgpr_alloc = 104;
ws->info.sgpr_alloc_granularity = 8;
ws->info.min_wave64_vgpr_alloc = 4;
ws->info.max_vgpr_alloc = 256;
ws->info.wave64_vgpr_alloc_granularity = 4;
for (unsigned se = 0; se < ws->info.max_se; se++) {
for (unsigned sa = 0; sa < ws->info.max_sa_per_se; sa++)
ws->info.cu_mask[se][sa] = BITFIELD_MASK(ws->info.max_good_cu_per_sa);
}
/* The maximum number of scratch waves. The number is only a function of the number of CUs.
* It should be large enough to hold at least 1 threadgroup. Use the minimum per-SA CU count.
@@ -573,6 +589,50 @@ static bool do_winsys_init(struct radeon_drm_winsys *ws)
ws->info.max_scratch_waves = MAX2(32 * ws->info.min_good_cu_per_sa * ws->info.max_sa_per_se *
ws->info.num_se, max_waves_per_tg);
switch (ws->info.family) {
case CHIP_TAHITI:
case CHIP_PITCAIRN:
case CHIP_OLAND:
case CHIP_HAWAII:
case CHIP_KABINI:
ws->info.l2_cache_size = ws->info.num_tcc_blocks * 64 * 1024;
break;
case CHIP_VERDE:
case CHIP_HAINAN:
case CHIP_BONAIRE:
case CHIP_KAVERI:
ws->info.l2_cache_size = ws->info.num_tcc_blocks * 128 * 1024;
break;
default:;
}
ws->info.ip[AMD_IP_GFX].num_queues = 1;
switch (ws->info.gfx_level) {
case R300:
case R400:
case R500:
ws->info.ip[AMD_IP_GFX].ver_major = 2;
break;
case R600:
case R700:
ws->info.ip[AMD_IP_GFX].ver_major = 3;
break;
case EVERGREEN:
ws->info.ip[AMD_IP_GFX].ver_major = 4;
break;
case CAYMAN:
ws->info.ip[AMD_IP_GFX].ver_major = 5;
break;
case GFX6:
ws->info.ip[AMD_IP_GFX].ver_major = 6;
break;
case GFX7:
ws->info.ip[AMD_IP_GFX].ver_major = 7;
break;
default:;
}
ws->check_vm = strstr(debug_get_option("R600_DEBUG", ""), "check_vm") != NULL ||
strstr(debug_get_option("AMD_DEBUG", ""), "check_vm") != NULL;
ws->noop_cs = debug_get_bool_option("RADEON_NOOP", false);