mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/amdgpu: Modify GC register access from MMIO to RLCG in file soc15.c
In SRIOV environment, KMD should access GC registers with RLCG if GC indirect access flag enabled. Signed-off-by: Peng Ju Zhou <PengJu.Zhou@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
d697f3d8b9
commit
a9dc23bee2
1 changed files with 5 additions and 2 deletions
|
@ -633,7 +633,9 @@ void soc15_program_register_sequence(struct amdgpu_device *adev,
|
|||
if (entry->and_mask == 0xffffffff) {
|
||||
tmp = entry->or_mask;
|
||||
} else {
|
||||
tmp = RREG32(reg);
|
||||
tmp = (entry->hwip == GC_HWIP) ?
|
||||
RREG32_SOC15_IP(GC, reg) : RREG32(reg);
|
||||
|
||||
tmp &= ~(entry->and_mask);
|
||||
tmp |= (entry->or_mask & entry->and_mask);
|
||||
}
|
||||
|
@ -644,7 +646,8 @@ void soc15_program_register_sequence(struct amdgpu_device *adev,
|
|||
reg == SOC15_REG_OFFSET(GC, 0, mmSH_MEM_CONFIG))
|
||||
WREG32_RLC(reg, tmp);
|
||||
else
|
||||
WREG32(reg, tmp);
|
||||
(entry->hwip == GC_HWIP) ?
|
||||
WREG32_SOC15_IP(GC, reg, tmp) : WREG32(reg, tmp);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue