On Fri, Mar 31, 2023 at 12:24:16PM +0200, Maarten Lankhorst wrote:
Gen13 should probably be the same as gen12, not gen11.
there is no such thing as gen13. Please reword commit message to use graphics version, although here it's probably more related to the display engine (and hence DISPLAY_VER()). But then the code you are adding here is probably dead code since 825477e77912 ("drm/i915/mtl: Obtain SAGV values from MMIO instead of GT pcode mailbox") If this is fixing anything what exactly is it? Otherwise it'd be more "extend to next platforms" rather than "Fix". Lucas De Marchi
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@xxxxxxxxxxxxxxx> Cc: intel-gfx@xxxxxxxxxxxxxxxxxxxxx --- drivers/gpu/drm/i915/soc/intel_dram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/soc/intel_dram.c b/drivers/gpu/drm/i915/soc/intel_dram.c index 9f0651d48d41..9649051ed8ed 100644 --- a/drivers/gpu/drm/i915/soc/intel_dram.c +++ b/drivers/gpu/drm/i915/soc/intel_dram.c @@ -548,7 +548,7 @@ static int icl_pcode_read_mem_global_info(struct drm_i915_private *dev_priv) if (ret) return ret; - if (GRAPHICS_VER(dev_priv) == 12) { + if (GRAPHICS_VER(dev_priv) >= 12) { switch (val & 0xf) { case 0: dram_info->type = INTEL_DRAM_DDR4; -- 2.34.1