public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Christian Hewitt <christianshewitt@gmail.com>,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.14 097/311] drm/meson: use unsigned long long / Hz for frequency types
Date: Tue, 29 Apr 2025 18:38:54 +0200	[thread overview]
Message-ID: <20250429161125.015112349@linuxfoundation.org> (raw)
In-Reply-To: <20250429161121.011111832@linuxfoundation.org>

6.14-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

[ Upstream commit 1017560164b6bbcbc93579266926e6e96675262a ]

Christian reports that 4K output using YUV420 encoding fails with the
following error:
  Fatal Error, invalid HDMI vclk freq 593406

Modetest shows the following:
  3840x2160 59.94 3840 4016 4104 4400 2160 2168 2178 2250 593407 flags: xxxx, xxxx,
  drm calculated value -------------------------------------^

This indicates that there's a (1kHz) mismatch between the clock
calculated by the drm framework and the meson driver.

Relevant function call stack:
(drm framework)
  -> meson_encoder_hdmi_atomic_enable()
    -> meson_encoder_hdmi_set_vclk()
      -> meson_vclk_setup()

The video clock requested by the drm framework is 593407kHz. This is
passed by meson_encoder_hdmi_atomic_enable() to
meson_encoder_hdmi_set_vclk() and the following formula is applied:
- the frequency is halved (which would be 296703.5kHz) and rounded down
  to the next full integer, which is 296703kHz
- TMDS clock is calculated (296703kHz * 10)
- video encoder clock is calculated - this needs to match a table from
  meson_vclk.c and so it doubles the previously halved value again
  (resulting in 593406kHz)
- meson_vclk_setup() can't find (either directly, or by deriving it from
  594000kHz * 1000 / 1001 and rounding to the closest integer value -
  which is 593407kHz as originally requested by the drm framework) a
  matching clock in it's internal table and errors out with "invalid
  HDMI vclk freq"

Fix the division precision by switching the whole meson driver to use
unsigned long long (64-bit) Hz values for clock frequencies instead of
unsigned int (32-bit) kHz to fix the rouding error.

Fixes: e5fab2ec9ca4 ("drm/meson: vclk: add support for YUV420 setup")
Reported-by: Christian Hewitt <christianshewitt@gmail.com>
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20250421201300.778955-3-martin.blumenstingl@googlemail.com
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20250421201300.778955-3-martin.blumenstingl@googlemail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/meson/meson_drv.c          |   2 +-
 drivers/gpu/drm/meson/meson_drv.h          |   2 +-
 drivers/gpu/drm/meson/meson_encoder_hdmi.c |  29 +--
 drivers/gpu/drm/meson/meson_vclk.c         | 195 +++++++++++----------
 drivers/gpu/drm/meson/meson_vclk.h         |  13 +-
 5 files changed, 126 insertions(+), 115 deletions(-)

diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson/meson_drv.c
index 81d2ee37e7732..49ff9f1f16d32 100644
--- a/drivers/gpu/drm/meson/meson_drv.c
+++ b/drivers/gpu/drm/meson/meson_drv.c
@@ -169,7 +169,7 @@ static const struct meson_drm_soc_attr meson_drm_soc_attrs[] = {
 	/* S805X/S805Y HDMI PLL won't lock for HDMI PHY freq > 1,65GHz */
 	{
 		.limits = {
-			.max_hdmi_phy_freq = 1650000,
+			.max_hdmi_phy_freq = 1650000000,
 		},
 		.attrs = (const struct soc_device_attribute []) {
 			{ .soc_id = "GXL (S805*)", },
diff --git a/drivers/gpu/drm/meson/meson_drv.h b/drivers/gpu/drm/meson/meson_drv.h
index 3f9345c14f31c..be4b0e4df6e13 100644
--- a/drivers/gpu/drm/meson/meson_drv.h
+++ b/drivers/gpu/drm/meson/meson_drv.h
@@ -37,7 +37,7 @@ struct meson_drm_match_data {
 };
 
 struct meson_drm_soc_limits {
-	unsigned int max_hdmi_phy_freq;
+	unsigned long long max_hdmi_phy_freq;
 };
 
 struct meson_drm {
diff --git a/drivers/gpu/drm/meson/meson_encoder_hdmi.c b/drivers/gpu/drm/meson/meson_encoder_hdmi.c
index 0593a1cde906f..ce8cea5d3a56b 100644
--- a/drivers/gpu/drm/meson/meson_encoder_hdmi.c
+++ b/drivers/gpu/drm/meson/meson_encoder_hdmi.c
@@ -70,12 +70,12 @@ static void meson_encoder_hdmi_set_vclk(struct meson_encoder_hdmi *encoder_hdmi,
 {
 	struct meson_drm *priv = encoder_hdmi->priv;
 	int vic = drm_match_cea_mode(mode);
-	unsigned int phy_freq;
-	unsigned int vclk_freq;
-	unsigned int venc_freq;
-	unsigned int hdmi_freq;
+	unsigned long long phy_freq;
+	unsigned long long vclk_freq;
+	unsigned long long venc_freq;
+	unsigned long long hdmi_freq;
 
-	vclk_freq = mode->clock;
+	vclk_freq = mode->clock * 1000;
 
 	/* For 420, pixel clock is half unlike venc clock */
 	if (encoder_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24)
@@ -107,7 +107,8 @@ static void meson_encoder_hdmi_set_vclk(struct meson_encoder_hdmi *encoder_hdmi,
 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
 		venc_freq /= 2;
 
-	dev_dbg(priv->dev, "vclk:%d phy=%d venc=%d hdmi=%d enci=%d\n",
+	dev_dbg(priv->dev,
+		"vclk:%lluHz phy=%lluHz venc=%lluHz hdmi=%lluHz enci=%d\n",
 		phy_freq, vclk_freq, venc_freq, hdmi_freq,
 		priv->venc.hdmi_use_enci);
 
@@ -122,10 +123,11 @@ static enum drm_mode_status meson_encoder_hdmi_mode_valid(struct drm_bridge *bri
 	struct meson_encoder_hdmi *encoder_hdmi = bridge_to_meson_encoder_hdmi(bridge);
 	struct meson_drm *priv = encoder_hdmi->priv;
 	bool is_hdmi2_sink = display_info->hdmi.scdc.supported;
-	unsigned int phy_freq;
-	unsigned int vclk_freq;
-	unsigned int venc_freq;
-	unsigned int hdmi_freq;
+	unsigned long long clock = mode->clock * 1000;
+	unsigned long long phy_freq;
+	unsigned long long vclk_freq;
+	unsigned long long venc_freq;
+	unsigned long long hdmi_freq;
 	int vic = drm_match_cea_mode(mode);
 	enum drm_mode_status status;
 
@@ -144,12 +146,12 @@ static enum drm_mode_status meson_encoder_hdmi_mode_valid(struct drm_bridge *bri
 		if (status != MODE_OK)
 			return status;
 
-		return meson_vclk_dmt_supported_freq(priv, mode->clock);
+		return meson_vclk_dmt_supported_freq(priv, clock);
 	/* Check against supported VIC modes */
 	} else if (!meson_venc_hdmi_supported_vic(vic))
 		return MODE_BAD;
 
-	vclk_freq = mode->clock;
+	vclk_freq = clock;
 
 	/* For 420, pixel clock is half unlike venc clock */
 	if (drm_mode_is_420_only(display_info, mode) ||
@@ -179,7 +181,8 @@ static enum drm_mode_status meson_encoder_hdmi_mode_valid(struct drm_bridge *bri
 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
 		venc_freq /= 2;
 
-	dev_dbg(priv->dev, "%s: vclk:%d phy=%d venc=%d hdmi=%d\n",
+	dev_dbg(priv->dev,
+		"%s: vclk:%lluHz phy=%lluHz venc=%lluHz hdmi=%lluHz\n",
 		__func__, phy_freq, vclk_freq, venc_freq, hdmi_freq);
 
 	return meson_vclk_vic_supported_freq(priv, phy_freq, vclk_freq);
diff --git a/drivers/gpu/drm/meson/meson_vclk.c b/drivers/gpu/drm/meson/meson_vclk.c
index 2a82119eb58ed..3325580d885d0 100644
--- a/drivers/gpu/drm/meson/meson_vclk.c
+++ b/drivers/gpu/drm/meson/meson_vclk.c
@@ -110,7 +110,10 @@
 #define HDMI_PLL_LOCK		BIT(31)
 #define HDMI_PLL_LOCK_G12A	(3 << 30)
 
-#define FREQ_1000_1001(_freq)	DIV_ROUND_CLOSEST(_freq * 1000, 1001)
+#define PIXEL_FREQ_1000_1001(_freq)	\
+	DIV_ROUND_CLOSEST_ULL((_freq) * 1000ULL, 1001ULL)
+#define PHY_FREQ_1000_1001(_freq)	\
+	(PIXEL_FREQ_1000_1001(DIV_ROUND_DOWN_ULL(_freq, 10ULL)) * 10)
 
 /* VID PLL Dividers */
 enum {
@@ -360,11 +363,11 @@ enum {
 };
 
 struct meson_vclk_params {
-	unsigned int pll_freq;
-	unsigned int phy_freq;
-	unsigned int vclk_freq;
-	unsigned int venc_freq;
-	unsigned int pixel_freq;
+	unsigned long long pll_freq;
+	unsigned long long phy_freq;
+	unsigned long long vclk_freq;
+	unsigned long long venc_freq;
+	unsigned long long pixel_freq;
 	unsigned int pll_od1;
 	unsigned int pll_od2;
 	unsigned int pll_od3;
@@ -372,11 +375,11 @@ struct meson_vclk_params {
 	unsigned int vclk_div;
 } params[] = {
 	[MESON_VCLK_HDMI_ENCI_54000] = {
-		.pll_freq = 4320000,
-		.phy_freq = 270000,
-		.vclk_freq = 54000,
-		.venc_freq = 54000,
-		.pixel_freq = 54000,
+		.pll_freq = 4320000000,
+		.phy_freq = 270000000,
+		.vclk_freq = 54000000,
+		.venc_freq = 54000000,
+		.pixel_freq = 54000000,
 		.pll_od1 = 4,
 		.pll_od2 = 4,
 		.pll_od3 = 1,
@@ -384,11 +387,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_DDR_54000] = {
-		.pll_freq = 4320000,
-		.phy_freq = 270000,
-		.vclk_freq = 54000,
-		.venc_freq = 54000,
-		.pixel_freq = 27000,
+		.pll_freq = 4320000000,
+		.phy_freq = 270000000,
+		.vclk_freq = 54000000,
+		.venc_freq = 54000000,
+		.pixel_freq = 27000000,
 		.pll_od1 = 4,
 		.pll_od2 = 4,
 		.pll_od3 = 1,
@@ -396,11 +399,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_DDR_148500] = {
-		.pll_freq = 2970000,
-		.phy_freq = 742500,
-		.vclk_freq = 148500,
-		.venc_freq = 148500,
-		.pixel_freq = 74250,
+		.pll_freq = 2970000000,
+		.phy_freq = 742500000,
+		.vclk_freq = 148500000,
+		.venc_freq = 148500000,
+		.pixel_freq = 74250000,
 		.pll_od1 = 4,
 		.pll_od2 = 1,
 		.pll_od3 = 1,
@@ -408,11 +411,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_74250] = {
-		.pll_freq = 2970000,
-		.phy_freq = 742500,
-		.vclk_freq = 74250,
-		.venc_freq = 74250,
-		.pixel_freq = 74250,
+		.pll_freq = 2970000000,
+		.phy_freq = 742500000,
+		.vclk_freq = 74250000,
+		.venc_freq = 74250000,
+		.pixel_freq = 74250000,
 		.pll_od1 = 2,
 		.pll_od2 = 2,
 		.pll_od3 = 2,
@@ -420,11 +423,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_148500] = {
-		.pll_freq = 2970000,
-		.phy_freq = 1485000,
-		.vclk_freq = 148500,
-		.venc_freq = 148500,
-		.pixel_freq = 148500,
+		.pll_freq = 2970000000,
+		.phy_freq = 1485000000,
+		.vclk_freq = 148500000,
+		.venc_freq = 148500000,
+		.pixel_freq = 148500000,
 		.pll_od1 = 1,
 		.pll_od2 = 2,
 		.pll_od3 = 2,
@@ -432,11 +435,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_297000] = {
-		.pll_freq = 5940000,
-		.phy_freq = 2970000,
-		.venc_freq = 297000,
-		.vclk_freq = 297000,
-		.pixel_freq = 297000,
+		.pll_freq = 5940000000,
+		.phy_freq = 2970000000,
+		.venc_freq = 297000000,
+		.vclk_freq = 297000000,
+		.pixel_freq = 297000000,
 		.pll_od1 = 2,
 		.pll_od2 = 1,
 		.pll_od3 = 1,
@@ -444,11 +447,11 @@ struct meson_vclk_params {
 		.vclk_div = 2,
 	},
 	[MESON_VCLK_HDMI_594000] = {
-		.pll_freq = 5940000,
-		.phy_freq = 5940000,
-		.venc_freq = 594000,
-		.vclk_freq = 594000,
-		.pixel_freq = 594000,
+		.pll_freq = 5940000000,
+		.phy_freq = 5940000000,
+		.venc_freq = 594000000,
+		.vclk_freq = 594000000,
+		.pixel_freq = 594000000,
 		.pll_od1 = 1,
 		.pll_od2 = 1,
 		.pll_od3 = 2,
@@ -456,11 +459,11 @@ struct meson_vclk_params {
 		.vclk_div = 1,
 	},
 	[MESON_VCLK_HDMI_594000_YUV420] = {
-		.pll_freq = 5940000,
-		.phy_freq = 2970000,
-		.venc_freq = 594000,
-		.vclk_freq = 594000,
-		.pixel_freq = 297000,
+		.pll_freq = 5940000000,
+		.phy_freq = 2970000000,
+		.venc_freq = 594000000,
+		.vclk_freq = 594000000,
+		.pixel_freq = 297000000,
 		.pll_od1 = 2,
 		.pll_od2 = 1,
 		.pll_od3 = 1,
@@ -617,16 +620,16 @@ static void meson_hdmi_pll_set_params(struct meson_drm *priv, unsigned int m,
 				3 << 20, pll_od_to_reg(od3) << 20);
 }
 
-#define XTAL_FREQ 24000
+#define XTAL_FREQ (24 * 1000 * 1000)
 
 static unsigned int meson_hdmi_pll_get_m(struct meson_drm *priv,
-					 unsigned int pll_freq)
+					 unsigned long long pll_freq)
 {
 	/* The GXBB PLL has a /2 pre-multiplier */
 	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
-		pll_freq /= 2;
+		pll_freq = DIV_ROUND_DOWN_ULL(pll_freq, 2);
 
-	return pll_freq / XTAL_FREQ;
+	return DIV_ROUND_DOWN_ULL(pll_freq, XTAL_FREQ);
 }
 
 #define HDMI_FRAC_MAX_GXBB	4096
@@ -635,12 +638,13 @@ static unsigned int meson_hdmi_pll_get_m(struct meson_drm *priv,
 
 static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 					    unsigned int m,
-					    unsigned int pll_freq)
+					    unsigned long long pll_freq)
 {
-	unsigned int parent_freq = XTAL_FREQ;
+	unsigned long long parent_freq = XTAL_FREQ;
 	unsigned int frac_max = HDMI_FRAC_MAX_GXL;
 	unsigned int frac_m;
 	unsigned int frac;
+	u32 remainder;
 
 	/* The GXBB PLL has a /2 pre-multiplier and a larger FRAC width */
 	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
@@ -652,11 +656,11 @@ static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 		frac_max = HDMI_FRAC_MAX_G12A;
 
 	/* We can have a perfect match !*/
-	if (pll_freq / m == parent_freq &&
-	    pll_freq % m == 0)
+	if (div_u64_rem(pll_freq, m, &remainder) == parent_freq &&
+	    remainder == 0)
 		return 0;
 
-	frac = div_u64((u64)pll_freq * (u64)frac_max, parent_freq);
+	frac = mul_u64_u64_div_u64(pll_freq, frac_max, parent_freq);
 	frac_m = m * frac_max;
 	if (frac_m > frac)
 		return frac_max;
@@ -666,7 +670,7 @@ static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 }
 
 static bool meson_hdmi_pll_validate_params(struct meson_drm *priv,
-					   unsigned int m,
+					   unsigned long long m,
 					   unsigned int frac)
 {
 	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
@@ -694,7 +698,7 @@ static bool meson_hdmi_pll_validate_params(struct meson_drm *priv,
 }
 
 static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
-				       unsigned int freq,
+				       unsigned long long freq,
 				       unsigned int *m,
 				       unsigned int *frac,
 				       unsigned int *od)
@@ -706,7 +710,7 @@ static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
 			continue;
 		*frac = meson_hdmi_pll_get_frac(priv, *m, freq * *od);
 
-		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d\n",
+		DRM_DEBUG_DRIVER("PLL params for %lluHz: m=%x frac=%x od=%d\n",
 				 freq, *m, *frac, *od);
 
 		if (meson_hdmi_pll_validate_params(priv, *m, *frac))
@@ -718,7 +722,7 @@ static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
 
 /* pll_freq is the frequency after the OD dividers */
 enum drm_mode_status
-meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq)
+meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned long long freq)
 {
 	unsigned int od, m, frac;
 
@@ -741,7 +745,7 @@ EXPORT_SYMBOL_GPL(meson_vclk_dmt_supported_freq);
 
 /* pll_freq is the frequency after the OD dividers */
 static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
-				       unsigned int pll_freq)
+				       unsigned long long pll_freq)
 {
 	unsigned int od, m, frac, od1, od2, od3;
 
@@ -756,7 +760,7 @@ static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
 			od1 = od / od2;
 		}
 
-		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d/%d/%d\n",
+		DRM_DEBUG_DRIVER("PLL params for %lluHz: m=%x frac=%x od=%d/%d/%d\n",
 				 pll_freq, m, frac, od1, od2, od3);
 
 		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
@@ -764,17 +768,18 @@ static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
 		return;
 	}
 
-	DRM_ERROR("Fatal, unable to find parameters for PLL freq %d\n",
+	DRM_ERROR("Fatal, unable to find parameters for PLL freq %lluHz\n",
 		  pll_freq);
 }
 
 enum drm_mode_status
-meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
-			      unsigned int vclk_freq)
+meson_vclk_vic_supported_freq(struct meson_drm *priv,
+			      unsigned long long phy_freq,
+			      unsigned long long vclk_freq)
 {
 	int i;
 
-	DRM_DEBUG_DRIVER("phy_freq = %d vclk_freq = %d\n",
+	DRM_DEBUG_DRIVER("phy_freq = %lluHz vclk_freq = %lluHz\n",
 			 phy_freq, vclk_freq);
 
 	/* Check against soc revision/package limits */
@@ -785,19 +790,19 @@ meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
 	}
 
 	for (i = 0 ; params[i].pixel_freq ; ++i) {
-		DRM_DEBUG_DRIVER("i = %d pixel_freq = %d alt = %d\n",
+		DRM_DEBUG_DRIVER("i = %d pixel_freq = %lluHz alt = %lluHz\n",
 				 i, params[i].pixel_freq,
-				 FREQ_1000_1001(params[i].pixel_freq));
-		DRM_DEBUG_DRIVER("i = %d phy_freq = %d alt = %d\n",
+				 PIXEL_FREQ_1000_1001(params[i].pixel_freq));
+		DRM_DEBUG_DRIVER("i = %d phy_freq = %lluHz alt = %lluHz\n",
 				 i, params[i].phy_freq,
-				 FREQ_1000_1001(params[i].phy_freq/10)*10);
+				 PHY_FREQ_1000_1001(params[i].phy_freq));
 		/* Match strict frequency */
 		if (phy_freq == params[i].phy_freq &&
 		    vclk_freq == params[i].vclk_freq)
 			return MODE_OK;
 		/* Match 1000/1001 variant */
-		if (phy_freq == (FREQ_1000_1001(params[i].phy_freq/10)*10) &&
-		    vclk_freq == FREQ_1000_1001(params[i].vclk_freq))
+		if (phy_freq == PHY_FREQ_1000_1001(params[i].phy_freq) &&
+		    vclk_freq == PIXEL_FREQ_1000_1001(params[i].vclk_freq))
 			return MODE_OK;
 	}
 
@@ -805,8 +810,9 @@ meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
 }
 EXPORT_SYMBOL_GPL(meson_vclk_vic_supported_freq);
 
-static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
-			   unsigned int od1, unsigned int od2, unsigned int od3,
+static void meson_vclk_set(struct meson_drm *priv,
+			   unsigned long long pll_base_freq, unsigned int od1,
+			   unsigned int od2, unsigned int od3,
 			   unsigned int vid_pll_div, unsigned int vclk_div,
 			   unsigned int hdmi_tx_div, unsigned int venc_div,
 			   bool hdmi_use_enci, bool vic_alternate_clock)
@@ -826,15 +832,15 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 		meson_hdmi_pll_generic_set(priv, pll_base_freq);
 	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 		switch (pll_base_freq) {
-		case 2970000:
+		case 2970000000:
 			m = 0x3d;
 			frac = vic_alternate_clock ? 0xd02 : 0xe00;
 			break;
-		case 4320000:
+		case 4320000000:
 			m = vic_alternate_clock ? 0x59 : 0x5a;
 			frac = vic_alternate_clock ? 0xe8f : 0;
 			break;
-		case 5940000:
+		case 5940000000:
 			m = 0x7b;
 			frac = vic_alternate_clock ? 0xa05 : 0xc00;
 			break;
@@ -844,15 +850,15 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 		switch (pll_base_freq) {
-		case 2970000:
+		case 2970000000:
 			m = 0x7b;
 			frac = vic_alternate_clock ? 0x281 : 0x300;
 			break;
-		case 4320000:
+		case 4320000000:
 			m = vic_alternate_clock ? 0xb3 : 0xb4;
 			frac = vic_alternate_clock ? 0x347 : 0;
 			break;
-		case 5940000:
+		case 5940000000:
 			m = 0xf7;
 			frac = vic_alternate_clock ? 0x102 : 0x200;
 			break;
@@ -861,15 +867,15 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 		switch (pll_base_freq) {
-		case 2970000:
+		case 2970000000:
 			m = 0x7b;
 			frac = vic_alternate_clock ? 0x140b4 : 0x18000;
 			break;
-		case 4320000:
+		case 4320000000:
 			m = vic_alternate_clock ? 0xb3 : 0xb4;
 			frac = vic_alternate_clock ? 0x1a3ee : 0;
 			break;
-		case 5940000:
+		case 5940000000:
 			m = 0xf7;
 			frac = vic_alternate_clock ? 0x8148 : 0x10000;
 			break;
@@ -1025,14 +1031,14 @@ static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 }
 
 void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
-		      unsigned int phy_freq, unsigned int vclk_freq,
-		      unsigned int venc_freq, unsigned int dac_freq,
+		      unsigned long long phy_freq, unsigned long long vclk_freq,
+		      unsigned long long venc_freq, unsigned long long dac_freq,
 		      bool hdmi_use_enci)
 {
 	bool vic_alternate_clock = false;
-	unsigned int freq;
-	unsigned int hdmi_tx_div;
-	unsigned int venc_div;
+	unsigned long long freq;
+	unsigned long long hdmi_tx_div;
+	unsigned long long venc_div;
 
 	if (target == MESON_VCLK_TARGET_CVBS) {
 		meson_venci_cvbs_clock_config(priv);
@@ -1052,27 +1058,27 @@ void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
 		return;
 	}
 
-	hdmi_tx_div = vclk_freq / dac_freq;
+	hdmi_tx_div = DIV_ROUND_DOWN_ULL(vclk_freq, dac_freq);
 
 	if (hdmi_tx_div == 0) {
-		pr_err("Fatal Error, invalid HDMI-TX freq %d\n",
+		pr_err("Fatal Error, invalid HDMI-TX freq %lluHz\n",
 		       dac_freq);
 		return;
 	}
 
-	venc_div = vclk_freq / venc_freq;
+	venc_div = DIV_ROUND_DOWN_ULL(vclk_freq, venc_freq);
 
 	if (venc_div == 0) {
-		pr_err("Fatal Error, invalid HDMI venc freq %d\n",
+		pr_err("Fatal Error, invalid HDMI venc freq %lluHz\n",
 		       venc_freq);
 		return;
 	}
 
 	for (freq = 0 ; params[freq].pixel_freq ; ++freq) {
 		if ((phy_freq == params[freq].phy_freq ||
-		     phy_freq == FREQ_1000_1001(params[freq].phy_freq/10)*10) &&
+		     phy_freq == PHY_FREQ_1000_1001(params[freq].phy_freq)) &&
 		    (vclk_freq == params[freq].vclk_freq ||
-		     vclk_freq == FREQ_1000_1001(params[freq].vclk_freq))) {
+		     vclk_freq == PIXEL_FREQ_1000_1001(params[freq].vclk_freq))) {
 			if (vclk_freq != params[freq].vclk_freq)
 				vic_alternate_clock = true;
 			else
@@ -1098,7 +1104,8 @@ void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
 	}
 
 	if (!params[freq].pixel_freq) {
-		pr_err("Fatal Error, invalid HDMI vclk freq %d\n", vclk_freq);
+		pr_err("Fatal Error, invalid HDMI vclk freq %lluHz\n",
+		       vclk_freq);
 		return;
 	}
 
diff --git a/drivers/gpu/drm/meson/meson_vclk.h b/drivers/gpu/drm/meson/meson_vclk.h
index 60617aaf18dd1..7ac55744e5749 100644
--- a/drivers/gpu/drm/meson/meson_vclk.h
+++ b/drivers/gpu/drm/meson/meson_vclk.h
@@ -20,17 +20,18 @@ enum {
 };
 
 /* 27MHz is the CVBS Pixel Clock */
-#define MESON_VCLK_CVBS			27000
+#define MESON_VCLK_CVBS			(27 * 1000 * 1000)
 
 enum drm_mode_status
-meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq);
+meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned long long freq);
 enum drm_mode_status
-meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
-			      unsigned int vclk_freq);
+meson_vclk_vic_supported_freq(struct meson_drm *priv,
+			      unsigned long long phy_freq,
+			      unsigned long long vclk_freq);
 
 void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
-		      unsigned int phy_freq, unsigned int vclk_freq,
-		      unsigned int venc_freq, unsigned int dac_freq,
+		      unsigned long long phy_freq, unsigned long long vclk_freq,
+		      unsigned long long venc_freq, unsigned long long dac_freq,
 		      bool hdmi_use_enci);
 
 #endif /* __MESON_VCLK_H */
-- 
2.39.5




  parent reply	other threads:[~2025-04-29 16:58 UTC|newest]

Thread overview: 341+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-29 16:37 [PATCH 6.14 000/311] 6.14.5-rc1 review Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 001/311] mm/vmscan: dont try to reclaim hwpoison folio Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 002/311] soc: qcom: ice: introduce devm_of_qcom_ice_get Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 003/311] mmc: sdhci-msm: fix dev reference leaked through of_qcom_ice_get Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 004/311] PM: EM: use kfree_rcu() to simplify the code Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 005/311] PM: EM: Address RCU-related sparse warnings Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 006/311] media: i2c: imx214: Use subdev active state Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 007/311] media: i2c: imx214: Simplify with dev_err_probe() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 008/311] media: i2c: imx214: Convert to CCI register access helpers Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 009/311] media: i2c: imx214: Replace register addresses with macros Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 010/311] media: i2c: imx214: Check number of lanes from device tree Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 011/311] media: i2c: imx214: Fix link frequency validation Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 012/311] media: ov08x40: Move ov08x40_identify_module() function up Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 013/311] media: ov08x40: Add missing ov08x40_identify_module() call on stream-start Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 014/311] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 015/311] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 016/311] of: resolver: Simplify of_resolve_phandles() using __free() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 017/311] of: resolver: Fix device node refcount leakage in of_resolve_phandles() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 018/311] scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 019/311] s390/pci: Support mmap() of PCI resources except for ISM devices Greg Kroah-Hartman
2025-04-30  7:41   ` Jiri Slaby
2025-04-30  7:46     ` Niklas Schnelle
2025-05-01  6:37       ` Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 020/311] PCI/MSI: Convert pci_msi_ignore_mask to per MSI domain flag Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 021/311] PCI/MSI: Handle the NOMASK flag correctly for all PCI/MSI backends Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 022/311] PCI/MSI: Add an option to write MSIX ENTRY_DATA before any reads Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 023/311] irqchip/renesas-rzv2h: Simplify rzv2h_icu_init() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 024/311] irqchip/renesas-rzv2h: Add struct rzv2h_hw_info with t_offs variable Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 025/311] irqchip/renesas-rzv2h: Prevent TINT spurious interrupt Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 026/311] net/niu: Niu requires MSIX ENTRY_DATA fields touch before entry reads Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 027/311] drm/xe/ptl: Apply Wa_14023061436 Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 028/311] drm/xe/xe3lpg: Add Wa_13012615864 Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 029/311] drm/xe: Add performance tunings to debugfs Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 030/311] drm/xe/rtp: Drop sentinels from arg to xe_rtp_process_to_sr() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 031/311] drm/xe: Ensure fixed_slice_mode gets set after ccs_mode change Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 032/311] lib/Kconfig.ubsan: Remove default UBSAN from UBSAN_INTEGER_WRAP Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 033/311] ceph: Fix incorrect flush end position calculation Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 034/311] cpufreq: sun50i: prevent out-of-bounds access Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 035/311] dma/contiguous: avoid warning about unused size_bytes Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 036/311] cpufreq: apple-soc: Fix null-ptr-deref in apple_soc_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 037/311] cpufreq: scmi: Fix null-ptr-deref in scmi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 038/311] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 039/311] scsi: ufs: mcq: Add NULL check in ufshcd_mcq_abort() Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 040/311] virtio_pci: Use self group type for cap commands Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 041/311] cpufreq: cppc: Fix invalid return value in .get() callback Greg Kroah-Hartman
2025-04-29 16:37 ` [PATCH 6.14 042/311] cpufreq: Do not enable by default during compile testing Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 043/311] cpufreq: fix compile-test defaults Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 044/311] btrfs: avoid page_lockend underflow in btrfs_punch_hole_lock_range() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 045/311] btrfs: zoned: return EIO on RAID1 block group write pointer mismatch Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 046/311] cgroup/cpuset-v1: Add missing support for cpuset_v2_mode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 047/311] vhost-scsi: Add better resource allocation failure handling Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 048/311] vhost-scsi: Fix vhost_scsi_send_bad_target() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 049/311] vhost-scsi: Fix vhost_scsi_send_status() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 050/311] net/mlx5: Fix null-ptr-deref in mlx5_create_{inner_,}ttc_table() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 051/311] net/mlx5: Move ttc allocation after switch case to prevent leaks Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 052/311] scsi: core: Clear flags for scsi_cmnd that did not complete Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 053/311] scsi: ufs: core: Add NULL check in ufshcd_mcq_compl_pending_transfer() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 054/311] net: enetc: register XDP RX queues with frag_size Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 055/311] net: enetc: refactor bulk flipping of RX buffers to separate function Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 056/311] net: enetc: fix frame corruption on bpf_xdp_adjust_head/tail() and XDP_PASS Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 057/311] nvmet: fix out-of-bounds access in nvmet_enable_port Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 058/311] net: lwtunnel: disable BHs when required Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 059/311] net: phylink: force link down on major_config failure Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 060/311] net: phylink: fix suspend/resume with WoL enabled and link down Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 061/311] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 062/311] virtio-net: Refactor napi_enable paths Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 063/311] virtio-net: Refactor napi_disable paths Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 064/311] virtio-net: disable delayed refill when pausing rx Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 065/311] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 066/311] net: ethernet: mtk_eth_soc: net: revise NETSYSv3 hardware configuration Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 067/311] fix a couple of races in MNT_TREE_BENEATH handling by do_move_mount() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 068/311] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 069/311] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 070/311] net: dsa: mt7530: sync driver-specific behavior of MT7531 variants Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 071/311] pds_core: Prevent possible adminq overflow/stuck condition Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 072/311] pds_core: handle unsupported PDS_CORE_CMD_FW_CONTROL result Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 073/311] pds_core: Remove unnecessary check in pds_client_adminq_cmd() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 074/311] pds_core: make wait_context part of q_info Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 075/311] net: phy: Add helper for getting tx amplitude gain Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 076/311] net: phy: dp83822: Add support for changing the transmit amplitude voltage Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 077/311] net: dp83822: Fix OF_MDIO config check Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 078/311] net: stmmac: fix dwmac1000 ptp timestamp status offset Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 079/311] net: stmmac: fix multiplication overflow when reading timestamp Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 080/311] block: never reduce ra_pages in blk_apply_bdi_limits Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 081/311] bdev: use bdev_io_min() for statx block size Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 082/311] block: move blkdev_{get,put} _no_open prototypes out of blkdev.h Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 083/311] block: remove the backing_inode variable in bdev_statx Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 084/311] block: dont autoload drivers on stat Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 085/311] iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 086/311] riscv: Replace function-like macro by static inline function Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 087/311] riscv: uprobes: Add missing fence.i after building the XOL buffer Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 088/311] ublk: remove io_cmds list in ublk_queue Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 089/311] ublk: comment on ubq->canceling handling in ublk_queue_rq() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 090/311] ublk: implement ->queue_rqs() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 091/311] ublk: remove unused cmd argument to ublk_dispatch_req() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 092/311] ublk: call ublk_dispatch_req() for handling UBLK_U_IO_NEED_GET_DATA Greg Kroah-Hartman
2025-05-04 11:55   ` Jared Holzman
2025-05-04 12:39     ` Greg Kroah-Hartman
2025-05-04 13:47       ` Jared Holzman
2025-05-05  5:51         ` Greg Kroah-Hartman
2025-05-05  7:47           ` Jared Holzman
2025-05-05  7:54             ` Greg Kroah-Hartman
2025-05-05  8:25               ` Jared Holzman
2025-05-05  8:50                 ` Greg Kroah-Hartman
2025-05-06 14:31                   ` Jared Holzman
2025-05-06 16:12                     ` Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 093/311] splice: remove duplicate noinline from pipe_clear_nowait Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 094/311] fs/xattr: Fix handling of AT_FDCWD in setxattrat(2) and getxattrat(2) Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 095/311] bpf: Add namespace to BPF internal symbols Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 096/311] Revert "drm/meson: vclk: fix calculation of 59.94 fractional rates" Greg Kroah-Hartman
2025-04-29 16:38 ` Greg Kroah-Hartman [this message]
2025-04-29 16:38 ` [PATCH 6.14 098/311] perf/x86: Fix non-sampling (counting) events on certain x86 platforms Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 099/311] LoongArch: Select ARCH_USE_MEMTEST Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 100/311] LoongArch: Make regs_irqs_disabled() more clear Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 101/311] LoongArch: Make do_xyz() exception handlers more robust Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 6.14 102/311] sched/eevdf: Fix se->slice being set to U64_MAX and resulting crash Greg Kroah-Hartman
2025-05-07 17:43   ` Omar Sandoval
2025-05-07 18:00     ` Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 103/311] net: stmmac: simplify phylink_suspend() and phylink_resume() calls Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 104/311] net: phylink: add phylink_prepare_resume() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 105/311] net: stmmac: address non-LPI resume failures properly Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 106/311] net: stmmac: socfpga: remove phy_resume() call Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 107/311] net: phylink: add functions to block/unblock rx clock stop Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 108/311] net: stmmac: block PHY RXC clock-stop Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 109/311] netfilter: fib: avoid lookup if socket is available Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 110/311] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 111/311] sched_ext: Use kvzalloc for large exit_dump allocation Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 112/311] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 113/311] xen-netfront: handle NULL returned by xdp_convert_buff_to_frame() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 114/311] net: selftests: initialize TCP header and skb payload with zero Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 115/311] net: phy: microchip: force IRQ polling mode for lan88xx Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 116/311] mptcp: pm: Defer freeing of MPTCP userspace path manager entries Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 117/311] scsi: mpi3mr: Fix pending I/O counter Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 118/311] rust: firmware: Use `ffi::c_char` type in `FwFunc` Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 119/311] drm: panel: jd9365da: fix reset signal polarity in unprepare Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 120/311] drm/amd/display: Fix gpu reset in multidisplay config Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 121/311] drm/amd/display: Force full update in gpu reset Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 122/311] drm/amd/display: Fix ACPI edid parsing on some Lenovo systems Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 123/311] x86/insn: Fix CTEST instruction decoding Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 124/311] x86/mm: Fix _pgd_alloc() for Xen PV mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 125/311] selftests/pcie_bwctrl: Fix test progs list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 126/311] irqchip/gic-v2m: Prevent use after free of gicv2m_get_fwnode() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 127/311] binder: fix offset calculation in debug log Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 128/311] LoongArch: Handle fp, lsx, lasx and lbt assembly symbols Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 129/311] LoongArch: Return NULL from huge_pte_offset() for invalid PMD Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 130/311] LoongArch: Remove a bogus reference to ZONE_DMA Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 131/311] LoongArch: KVM: Fix multiple typos of KVM code Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 132/311] LoongArch: KVM: Fully clear some CSRs when VM reboot Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 133/311] LoongArch: KVM: Fix PMU pass-through issue if VM exits to host finally Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 134/311] io_uring: fix sync handling of io_fallback_tw() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 135/311] KVM: SVM: Allocate IR data using atomic allocation Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 136/311] cxl/core/regs.c: Skip Memory Space Enable check for RCD and RCH Ports Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 137/311] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 138/311] ata: libata-scsi: Improve CDL control Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 139/311] ata: libata-scsi: Fix ata_mselect_control_ata_feature() return type Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 140/311] ata: libata-scsi: Fix ata_msense_control_ata_feature() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 141/311] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 142/311] scsi: Improve CDL control Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 143/311] mei: me: add panther lake H DID Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 144/311] mei: vsc: Fix fortify-panic caused by invalid counted_by() use Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 145/311] KVM: x86: Explicitly treat routing entry type changes as changes Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 146/311] KVM: x86: Reset IRTE to host control if *new* route isnt postable Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 147/311] KVM: x86: Take irqfds.lock when adding/deleting IRQ bypass producer Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 148/311] char: misc: register chrdev region with all possible minors Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 149/311] misc: microchip: pci1xxxx: Fix Kernel panic during IRQ handler registration Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 150/311] misc: microchip: pci1xxxx: Fix incorrect IRQ status handling during ack Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 151/311] firmware: stratix10-svc: Add of_platform_default_populate() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 152/311] tty: Require CAP_SYS_ADMIN for all usages of TIOCL_SELMOUSEREPORT Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 153/311] serial: msm: Configure correct working mode before starting earlycon Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 154/311] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 155/311] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 156/311] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 157/311] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 158/311] xhci: Limit time spent with xHC interrupts disabled during bus resume Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 159/311] usb: xhci: Fix invalid pointer dereference in Etron workaround Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 160/311] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 161/311] usb: chipidea: ci_hdrc_imx: fix usbmisc handling Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 6.14 162/311] usb: chipidea: ci_hdrc_imx: fix call balance of regulator routines Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 163/311] usb: chipidea: ci_hdrc_imx: implement usb_phy_init() error handling Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 164/311] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 165/311] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 166/311] usb: dwc3: xilinx: Prevent spike in reset signal Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 167/311] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 168/311] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 169/311] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 170/311] usb: typec: class: Fix NULL pointer access Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 171/311] usb: typec: class: Invalidate USB device pointers on partner unregistration Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 172/311] usb: typec: class: Unlocked on error in typec_register_partner() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 173/311] USB: wdm: handle IO errors in wdm_wwan_port_start Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 174/311] USB: wdm: close race between wdm_open and wdm_wwan_port_stop Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 175/311] USB: wdm: wdm_wwan_port_tx_complete mutex in atomic context Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 176/311] USB: wdm: add annotation Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 177/311] crypto: ecdsa - Harden against integer overflows in DIV_ROUND_UP() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 178/311] selftests/bpf: Fix stdout race condition in traffic monitor Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 179/311] pinctrl: renesas: rza2: Fix potential NULL pointer dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 180/311] pinctrl: mcp23s08: Get rid of spurious level interrupts Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 181/311] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 182/311] crypto: ccp - Add support for PCI device 0x1134 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 183/311] crypto: lib/Kconfig - Fix lib built-in failure when arch is modular Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 184/311] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 185/311] bpf: Fix kmemleak warning for percpu hashmap Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 186/311] bpf: Fix deadlock between rcu_tasks_trace and event_mutex Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 187/311] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 188/311] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 189/311] s390/sclp: Add check for get_zeroed_page() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 190/311] s390/tty: Fix a potential memory leak bug Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 191/311] clk: renesas: rzv2h: Adjust for CPG_BUS_m_MSTOP starting from m = 1 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 192/311] selftests/bpf: Fix cap_enable_effective() return code Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 193/311] bpf: bpftool: Setting error code in do_loader() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 194/311] bpf: Only fails the busy counter check in bpf_cgrp_storage_get if it creates storage Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 195/311] bpf: Reject attaching fexit/fmod_ret to __noreturn functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 196/311] mailbox: pcc: Fix the possible race in updation of chan_in_use flag Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 197/311] mailbox: pcc: Always clear the platform ack interrupt first Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 198/311] staging: gpib: Use min for calculating transfer length Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 199/311] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 200/311] usb: typec: ucsi: return CCI and message from sync_control callback Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 201/311] usb: typec: ucsi: ccg: move command quirks to ucsi_ccg_sync_control() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 202/311] iio: adc: ad4695: make ad4695_exit_conversion_mode() more robust Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 203/311] fs/ntfs3: Keep write operations atomic Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 204/311] fs/ntfs3: Fix WARNING in ntfs_extend_initialized_size Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 205/311] usb: dwc3: gadget: Refactor loop to avoid NULL endpoints Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 206/311] usb: dwc3: gadget: Avoid using reserved endpoints on Intel Merrifield Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 207/311] sound/virtio: Fix cancel_sync warnings on uninitialized work_structs Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 208/311] dmaengine: bcm2835-dma: fix warning when CONFIG_PM=n Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 209/311] usb: xhci: Complete error mid TD transfers when handling Missed Service Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 210/311] usb: xhci: Fix isochronous Ring Underrun/Overrun event handling Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 211/311] xhci: Handle spurious events on Etron host isoc enpoints Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 212/311] i3c: master: svc: Add support for Nuvoton npcm845 i3c Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 213/311] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 214/311] usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 215/311] phy: rockchip: usbdp: Avoid call hpd_event_trigger in dp_phy_init Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 216/311] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 217/311] usb: host: xhci-plat: mvebu: use ->quirks instead of ->init_quirk() func Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 218/311] thunderbolt: Scan retimers after device router has been enumerated Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 219/311] um: work around sched_yield not yielding in time-travel mode Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 220/311] iommu/arm-smmu-v3: Set MEV bit in nested STE for DoS mitigations Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 221/311] objtool: Silence more KCOV warnings Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 6.14 222/311] objtool, panic: Disable SMAP in __stack_chk_fail() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 223/311] objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 224/311] objtool, regulator: rk808: Remove potential undefined behavior in rk806_set_mode_dcdc() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 225/311] objtool, lkdtm: Obfuscate the do_nothing() pointer Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 226/311] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 227/311] riscv: tracing: Fix __write_overflow_field in ftrace_partial_regs() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 228/311] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 229/311] ntb_hw_amd: Add NTB PCI ID for new gen CPU Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 230/311] 9p/net: fix improper handling of bogus negative read/write replies Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 231/311] 9p/trans_fd: mark concurrent read and writes to p9_conn->err Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 232/311] rtc: pcf85063: do a SW reset if POR failed Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 233/311] tracing: Enforce the persistent ring buffer to be page aligned Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 234/311] io_uring: always do atomic put from iowq Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 235/311] kbuild, rust: use -fremap-path-prefix to make paths relative Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 236/311] kbuild: add dependency from vmlinux to sorttable Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 237/311] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 238/311] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 239/311] KVM: s390: Dont use %pK through debug printing Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 240/311] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 241/311] cgroup/cpuset: Dont allow creation of local partition over a remote one Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 242/311] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 243/311] perf/core: Fix WARN_ON(!ctx) in __free_event() for partial init Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 244/311] xen: Change xen-acpi-processor dom0 dependency Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 245/311] pwm: Let pwm_set_waveform() succeed even if lowlevel driver rounded up Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 246/311] pwm: axi-pwmgen: Let .round_waveform_tohw() signal when request was " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 247/311] nvme: requeue namespace scan on missed AENs Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 248/311] ACPI: EC: Set ec_no_wakeup for Lenovo Go S Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 249/311] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 250/311] drm/amdkfd: sriov doesnt support per queue reset Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 251/311] drm/amdgpu: Increase KIQ invalidate_tlbs timeout Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 252/311] drm/xe/xe3lpg: Apply Wa_14022293748, Wa_22019794406 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 253/311] nvme: re-read ANA log page after ns scan completes Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 254/311] nvme: multipath: fix return value of nvme_available_path Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 255/311] objtool: Stop UNRET validation on UD2 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 256/311] gpiolib: of: Move Atmel HSMCI quirk up out of the regulator comment Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 257/311] x86/xen: disable CPU idle and frequency drivers for PVH dom0 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 258/311] selftests/mincore: Allow read-ahead pages to reach the end of the file Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 259/311] x86/bugs: Use SBPB in write_ibpb() if applicable Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 260/311] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 261/311] x86/bugs: Dont fill RSB on context switch with eIBRS Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 262/311] nvmet-fc: take tgtport reference only once Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 263/311] nvmet-fc: put ref when assoc->del_work is already scheduled Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 264/311] cifs: Fix encoding of SMB1 Session Setup Kerberos Request in non-UNICODE mode Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 265/311] timekeeping: Add a lockdep override in tick_freeze() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 266/311] cifs: Fix querying of WSL CHR and BLK reparse points over SMB1 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 267/311] iommu: Clear iommu-dma ops on cleanup Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 268/311] ext4: make block validity check resistent to sb bh corruption Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 269/311] scsi: hisi_sas: Fix I/O errors caused by hardware port ID changes Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 270/311] scsi: ufs: exynos: Ensure pre_link() executes before exynos_ufs_phy_init() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 271/311] scsi: ufs: exynos: Enable PRDT pre-fetching with UFSHCD_CAP_CRYPTO Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 272/311] scsi: ufs: exynos: Move phy calls to .exit() callback Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 273/311] scsi: ufs: exynos: gs101: Put UFS device in reset on .suspend() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 274/311] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 275/311] ASoC: fsl_asrc_dma: get codec or cpu dai from backend Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 276/311] ASoC: codecs: Add of_match_table for aw888081 driver Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 277/311] x86/i8253: Call clockevent_i8253_disable() with interrupts disabled Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 278/311] platform/x86: x86-android-tablets: Add "9v" to Vexia EDU ATLA 10 tablet symbols Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 279/311] platform/x86: x86-android-tablets: Add Vexia Edu Atla 10 tablet 5V data Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 280/311] netfs: Only create /proc/fs/netfs with CONFIG_PROC_FS Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 281/311] iomap: skip unnecessary ifs_block_is_uptodate check Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 6.14 282/311] riscv: Provide all alternative macros all the time Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 283/311] ksmbd: fix WARNING "do not call blocking ops when !TASK_RUNNING" Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 284/311] spi: tegra210-quad: use WARN_ON_ONCE instead of WARN_ON for timeouts Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 285/311] spi: tegra210-quad: add rate limiting and simplify timeout error message Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 286/311] ubsan: Fix panic from test_ubsan_out_of_bounds Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 287/311] nvmet: pci-epf: cleanup link state management Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 288/311] x86/cpu: Add CPU model number for Bartlett Lake CPUs with Raptor Cove cores Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 289/311] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 290/311] drm/amdgpu: use a dummy owner for sysfs triggered cleaner shaders v4 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 291/311] drm/amd: Forbid suspending into non-default suspend states Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 292/311] drm/amdgpu: Use the right function for hdp flush Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 293/311] ublk: add ublk_force_abort_dev() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 294/311] ublk: rely on ->canceling for dealing with ublk_nosrv_dev_should_queue_io Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 295/311] spi: spi-imx: Add check for spi_imx_setupxfer() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 296/311] Revert "drivers: core: synchronize really_probe() and dev_uevent()" Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 297/311] driver core: introduce device_set_driver() helper Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 298/311] driver core: fix potential NULL pointer dereference in dev_uevent() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 299/311] vmxnet3: Fix malformed packet sizing in vmxnet3_process_xdp Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 300/311] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 301/311] crypto: lib/Kconfig - Hide arch options from user Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 302/311] media: i2c: imx214: Fix uninitialized variable in imx214_set_ctrl() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 303/311] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 304/311] net: phy: dp83822: fix transmit amplitude if CONFIG_OF_MDIO not defined Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 305/311] rust: kbuild: skip `--remap-path-prefix` for `rustdoc` Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 306/311] ublk: dont fail request for recovery & reissue in case of ubq->canceling Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 307/311] nvme: fixup scan failure for non-ANA multipath controllers Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 308/311] usb: xhci: Fix Short Packet handling rework ignoring errors Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 309/311] objtool: Ignore end-of-section jumps for KCOV/GCOV Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 310/311] objtool: Silence more KCOV warnings, part 2 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 6.14 311/311] crypto: Kconfig - Select LIB generic option Greg Kroah-Hartman
2025-04-29 17:21 ` [PATCH 6.14 000/311] 6.14.5-rc1 review Ronald Warsow
2025-04-29 20:09 ` Hardik Garg
2025-04-29 20:18 ` Pavel Machek
2025-04-30  2:40 ` Takeshi Ogasawara
2025-04-30  2:57 ` Shung-Hsi Yu
2025-04-30  3:03 ` Peter Schneider
2025-04-30 15:04 ` Jon Hunter
2025-04-30 15:57 ` Shuah Khan
2025-04-30 15:58 ` Miguel Ojeda
2025-04-30 17:43 ` Naresh Kamboju
2025-04-30 21:08 ` Ron Economos
2025-04-30 22:46 ` Mark Brown
2025-05-01 11:09 ` Christian Heusel
2025-05-02 13:34 ` Florian Fainelli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250429161125.015112349@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=christianshewitt@gmail.com \
    --cc=martin.blumenstingl@googlemail.com \
    --cc=neil.armstrong@linaro.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox