diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2024-04-14 22:34:03 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-05-08 15:17:07 -0400 |
commit | 1dd8b24acc0f951d9fea1b03d0c9ac4630a82e44 (patch) | |
tree | 68b7d286c46d49c1e414adc0a0ba6d99681a750c /drivers/gpu/drm/amd/amdgpu/nv.c | |
parent | c866201cdc2a05a7fe94009eda2644ceb54e8303 (diff) | |
download | linux-1dd8b24acc0f951d9fea1b03d0c9ac4630a82e44.tar.gz linux-1dd8b24acc0f951d9fea1b03d0c9ac4630a82e44.tar.bz2 linux-1dd8b24acc0f951d9fea1b03d0c9ac4630a82e44.zip |
drm/amdgpu/nv: use common nbio callback to set remap offset
This fixes HDP flushes on systems with non-4K pages.
Reviewed-by: Felix Kuehling <felix.kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/nv.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/nv.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c index 12e54047bf79..7e30a89fe03e 100644 --- a/drivers/gpu/drm/amd/amdgpu/nv.c +++ b/drivers/gpu/drm/amd/amdgpu/nv.c @@ -637,13 +637,9 @@ static const struct amdgpu_asic_funcs nv_asic_funcs = { static int nv_common_early_init(void *handle) { -#define MMIO_REG_HOLE_OFFSET (0x80000 - PAGE_SIZE) struct amdgpu_device *adev = (struct amdgpu_device *)handle; - if (!amdgpu_sriov_vf(adev)) { - adev->rmmio_remap.reg_offset = MMIO_REG_HOLE_OFFSET; - adev->rmmio_remap.bus_addr = adev->rmmio_base + MMIO_REG_HOLE_OFFSET; - } + adev->nbio.funcs->set_reg_remap(adev); adev->smc_rreg = NULL; adev->smc_wreg = NULL; adev->pcie_rreg = &amdgpu_device_indirect_rreg; |