radeon/vce: add Polaris11 VCE firmware support
authorSonny Jiang <sonny.jiang@amd.com>
Tue, 15 Dec 2015 20:16:29 +0000 (15:16 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 25 Mar 2016 03:07:53 +0000 (23:07 -0400)
Signed-off-by: Sonny Jiang <sonny.jiang@amd.com>
src/gallium/drivers/radeon/radeon_vce.c

index 2ab74e9..6584393 100644 (file)
@@ -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;