mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-04 22:28:04 +02:00
amdgpu: add VCE harvesting instance query
Signed-off-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
9961900b8d
commit
d2cbe9ecbe
3 changed files with 5 additions and 0 deletions
|
|
@ -464,6 +464,8 @@ struct amdgpu_gpu_info {
|
|||
uint32_t vram_bit_width;
|
||||
/** constant engine ram size*/
|
||||
uint32_t ce_ram_size;
|
||||
/* vce harvesting instance */
|
||||
uint32_t vce_harvest_config;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -161,6 +161,7 @@ int amdgpu_query_gpu_info_init(amdgpu_device_handle dev)
|
|||
dev->info.vram_type = dev->dev_info.vram_type;
|
||||
dev->info.vram_bit_width = dev->dev_info.vram_bit_width;
|
||||
dev->info.ce_ram_size = dev->dev_info.ce_ram_size;
|
||||
dev->info.vce_harvest_config = dev->dev_info.vce_harvest_config;
|
||||
|
||||
for (i = 0; i < (int)dev->info.num_shader_engines; i++) {
|
||||
unsigned instance = (i << AMDGPU_INFO_MMR_SE_INDEX_SHIFT) |
|
||||
|
|
|
|||
|
|
@ -614,6 +614,8 @@ struct drm_amdgpu_info_device {
|
|||
uint32_t vram_type;
|
||||
/** video memory bit width*/
|
||||
uint32_t vram_bit_width;
|
||||
/* vce harvesting instance */
|
||||
uint32_t vce_harvest_config;
|
||||
};
|
||||
|
||||
struct drm_amdgpu_info_hw_ip {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue