intel: Disable loading drivers on DG1 devices for now

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>
This commit is contained in:
Kenneth Graunke 2020-06-23 14:04:42 -07:00 committed by Marge Bot
parent 32455b657f
commit 8278a46b26
2 changed files with 3 additions and 2 deletions

View 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") */

View 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,
};