Skip to content

Commit dc73ac6

Browse files
msatwoodmattrope
authored andcommitted
drm/i915/rpl-p: Add stepping info
Add stepping-substepping info in accordance to bpsec changes. Bspec: 55376 Cc: Anusha Srivatsa <[email protected]> Signed-off-by: Matt Atwood <[email protected]> Reviewed-by: Matt Roper <[email protected]> Signed-off-by: Matt Roper <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 1acefac commit dc73ac6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/gpu/drm/i915/intel_step.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@ static const struct intel_step_info adls_rpls_revids[] = {
131131
[0xC] = { COMMON_GT_MEDIA_STEP(D0), .display_step = STEP_C0 },
132132
};
133133

134+
static const struct intel_step_info adlp_rplp_revids[] = {
135+
[0x4] = { COMMON_GT_MEDIA_STEP(C0), .display_step = STEP_E0 },
136+
};
137+
134138
static const struct intel_step_info adlp_n_revids[] = {
135139
[0x0] = { COMMON_GT_MEDIA_STEP(A0), .display_step = STEP_D0 },
136140
};
@@ -187,6 +191,9 @@ void intel_step_init(struct drm_i915_private *i915)
187191
} else if (IS_ADLP_N(i915)) {
188192
revids = adlp_n_revids;
189193
size = ARRAY_SIZE(adlp_n_revids);
194+
} else if (IS_ADLP_RPLP(i915)) {
195+
revids = adlp_rplp_revids;
196+
size = ARRAY_SIZE(adlp_rplp_revids);
190197
} else if (IS_ALDERLAKE_P(i915)) {
191198
revids = adlp_revids;
192199
size = ARRAY_SIZE(adlp_revids);

0 commit comments

Comments
 (0)