diff options
author | Anusha Srivatsa <[email protected]> | 2021-12-02 22:35:45 -0800 |
---|---|---|
committer | José Roberto de Souza <[email protected]> | 2021-12-08 13:03:04 -0800 |
commit | c9ee950a2ca55ea0f63d0893f796b2eb089e7900 (patch) | |
tree | 3b9bdcd9afedf9eca40b549f15c1353762f97f2d | |
parent | 4a75f32fc783128d0c42ef73fa62a20379a66828 (diff) |
drm/i915/rpl-s: Enable guc submission by default
Though, RPL-S is defined as subplatform of ADL-S, unlike
ADL-S, it has GuC submission by default.
v2: Remove extra parenthesis (Jani)
v3: s/IS_RAPTORLAKE/IS_ADLS_RPLS (Jani)
Cc: [email protected]
Cc: Joonas Lahtinen <[email protected]>
Cc: Tvrtko Ursulin <[email protected]>
Cc: Jani Nikula <[email protected]>
Signed-off-by: Anusha Srivatsa <[email protected]>
Reviewed-by: José Roberto de Souza <[email protected]>
Acked-by: Tvrtko Ursulin <[email protected]>
Signed-off-by: José Roberto de Souza <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/i915/gt/uc/intel_uc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_uc.c b/drivers/gpu/drm/i915/gt/uc/intel_uc.c index 2fef3b0bbe95..8f17005ce85f 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_uc.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_uc.c @@ -35,7 +35,7 @@ static void uc_expand_default_options(struct intel_uc *uc) } /* Intermediate platforms are HuC authentication only */ - if (IS_ALDERLAKE_S(i915)) { + if (IS_ALDERLAKE_S(i915) && !IS_ADLS_RPLS(i915)) { i915->params.enable_guc = ENABLE_GUC_LOAD_HUC; return; } |