diff options
author | Nicolai Hähnle <[email protected]> | 2016-07-28 16:40:21 +0100 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-08-08 12:52:41 +0200 |
commit | e0736c438c15f1793630424d29ef63868f12a172 (patch) | |
tree | 32688ba936bc282516d810225a6c794a77971ac2 /src/gallium/drivers/radeon/radeon_winsys.h | |
parent | 7f5a8dc27e7965af3d6a4389950fcc90f8b2430a (diff) |
winsys/amdgpu: query ME/PFP/CE firmware versions
The radeon kernel module doesn't have the firmware query interface, so the
corresponding values will remain 0.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/radeon_winsys.h')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_winsys.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/radeon_winsys.h b/src/gallium/drivers/radeon/radeon_winsys.h index e7787d3cb4e..cc79d5492d1 100644 --- a/src/gallium/drivers/radeon/radeon_winsys.h +++ b/src/gallium/drivers/radeon/radeon_winsys.h @@ -265,6 +265,9 @@ struct radeon_info { bool has_uvd; uint32_t uvd_fw_version; uint32_t vce_fw_version; + uint32_t me_fw_version; + uint32_t pfp_fw_version; + uint32_t ce_fw_version; uint32_t vce_harvest_config; uint32_t clock_crystal_freq; |