drm/amdgpu: Fix rejecting Tahiti GPUs
authorLukas Fink <lukas.fink1@gmail.com>
Fri, 14 Jan 2022 06:51:41 +0000 (07:51 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 14 Jan 2022 23:07:55 +0000 (18:07 -0500)
commit5f0754ab2751d1935818459e8e71a8fe26f6403c
treed51e47c6631bf92383d34c74256b13842567c8fd
parent06cf9bd61a7452df375f212881d9bb6b3c52c3ec
drm/amdgpu: Fix rejecting Tahiti GPUs

eb4fd29afd4a ("drm/amdgpu: bind to any 0x1002 PCI diplay class device") added
generic bindings to amdgpu so that that it binds to all display class devices
with VID 0x1002 and then rejects those in amdgpu_pci_probe.

Unfortunately it reuses a driver_data value of 0 to detect those new bindings,
which is already used to denote CHIP_TAHITI ASICs.

The driver_data value given to those new bindings was changed in
dd0761fd24ea1 ("drm/amdgpu: set CHIP_IP_DISCOVERY as the asic type by default")
to CHIP_IP_DISCOVERY (=36), but it seems that the check in amdgpu_pci_probe
was forgotten to be changed. Therefore, it still rejects Tahiti GPUs.

Link: https://gitlab.freedesktop.org/drm/amd/-/issues/1860
Fixes: eb4fd29afd4a ("drm/amdgpu: bind to any 0x1002 PCI diplay class device")

Signed-off-by: Lukas Fink <lukas.fink1@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c