From: Christian König <christian.koe...@amd.com>

They seem to work fine with the kernel interface.

Signed-off-by: Christian König <christian.koenig at amd.com>
---
 drivers/gpu/drm/radeon/radeon_vce.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/radeon/radeon_vce.c 
b/drivers/gpu/drm/radeon/radeon_vce.c
index 5b952bd..aa5d9ba 100644
--- a/drivers/gpu/drm/radeon/radeon_vce.c
+++ b/drivers/gpu/drm/radeon/radeon_vce.c
@@ -118,7 +118,9 @@ int radeon_vce_init(struct radeon_device *rdev)
        rdev->vce.fw_version = (start << 24) | (mid << 16) | (end << 8);

        /* we can only work with this fw version for now */
-       if (rdev->vce.fw_version != ((40 << 24) | (2 << 16) | (2 << 8)))
+       if ((rdev->vce.fw_version != ((40 << 24) | (2 << 16) | (2 << 8))) &&
+           (rdev->vce.fw_version != ((50 << 24) | (0 << 16) | (1 << 8))) &&
+           (rdev->vce.fw_version != ((50 << 24) | (1 << 16) | (2 << 8))))
                return -EINVAL;

        /* allocate firmware, stack and heap BO */
-- 
1.9.1

Reply via email to