radeon/vce: add firmware support for ver 53 and up

All vce firmwares with major version greater than or equal to 53 are supported

Signed-off-by: Boyuan Zhang <boyuan.zhang@amd.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
This commit is contained in:
Boyuan Zhang 2018-05-08 14:35:06 -04:00 committed by Leo Liu
parent a7c81a7f67
commit 0907d3ab9c
1 changed files with 2 additions and 2 deletions

View File

@ -506,7 +506,7 @@ struct pipe_video_codec *si_vce_create_encoder(struct pipe_context *context,
break;
default:
if ((sscreen->info.vce_fw_version & (0xff << 24)) == FW_53) {
if ((sscreen->info.vce_fw_version & (0xff << 24)) >= FW_53) {
si_vce_52_init(enc);
si_get_pic_param = si_vce_52_get_param;
} else
@ -542,7 +542,7 @@ bool si_vce_is_fw_version_supported(struct si_screen *sscreen)
case FW_52_8_3:
return true;
default:
if ((sscreen->info.vce_fw_version & (0xff << 24)) == FW_53)
if ((sscreen->info.vce_fw_version & (0xff << 24)) >= FW_53)
return true;
else
return false;