radeon/vce: add vce support for firmware 53.19.4

v2: squashed with other similar commits

Signed-off-by: Leo Liu <leo.liu@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
Leo Liu 2017-02-10 10:44:05 -05:00 committed by Marek Olšák
parent ed48b399f1
commit 5eba761fee
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,7 @@
#define FW_52_0_3 ((52 << 24) | (0 << 16) | (3 << 8))
#define FW_52_4_3 ((52 << 24) | (4 << 16) | (3 << 8))
#define FW_52_8_3 ((52 << 24) | (8 << 16) | (3 << 8))
#define FW_53_19_4 ((53 << 24) | (19 << 16) | (4 << 8))
/**
* flush commands to the hardware
@ -509,6 +510,10 @@ struct pipe_video_codec *rvce_create_encoder(struct pipe_context *context,
radeon_vce_52_init(enc);
get_pic_param = radeon_vce_52_get_param;
break;
case FW_53_19_4:
radeon_vce_52_init(enc);
get_pic_param = radeon_vce_52_get_param;
break;
default:
goto error;
@ -541,6 +546,7 @@ bool rvce_is_fw_version_supported(struct r600_common_screen *rscreen)
case FW_52_0_3:
case FW_52_4_3:
case FW_52_8_3:
case FW_53_19_4:
return true;
default:
return false;