diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c index 71293db09009..b602df4b445a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c @@ -82,6 +82,7 @@  #include "smuio_v11_0.h"  #include "smuio_v11_0_6.h"  #include "smuio_v13_0.h" +#include "smuio_v13_0_3.h"  #include "smuio_v13_0_6.h"  #define FIRMWARE_IP_DISCOVERY "amdgpu/ip_discovery.bin" @@ -2382,6 +2383,9 @@ int amdgpu_discovery_set_ip_blocks(struct amdgpu_device *adev)  	case IP_VERSION(13, 0, 2):  		adev->smuio.funcs = &smuio_v13_0_funcs;  		break; +	case IP_VERSION(13, 0, 3): +		adev->smuio.funcs = &smuio_v13_0_3_funcs; +		break;  	case IP_VERSION(13, 0, 6):  	case IP_VERSION(13, 0, 8):  		adev->smuio.funcs = &smuio_v13_0_6_funcs; | 
