diff options
| author | Yifan Zhang <[email protected]> | 2023-09-28 06:02:02 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-10-09 20:59:06 +0000 |
| commit | 061863e5dbce4ca2fd66949c7466dee4e49cb8da (patch) | |
| tree | 53a81968a45bf76e674c69389a08daab0b06fc94 /drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c | |
| parent | drm/amd/display: Don't use fsleep for PSR exit waits (diff) | |
| download | kernel-061863e5dbce4ca2fd66949c7466dee4e49cb8da.tar.gz kernel-061863e5dbce4ca2fd66949c7466dee4e49cb8da.zip | |
drm/amdgpu: add hub->ctx_distance in setup_vmid_config
add hub->ctx_distance when read CONTEXT1_CNTL, align w/
write back operation.
v2: fix coding style errors reported by checkpatch.pl (Christian)
Signed-off-by: Yifan Zhang <[email protected]>
Acked-by: Christian König <[email protected]>
Reviewed-by: Lang Yu <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c index 784c4e077470..2c0419faf8d4 100644 --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c @@ -344,7 +344,7 @@ static void mmhub_v1_8_setup_vmid_config(struct amdgpu_device *adev) hub = &adev->vmhub[AMDGPU_MMHUB0(j)]; for (i = 0; i <= 14; i++) { tmp = RREG32_SOC15_OFFSET(MMHUB, j, regVM_CONTEXT1_CNTL, - i); + i * hub->ctx_distance); tmp = REG_SET_FIELD(tmp, VM_CONTEXT1_CNTL, ENABLE_CONTEXT, 1); tmp = REG_SET_FIELD(tmp, VM_CONTEXT1_CNTL, |
