Skip to content

Commit b6211ab

Browse files
committed
Merge tag 'drm-intel-fixes-2025-06-26' of https://gitlab.freedesktop.org/drm/i915/kernel into drm-fixes
- Fix for SNPS PHY HDMI for 1080p@120Hz - Correct DP AUX DPCD probe address - Followup build fix for GCOV and AutoFDO enabled config Signed-off-by: Dave Airlie <[email protected]> From: Joonas Lahtinen <[email protected]> Link: https://lore.kernel.org/r/aFzsHR9WLYsxg8jy@jlahtine-mobl
2 parents 06f6516 + d02b210 commit b6211ab

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

drivers/gpu/drm/display/drm_dp_helper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ ssize_t drm_dp_dpcd_read(struct drm_dp_aux *aux, unsigned int offset,
725725
* monitor doesn't power down exactly after the throw away read.
726726
*/
727727
if (!aux->is_remote) {
728-
ret = drm_dp_dpcd_probe(aux, DP_DPCD_REV);
728+
ret = drm_dp_dpcd_probe(aux, DP_LANE0_1_STATUS);
729729
if (ret < 0)
730730
return ret;
731731
}

drivers/gpu/drm/i915/display/intel_snps_hdmi_pll.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ static void get_ana_cp_int_prop(u64 vco_clk,
103103
DIV_ROUND_DOWN_ULL(curve_1_interpolated, CURVE0_MULTIPLIER)));
104104

105105
ana_cp_int_temp =
106-
DIV_ROUND_CLOSEST_ULL(DIV_ROUND_DOWN_ULL(adjusted_vco_clk1, curve_2_scaled1),
107-
CURVE2_MULTIPLIER);
106+
DIV64_U64_ROUND_CLOSEST(DIV_ROUND_DOWN_ULL(adjusted_vco_clk1, curve_2_scaled1),
107+
CURVE2_MULTIPLIER);
108108

109109
*ana_cp_int = max(1, min(ana_cp_int_temp, 127));
110110

drivers/gpu/drm/i915/i915_pmu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ static unsigned int config_bit(const u64 config)
108108
return other_bit(config);
109109
}
110110

111-
static u32 config_mask(const u64 config)
111+
static __always_inline u32 config_mask(const u64 config)
112112
{
113113
unsigned int bit = config_bit(config);
114114

0 commit comments

Comments
 (0)