From: Sonny Jiang Date: Tue, 15 Dec 2015 20:16:29 +0000 (-0500) Subject: radeon/vce: add Polaris11 VCE firmware support X-Git-Tag: upstream/17.1.0~11663 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c5477465f08502fd81783ce17c449330537eb00;p=platform%2Fupstream%2Fmesa.git radeon/vce: add Polaris11 VCE firmware support Signed-off-by: Sonny Jiang --- diff --git a/src/gallium/drivers/radeon/radeon_vce.c b/src/gallium/drivers/radeon/radeon_vce.c index 2ab74e9..6584393 100644 --- a/src/gallium/drivers/radeon/radeon_vce.c +++ b/src/gallium/drivers/radeon/radeon_vce.c @@ -50,6 +50,7 @@ #define FW_50_10_2 ((50 << 24) | (10 << 16) | (2 << 8)) #define FW_50_17_3 ((50 << 24) | (17 << 16) | (3 << 8)) #define FW_52_0_3 ((52 << 24) | (0 << 16) | (3 << 8)) +#define FW_52_4_3 ((52 << 24) | (4 << 16) | (3 << 8)) /** * flush commands to the hardware @@ -482,6 +483,7 @@ struct pipe_video_codec *rvce_create_encoder(struct pipe_context *context, break; case FW_52_0_3: + case FW_52_4_3: radeon_vce_52_init(enc); break; @@ -514,6 +516,7 @@ bool rvce_is_fw_version_supported(struct r600_common_screen *rscreen) case FW_50_10_2: case FW_50_17_3: case FW_52_0_3: + case FW_52_4_3: return true; default: return false;