diff options
author | Dave Airlie <airlied@redhat.com> | 2025-01-16 03:33:52 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2025-01-16 08:05:15 +0100 |
commit | cf8182d33798966146c7eaab7209b606939a17c5 (patch) | |
tree | 9982e72bdb1b4cafebc00c8290ab5d85ef0cd96d /drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c | |
parent | Merge tag 'drm-misc-fixes-2025-01-15' of https://gitlab.freedesktop.org/drm/m... (diff) | |
parent | drm/amdgpu: fix fw attestation for MP0_14_0_{2/3} (diff) | |
download | linux-cf8182d33798966146c7eaab7209b606939a17c5.tar.xz linux-cf8182d33798966146c7eaab7209b606939a17c5.zip |
Merge tag 'amd-drm-fixes-6.13-2025-01-15' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
amd-drm-fixes-6.13-2025-01-15:
amdgpu:
- SMU 13 fix
- DP MST fixes
- DCN 3.5 fix
- PSR fixes
- eDP fix
- VRR fix
- Enforce isolation fixes
- GFX 12 fix
- PSP 14.x fix
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Alex Deucher <alexander.deucher@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20250115151602.210704-1-alexander.deucher@amd.com
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c index 2d4b67175b55..328a1b963548 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fw_attestation.c @@ -122,6 +122,10 @@ static int amdgpu_is_fw_attestation_supported(struct amdgpu_device *adev) if (adev->flags & AMD_IS_APU) return 0; + if (amdgpu_ip_version(adev, MP0_HWIP, 0) == IP_VERSION(14, 0, 2) || + amdgpu_ip_version(adev, MP0_HWIP, 0) == IP_VERSION(14, 0, 3)) + return 0; + if (adev->asic_type >= CHIP_SIENNA_CICHLID) return 1; |