Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdgpu: disable default navi2x co-op kernel support

This patch reverts the following:
commit 48733b224fa7ba ("drm/amdkfd: add Navi2x to GWS init conditions")

Disable GWS usage in default settings for now due to FW bugs.

Signed-off-by: Jonathan Kim <jonathan.kim@amd.com>
Reviewed-by: Felix Kuehling <felix.kuehling@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Jonathan Kim and committed by
Alex Deucher
addaac0c 48733b22

+1 -4
+1 -4
drivers/gpu/drm/amd/amdkfd/kfd_device.c
··· 368 368 (KFD_GC_VERSION(kfd) == IP_VERSION(9, 4, 1) 369 369 && kfd->mec2_fw_version >= 0x30) || 370 370 (KFD_GC_VERSION(kfd) == IP_VERSION(9, 4, 2) 371 - && kfd->mec2_fw_version >= 0x28) || 372 - (KFD_GC_VERSION(kfd) >= IP_VERSION(10, 3, 0) 373 - && KFD_GC_VERSION(kfd) <= IP_VERSION(10, 3, 5) 374 - && kfd->mec2_fw_version >= 0x42)))) 371 + && kfd->mec2_fw_version >= 0x28)))) 375 372 ret = amdgpu_amdkfd_alloc_gws(kfd->adev, 376 373 kfd->adev->gds.gws_size, &kfd->gws); 377 374