Module: Mesa
Branch: master
Commit: 0907d3ab9c61ee1fc841aaf22fb4a5ab38633a0c
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=0907d3ab9c61ee1fc841aaf22fb4a5ab38633a0c

Author: Boyuan Zhang <boyuan.zh...@amd.com>
Date:   Tue May  8 14:35:06 2018 -0400

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.zh...@amd.com>
Reviewed-by: Leo Liu <leo....@amd.com>

---

 src/gallium/drivers/radeon/radeon_vce.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/radeon/radeon_vce.c 
b/src/gallium/drivers/radeon/radeon_vce.c
index 22168b50e2..6d1b1ff787 100644
--- a/src/gallium/drivers/radeon/radeon_vce.c
+++ b/src/gallium/drivers/radeon/radeon_vce.c
@@ -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;

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to