drm/amdgpu/gfx9: cache DB_DEBUG2 and make it available to userspace
authorAlex Deucher <alexander.deucher@amd.com>
Tue, 10 Apr 2018 15:15:26 +0000 (10:15 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 15 May 2018 18:43:11 +0000 (13:43 -0500)
Userspace needs to query this value to work around a hw bug in
certain cases.

Acked-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu.h
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
drivers/gpu/drm/amd/amdgpu/soc15.c

index 7e5defbfc3b90550e9ca89057b801246c9d887f6..7eb0e4846a76680016279936322f046f40525cbe 100644 (file)
@@ -867,6 +867,8 @@ struct amdgpu_gfx_config {
 
        /* gfx configure feature */
        uint32_t double_offchip_lds_buf;
+       /* cached value of DB_DEBUG2 */
+       uint32_t db_debug2;
 };
 
 struct amdgpu_cu_info {
index 9d39fd5b1822da052ee199c4408e3b46292df414..66bd6c1c82c0f53c75b3c4f9413f4594553a1d06 100644 (file)
@@ -1600,6 +1600,7 @@ static void gfx_v9_0_gpu_init(struct amdgpu_device *adev)
 
        gfx_v9_0_setup_rb(adev);
        gfx_v9_0_get_cu_info(adev, &adev->gfx.cu_info);
+       adev->gfx.config.db_debug2 = RREG32_SOC15(GC, 0, mmDB_DEBUG2);
 
        /* XXX SH_MEM regs */
        /* where to put LDS, scratch, GPUVM in FSA64 space */
index 2e9ebe8db5cc5fb01795d0e83a3b24ae048ece42..65e781f05c2442ef3ea224d2d44e4411ed4ccc11 100644 (file)
@@ -287,6 +287,7 @@ static struct soc15_allowed_register_entry soc15_allowed_read_registers[] = {
        { SOC15_REG_ENTRY(GC, 0, mmCP_CPC_STALLED_STAT1)},
        { SOC15_REG_ENTRY(GC, 0, mmCP_CPC_STATUS)},
        { SOC15_REG_ENTRY(GC, 0, mmGB_ADDR_CONFIG)},
+       { SOC15_REG_ENTRY(GC, 0, mmDB_DEBUG2)},
 };
 
 static uint32_t soc15_read_indexed_register(struct amdgpu_device *adev, u32 se_num,
@@ -315,6 +316,8 @@ static uint32_t soc15_get_register_value(struct amdgpu_device *adev,
        } else {
                if (reg_offset == SOC15_REG_OFFSET(GC, 0, mmGB_ADDR_CONFIG))
                        return adev->gfx.config.gb_addr_config;
+               else if (reg_offset == SOC15_REG_OFFSET(GC, 0, mmDB_DEBUG2))
+                       return adev->gfx.config.db_debug2;
                return RREG32(reg_offset);
        }
 }