diff options
author | Swati Sharma <[email protected]> | 2023-08-29 19:29:45 +0530 |
---|---|---|
committer | Animesh Manna <[email protected]> | 2023-08-30 19:40:37 +0530 |
commit | 84bd5e9685948dfded818d35eeceab35f6e42f71 (patch) | |
tree | c209b059bcb5254a805842524b406efc2171b259 | |
parent | a10ca2afb8d3c055b3eae6aecd0c944185c99e48 (diff) |
drm/i915/dg2: Add support for new DG2-G12 revid 0x1
The bspec has been updated with a new revision 0x1 that
translates to A1 GT stepping and C0 display stepping.
Bspec: 44477
Signed-off-by: Swati Sharma <[email protected]>
Reviewed-by: Matt Roper <[email protected]>
Signed-off-by: Animesh Manna <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/i915/intel_step.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_step.c b/drivers/gpu/drm/i915/intel_step.c index c02a6f156a00..ee4e5a2c0220 100644 --- a/drivers/gpu/drm/i915/intel_step.c +++ b/drivers/gpu/drm/i915/intel_step.c @@ -124,6 +124,7 @@ static const struct intel_step_info dg2_g11_revid_step_tbl[] = { static const struct intel_step_info dg2_g12_revid_step_tbl[] = { [0x0] = { COMMON_GT_MEDIA_STEP(A0), .display_step = STEP_C0 }, + [0x1] = { COMMON_GT_MEDIA_STEP(A1), .display_step = STEP_C0 }, }; static const struct intel_step_info adls_rpls_revids[] = { |