mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
radv/winsys: Expose number of compute/dma rings.
Signed-off-by: Bas Nieuwenhuizen <basni@google.com> Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
2c0dfd48f0
commit
86cb418bd4
2 changed files with 15 additions and 2 deletions
|
|
@ -89,8 +89,9 @@ struct radeon_info {
|
|||
bool has_dedicated_vram;
|
||||
bool has_virtual_memory;
|
||||
bool gfx_ib_pad_with_type2;
|
||||
bool has_sdma;
|
||||
bool has_uvd;
|
||||
uint32_t sdma_rings;
|
||||
uint32_t compute_rings;
|
||||
uint32_t vce_fw_version;
|
||||
uint32_t vce_harvest_config;
|
||||
uint32_t clock_crystal_freq;
|
||||
|
|
|
|||
|
|
@ -118,6 +118,7 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
|
|||
struct amdgpu_buffer_size_alignments alignment_info = {};
|
||||
struct amdgpu_heap_info vram, visible_vram, gtt;
|
||||
struct drm_amdgpu_info_hw_ip dma = {};
|
||||
struct drm_amdgpu_info_hw_ip compute = {};
|
||||
drmDevicePtr devinfo;
|
||||
int r;
|
||||
int i, j;
|
||||
|
|
@ -170,6 +171,12 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
|
|||
fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(dma) failed.\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
r = amdgpu_query_hw_ip_info(ws->dev, AMDGPU_HW_IP_COMPUTE, 0, &compute);
|
||||
if (r) {
|
||||
fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(compute) failed.\n");
|
||||
goto fail;
|
||||
}
|
||||
ws->info.pci_id = ws->amdinfo.asic_id; /* TODO: is this correct? */
|
||||
ws->info.vce_harvest_config = ws->amdinfo.vce_harvest_config;
|
||||
|
||||
|
|
@ -273,6 +280,10 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
|
|||
fprintf(stderr, "amdgpu: Cannot create addrlib.\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
assert(util_is_power_of_two(dma.available_rings + 1));
|
||||
assert(util_is_power_of_two(compute.available_rings + 1));
|
||||
|
||||
/* Set hardware information. */
|
||||
ws->info.name = get_chip_name(ws->info.family);
|
||||
ws->info.gart_size = gtt.heap_size;
|
||||
|
|
@ -290,7 +301,8 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
|
|||
ws->info.num_tile_pipes = radv_cik_get_num_tile_pipes(&ws->amdinfo);
|
||||
ws->info.pipe_interleave_bytes = 256 << ((ws->amdinfo.gb_addr_cfg >> 4) & 0x7);
|
||||
ws->info.has_virtual_memory = TRUE;
|
||||
ws->info.has_sdma = dma.available_rings != 0;
|
||||
ws->info.sdma_rings = util_bitcount(dma.available_rings);
|
||||
ws->info.compute_rings = util_bitcount(compute.available_rings);
|
||||
|
||||
/* Get the number of good compute units. */
|
||||
ws->info.num_good_compute_units = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue