[PATCH 14/14] drm/i915/guc: Turn on GuC on gen9+ for TRYBOT
Matthew Brost
matthew.brost at intel.com
Thu Jun 10 16:15:53 UTC 2021
Signed-of-by: Matthew Brost <matthew.brost at intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_uc.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_uc.c b/drivers/gpu/drm/i915/gt/uc/intel_uc.c
index 6d8b9233214e..e52c9f045a3d 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_uc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_uc.c
@@ -22,14 +22,8 @@ static void uc_expand_default_options(struct intel_uc *uc)
if (i915->params.enable_guc != -1)
return;
- /* Don't enable GuC/HuC on pre-Gen12 */
- if (GRAPHICS_VER(i915) < 12) {
- i915->params.enable_guc = 0;
- return;
- }
-
- /* Don't enable GuC/HuC on older Gen12 platforms */
- if (IS_TIGERLAKE(i915) || IS_ROCKETLAKE(i915)) {
+ /* Don't enable GuC/HuC on pre-Gen9 */
+ if (GRAPHICS_VER(i915) < 9) {
i915->params.enable_guc = 0;
return;
}
--
2.28.0
More information about the Intel-gfx-trybot
mailing list