intel: Disable loading drivers on DG1 devices for now
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 23 Jun 2020 21:04:42 +0000 (14:04 -0700)
committerMarge Bot <eric+marge@anholt.net>
Wed, 24 Jun 2020 02:48:04 +0000 (02:48 +0000)
Kernel support for DG1 has not yet been merged upstream; per our
long-standing DRM subsystem policy, we should not enable the platform
in userspace until the kernel patches are merged and functional.

We will re-enable this in the future.  In the meantime, we retain all
of the infrastructure and code for the platform so that we can continue
developing DG1 support in upstream.

See a discussion here:
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4956#note_547775

Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5617>

include/pci_ids/iris_pci_ids.h
src/intel/dev/gen_device_info.c

index d69fcb9c8d4e5e7edf65e4a5c456b4175491ebf4..8a2827b0c3533297d4111ec6ce279dda90ba4766 100644 (file)
@@ -16,4 +16,5 @@ CHIPSET(0x9AC9, tgl_gt2, "TGL GT2", "Intel(R) UHD Graphics")
 CHIPSET(0x9AD9, tgl_gt2, "TGL GT2", "Intel(R) UHD Graphics")
 CHIPSET(0x9AF8, tgl_gt2, "TGL GT2", "Intel(R) UHD Graphics")
 
-CHIPSET(0x4905, dg1, "DG1 GT2", "Intel(R) Graphics")
+/* Disabled for now until kernel support is ready */
+/* CHIPSET(0x4905, dg1, "DG1 GT2", "Intel(R) Graphics") */
index 7630bb03b10913daed4c5cb67d0aa448d47ea577..e7c7395cefd152f2db225058a07a15e845000c19 100644 (file)
@@ -1058,7 +1058,7 @@ static const struct gen_device_info gen_device_info_rkl_gt1 = {
    .urb.size = 768,                             \
    .simulator_id = 30
 
-static const struct gen_device_info gen_device_info_dg1 = {
+UNUSED static const struct gen_device_info gen_device_info_dg1 = {
    GEN12_DG1_FEATURES,
 };