Commit 398fea05 authored by Matt Atwood's avatar Matt Atwood Committed by Gustavo Sousa
Browse files

drm/i915/xe3p_lpd: Update bandwidth parameters



Bandwidth parameters for Xe3p_LPD are the same as for Xe3_LPD. Re-use
them.

Since handling for Xe3_LPD version 30.02 is more like a special case,
let's use a "== 3002" check for it inside the ">= 30" branch instead of
adding a new branch for version 35.  That allows us to re-use the ">=
30" branch for Xe3p_LPD.

v2:
  - Do not have a special case for ecc_impacting_de_bw, since there are
    no specific instructions in Bspec for this scenario. (Matt Roper)
v3:
  - Re-use the ">= 30" branch in the if-ladder. (Matt Roper)

Bspec: 68859
Signed-off-by: default avatarMatt Atwood <matthew.s.atwood@intel.com>
Reviewed-by: default avatarMatt Roper <matthew.d.roper@intel.com>
Link: https://patch.msgid.link/20251103-xe3p_lpd-basic-enabling-v3-4-00e87b510ae7@intel.com


Signed-off-by: default avatarGustavo Sousa <gustavo.sousa@intel.com>
parent b28ba095
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -802,9 +802,10 @@ void intel_bw_init_hw(struct intel_display *display)
	if (!HAS_DISPLAY(display))
		return;

	if (DISPLAY_VERx100(display) >= 3002) {
	if (DISPLAY_VER(display) >= 30) {
		if (DISPLAY_VERx100(display) == 3002)
			tgl_get_bw_info(display, dram_info, &xe3lpd_3002_sa_info);
	} else if (DISPLAY_VER(display) >= 30) {
		else
			tgl_get_bw_info(display, dram_info, &xe3lpd_sa_info);
	} else if (DISPLAY_VERx100(display) >= 1401 && display->platform.dgfx) {
		if (dram_info->type == INTEL_DRAM_GDDR_ECC)