Skip to content

Commit 2b81b84

Browse files
committed
drm/i915/kbl: drm/i915: Avoid GuC loading for now on Kabylake.
GuC has no version for KBL published yet and it is not recommended to load the Skylake one, so let's avoid loading this for now while we don't have the proper GuC firmware for Kabylake. Signed-off-by: Rodrigo Vivi <[email protected]> Reviewed-by: Alex Dai <[email protected]> Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent a5b7991 commit 2b81b84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/i915/i915_drv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2598,8 +2598,8 @@ struct drm_i915_cmd_table {
25982598

25992599
#define HAS_CSR(dev) (IS_GEN9(dev))
26002600

2601-
#define HAS_GUC_UCODE(dev) (IS_GEN9(dev))
2602-
#define HAS_GUC_SCHED(dev) (IS_GEN9(dev))
2601+
#define HAS_GUC_UCODE(dev) (IS_GEN9(dev) && !IS_KABYLAKE(dev))
2602+
#define HAS_GUC_SCHED(dev) (IS_GEN9(dev) && !IS_KABYLAKE(dev))
26032603

26042604
#define HAS_RESOURCE_STREAMER(dev) (IS_HASWELL(dev) || \
26052605
INTEL_INFO(dev)->gen >= 8)

0 commit comments

Comments
 (0)