diff options
| author | Xiaomeng Hou <[email protected]> | 2023-04-27 05:38:47 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-06-09 13:25:47 +0000 |
| commit | 04b3c34f5cb2994a5e466659ea4aa962c0fc09a6 (patch) | |
| tree | 83c4af54267a6527b870d34fba04e47aca8fedd5 /drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c | |
| parent | drm/amd/amdgpu: Simplify switch case statements in amdgpu_connectors.c (diff) | |
| download | kernel-04b3c34f5cb2994a5e466659ea4aa962c0fc09a6.tar.gz kernel-04b3c34f5cb2994a5e466659ea4aa962c0fc09a6.zip | |
drm/amdgpu: remove pasid_src field from IV entry
PASID_SRC is not actually present in the Interrupt Packet, the field is
taken as reserved bits now. So remove it from IV entry to avoid misuse.
Signed-off-by: Xiaomeng Hou <[email protected]>
Reviewed-by: Aaron Liu <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c index d58353c89e59..fceb3b384955 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c @@ -271,7 +271,6 @@ void amdgpu_ih_decode_iv_helper(struct amdgpu_device *adev, entry->timestamp_src = dw[2] >> 31; entry->pasid = dw[3] & 0xffff; entry->node_id = (dw[3] >> 16) & 0xff; - entry->pasid_src = dw[3] >> 31; entry->src_data[0] = dw[4]; entry->src_data[1] = dw[5]; entry->src_data[2] = dw[6]; |
