diff options
author | Likun Gao <Likun.Gao@amd.com> | 2023-08-10 15:16:05 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-02-14 17:18:27 -0500 |
commit | efc11f34e25f11ced38718ebc664accb8b22dab8 (patch) | |
tree | b1ef50a7125a7e146fab62843addcbf6545844ce /drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c | |
parent | 815282549896b8c87049969559d9ba843a9d318b (diff) | |
download | linux-efc11f34e25f11ced38718ebc664accb8b22dab8.tar.gz linux-efc11f34e25f11ced38718ebc664accb8b22dab8.tar.bz2 linux-efc11f34e25f11ced38718ebc664accb8b22dab8.zip |
drm/amdgpu: support psp ip block discovery for psp v14
Support PSP ip block discovery for psp v14.
Add psp ip block for psp v14_0_2 and v14_0_3.
Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
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 fd88acd4785b..c8434da17857 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c @@ -1829,6 +1829,10 @@ static int amdgpu_discovery_set_psp_ip_blocks(struct amdgpu_device *adev) case IP_VERSION(13, 0, 4): amdgpu_device_ip_block_add(adev, &psp_v13_0_4_ip_block); break; + case IP_VERSION(14, 0, 2): + case IP_VERSION(14, 0, 3): + amdgpu_device_ip_block_add(adev, &psp_v14_0_ip_block); + break; default: dev_err(adev->dev, "Failed to add psp ip block(MP0_HWIP:0x%x)\n", |