File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,10 @@ static const struct intel_step_info adls_rpls_revids[] = {
131
131
[0xC ] = { COMMON_GT_MEDIA_STEP (D0 ), .display_step = STEP_C0 },
132
132
};
133
133
134
+ static const struct intel_step_info adlp_rplp_revids [] = {
135
+ [0x4 ] = { COMMON_GT_MEDIA_STEP (C0 ), .display_step = STEP_E0 },
136
+ };
137
+
134
138
static const struct intel_step_info adlp_n_revids [] = {
135
139
[0x0 ] = { COMMON_GT_MEDIA_STEP (A0 ), .display_step = STEP_D0 },
136
140
};
@@ -187,6 +191,9 @@ void intel_step_init(struct drm_i915_private *i915)
187
191
} else if (IS_ADLP_N (i915 )) {
188
192
revids = adlp_n_revids ;
189
193
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 );
190
197
} else if (IS_ALDERLAKE_P (i915 )) {
191
198
revids = adlp_revids ;
192
199
size = ARRAY_SIZE (adlp_revids );
You can’t perform that action at this time.
0 commit comments