IIRC It's already in amd-staging-4.9 branch. Anyway, the patch is Reviewed-by: Hawking Zhang <[email protected]>
Regards, Hawking -----Original Message----- From: amd-gfx [mailto:[email protected]] On Behalf Of Tom St Denis Sent: Thursday, May 18, 2017 20:00 To: [email protected] Cc: StDenis, Tom <[email protected]> Subject: [PATCH] drm/amd/amdgpu: Enable raven gpu_info firmware Add CHIP_RAVEN to the list of ASICs that have gpu_info firmware. Signed-off-by: Tom St Denis <[email protected]> --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index d95d4c92da2a..ca9a765385de 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1428,6 +1428,9 @@ static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev) #endif default: return 0; + case CHIP_RAVEN: + chip_name = "raven"; + break; case CHIP_VEGA10: chip_name = "vega10"; break; -- 2.12.0 _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
