Commit bcfb9cee authored by Philip Yang's avatar Philip Yang Committed by Alex Deucher
Browse files

drm/amdgpu: Increase IH soft ring size for GFX v9.4.3 dGPU



On GFX v9.4.3 dGPU, applications have random timeout failure when XNACK
on, dmesg log has "amdgpu: IH soft ring buffer overflow 0x900, 0x900",
because dGPU mode has 272 cam entries. After increasing IH soft ring
to 512 entries, no more IH soft ring overflow message and application
passed.

Fixes: bf80d34b ("drm/amdgpu: Increase soft IH ring size")
Signed-off-by: default avatarPhilip Yang <Philip.Yang@amd.com>
Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c45e38f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@
#define AMDGPU_IH_MAX_NUM_IVS	32

#define IH_RING_SIZE	(256 * 1024)
#define IH_SW_RING_SIZE	(8 * 1024)	/* enough for 256 CAM entries */
#define IH_SW_RING_SIZE	(16 * 1024)	/* enough for 512 CAM entries */

struct amdgpu_device;
struct amdgpu_iv_entry;