diff options
| author | Dave Airlie <airlied@redhat.com> | 2022-08-03 14:00:18 +1000 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2022-08-03 14:00:19 +1000 | 
| commit | 5493ee1919eae4f49d62276cf5986b7f7c7aa8f6 (patch) | |
| tree | 087a9c3502b91e8366c3e120a3f936695b5e2ce4 /drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | |
| parent | 2bc7ea71a73747a77e7f83bc085b0d2393235410 (diff) | |
| parent | 64f991590ff4410041a70ee7ec2db079bc953929 (diff) | |
Merge tag 'amd-drm-next-5.20-2022-07-29' of https://gitlab.freedesktop.org/agd5f/linux into drm-next
amd-drm-next-5.20-2022-07-29:
amdgpu:
- Misc spelling and grammar fixes
- DC whitespace cleanups
- ACP smatch fix
- GFX 11.0 updates
- PSP 13.0 updates
- VCN 4.0 updates
- DC FP fix for PPC64
- Misc bug fixes
amdkfd:
- SVM fixes
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Alex Deucher <alexander.deucher@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220729202742.6636-1-alexander.deucher@amd.com
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c index 3ee363bfbac2..b067ce45d226 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c @@ -37,6 +37,7 @@  #include "psp_v11_0_8.h"  #include "psp_v12_0.h"  #include "psp_v13_0.h" +#include "psp_v13_0_4.h"  #include "amdgpu_ras.h"  #include "amdgpu_securedisplay.h" @@ -151,6 +152,10 @@ static int psp_early_init(void *handle)  		psp_v13_0_set_psp_funcs(psp);  		psp->autoload_supported = true;  		break; +	case IP_VERSION(13, 0, 4): +		psp_v13_0_4_set_psp_funcs(psp); +		psp->autoload_supported = true; +		break;  	default:  		return -EINVAL;  	} @@ -1292,6 +1297,8 @@ static void psp_xgmi_reflect_topology_info(struct psp_context *psp,  		break;  	} + +	amdgpu_put_xgmi_hive(hive);  }  int psp_xgmi_get_topology_info(struct psp_context *psp, @@ -3692,3 +3699,11 @@ const struct amdgpu_ip_block_version psp_v13_0_ip_block = {  	.rev = 0,  	.funcs = &psp_ip_funcs,  }; + +const struct amdgpu_ip_block_version psp_v13_0_4_ip_block = { +	.type = AMD_IP_BLOCK_TYPE_PSP, +	.major = 13, +	.minor = 0, +	.rev = 4, +	.funcs = &psp_ip_funcs, +};  | 
