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 | |
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')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.c | 3 | ||||
-rw-r--r-- | src/gallium/drivers/radeon/radeon_winsys.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index 7fd3fe08f63..2d05e16fc15 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -1103,6 +1103,9 @@ bool r600_common_screen_init(struct r600_common_screen *rscreen, printf("gfx_ib_pad_with_type2 = %i\n", rscreen->info.gfx_ib_pad_with_type2); printf("has_sdma = %i\n", rscreen->info.has_sdma); printf("has_uvd = %i\n", rscreen->info.has_uvd); + printf("me_fw_version = %i\n", rscreen->info.me_fw_version); + printf("pfp_fw_version = %i\n", rscreen->info.pfp_fw_version); + printf("ce_fw_version = %i\n", rscreen->info.ce_fw_version); printf("vce_fw_version = %i\n", rscreen->info.vce_fw_version); printf("vce_harvest_config = %i\n", rscreen->info.vce_harvest_config); printf("clock_crystal_freq = %i\n", rscreen->info.clock_crystal_freq); 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; |