drm/radeon: allow some more VCE firmware versions
authorChristian König <christian.koenig@amd.com>
Mon, 11 May 2015 20:01:48 +0000 (22:01 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 May 2015 14:31:20 +0000 (10:31 -0400)
They seem to work fine with the kernel interface.

Signed-off-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_vce.c

index 5b952bdfa68d34a2e28286158d505b223eefd5f1..aa5d9bac70fa86a89e414b2d681b549e75067f61 100644 (file)
@@ -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 */