We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028ef9c commit 0e79efdCopy full SHA for 0e79efd
1 file changed
drivers/gpu/drm/i915/gt/intel_rc6.c
@@ -2,9 +2,9 @@
2
/*
3
* Copyright © 2019 Intel Corporation
4
*/
5
-
6
#include <linux/pm_runtime.h>
7
#include <linux/string_helpers.h>
+#include <linux/dmi.h>
8
9
#include <drm/drm_print.h>
10
@@ -497,6 +497,16 @@ static bool rc6_supported(struct intel_rc6 *rc6)
497
if (!HAS_RC6(i915))
498
return false;
499
500
+ if (dmi_match(DMI_PRODUCT_SKU, "IBP1XI08MK1") ||
501
+ dmi_match(DMI_PRODUCT_SKU, "IBP14I08MK2") ||
502
+ dmi_match(DMI_PRODUCT_SKU, "IBP16I08MK2") ||
503
+ dmi_match(DMI_PRODUCT_SKU, "OMNIA08IMK1") ||
504
+ dmi_match(DMI_PRODUCT_SKU, "OMNIA08IMK2")) {
505
+ drm_notice(&i915->drm,
506
+ "RC6 disabled by quirk\n");
507
+ return false;
508
+ }
509
+
510
if (intel_vgpu_active(i915))
511
512
0 commit comments