mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-11 14:48:12 +00:00
drm/amdgpu/gmc9: don't touch gfxhub registers during S0ix
gfxhub registers are part of gfx IP and should not need to be
changed. Doing so without disabling gfxoff can hang the gfx IP.
v2: add comments explaining why we can skip the interrupt
control for S0i3
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
76a95b833a
commit
b93df61dda
@ -484,6 +484,14 @@ static int gmc_v9_0_vm_fault_interrupt_state(struct amdgpu_device *adev,
|
|||||||
for (i = 0; i < 16; i++) {
|
for (i = 0; i < 16; i++) {
|
||||||
reg = hub->vm_context0_cntl + i;
|
reg = hub->vm_context0_cntl + i;
|
||||||
|
|
||||||
|
/* This works because this interrupt is only
|
||||||
|
* enabled at init/resume and disabled in
|
||||||
|
* fini/suspend, so the overall state doesn't
|
||||||
|
* change over the course of suspend/resume.
|
||||||
|
*/
|
||||||
|
if (adev->in_s0ix && (j == AMDGPU_GFXHUB_0))
|
||||||
|
continue;
|
||||||
|
|
||||||
if (j == AMDGPU_GFXHUB_0)
|
if (j == AMDGPU_GFXHUB_0)
|
||||||
tmp = RREG32_SOC15_IP(GC, reg);
|
tmp = RREG32_SOC15_IP(GC, reg);
|
||||||
else
|
else
|
||||||
@ -504,6 +512,14 @@ static int gmc_v9_0_vm_fault_interrupt_state(struct amdgpu_device *adev,
|
|||||||
for (i = 0; i < 16; i++) {
|
for (i = 0; i < 16; i++) {
|
||||||
reg = hub->vm_context0_cntl + i;
|
reg = hub->vm_context0_cntl + i;
|
||||||
|
|
||||||
|
/* This works because this interrupt is only
|
||||||
|
* enabled at init/resume and disabled in
|
||||||
|
* fini/suspend, so the overall state doesn't
|
||||||
|
* change over the course of suspend/resume.
|
||||||
|
*/
|
||||||
|
if (adev->in_s0ix && (j == AMDGPU_GFXHUB_0))
|
||||||
|
continue;
|
||||||
|
|
||||||
if (j == AMDGPU_GFXHUB_0)
|
if (j == AMDGPU_GFXHUB_0)
|
||||||
tmp = RREG32_SOC15_IP(GC, reg);
|
tmp = RREG32_SOC15_IP(GC, reg);
|
||||||
else
|
else
|
||||||
@ -1862,9 +1878,12 @@ static int gmc_v9_0_gart_enable(struct amdgpu_device *adev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
amdgpu_gtt_mgr_recover(&adev->mman.gtt_mgr);
|
amdgpu_gtt_mgr_recover(&adev->mman.gtt_mgr);
|
||||||
r = adev->gfxhub.funcs->gart_enable(adev);
|
|
||||||
if (r)
|
if (!adev->in_s0ix) {
|
||||||
return r;
|
r = adev->gfxhub.funcs->gart_enable(adev);
|
||||||
|
if (r)
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
r = adev->mmhub.funcs->gart_enable(adev);
|
r = adev->mmhub.funcs->gart_enable(adev);
|
||||||
if (r)
|
if (r)
|
||||||
@ -1911,11 +1930,15 @@ static int gmc_v9_0_hw_init(void *handle)
|
|||||||
value = true;
|
value = true;
|
||||||
|
|
||||||
if (!amdgpu_sriov_vf(adev)) {
|
if (!amdgpu_sriov_vf(adev)) {
|
||||||
adev->gfxhub.funcs->set_fault_enable_default(adev, value);
|
if (!adev->in_s0ix)
|
||||||
|
adev->gfxhub.funcs->set_fault_enable_default(adev, value);
|
||||||
adev->mmhub.funcs->set_fault_enable_default(adev, value);
|
adev->mmhub.funcs->set_fault_enable_default(adev, value);
|
||||||
}
|
}
|
||||||
for (i = 0; i < adev->num_vmhubs; ++i)
|
for (i = 0; i < adev->num_vmhubs; ++i) {
|
||||||
|
if (adev->in_s0ix && (i == AMDGPU_GFXHUB_0))
|
||||||
|
continue;
|
||||||
gmc_v9_0_flush_gpu_tlb(adev, 0, i, 0);
|
gmc_v9_0_flush_gpu_tlb(adev, 0, i, 0);
|
||||||
|
}
|
||||||
|
|
||||||
if (adev->umc.funcs && adev->umc.funcs->init_registers)
|
if (adev->umc.funcs && adev->umc.funcs->init_registers)
|
||||||
adev->umc.funcs->init_registers(adev);
|
adev->umc.funcs->init_registers(adev);
|
||||||
@ -1939,7 +1962,8 @@ static int gmc_v9_0_hw_init(void *handle)
|
|||||||
*/
|
*/
|
||||||
static void gmc_v9_0_gart_disable(struct amdgpu_device *adev)
|
static void gmc_v9_0_gart_disable(struct amdgpu_device *adev)
|
||||||
{
|
{
|
||||||
adev->gfxhub.funcs->gart_disable(adev);
|
if (!adev->in_s0ix)
|
||||||
|
adev->gfxhub.funcs->gart_disable(adev);
|
||||||
adev->mmhub.funcs->gart_disable(adev);
|
adev->mmhub.funcs->gart_disable(adev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user