Skip to content

Commit 8f49dff

Browse files
committed
drm: amdgpu: radeon: disable cache flush workaround for LoongArch and Loongson64
This workaround causes instability for LoongArch/Loongson (MIPS) devices based on the 7A1000/2000 chipset under heavy I/O load. FIXME: Disable this workaround until we find a better fix (possibly in the platform-specific PCI code). Signed-off-by: Mingcong Bai <[email protected]>
1 parent db4d204 commit 8f49dff

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c

+9
Original file line numberDiff line numberDiff line change
@@ -2117,6 +2117,14 @@ static void gfx_v7_0_ring_emit_fence_gfx(struct amdgpu_ring *ring, u64 addr,
21172117
{
21182118
bool write64bit = flags & AMDGPU_FENCE_FLAG_64BIT;
21192119
bool int_sel = flags & AMDGPU_FENCE_FLAG_INT;
2120+
2121+
/* This workaround causes instability for LoongArch/Loongson (MIPS)
2122+
* devices based on the 7A1000/2000 chipset under heavy I/O load.
2123+
*
2124+
* FIXME: Disable this workaround until we find a better fix (possibly in
2125+
* the platform-specific PCI code).
2126+
*/
2127+
#if !defined(CONFIG_LOONGARCH) && !defined (CONFIG_MACH_LOONGSON64)
21202128
/* Workaround for cache flush problems. First send a dummy EOP
21212129
* event down the pipe with seq one below.
21222130
*/
@@ -2130,6 +2138,7 @@ static void gfx_v7_0_ring_emit_fence_gfx(struct amdgpu_ring *ring, u64 addr,
21302138
DATA_SEL(1) | INT_SEL(0));
21312139
amdgpu_ring_write(ring, lower_32_bits(seq - 1));
21322140
amdgpu_ring_write(ring, upper_32_bits(seq - 1));
2141+
#endif
21332142

21342143
/* Then send the real EOP event down the pipe. */
21352144
amdgpu_ring_write(ring, PACKET3(PACKET3_EVENT_WRITE_EOP, 4));

drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c

+8
Original file line numberDiff line numberDiff line change
@@ -6154,6 +6154,13 @@ static void gfx_v8_0_ring_emit_fence_gfx(struct amdgpu_ring *ring, u64 addr,
61546154
bool write64bit = flags & AMDGPU_FENCE_FLAG_64BIT;
61556155
bool int_sel = flags & AMDGPU_FENCE_FLAG_INT;
61566156

6157+
/* This workaround causes instability for LoongArch/Loongson (MIPS)
6158+
* devices based on the 7A1000/2000 chipset under heavy I/O load.
6159+
*
6160+
* FIXME: Disable this workaround until we find a better fix (possibly in
6161+
* the platform-specific PCI code).
6162+
*/
6163+
#if !defined(CONFIG_LOONGARCH) && !defined (CONFIG_MACH_LOONGSON64)
61576164
/* Workaround for cache flush problems. First send a dummy EOP
61586165
* event down the pipe with seq one below.
61596166
*/
@@ -6168,6 +6175,7 @@ static void gfx_v8_0_ring_emit_fence_gfx(struct amdgpu_ring *ring, u64 addr,
61686175
DATA_SEL(1) | INT_SEL(0));
61696176
amdgpu_ring_write(ring, lower_32_bits(seq - 1));
61706177
amdgpu_ring_write(ring, upper_32_bits(seq - 1));
6178+
#endif
61716179

61726180
/* Then send the real EOP event down the pipe:
61736181
* EVENT_WRITE_EOP - flush caches, send int */

drivers/gpu/drm/radeon/cik.c

+8
Original file line numberDiff line numberDiff line change
@@ -3543,6 +3543,13 @@ void cik_fence_gfx_ring_emit(struct radeon_device *rdev,
35433543
struct radeon_ring *ring = &rdev->ring[fence->ring];
35443544
u64 addr = rdev->fence_drv[fence->ring].gpu_addr;
35453545

3546+
/* This workaround causes instability for LoongArch/Loongson (MIPS)
3547+
* devices based on the 7A1000/2000 chipset under heavy I/O load.
3548+
*
3549+
* FIXME: Disable this workaround until we find a better fix (possibly in
3550+
* the platform-specific PCI code).
3551+
*/
3552+
#if !defined(CONFIG_LOONGARCH) && !defined (CONFIG_MACH_LOONGSON64)
35463553
/* Workaround for cache flush problems. First send a dummy EOP
35473554
* event down the pipe with seq one below.
35483555
*/
@@ -3556,6 +3563,7 @@ void cik_fence_gfx_ring_emit(struct radeon_device *rdev,
35563563
DATA_SEL(1) | INT_SEL(0));
35573564
radeon_ring_write(ring, fence->seq - 1);
35583565
radeon_ring_write(ring, 0);
3566+
#endif
35593567

35603568
/* Then send the real EOP event down the pipe. */
35613569
radeon_ring_write(ring, PACKET3(PACKET3_EVENT_WRITE_EOP, 4));

0 commit comments

Comments
 (0)