linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org,
	Steen Hegelund <steen.hegelund@microchip.com>,
	Bjarni Jonasson <bjarni.jonasson@microchip.com>,
	Vladimir Oltean <vladimir.oltean@nxp.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.11 166/775] net: phy: mscc: improved serdes calibration applied to VSC8514
Date: Mon,  1 Mar 2021 17:05:34 +0100	[thread overview]
Message-ID: <20210301161209.843826527@linuxfoundation.org> (raw)
In-Reply-To: <20210301161201.679371205@linuxfoundation.org>

From: Bjarni Jonasson <bjarni.jonasson@microchip.com>

[ Upstream commit 85e97f0b984eb36cba0ecaf87c66a9f7445d73dc ]

The current IB serdes calibration algorithm (performed by the onboard 8051)
has proven to be unstable for the VSC8514 QSGMII phy.
A new algorithm has been developed based on
'Frequency-offset Jittered-Injection' or 'FoJi' method which solves
all known issues.  This patch disables the 8051 algorithm and
replaces it with the new FoJi algorithm.
The calibration is now performed in a new file (mscc_serdes.c),
which can act as an placeholder for future serdes configurations.

Fixes: e4f9ba642f0b ("net: phy: mscc: add support for VSC8514 PHY.")
Signed-off-by: Steen Hegelund <steen.hegelund@microchip.com>
Signed-off-by: Bjarni Jonasson <bjarni.jonasson@microchip.com>
Tested-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/phy/mscc/Makefile      |   1 +
 drivers/net/phy/mscc/mscc.h        |  16 +
 drivers/net/phy/mscc/mscc_main.c   | 308 +++++++-------
 drivers/net/phy/mscc/mscc_serdes.c | 650 +++++++++++++++++++++++++++++
 drivers/net/phy/mscc/mscc_serdes.h |  31 ++
 5 files changed, 840 insertions(+), 166 deletions(-)
 create mode 100644 drivers/net/phy/mscc/mscc_serdes.c
 create mode 100644 drivers/net/phy/mscc/mscc_serdes.h

diff --git a/drivers/net/phy/mscc/Makefile b/drivers/net/phy/mscc/Makefile
index d8e22a4eeeffa..78d84194f79ae 100644
--- a/drivers/net/phy/mscc/Makefile
+++ b/drivers/net/phy/mscc/Makefile
@@ -4,6 +4,7 @@
 
 obj-$(CONFIG_MICROSEMI_PHY) := mscc.o
 mscc-objs := mscc_main.o
+mscc-objs += mscc_serdes.o
 
 ifdef CONFIG_MACSEC
 mscc-objs += mscc_macsec.o
diff --git a/drivers/net/phy/mscc/mscc.h b/drivers/net/phy/mscc/mscc.h
index c2023f93c0b24..2028c319f14dd 100644
--- a/drivers/net/phy/mscc/mscc.h
+++ b/drivers/net/phy/mscc/mscc.h
@@ -339,6 +339,10 @@ enum rgmii_clock_delay {
 #define VSC8584_REVB				0x0001
 #define MSCC_DEV_REV_MASK			GENMASK(3, 0)
 
+#define MSCC_ROM_TRAP_SERDES_6G_CFG		0x1E48
+#define MSCC_RAM_TRAP_SERDES_6G_CFG		0x1E4F
+#define PATCH_VEC_ZERO_EN			0x0100
+
 struct reg_val {
 	u16	reg;
 	u32	val;
@@ -420,6 +424,18 @@ enum csr_target {
 	MACRO_CTRL  = 0x07,
 };
 
+u32 vsc85xx_csr_read(struct phy_device *phydev,
+		     enum csr_target target, u32 reg);
+
+int vsc85xx_csr_write(struct phy_device *phydev,
+		      enum csr_target target, u32 reg, u32 val);
+
+int phy_base_write(struct phy_device *phydev, u32 regnum, u16 val);
+int phy_base_read(struct phy_device *phydev, u32 regnum);
+int phy_update_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb);
+int phy_commit_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb);
+int vsc8584_cmd(struct phy_device *phydev, u16 val);
+
 #if IS_ENABLED(CONFIG_MACSEC)
 int vsc8584_macsec_init(struct phy_device *phydev);
 void vsc8584_handle_macsec_interrupt(struct phy_device *phydev);
diff --git a/drivers/net/phy/mscc/mscc_main.c b/drivers/net/phy/mscc/mscc_main.c
index 7830340b9cdc8..0e6e7076a740e 100644
--- a/drivers/net/phy/mscc/mscc_main.c
+++ b/drivers/net/phy/mscc/mscc_main.c
@@ -17,7 +17,7 @@
 #include <linux/of.h>
 #include <linux/netdevice.h>
 #include <dt-bindings/net/mscc-phy-vsc8531.h>
-
+#include "mscc_serdes.h"
 #include "mscc.h"
 
 static const struct vsc85xx_hw_stat vsc85xx_hw_stats[] = {
@@ -689,7 +689,7 @@ out_unlock:
 }
 
 /* phydev->bus->mdio_lock should be locked when using this function */
-static int phy_base_write(struct phy_device *phydev, u32 regnum, u16 val)
+int phy_base_write(struct phy_device *phydev, u32 regnum, u16 val)
 {
 	if (unlikely(!mutex_is_locked(&phydev->mdio.bus->mdio_lock))) {
 		dev_err(&phydev->mdio.dev, "MDIO bus lock not held!\n");
@@ -700,7 +700,7 @@ static int phy_base_write(struct phy_device *phydev, u32 regnum, u16 val)
 }
 
 /* phydev->bus->mdio_lock should be locked when using this function */
-static int phy_base_read(struct phy_device *phydev, u32 regnum)
+int phy_base_read(struct phy_device *phydev, u32 regnum)
 {
 	if (unlikely(!mutex_is_locked(&phydev->mdio.bus->mdio_lock))) {
 		dev_err(&phydev->mdio.dev, "MDIO bus lock not held!\n");
@@ -710,8 +710,8 @@ static int phy_base_read(struct phy_device *phydev, u32 regnum)
 	return __phy_package_read(phydev, regnum);
 }
 
-static u32 vsc85xx_csr_read(struct phy_device *phydev,
-			    enum csr_target target, u32 reg)
+u32 vsc85xx_csr_read(struct phy_device *phydev,
+		     enum csr_target target, u32 reg)
 {
 	unsigned long deadline;
 	u32 val, val_l, val_h;
@@ -764,8 +764,8 @@ static u32 vsc85xx_csr_read(struct phy_device *phydev,
 	return (val_h << 16) | val_l;
 }
 
-static int vsc85xx_csr_write(struct phy_device *phydev,
-			     enum csr_target target, u32 reg, u32 val)
+int vsc85xx_csr_write(struct phy_device *phydev,
+		      enum csr_target target, u32 reg, u32 val)
 {
 	unsigned long deadline;
 
@@ -826,7 +826,7 @@ static void vsc8584_csr_write(struct phy_device *phydev, u16 addr, u32 val)
 }
 
 /* bus->mdio_lock should be locked when using this function */
-static int vsc8584_cmd(struct phy_device *phydev, u16 val)
+int vsc8584_cmd(struct phy_device *phydev, u16 val)
 {
 	unsigned long deadline;
 	u16 reg_val;
@@ -1734,6 +1734,100 @@ static int vsc85xx_config_init(struct phy_device *phydev)
 	return 0;
 }
 
+static int __phy_write_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb,
+			       u32 op)
+{
+	unsigned long deadline;
+	u32 val;
+	int ret;
+
+	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET, reg,
+				op | (1 << mcb));
+	if (ret)
+		return -EINVAL;
+
+	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
+	do {
+		usleep_range(500, 1000);
+		val = vsc85xx_csr_read(phydev, PHY_MCB_TARGET, reg);
+
+		if (val == 0xffffffff)
+			return -EIO;
+
+	} while (time_before(jiffies, deadline) && (val & op));
+
+	if (val & op)
+		return -ETIMEDOUT;
+
+	return 0;
+}
+
+/* Trigger a read to the specified MCB */
+int phy_update_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb)
+{
+	return __phy_write_mcb_s6g(phydev, reg, mcb, PHY_MCB_S6G_READ);
+}
+
+/* Trigger a write to the specified MCB */
+int phy_commit_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb)
+{
+	return __phy_write_mcb_s6g(phydev, reg, mcb, PHY_MCB_S6G_WRITE);
+}
+
+static int vsc8514_config_host_serdes(struct phy_device *phydev)
+{
+	int ret;
+	u16 val;
+
+	ret = phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS,
+			     MSCC_PHY_PAGE_EXTENDED_GPIO);
+	if (ret)
+		return ret;
+
+	val = phy_base_read(phydev, MSCC_PHY_MAC_CFG_FASTLINK);
+	val &= ~MAC_CFG_MASK;
+	val |= MAC_CFG_QSGMII;
+	ret = phy_base_write(phydev, MSCC_PHY_MAC_CFG_FASTLINK, val);
+	if (ret)
+		return ret;
+
+	ret = phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS,
+			     MSCC_PHY_PAGE_STANDARD);
+	if (ret)
+		return ret;
+
+	ret = vsc8584_cmd(phydev, PROC_CMD_NOP);
+	if (ret)
+		return ret;
+
+	ret = vsc8584_cmd(phydev,
+			  PROC_CMD_MCB_ACCESS_MAC_CONF |
+			  PROC_CMD_RST_CONF_PORT |
+			  PROC_CMD_READ_MOD_WRITE_PORT | PROC_CMD_QSGMII_MAC);
+	if (ret) {
+		dev_err(&phydev->mdio.dev, "%s: QSGMII error: %d\n",
+			__func__, ret);
+		return ret;
+	}
+
+	/* Apply 6G SerDes FOJI Algorithm
+	 *  Initial condition requirement:
+	 *  1. hold 8051 in reset
+	 *  2. disable patch vector 0, in order to allow IB cal poll during FoJi
+	 *  3. deassert 8051 reset after change patch vector status
+	 *  4. proceed with FoJi (vsc85xx_sd6g_config_v2)
+	 */
+	vsc8584_micro_assert_reset(phydev);
+	val = phy_base_read(phydev, MSCC_INT_MEM_CNTL);
+	/* clear bit 8, to disable patch vector 0 */
+	val &= ~PATCH_VEC_ZERO_EN;
+	ret = phy_base_write(phydev, MSCC_INT_MEM_CNTL, val);
+	/* Enable 8051 clock, don't set patch present, disable PRAM clock override */
+	vsc8584_micro_deassert_reset(phydev, false);
+
+	return vsc85xx_sd6g_config_v2(phydev);
+}
+
 static int vsc8514_config_pre_init(struct phy_device *phydev)
 {
 	/* These are the settings to override the silicon default
@@ -1803,56 +1897,48 @@ static int vsc8514_config_pre_init(struct phy_device *phydev)
 	reg &= ~SMI_BROADCAST_WR_EN;
 	phy_base_write(phydev, MSCC_PHY_EXT_CNTL_STATUS, reg);
 
-	return 0;
-}
-
-static int __phy_write_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb,
-			       u32 op)
-{
-	unsigned long deadline;
-	u32 val;
-	int ret;
+	/* Add pre-patching commands to:
+	 * 1. enable 8051 clock, operate 8051 clock at 125 MHz
+	 * instead of HW default 62.5MHz
+	 * 2. write patch vector 0, to skip IB cal polling executed
+	 * as part of the 0x80E0 ROM command
+	 */
+	vsc8584_micro_deassert_reset(phydev, false);
 
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET, reg,
-				op | (1 << mcb));
+	vsc8584_micro_assert_reset(phydev);
+	phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS,
+		       MSCC_PHY_PAGE_EXTENDED_GPIO);
+	/* ROM address to trap, for patch vector 0 */
+	reg = MSCC_ROM_TRAP_SERDES_6G_CFG;
+	ret = phy_base_write(phydev, MSCC_TRAP_ROM_ADDR(1), reg);
 	if (ret)
-		return -EINVAL;
-
-	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
-	do {
-		usleep_range(500, 1000);
-		val = vsc85xx_csr_read(phydev, PHY_MCB_TARGET, reg);
-
-		if (val == 0xffffffff)
-			return -EIO;
-
-	} while (time_before(jiffies, deadline) && (val & op));
-
-	if (val & op)
-		return -ETIMEDOUT;
-
-	return 0;
-}
-
-/* Trigger a read to the specified MCB */
-static int phy_update_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb)
-{
-	return __phy_write_mcb_s6g(phydev, reg, mcb, PHY_MCB_S6G_READ);
-}
+		goto err;
+	/* RAM address to jump to, when patch vector 0 enabled */
+	reg = MSCC_RAM_TRAP_SERDES_6G_CFG;
+	ret = phy_base_write(phydev, MSCC_PATCH_RAM_ADDR(1), reg);
+	if (ret)
+		goto err;
+	reg = phy_base_read(phydev, MSCC_INT_MEM_CNTL);
+	reg |= PATCH_VEC_ZERO_EN; /* bit 8, enable patch vector 0 */
+	ret = phy_base_write(phydev, MSCC_INT_MEM_CNTL, reg);
+	if (ret)
+		goto err;
 
-/* Trigger a write to the specified MCB */
-static int phy_commit_mcb_s6g(struct phy_device *phydev, u32 reg, u8 mcb)
-{
-	return __phy_write_mcb_s6g(phydev, reg, mcb, PHY_MCB_S6G_WRITE);
+	/* Enable 8051 clock, don't set patch present
+	 * yet, disable PRAM clock override
+	 */
+	vsc8584_micro_deassert_reset(phydev, false);
+	return ret;
+ err:
+	/* restore 8051 and bail w error */
+	vsc8584_micro_deassert_reset(phydev, false);
+	return ret;
 }
 
 static int vsc8514_config_init(struct phy_device *phydev)
 {
 	struct vsc8531_private *vsc8531 = phydev->priv;
-	unsigned long deadline;
 	int ret, i;
-	u16 val;
-	u32 reg;
 
 	phydev->mdix_ctrl = ETH_TP_MDI_AUTO;
 
@@ -1869,123 +1955,13 @@ static int vsc8514_config_init(struct phy_device *phydev)
 	 * do the correct init sequence for all PHYs that are package-critical
 	 * in this pre-init function.
 	 */
-	if (phy_package_init_once(phydev))
-		vsc8514_config_pre_init(phydev);
-
-	ret = phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS,
-			     MSCC_PHY_PAGE_EXTENDED_GPIO);
-	if (ret)
-		goto err;
-
-	val = phy_base_read(phydev, MSCC_PHY_MAC_CFG_FASTLINK);
-
-	val &= ~MAC_CFG_MASK;
-	val |= MAC_CFG_QSGMII;
-	ret = phy_base_write(phydev, MSCC_PHY_MAC_CFG_FASTLINK, val);
-	if (ret)
-		goto err;
-
-	ret = phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS,
-			     MSCC_PHY_PAGE_STANDARD);
-	if (ret)
-		goto err;
-
-	ret = vsc8584_cmd(phydev,
-			  PROC_CMD_MCB_ACCESS_MAC_CONF |
-			  PROC_CMD_RST_CONF_PORT |
-			  PROC_CMD_READ_MOD_WRITE_PORT | PROC_CMD_QSGMII_MAC);
-	if (ret)
-		goto err;
-
-	/* 6g mcb */
-	phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
-	/* lcpll mcb */
-	phy_update_mcb_s6g(phydev, PHY_S6G_LCPLL_CFG, 0);
-	/* pll5gcfg0 */
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET,
-				PHY_S6G_PLL5G_CFG0, 0x7036f145);
-	if (ret)
-		goto err;
-
-	phy_commit_mcb_s6g(phydev, PHY_S6G_LCPLL_CFG, 0);
-	/* pllcfg */
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET,
-				PHY_S6G_PLL_CFG,
-				(3 << PHY_S6G_PLL_ENA_OFFS_POS) |
-				(120 << PHY_S6G_PLL_FSM_CTRL_DATA_POS)
-				| (0 << PHY_S6G_PLL_FSM_ENA_POS));
-	if (ret)
-		goto err;
-
-	/* commoncfg */
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET,
-				PHY_S6G_COMMON_CFG,
-				(0 << PHY_S6G_SYS_RST_POS) |
-				(0 << PHY_S6G_ENA_LANE_POS) |
-				(0 << PHY_S6G_ENA_LOOP_POS) |
-				(0 << PHY_S6G_QRATE_POS) |
-				(3 << PHY_S6G_IF_MODE_POS));
-	if (ret)
-		goto err;
-
-	/* misccfg */
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET,
-				PHY_S6G_MISC_CFG, 1);
-	if (ret)
-		goto err;
-
-	/* gpcfg */
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET,
-				PHY_S6G_GPC_CFG, 768);
-	if (ret)
-		goto err;
-
-	phy_commit_mcb_s6g(phydev, PHY_S6G_DFT_CFG2, 0);
-
-	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
-	do {
-		usleep_range(500, 1000);
-		phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG,
-				   0); /* read 6G MCB into CSRs */
-		reg = vsc85xx_csr_read(phydev, PHY_MCB_TARGET,
-				       PHY_S6G_PLL_STATUS);
-		if (reg == 0xffffffff) {
-			phy_unlock_mdio_bus(phydev);
-			return -EIO;
-		}
-
-	} while (time_before(jiffies, deadline) && (reg & BIT(12)));
-
-	if (reg & BIT(12)) {
-		phy_unlock_mdio_bus(phydev);
-		return -ETIMEDOUT;
-	}
-
-	/* misccfg */
-	ret = vsc85xx_csr_write(phydev, PHY_MCB_TARGET,
-				PHY_S6G_MISC_CFG, 0);
-	if (ret)
-		goto err;
-
-	phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
-
-	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
-	do {
-		usleep_range(500, 1000);
-		phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG,
-				   0); /* read 6G MCB into CSRs */
-		reg = vsc85xx_csr_read(phydev, PHY_MCB_TARGET,
-				       PHY_S6G_IB_STATUS0);
-		if (reg == 0xffffffff) {
-			phy_unlock_mdio_bus(phydev);
-			return -EIO;
-		}
-
-	} while (time_before(jiffies, deadline) && !(reg & BIT(8)));
-
-	if (!(reg & BIT(8))) {
-		phy_unlock_mdio_bus(phydev);
-		return -ETIMEDOUT;
+	if (phy_package_init_once(phydev)) {
+		ret = vsc8514_config_pre_init(phydev);
+		if (ret)
+			goto err;
+		ret = vsc8514_config_host_serdes(phydev);
+		if (ret)
+			goto err;
 	}
 
 	phy_unlock_mdio_bus(phydev);
diff --git a/drivers/net/phy/mscc/mscc_serdes.c b/drivers/net/phy/mscc/mscc_serdes.c
new file mode 100644
index 0000000000000..b3e854f53d675
--- /dev/null
+++ b/drivers/net/phy/mscc/mscc_serdes.c
@@ -0,0 +1,650 @@
+// SPDX-License-Identifier: (GPL-2.0 OR MIT)
+/*
+ * Driver for Microsemi VSC85xx PHYs
+ *
+ * Author: Bjarni Jonasson <bjarni.jonassoni@microchip.com>
+ * License: Dual MIT/GPL
+ * Copyright (c) 2021 Microsemi Corporation
+ */
+
+#include <linux/phy.h>
+#include "mscc_serdes.h"
+#include "mscc.h"
+
+static int pll5g_detune(struct phy_device *phydev)
+{
+	u32 rd_dat;
+	int ret;
+
+	rd_dat = vsc85xx_csr_read(phydev, MACRO_CTRL, PHY_S6G_PLL5G_CFG2);
+	rd_dat &= ~PHY_S6G_PLL5G_CFG2_GAIN_MASK;
+	rd_dat |= PHY_S6G_PLL5G_CFG2_ENA_GAIN;
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_PLL5G_CFG2, rd_dat);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int pll5g_tune(struct phy_device *phydev)
+{
+	u32 rd_dat;
+	int ret;
+
+	rd_dat = vsc85xx_csr_read(phydev, MACRO_CTRL, PHY_S6G_PLL5G_CFG2);
+	rd_dat &= ~PHY_S6G_PLL5G_CFG2_ENA_GAIN;
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_PLL5G_CFG2, rd_dat);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_pll_cfg_wr(struct phy_device *phydev,
+				   const u32 pll_ena_offs,
+				   const u32 pll_fsm_ctrl_data,
+				   const u32 pll_fsm_ena)
+{
+	int ret;
+
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_PLL_CFG,
+				(pll_fsm_ena << PHY_S6G_PLL_ENA_OFFS_POS) |
+				(pll_fsm_ctrl_data << PHY_S6G_PLL_FSM_CTRL_DATA_POS) |
+				(pll_ena_offs << PHY_S6G_PLL_FSM_ENA_POS));
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_common_cfg_wr(struct phy_device *phydev,
+				      const u32 sys_rst,
+				      const u32 ena_lane,
+				      const u32 ena_loop,
+				      const u32 qrate,
+				      const u32 if_mode,
+				      const u32 pwd_tx)
+{
+	/* ena_loop = 8 for eloop */
+	/*          = 4 for floop */
+	/*          = 2 for iloop */
+	/*          = 1 for ploop */
+	/* qrate    = 1 for SGMII, 0 for QSGMII */
+	/* if_mode  = 1 for SGMII, 3 for QSGMII */
+
+	int ret;
+
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_COMMON_CFG,
+				(sys_rst << PHY_S6G_SYS_RST_POS) |
+				(ena_lane << PHY_S6G_ENA_LANE_POS) |
+				(ena_loop << PHY_S6G_ENA_LOOP_POS) |
+				(qrate << PHY_S6G_QRATE_POS) |
+				(if_mode << PHY_S6G_IF_MODE_POS));
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_des_cfg_wr(struct phy_device *phydev,
+				   const u32 des_phy_ctrl,
+				   const u32 des_mbtr_ctrl,
+				   const u32 des_bw_hyst,
+				   const u32 des_bw_ana,
+				   const u32 des_cpmd_sel)
+{
+	u32 reg_val;
+	int ret;
+
+	/* configurable terms */
+	reg_val = (des_phy_ctrl << PHY_S6G_DES_PHY_CTRL_POS) |
+		  (des_mbtr_ctrl << PHY_S6G_DES_MBTR_CTRL_POS) |
+		  (des_cpmd_sel << PHY_S6G_DES_CPMD_SEL_POS) |
+		  (des_bw_hyst << PHY_S6G_DES_BW_HYST_POS) |
+		  (des_bw_ana << PHY_S6G_DES_BW_ANA_POS);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_DES_CFG,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_ib_cfg0_wr(struct phy_device *phydev,
+				   const u32 ib_rtrm_adj,
+				   const u32 ib_sig_det_clk_sel,
+				   const u32 ib_reg_pat_sel_offset,
+				   const u32 ib_cal_ena)
+{
+	u32 base_val;
+	u32 reg_val;
+	int ret;
+
+	/* constant terms */
+	base_val = 0x60a85837;
+	/* configurable terms */
+	reg_val = base_val | (ib_rtrm_adj << 25) |
+		  (ib_sig_det_clk_sel << 16) |
+		  (ib_reg_pat_sel_offset << 8) |
+		  (ib_cal_ena << 3);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_IB_CFG0,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_ib_cfg1_wr(struct phy_device *phydev,
+				   const u32 ib_tjtag,
+				   const u32 ib_tsdet,
+				   const u32 ib_scaly,
+				   const u32 ib_frc_offset,
+				   const u32 ib_filt_offset)
+{
+	u32 ib_filt_val;
+	u32 reg_val = 0;
+	int ret;
+
+	/* constant terms */
+	ib_filt_val = 0xe0;
+	/* configurable terms */
+	reg_val  = (ib_tjtag << 17) + (ib_tsdet << 12) + (ib_scaly << 8) +
+		   ib_filt_val + (ib_filt_offset << 4) + (ib_frc_offset << 0);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_IB_CFG1,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_ib_cfg2_wr(struct phy_device *phydev,
+				   const u32 ib_tinfv,
+				   const u32 ib_tcalv,
+				   const u32 ib_ureg)
+{
+	u32 ib_cfg2_val;
+	u32 base_val;
+	int ret;
+
+	/* constant terms */
+	base_val = 0x0f878010;
+	/* configurable terms */
+	ib_cfg2_val = base_val | ((ib_tinfv) << 28) | ((ib_tcalv) << 5) |
+		      (ib_ureg << 0);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_IB_CFG2,
+				ib_cfg2_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_ib_cfg3_wr(struct phy_device *phydev,
+				   const u32 ib_ini_hp,
+				   const u32 ib_ini_mid,
+				   const u32 ib_ini_lp,
+				   const u32 ib_ini_offset)
+{
+	u32 reg_val;
+	int ret;
+
+	reg_val  = (ib_ini_hp << 24) + (ib_ini_mid << 16) +
+		   (ib_ini_lp << 8) + (ib_ini_offset << 0);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_IB_CFG3,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_ib_cfg4_wr(struct phy_device *phydev,
+				   const u32 ib_max_hp,
+				   const u32 ib_max_mid,
+				   const u32 ib_max_lp,
+				   const u32 ib_max_offset)
+{
+	u32 reg_val;
+	int ret;
+
+	reg_val  = (ib_max_hp << 24) + (ib_max_mid << 16) +
+		   (ib_max_lp << 8) + (ib_max_offset << 0);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_IB_CFG4,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_misc_cfg_wr(struct phy_device *phydev,
+				    const u32 lane_rst)
+{
+	int ret;
+
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_MISC_CFG,
+				lane_rst);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_gp_cfg_wr(struct phy_device *phydev, const u32 gp_cfg_val)
+{
+	int ret;
+
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_GP_CFG,
+				gp_cfg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_dft_cfg2_wr(struct phy_device *phydev,
+				    const u32 rx_ji_ampl,
+				    const u32 rx_step_freq,
+				    const u32 rx_ji_ena,
+				    const u32 rx_waveform_sel,
+				    const u32 rx_freqoff_dir,
+				    const u32 rx_freqoff_ena)
+{
+	u32 reg_val;
+	int ret;
+
+	/* configurable terms */
+	reg_val = (rx_ji_ampl << 8) | (rx_step_freq << 4) |
+		  (rx_ji_ena << 3) | (rx_waveform_sel << 2) |
+		  (rx_freqoff_dir << 1) | rx_freqoff_ena;
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_IB_DFT_CFG2,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+static int vsc85xx_sd6g_dft_cfg0_wr(struct phy_device *phydev,
+				    const u32 prbs_sel,
+				    const u32 test_mode,
+				    const u32 rx_dft_ena)
+{
+	u32 reg_val;
+	int ret;
+
+	/* configurable terms */
+	reg_val = (prbs_sel << 20) | (test_mode << 16) | (rx_dft_ena << 2);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_DFT_CFG0,
+				reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+/* Access LCPLL Cfg_0 */
+static int vsc85xx_pll5g_cfg0_wr(struct phy_device *phydev,
+				 const u32 selbgv820)
+{
+	u32 base_val;
+	u32 reg_val;
+	int ret;
+
+	/* constant terms */
+	base_val = 0x7036f145;
+	/* configurable terms */
+	reg_val = base_val | (selbgv820 << 23);
+	ret = vsc85xx_csr_write(phydev, MACRO_CTRL,
+				PHY_S6G_PLL5G_CFG0, reg_val);
+	if (ret)
+		dev_err(&phydev->mdio.dev, "%s: write error\n", __func__);
+	return ret;
+}
+
+int vsc85xx_sd6g_config_v2(struct phy_device *phydev)
+{
+	u32 ib_sig_det_clk_sel_cal = 0;
+	u32 ib_sig_det_clk_sel_mm  = 7;
+	u32 pll_fsm_ctrl_data = 60;
+	unsigned long deadline;
+	u32 des_bw_ana_val = 3;
+	u32 ib_tsdet_cal = 16;
+	u32 ib_tsdet_mm  = 5;
+	u32 ib_rtrm_adj;
+	u32 if_mode = 1;
+	u32 gp_iter = 5;
+	u32 val32 = 0;
+	u32 qrate = 1;
+	u32 iter;
+	int val = 0;
+	int ret;
+
+	phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS, MSCC_PHY_PAGE_STANDARD);
+
+	/* Detune/Unlock LCPLL */
+	ret = pll5g_detune(phydev);
+	if (ret)
+		return ret;
+
+	/* 0. Reset RCPLL */
+	ret = vsc85xx_sd6g_pll_cfg_wr(phydev, 3, pll_fsm_ctrl_data, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_common_cfg_wr(phydev, 0, 0, 0, qrate, if_mode, 0);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_des_cfg_wr(phydev, 6, 2, 5, des_bw_ana_val, 0);
+	if (ret)
+		return ret;
+
+	/* 1. Configure sd6g for SGMII prior to sd6g_IB_CAL */
+	ib_rtrm_adj = 13;
+	ret = vsc85xx_sd6g_ib_cfg0_wr(phydev, ib_rtrm_adj, ib_sig_det_clk_sel_mm, 0, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg1_wr(phydev, 8, ib_tsdet_mm, 15, 0, 1);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg2_wr(phydev, 3, 13, 5);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg3_wr(phydev,  0, 31, 1, 31);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg4_wr(phydev, 63, 63, 2, 63);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_common_cfg_wr(phydev, 1, 1, 0, qrate, if_mode, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_misc_cfg_wr(phydev, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 2. Start rcpll_fsm */
+	ret = vsc85xx_sd6g_pll_cfg_wr(phydev, 3, pll_fsm_ctrl_data, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
+	do {
+		usleep_range(500, 1000);
+		ret = phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+		if (ret)
+			return ret;
+		val32 = vsc85xx_csr_read(phydev, MACRO_CTRL,
+					 PHY_S6G_PLL_STATUS);
+		/* wait for bit 12 to clear */
+	} while (time_before(jiffies, deadline) && (val32 & BIT(12)));
+
+	if (val32 & BIT(12))
+		return -ETIMEDOUT;
+
+	/* 4. Release digital reset and disable transmitter */
+	ret = vsc85xx_sd6g_misc_cfg_wr(phydev, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_common_cfg_wr(phydev, 1, 1, 0, qrate, if_mode, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 5. Apply a frequency offset on RX-side (using internal FoJi logic) */
+	ret = vsc85xx_sd6g_gp_cfg_wr(phydev, 768);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_dft_cfg2_wr(phydev, 0, 2, 0, 0, 0, 1);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_dft_cfg0_wr(phydev, 0, 0, 1);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_des_cfg_wr(phydev, 6, 2, 5, des_bw_ana_val, 2);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 6. Prepare required settings for IBCAL */
+	ret = vsc85xx_sd6g_ib_cfg1_wr(phydev, 8, ib_tsdet_cal, 15, 1, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg0_wr(phydev, ib_rtrm_adj, ib_sig_det_clk_sel_cal, 0, 0);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 7. Start IB_CAL */
+	ret = vsc85xx_sd6g_ib_cfg0_wr(phydev, ib_rtrm_adj,
+				      ib_sig_det_clk_sel_cal, 0, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+	/* 11 cycles (for ViperA) or 5 cycles (for ViperB & Elise) w/ SW clock */
+	for (iter = 0; iter < gp_iter; iter++) {
+		/* set gp(0) */
+		ret = vsc85xx_sd6g_gp_cfg_wr(phydev, 769);
+		if (ret)
+			return ret;
+		ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+		if (ret)
+			return ret;
+		/* clear gp(0) */
+		ret = vsc85xx_sd6g_gp_cfg_wr(phydev, 768);
+		if (ret)
+			return ret;
+		ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+		if (ret)
+			return ret;
+	}
+
+	ret = vsc85xx_sd6g_ib_cfg1_wr(phydev, 8, ib_tsdet_cal, 15, 1, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg1_wr(phydev, 8, ib_tsdet_cal, 15, 0, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 8. Wait for IB cal to complete */
+	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
+	do {
+		usleep_range(500, 1000);
+		ret = phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+		if (ret)
+			return ret;
+		val32 = vsc85xx_csr_read(phydev, MACRO_CTRL,
+					 PHY_S6G_IB_STATUS0);
+		/* wait for bit 8 to set */
+	} while (time_before(jiffies, deadline) && (~val32 & BIT(8)));
+
+	if (~val32 & BIT(8))
+		return -ETIMEDOUT;
+
+	/* 9. Restore cfg values for mission mode */
+	ret = vsc85xx_sd6g_ib_cfg0_wr(phydev, ib_rtrm_adj, ib_sig_det_clk_sel_mm, 0, 1);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg1_wr(phydev, 8, ib_tsdet_mm, 15, 0, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 10. Re-enable transmitter */
+	ret = vsc85xx_sd6g_common_cfg_wr(phydev, 1, 1, 0, qrate, if_mode, 0);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 11. Disable frequency offset generation (using internal FoJi logic) */
+	ret = vsc85xx_sd6g_dft_cfg2_wr(phydev, 0, 0, 0, 0, 0, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_dft_cfg0_wr(phydev, 0, 0, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_des_cfg_wr(phydev, 6, 2, 5, des_bw_ana_val, 0);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* Tune/Re-lock LCPLL */
+	ret = pll5g_tune(phydev);
+	if (ret)
+		return ret;
+
+	/* 12. Configure for Final Configuration and Settings */
+	/* a. Reset RCPLL */
+	ret = vsc85xx_sd6g_pll_cfg_wr(phydev, 3, pll_fsm_ctrl_data, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_common_cfg_wr(phydev, 0, 1, 0, qrate, if_mode, 0);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* b. Configure sd6g for desired operating mode */
+	phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS, MSCC_PHY_PAGE_EXTENDED_GPIO);
+	ret = phy_base_read(phydev, MSCC_PHY_MAC_CFG_FASTLINK);
+	if ((ret & MAC_CFG_MASK) == MAC_CFG_QSGMII) {
+		/* QSGMII */
+		pll_fsm_ctrl_data = 120;
+		qrate   = 0;
+		if_mode = 3;
+		des_bw_ana_val = 5;
+		val = PROC_CMD_MCB_ACCESS_MAC_CONF | PROC_CMD_RST_CONF_PORT |
+			PROC_CMD_READ_MOD_WRITE_PORT | PROC_CMD_QSGMII_MAC;
+
+		ret = vsc8584_cmd(phydev, val);
+		if (ret) {
+			dev_err(&phydev->mdio.dev, "%s: QSGMII error: %d\n",
+				__func__, ret);
+			return ret;
+		}
+
+		phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS, MSCC_PHY_PAGE_STANDARD);
+	} else if ((ret & MAC_CFG_MASK) == MAC_CFG_SGMII) {
+		/* SGMII */
+		pll_fsm_ctrl_data = 60;
+		qrate   = 1;
+		if_mode = 1;
+		des_bw_ana_val = 3;
+
+		val = PROC_CMD_MCB_ACCESS_MAC_CONF | PROC_CMD_RST_CONF_PORT |
+			PROC_CMD_READ_MOD_WRITE_PORT | PROC_CMD_SGMII_MAC;
+
+		ret = vsc8584_cmd(phydev, val);
+		if (ret) {
+			dev_err(&phydev->mdio.dev, "%s: SGMII error: %d\n",
+				__func__, ret);
+			return ret;
+		}
+
+		phy_base_write(phydev, MSCC_EXT_PAGE_ACCESS, MSCC_PHY_PAGE_STANDARD);
+	} else {
+		dev_err(&phydev->mdio.dev, "%s: invalid mac_if: %x\n",
+			__func__, ret);
+	}
+
+	ret = phy_update_mcb_s6g(phydev, PHY_S6G_LCPLL_CFG, 0);
+	if (ret)
+		return ret;
+	ret = phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_pll5g_cfg0_wr(phydev, 4);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_S6G_LCPLL_CFG, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_des_cfg_wr(phydev, 6, 2, 5, des_bw_ana_val, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg0_wr(phydev, ib_rtrm_adj, ib_sig_det_clk_sel_mm, 0, 1);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg1_wr(phydev, 8, ib_tsdet_mm, 15, 0, 1);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_common_cfg_wr(phydev, 1, 1, 0, qrate, if_mode, 0);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg2_wr(phydev, 3, 13, 5);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg3_wr(phydev,  0, 31, 1, 31);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_ib_cfg4_wr(phydev, 63, 63, 2, 63);
+	if (ret)
+		return ret;
+	ret = vsc85xx_sd6g_misc_cfg_wr(phydev, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 13. Start rcpll_fsm */
+	ret = vsc85xx_sd6g_pll_cfg_wr(phydev, 3, pll_fsm_ctrl_data, 1);
+	if (ret)
+		return ret;
+	ret = phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+	if (ret)
+		return ret;
+
+	/* 14. Wait for PLL cal to complete */
+	deadline = jiffies + msecs_to_jiffies(PROC_CMD_NCOMPLETED_TIMEOUT_MS);
+	do {
+		usleep_range(500, 1000);
+		ret = phy_update_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+		if (ret)
+			return ret;
+		val32 = vsc85xx_csr_read(phydev, MACRO_CTRL,
+					 PHY_S6G_PLL_STATUS);
+		/* wait for bit 12 to clear */
+	} while (time_before(jiffies, deadline) && (val32 & BIT(12)));
+
+	if (val32 & BIT(12))
+		return -ETIMEDOUT;
+
+	/* release lane reset */
+	ret = vsc85xx_sd6g_misc_cfg_wr(phydev, 0);
+	if (ret)
+		return ret;
+
+	return phy_commit_mcb_s6g(phydev, PHY_MCB_S6G_CFG, 0);
+}
diff --git a/drivers/net/phy/mscc/mscc_serdes.h b/drivers/net/phy/mscc/mscc_serdes.h
new file mode 100644
index 0000000000000..2a6371322af91
--- /dev/null
+++ b/drivers/net/phy/mscc/mscc_serdes.h
@@ -0,0 +1,31 @@
+/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
+/*
+ * Driver for Microsemi VSC85xx PHYs
+ *
+ * Copyright (c) 2021 Microsemi Corporation
+ */
+
+#ifndef _MSCC_SERDES_PHY_H_
+#define _MSCC_SERDES_PHY_H_
+
+#define PHY_S6G_PLL5G_CFG2_GAIN_MASK      GENMASK(9, 5)
+#define PHY_S6G_PLL5G_CFG2_ENA_GAIN       1
+
+#define PHY_S6G_DES_PHY_CTRL_POS	  13
+#define PHY_S6G_DES_MBTR_CTRL_POS	  10
+#define PHY_S6G_DES_CPMD_SEL_POS	  8
+#define PHY_S6G_DES_BW_HYST_POS		  5
+#define PHY_S6G_DES_BW_ANA_POS		  1
+#define PHY_S6G_DES_CFG			  0x21
+#define PHY_S6G_IB_CFG0			  0x22
+#define PHY_S6G_IB_CFG1			  0x23
+#define PHY_S6G_IB_CFG2			  0x24
+#define PHY_S6G_IB_CFG3			  0x25
+#define PHY_S6G_IB_CFG4			  0x26
+#define PHY_S6G_GP_CFG			  0x2E
+#define PHY_S6G_DFT_CFG0		  0x35
+#define PHY_S6G_IB_DFT_CFG2		  0x37
+
+int vsc85xx_sd6g_config_v2(struct phy_device *phydev);
+
+#endif /* _MSCC_PHY_SERDES_H_ */
-- 
2.27.0




  parent reply	other threads:[~2021-03-02  0:36 UTC|newest]

Thread overview: 776+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-01 16:02 [PATCH 5.11 000/775] 5.11.3-rc1 review Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 001/775] vmlinux.lds.h: add DWARF v5 sections Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 002/775] vdpa/mlx5: fix param validation in mlx5_vdpa_get_config() Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 003/775] debugfs: be more robust at handling improper input in debugfs_lookup() Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 004/775] debugfs: do not attempt to create a new file before the filesystem is initalized Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 005/775] driver core: auxiliary bus: Fix calling stage for auxiliary bus init Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 006/775] scsi: libsas: docs: Remove notify_ha_event() Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 007/775] scsi: qla2xxx: Fix mailbox Ch erroneous error Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 008/775] kdb: Make memory allocations more robust Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 009/775] w1: w1_therm: Fix conversion result for negative temperatures Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 010/775] PCI: qcom: Use PHY_REFCLK_USE_PAD only for ipq8064 Greg Kroah-Hartman
2021-03-01 16:02 ` [PATCH 5.11 011/775] PCI: Decline to resize resources if boot config must be preserved Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 012/775] virt: vbox: Do not use wait_event_interruptible when called from kernel context Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 013/775] bfq: Avoid false bfq queue merging Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 014/775] ALSA: usb-audio: Fix PCM buffer allocation in non-vmalloc mode Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 015/775] zsmalloc: account the number of compacted pages correctly Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 016/775] MIPS: vmlinux.lds.S: add missing PAGE_ALIGNED_DATA() section Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 017/775] vmlinux.lds.h: Define SANTIZER_DISCARDS with CONFIG_GCOV_KERNEL=y Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 018/775] random: fix the RNDRESEEDCRNG ioctl Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 019/775] ALSA: pcm: Call sync_stop at disconnection Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 020/775] ALSA: pcm: Assure sync with the pending stop operation at suspend Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 021/775] ALSA: pcm: Dont call sync_stop if it hasnt been stopped Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 022/775] drm/i915/gt: One more flush for Baytrail clear residuals Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 023/775] ath10k: Fix error handling in case of CE pipe init failure Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 024/775] Bluetooth: btqcomsmd: Fix a resource leak in error handling paths in the probe function Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 025/775] Bluetooth: hci_uart: Fix a race for write_work scheduling Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 026/775] Bluetooth: Fix initializing response id after clearing struct Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 027/775] arm64: dts: renesas: beacon kit: Fix choppy Bluetooth Audio Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 028/775] arm64: dts: renesas: beacon: Fix audio-1.8V pin enable Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 029/775] ARM: dts: exynos: correct PMIC interrupt trigger level on Artik 5 Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 030/775] ARM: dts: exynos: correct PMIC interrupt trigger level on Monk Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 031/775] ARM: dts: exynos: correct PMIC interrupt trigger level on Rinato Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 032/775] ARM: dts: exynos: correct PMIC interrupt trigger level on Spring Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 033/775] ARM: dts: exynos: correct PMIC interrupt trigger level on Arndale Octa Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 034/775] ARM: dts: exynos: correct PMIC interrupt trigger level on Odroid XU3 family Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 035/775] arm64: dts: exynos: correct PMIC interrupt trigger level on TM2 Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 036/775] arm64: dts: exynos: correct PMIC interrupt trigger level on Espresso Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 037/775] memory: mtk-smi: Fix PM usage counter unbalance in mtk_smi ops Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 038/775] Bluetooth: hci_qca: Fix memleak in qca_controller_memdump Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 039/775] staging: vchiq: Fix bulk userdata handling Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 040/775] staging: vchiq: Fix bulk transfers on 64-bit builds Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 041/775] arm64: dts: qcom: msm8916-samsung-a5u: Fix iris compatible Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 042/775] net: stmmac: dwmac-meson8b: fix enabling the timing-adjustment clock Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 043/775] bpf: Add bpf_patch_call_args prototype to include/linux/bpf.h Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 044/775] bpf: Avoid warning when re-casting __bpf_call_base into __bpf_call_base_args Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 045/775] firmware: arm_scmi: Fix call site of scmi_notification_exit Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 046/775] arm64: dts: allwinner: A64: properly connect USB PHY to port 0 Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 047/775] arm64: dts: allwinner: H6: " Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 048/775] arm64: dts: allwinner: Drop non-removable from SoPine/LTS SD card Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 049/775] arm64: dts: allwinner: H6: Allow up to 150 MHz MMC bus frequency Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 050/775] arm64: dts: allwinner: A64: Limit MMC2 bus frequency to 150 MHz Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 051/775] arm64: dts: qcom: msm8916-samsung-a2015: Fix sensors Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 052/775] cpufreq: brcmstb-avs-cpufreq: Free resources in error path Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 053/775] cpufreq: brcmstb-avs-cpufreq: Fix resource leaks in ->remove() Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 054/775] arm64: dts: rockchip: rk3328: Add clock_in_out property to gmac2phy node Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 055/775] ACPICA: Fix exception code class checks Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 056/775] usb: gadget: u_audio: Free requests only after callback Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 057/775] arm64: dts: qcom: sdm845-db845c: Fix reset-pin of ov8856 node Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 058/775] soc: qcom: socinfo: Fix an off by one in qcom_show_pmic_model() Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 059/775] soc: ti: pm33xx: Fix some resource leak in the error handling paths of the probe function Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 060/775] staging: media: atomisp: Fix size_t format specifier in hmm_alloc() debug statemenet Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 061/775] Bluetooth: drop HCI device reference before return Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 062/775] Bluetooth: Put HCI device if inquiry procedure interrupts Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 063/775] memory: ti-aemif: Drop child node when jumping out loop Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 064/775] ARM: dts: Configure missing thermal interrupt for 4430 Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 065/775] usb: dwc2: Do not update data length if it is 0 on inbound transfers Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 066/775] usb: dwc2: Abort transaction after errors with unknown reason Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 067/775] usb: dwc2: Make "trimming xfer length" a debug message Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 068/775] staging: rtl8723bs: wifi_regd.c: Fix incorrect number of regulatory rules Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 069/775] x86/MSR: Filter MSR writes through X86_IOC_WRMSR_REGS ioctl too Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 070/775] arm64: dts: renesas: beacon: Fix EEPROM compatible value Greg Kroah-Hartman
2021-03-01 16:03 ` [PATCH 5.11 071/775] can: mcp251xfd: mcp251xfd_probe(): fix errata reference Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 072/775] ARM: dts: armada388-helios4: assign pinctrl to LEDs Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 073/775] ARM: dts: armada388-helios4: assign pinctrl to each fan Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 074/775] arm64: dts: armada-3720-turris-mox: rename u-boot mtd partition to a53-firmware Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 075/775] opp: Correct debug message in _opp_add_static_v2() Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 076/775] Bluetooth: btusb: Fix memory leak in btusb_mtk_wmt_recv Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 077/775] soc: qcom: ocmem: dont return NULL in of_get_ocmem Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 078/775] arm64: dts: msm8916: Fix reserved and rfsa nodes unit address Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 079/775] arm64: dts: meson: fix broken wifi node for Khadas VIM3L Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 080/775] iwlwifi: mvm: set enabled in the PPAG command properly Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 081/775] ARM: s3c: fix fiq for clang IAS Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 082/775] optee: simplify i2c access Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 083/775] staging: wfx: fix possible panic with re-queued frames Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 084/775] ARM: at91: use proper asm syntax in pm_suspend Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 085/775] ath10k: Fix suspicious RCU usage warning in ath10k_wmi_tlv_parse_peer_stats_info() Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 086/775] ath10k: Fix lockdep assertion warning in ath10k_sta_statistics Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 087/775] ath11k: fix a locking bug in ath11k_mac_op_start() Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 088/775] soc: aspeed: snoop: Add clock control logic Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 089/775] iwlwifi: mvm: fix the type we use in the PPAG table validity checks Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 090/775] iwlwifi: mvm: store PPAG enabled/disabled flag properly Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 091/775] iwlwifi: mvm: send stored PPAG command instead of local Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 092/775] iwlwifi: mvm: assign SAR table revision to the command later Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 093/775] iwlwifi: mvm: dont check if CSA event is running before removing Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 094/775] bpf_lru_list: Read double-checked variable once without lock Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 095/775] iwlwifi: pnvm: set the PNVM again if it was already loaded Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 096/775] iwlwifi: pnvm: increment the pointer before checking the TLV Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 097/775] ath9k: fix data bus crash when setting nf_override via debugfs Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 098/775] selftests/bpf: Convert test_xdp_redirect.sh to bash Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 099/775] ibmvnic: Set to CLOSED state even on error Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 100/775] bnxt_en: reverse order of TX disable and carrier off Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 101/775] bnxt_en: Fix devlink infos stored fw.psid version format Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 102/775] xen/netback: fix spurious event detection for common event case Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 103/775] dpaa2-eth: fix memory leak in XDP_REDIRECT Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 104/775] net: phy: consider that suspend2ram may cut off PHY power Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 105/775] net/mlx5e: Enable XDP for Connect-X IPsec capable devices Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 106/775] net/mlx5e: Dont change interrupt moderation params when DIM is enabled Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 107/775] net/mlx5e: Change interrupt moderation channel params also when channels are closed Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 108/775] net/mlx5: Fix health error state handling Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 109/775] net/mlx5e: Replace synchronize_rcu with synchronize_net Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 110/775] net/mlx5e: kTLS, Use refcounts to free kTLS RX priv context Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 111/775] net/mlx5: Disable devlink reload for multi port slave device Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 112/775] net/mlx5: Disallow RoCE on " Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 113/775] net/mlx5: Disallow RoCE on lag device Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 114/775] net/mlx5: Disable devlink reload for lag devices Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 115/775] net/mlx5e: CT: manage the lifetime of the ct entry object Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 116/775] net/mlx5e: Check tunnel offload is required before setting SWP Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 117/775] mac80211: fix potential overflow when multiplying to u32 integers Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 118/775] libbpf: Ignore non function pointer member in struct_ops Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 119/775] bpf: Fix an unitialized value in bpf_iter Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 120/775] bpf, devmap: Use GFP_KERNEL for xdp bulk queue allocation Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 121/775] bpf: Fix bpf_fib_lookup helper MTU check for SKB ctx Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 122/775] selftests: mptcp: fix ACKRX debug message Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 123/775] tcp: fix SO_RCVLOWAT related hangs under mem pressure Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 124/775] net: axienet: Handle deferred probe on clock properly Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 125/775] cxgb4/chtls/cxgbit: Keeping the max ofld immediate data size same in cxgb4 and ulds Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 126/775] b43: N-PHY: Fix the update of coef for the PHY revision >= 3case Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 127/775] bpf: Clear subreg_def for global function return values Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 128/775] ibmvnic: add memory barrier to protect long term buffer Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 129/775] ibmvnic: skip send_request_unmap for timeout reset Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 130/775] ibmvnic: serialize access to work queue on remove Greg Kroah-Hartman
2021-03-01 16:04 ` [PATCH 5.11 131/775] net: dsa: felix: perform teardown in reverse order of setup Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 132/775] net: dsa: felix: dont deinitialize unused ports Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 133/775] net: phy: mscc: adding LCPLL reset to VSC8514 Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 134/775] net: amd-xgbe: Reset the PHY rx data path when mailbox command timeout Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 135/775] net: amd-xgbe: Fix NETDEV WATCHDOG transmit queue timeout warning Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 136/775] net: amd-xgbe: Reset link when the link never comes back Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 137/775] net: amd-xgbe: Fix network fluctuations when using 1G BELFUSE SFP Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 138/775] net: mvneta: Remove per-cpu queue mapping for Armada 3700 Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 139/775] net: enetc: fix destroyed phylink dereference during unbind Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 140/775] Bluetooth: Remove hci_req_le_suspend_config Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 141/775] arm64: dts: broadcom: bcm4908: use proper NAND binding Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 142/775] Bluetooth: hci_qca: Wait for SSR completion during suspend Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 143/775] serial: stm32: fix DMA initialization error handling Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 144/775] bpf: Declare __bpf_free_used_maps() unconditionally Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 145/775] selftests/bpf: Sync RCU before unloading bpf_testmod Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 146/775] arm64: dts: qcom: sm8250: correct sdhc_2 xo clk Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 147/775] arm64: dts: qcom: qrb5165-rb5: fix uSD pins drive strength Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 148/775] tty: convert tty_ldisc_ops read() function to take a kernel pointer Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 149/775] tty: implement read_iter Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 150/775] x86/sgx: Fix the return type of sgx_init() Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 151/775] selftests/bpf: Dont exit on failed bpf_testmod unload Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 152/775] arm64: dts: mt8183: rename rdma fifo size Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 153/775] arm64: dts: mt8183: refine gamma compatible name Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 154/775] arm64: dts: mt8183: Add missing power-domain for pwm0 node Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 155/775] net: sfp: add workaround for Realtek RTL8672 and RTL9601C chips Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 156/775] ARM: tegra: ouya: Fix eMMC on specific bootloaders Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 157/775] arm64: dts: mt8183: Fix GCE include path Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 158/775] Bluetooth: hci_qca: check for SSR triggered flag while suspend Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 159/775] Bluetooth: hci_qca: Fixed issue during suspend Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 160/775] soc: aspeed: socinfo: Add new systems Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 161/775] net/mlx5e: E-switch, Fix rate calculation for overflow Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 162/775] net/mlx5e: Enable striding RQ for Connect-X IPsec capable devices Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 163/775] net/mlx5e: Fix CQ params of ICOSQ and async ICOSQ Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 164/775] ibmvnic: change IBMVNIC_MAX_IND_DESCS to 16 Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 165/775] net: ipa: initialize all resources Greg Kroah-Hartman
2021-03-01 16:05 ` Greg Kroah-Hartman [this message]
2021-03-01 16:05 ` [PATCH 5.11 167/775] net: phy: mscc: coma mode disabled for VSC8514 Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 168/775] fbdev: aty: SPARC64 requires FB_ATY_CT Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 169/775] drm/gma500: Fix error return code in psb_driver_load() Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 170/775] drm: document that user-space should force-probe connectors Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 171/775] gma500: clean up error handling in init Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 172/775] drm/fb-helper: Add missed unlocks in setcmap_legacy() Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 173/775] drm/panel: s6e63m0: Fix init sequence again Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 174/775] drm/panel: mantix: Tweak init sequence Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 175/775] drm/vc4: hdmi: Take into account the clock doubling flag in atomic_check Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 176/775] drm/panel: s6e63m0: Support max-brightness Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 177/775] crypto: sun4i-ss - linearize buffers content must be kept Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 178/775] crypto: sun4i-ss - fix kmap usage Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 179/775] crypto: arm64/aes-ce - really hide slower algos when faster ones are enabled Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 180/775] hwrng: ingenic - Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 181/775] media: allegro: Fix use after free on error Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 182/775] ASoC: fsl_aud2htx: select SND_SOC_IMX_PCM_DMA Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 183/775] kcsan: Rewrite kcsan_prandom_u32_max() without prandom_u32_state() Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 184/775] drm: rcar-du: Fix PM reference leak in rcar_cmm_enable() Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 185/775] drm: rcar-du: Fix crash when using LVDS1 clock for CRTC Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 186/775] drm: rcar-du: Fix the return check of of_parse_phandle and of_find_device_by_node Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 187/775] drm: rcar-du: Fix leak of CMM platform device reference Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 188/775] drm/amdgpu: Fix macro name _AMDGPU_TRACE_H_ in preprocessor if condition Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 189/775] MIPS: c-r4k: Fix section mismatch for loongson2_sc_init Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 190/775] MIPS: lantiq: Explicitly compare LTQ_EBU_PCC_ISTAT against 0 Greg Kroah-Hartman
2021-03-01 16:05 ` [PATCH 5.11 191/775] drm/virtio: make sure context is created in gem open Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 192/775] drm/fourcc: fix Amlogic format modifier masks Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 193/775] media: ipu3-cio2: Build only for x86 Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 194/775] media: i2c: ov5670: Fix PIXEL_RATE minimum value Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 195/775] media: imx: Unregister csc/scaler only if registered Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 196/775] media: imx: Fix csc/scaler unregister Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 197/775] media: mtk-vcodec: fix error return code in vdec_vp9_decode() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 198/775] media: camss: Fix signedness bug in video_enum_fmt() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 199/775] media: camss: missing error code in msm_video_register() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 200/775] media: vsp1: Fix an error handling path in the probe function Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 201/775] media: em28xx: Fix use-after-free in em28xx_alloc_urbs Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 202/775] media: media/pci: Fix memleak in empress_init Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 203/775] media: tm6000: Fix memleak in tm6000_start_stream Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 204/775] media: aspeed: fix error return code in aspeed_video_setup_video() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 205/775] ASoC: cs42l56: fix up error handling in probe Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 206/775] ASoC: qcom: qdsp6: Move frontend AIFs to q6asm-dai Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 207/775] evm: Fix memleak in init_desc Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 208/775] crypto: qat - replace CRYPTO_AES with CRYPTO_LIB_AES in Kconfig Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 209/775] crypto: bcm - Rename struct device_private to bcm_device_private Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 210/775] sched/fair: Avoid stale CPU util_est value for schedutil in task dequeue Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 211/775] drm/sun4i: tcon: fix inverted DCLK polarity Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 212/775] media: imx7: csi: Fix regression for parallel cameras on i.MX6UL Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 213/775] media: imx7: csi: Fix pad link validation Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 214/775] media: ti-vpe: cal: fix write to unallocated memory Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 215/775] MIPS: properly stop .eh_frame generation Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 216/775] MIPS: Compare __SYNC_loongson3_war against 0 Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 217/775] drm/tegra: Fix reference leak when pm_runtime_get_sync() fails Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 218/775] drm/amdgpu: toggle on DF Cstate after finishing xgmi injection Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 219/775] bsg: free the request before return error code Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 220/775] macintosh/adb-iop: Use big-endian autopoll mask Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 221/775] drm/amd/display: Fix 10/12 bpc setup in DCE output bit depth reduction Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 222/775] drm/amd/display: Fix HDMI deep color output for DCE 6-11 Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 223/775] media: software_node: Fix refcounts in software_node_get_next_child() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 224/775] media: lmedm04: Fix misuse of comma Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 225/775] media: vidtv: psi: fix missing crc for PMT Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 226/775] media: atomisp: Fix a buffer overflow in debug code Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 227/775] media: qm1d1c0042: fix error return code in qm1d1c0042_init() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 228/775] media: cx25821: Fix a bug when reallocating some dma memory Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 229/775] media: mtk-vcodec: fix argument used when DEBUG is defined Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 230/775] mtd: phram: use div_u64_rem to stop overwrite len in phram_setup Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 231/775] media: pxa_camera: declare variable when DEBUG is defined Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 232/775] media: uvcvideo: Accept invalid bFormatIndex and bFrameIndex values Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 233/775] media: i2c/Kconfig: Select FWNODE for OV772x sensor Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 234/775] ASoC: max98373: Fixes a typo in max98373_feedback_get Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 235/775] sched/eas: Dont update misfit status if the task is pinned Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 236/775] f2fs: fix null page reference in redirty_blocks Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 237/775] f2fs: compress: fix potential deadlock Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 238/775] ASoC: qcom: lpass-cpu: Remove bit clock state check Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 239/775] ASoC: SOF: Intel: hda: cancel D0i3 work during runtime suspend Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 240/775] perf/arm-cmn: Fix PMU instance naming Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 241/775] perf/arm-cmn: Move IRQs when migrating context Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 242/775] mtd: parser: imagetag: fix error codes in bcm963xx_parse_imagetag_partitions() Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 243/775] crypto: talitos - Work around SEC6 ERRATA (AES-CTR mode data size error) Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 244/775] crypto: talitos - Fix ctr(aes) on SEC1 Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 245/775] drm/nouveau: bail out of nouveau_channel_new if channel init fails Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 246/775] irqchip/ls-extirq: add IRQCHIP_SKIP_SET_WAKE to the irqchip flags Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 247/775] mm: proc: Invalidate TLB after clearing soft-dirty page state Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 248/775] ata: ahci_brcm: Add back regulators management Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 249/775] ASoC: cpcap: fix microphone timeslot mask Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 250/775] ASoC: codecs: add missing max_register in regmap config Greg Kroah-Hartman
2021-03-01 16:06 ` [PATCH 5.11 251/775] mtd: parsers: afs: Fix freeing the part name memory in failure Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 252/775] mtd: rawnand: intel: Fix an error handling path in ebu_dma_start() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 253/775] f2fs: fix to avoid inconsistent quota data Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 254/775] drm/amdgpu: Prevent shift wrapping in amdgpu_read_mask() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 255/775] f2fs: fix a wrong condition in __submit_bio Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 256/775] ASoC: qcom: Fix typo error in HDMI regmap config callbacks Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 257/775] KVM: nSVM: Dont strip hosts C-bit from guests CR3 when reading PDPTRs Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 258/775] drm/mediatek: Check if fb is null Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 259/775] drm/mediatek: Fix aal size config Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 260/775] Drivers: hv: vmbus: Avoid use-after-free in vmbus_onoffer_rescind() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 261/775] ASoC: Intel: sof_sdw: add missing TGL_HDMI quirk for Dell SKU 0A5E Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 262/775] ASoC: Intel: sof_sdw: add missing TGL_HDMI quirk for Dell SKU 0A32 Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 263/775] ASoC: Intel: sof_sdw: add missing TGL_HDMI quirk for Dell SKU 0A3E Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 264/775] locking/lockdep: Avoid unmatched unlock Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 265/775] ASoC: qcom: lpass: Fix i2s ctl register bit map Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 266/775] ASoC: rt5682: Fix panic in rt5682_jack_detect_handler happening during system shutdown Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 267/775] ASoC: SOF: debug: Fix a potential issue on string buffer termination Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 268/775] btrfs: clarify error returns values in __load_free_space_cache Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 269/775] btrfs: fix double accounting of ordered extent for subpage case in btrfs_invalidapge Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 270/775] MIPS: relocatable: Provide kaslr_offset() to get the kernel offset Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 271/775] KVM: x86: Restore all 64 bits of DR6 and DR7 during RSM on x86-64 Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 272/775] s390/zcrypt: return EIO when msg retry limit reached Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 273/775] drm/vc4: hdmi: Move hdmi reset to bind Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 274/775] drm/vc4: hdmi: Fix register offset with longer CEC messages Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 275/775] drm/vc4: hdmi: Fix up CEC registers Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 276/775] drm/vc4: hdmi: Restore cec physical address on reconnect Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 277/775] drm/vc4: hdmi: Compute the CEC clock divider from the clock rate Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 278/775] drm/vc4: hdmi: Update the CEC clock divider on HSM rate change Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 279/775] drm/lima: fix reference leak in lima_pm_busy Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 280/775] drm/virtio: fix an error code in virtio_gpu_init() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 281/775] drm/dp_mst: Dont cache EDIDs for physical ports Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 282/775] hwrng: timeriomem - Fix cooldown period calculation Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 283/775] crypto: ecdh_helper - Ensure len >= secret.len in decode_key() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 284/775] io_uring: fix possible deadlock in io_uring_poll Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 285/775] nvmet-tcp: fix receive data digest calculation for multiple h2cdata PDUs Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 286/775] nvmet-tcp: fix potential race of tcp socket closing accept_work Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 287/775] nvme-multipath: set nr_zones for zoned namespaces Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 288/775] nvmet: remove extra variable in identify ns Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 289/775] nvmet: set status to 0 in case for invalid nsid Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 290/775] ASoC: SOF: sof-pci-dev: add missing Up-Extreme quirk Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 291/775] ima: Free IMA measurement buffer on error Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 292/775] ima: Free IMA measurement buffer after kexec syscall Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 293/775] ASoC: simple-card-utils: Fix device module clock Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 294/775] fs/jfs: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 295/775] jffs2: fix use after free in jffs2_sum_write_data() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 296/775] ubifs: Fix memleak in ubifs_init_authentication Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 297/775] ubifs: replay: Fix high stack usage, again Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 298/775] ubifs: Fix error return code in alloc_wbufs() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 299/775] irqchip/imx: IMX_INTMUX should not default to y, unconditionally Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 300/775] smp: Process pending softirqs in flush_smp_call_function_from_idle() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 301/775] drm/amdgpu/display: remove hdcp_srm sysfs on device removal Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 302/775] Input: da7280 - fix missing error test Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 303/775] Input: da7280 - protect OF match table with CONFIG_OF Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 304/775] Input: imx_keypad - add dependency on HAS_IOMEM Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 305/775] capabilities: Dont allow writing ambiguous v3 file capabilities Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 306/775] HSI: Fix PM usage counter unbalance in ssi_hw_init Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 307/775] power: supply: cpcap: Add missing IRQF_ONESHOT to fix regression Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 308/775] clk: meson: clk-pll: fix initializing the old rate (fallback) for a PLL Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 309/775] clk: meson: clk-pll: make "ret" a signed integer Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 310/775] clk: meson: clk-pll: propagate the error from meson_clk_pll_set_rate() Greg Kroah-Hartman
2021-03-01 16:07 ` [PATCH 5.11 311/775] selftests/powerpc: Make the test check in eeh-basic.sh posix compliant Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 312/775] regulator: qcom-rpmh-regulator: add pm8009-1 chip revision Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 313/775] arm64: dts: qcom: qrb5165-rb5: fix pm8009 regulators Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 314/775] quota: Fix memory leak when handling corrupted quota file Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 315/775] i2c: iproc: handle only slave interrupts which are enabled Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 316/775] i2c: iproc: update slave isr mask (ISR_MASK_SLAVE) Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 317/775] i2c: iproc: handle master read request Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 318/775] spi: cadence-quadspi: Abort read if dummy cycles required are too many Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 319/775] clk: sunxi-ng: h6: Fix CEC clock Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 320/775] clk: renesas: r8a779a0: Remove non-existent S2 clock Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 321/775] clk: renesas: r8a779a0: Fix parent of CBFUSA clock Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 322/775] HID: core: detect and skip invalid inputs to snto32() Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 323/775] RDMA/siw: Fix handling of zero-sized Read and Receive Queues Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 324/775] dmaengine: fsldma: Fix a resource leak in the remove function Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 325/775] dmaengine: fsldma: Fix a resource leak in an error handling path of the probe function Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 326/775] dmaengine: owl-dma: Fix a resource leak in the remove function Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 327/775] rtc: rx6110: fix build against modular I2C Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 328/775] dmaengine: qcom: Always inline gpi_update_reg Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 329/775] dmaengine: ti: k3-udma: Set rflow count for BCDMA split channels Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 330/775] dmaengine: hsu: disable spurious interrupt Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 331/775] mfd: bd9571mwv: Use devm_mfd_add_devices() Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 332/775] power: supply: cpcap-charger: Fix missing power_supply_put() Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 333/775] power: supply: cpcap-battery: " Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 334/775] scsi: ufs: Fix a possible NULL pointer issue Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 335/775] power: supply: cpcap-charger: Fix power_supply_put on null battery pointer Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 336/775] fdt: Properly handle "no-map" field in the memory region Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 337/775] of/fdt: Make sure no-map does not remove already reserved regions Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 338/775] RDMA/rtrs: Extend ibtrs_cq_qp_create Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 339/775] RDMA/rtrs-srv: Release lock before call into close_sess Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 340/775] RDMA/rtrs-srv: Use sysfs_remove_file_self for disconnect Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 341/775] RDMA/rtrs-clt: Set mininum limit when create QP Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 342/775] RDMA/rtrs-srv: Jump to dereg_mr label if allocate iu fails Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 343/775] RDMA/rtrs: Call kobject_put in the failure path Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 344/775] RDMA/rtrs-srv: Fix missing wr_cqe Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 345/775] RDMA/rtrs-clt: Refactor the failure cases in alloc_clt Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 346/775] RDMA/rtrs-srv: Init wr_cnt as 1 Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 347/775] RDMA/rtrs: Fix KASAN: stack-out-of-bounds bug Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 348/775] power: reset: at91-sama5d2_shdwc: fix wkupdbc mask Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 349/775] rtc: s5m: select REGMAP_I2C Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 350/775] dmaengine: idxd: set DMA channel to be private Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 351/775] power: supply: fix sbs-charger build, needs REGMAP_I2C Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 352/775] clocksource/drivers/ixp4xx: Select TIMER_OF when needed Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 353/775] clocksource/drivers/mxs_timer: Add missing semicolon when DEBUG is defined Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 354/775] module: harden ELF info handling Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 355/775] spi: imx: Dont print error on -EPROBEDEFER Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 356/775] RDMA/mlx5: Use the correct obj_id upon DEVX TIR creation Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 357/775] IB/mlx5: Add mutex destroy call to cap_mask_mutex mutex Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 358/775] clk: sunxi-ng: h6: Fix clock divider range on some clocks Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 359/775] platform/chrome: cros_ec_proto: Use EC_HOST_EVENT_MASK not BIT Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 360/775] platform/chrome: cros_ec_proto: Add LID and BATTERY to default mask Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 361/775] regulator: axp20x: Fix reference cout leak Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 362/775] watch_queue: Drop references to /dev/watch_queue Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 363/775] certs: Fix blacklist flag type confusion Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 364/775] regulator: s5m8767: Fix reference count leak Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 365/775] spi: atmel: Put allocated master before return Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 366/775] regulator: s5m8767: Drop regulators OF node reference Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 367/775] scsi: libsas: Remove notifier indirection Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 368/775] scsi: libsas: Introduce a _gfp() variant of event notifiers Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 369/775] scsi: mvsas: Pass gfp_t flags to libsas " Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 370/775] scsi: isci: Pass gfp_t flags in isci_port_link_down() Greg Kroah-Hartman
2021-03-01 16:08 ` [PATCH 5.11 371/775] scsi: isci: Pass gfp_t flags in isci_port_link_up() Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 372/775] scsi: isci: Pass gfp_t flags in isci_port_bc_change_received() Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 373/775] power: supply: axp20x_usb_power: Init work before enabling IRQs Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 374/775] power: supply: smb347-charger: Fix interrupt usage if interrupt is unavailable Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 375/775] regulator: core: Avoid debugfs: Directory ... already present! error Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 376/775] isofs: release buffer head before return Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 377/775] watchdog: intel-mid_wdt: Postpone IRQ handler registration till SCU is ready Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 378/775] auxdisplay: ht16k33: Fix refresh rate handling Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 379/775] auxdisplay: Fix duplicate CHARLCD config symbol Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 380/775] objtool: Fix error handling for STD/CLD warnings Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 381/775] objtool: Fix retpoline detection in asm code Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 382/775] objtool: Fix ".cold" section suffix check for newer versions of GCC Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 383/775] scsi: lpfc: Fix ancient double free Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 384/775] iommu: Switch gather->end to the inclusive end Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 385/775] tools/testing/scatterlist: Fix overflow of max segment size Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 386/775] RDMA/mlx5: Allow creating all QPs even when non RDMA profile is used Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 387/775] IB/umad: Return EIO in case of when device disassociated Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 388/775] IB/umad: Return EPOLLERR " Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 389/775] KVM: PPC: Make the VMX instruction emulation routines static Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 390/775] powerpc/kvm: Force selection of CONFIG_PPC_FPU Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 391/775] powerpc/47x: Disable 256k page size Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 392/775] powerpc/sstep: Check instruction validity against ISA version before emulation Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 393/775] powerpc/sstep: Fix incorrect return from analyze_instr() Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 394/775] powerpc/time: Enable sched clock for irqtime Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 395/775] powerpc: Fix build error in paravirt.h Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 396/775] mmc: owl-mmc: Fix a resource leak in an error handling path and in the remove function Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 397/775] mmc: sdhci-sprd: Fix some resource leaks " Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 398/775] mmc: usdhi6rol0: Fix a resource leak in the error handling path of the probe Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 399/775] mmc: renesas_sdhi_internal_dmac: Fix DMA buffer alignment from 8 to 128-bytes Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 400/775] ARM: 9046/1: decompressor: Do not clear SCTLR.nTLSMD for ARMv7+ cores Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 401/775] i2c: qcom-geni: Store DMA mapping data in geni_i2c_dev struct Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 402/775] i2c: i2c-qcom-geni: Add shutdown callback for i2c Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 403/775] i3c/master/mipi-i3c-hci: Specify HAS_IOMEM dependency Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 404/775] amba: Fix resource leak for drivers without .remove Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 405/775] iommu: Move iotlb_sync_map out from __iommu_map Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 406/775] iommu: Properly pass gfp_t in _iommu_map() to avoid atomic sleeping Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 407/775] IB/mlx5: Return appropriate error code instead of ENOMEM Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 408/775] IB/cm: Avoid a loop when device has 255 ports Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 409/775] tracepoint: Do not fail unregistering a probe due to memory failure Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 410/775] rtc: zynqmp: depend on HAS_IOMEM Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 411/775] platform/x86: intel_pmt: Make INTEL_PMT_CLASS non-user-selectable Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 412/775] platform/x86: intel_pmt_telemetry: Add dependency on MFD_INTEL_PMT Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 413/775] platform/x86: intel_pmt_crashlog: " Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 414/775] perf tools: Fix DSO filtering when not finding a map for a sampled address Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 415/775] perf vendor events arm64: Fix Ampere eMag event typo Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 416/775] RDMA/rxe: Fix coding error in rxe_recv.c Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 417/775] RDMA/rxe: Fix coding error in rxe_rcv_mcast_pkt Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 418/775] RDMA/rxe: Correct skb on loopback path Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 419/775] spi: stm32: properly handle 0 byte transfer Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 420/775] mfd: altera-sysmgr: Fix physical address storing more Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 421/775] mfd: wm831x-auxadc: Prevent use after free in wm831x_auxadc_read_irq() Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 422/775] powerpc/pseries/dlpar: handle ibm, configure-connector delay status Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 423/775] powerpc/8xx: Fix software emulation interrupt Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 424/775] powerpc/sstep: Fix load-store and update emulation Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 425/775] powerpc/sstep: Fix darn emulation Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 426/775] clk: qcom: gfm-mux: fix clk mask Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 427/775] clk: qcom: gcc-sc7180: Mark the MM XO clocks to be always ON Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 428/775] clk: qcom: gcc-msm8998: Fix Alpha PLL type for all GPLLs Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 429/775] kunit: tool: fix unit test cleanup handling Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 430/775] kselftests: dmabuf-heaps: Fix Makefiles inclusion of the kernels usr/include dir Greg Kroah-Hartman
2021-03-01 16:09 ` [PATCH 5.11 431/775] RDMA/hns: Allocate one more recv SGE for HIP08 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 432/775] RDMA/hns: Bugfix for checking whether the srq is full when post wr Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 433/775] RDMA/hns: Force srq_limit to 0 when creating SRQ Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 434/775] RDMA/hns: Fixed wrong judgments in the goto branch Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 435/775] RDMA/hns: Remove the reserved WQE of SRQ Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 436/775] RDMA/siw: Fix calculation of tx_valid_cpus size Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 437/775] RDMA/hns: Avoid filling sgid index when modifying QP to RTR Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 438/775] RDMA/hns: Fix type of sq_signal_bits Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 439/775] RDMA/hns: Add mapped page count checking for MTR Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 440/775] RDMA/hns: Disable RQ inline by default Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 441/775] clk: divider: fix initialization with parent_hw Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 442/775] spi: pxa2xx: Fix the controller numbering for Wildcat Point Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 443/775] powerpc/uaccess: Avoid might_fault() when user access is enabled Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 444/775] powerpc/kuap: Restore AMR after replaying soft interrupts Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 445/775] regulator: qcom-rpmh: fix pm8009 ldo7 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 446/775] clk: aspeed: Fix APLL calculate formula from ast2600-A2 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 447/775] selftests/ftrace: Update synthetic event syntax errors Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 448/775] perf symbols: Use (long) for iterator for bfd symbols Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 449/775] regulator: bd718x7, bd71828, Fix dvs voltage levels Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 450/775] spi: dw: Avoid stack content exposure Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 451/775] spi: Skip zero-length transfers in spi_transfer_one_message() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 452/775] printk: avoid prb_first_valid_seq() where possible Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 453/775] perf symbols: Fix return value when loading PE DSO Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 454/775] nfsd: register pernet ops last, unregister first Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 455/775] svcrdma: Hold private mutex while invoking rdma_accept() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 456/775] ceph: fix flush_snap logic after putting caps Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 457/775] RDMA/hns: Fixes missing error code of CMDQ Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 458/775] RDMA/ucma: Fix use-after-free bug in ucma_create_uevent Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 459/775] RDMA/rtrs-srv: Fix stack-out-of-bounds Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 460/775] RDMA/rtrs: Only allow addition of path to an already established session Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 461/775] RDMA/rtrs-srv: fix memory leak by missing kobject free Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 462/775] RDMA/rtrs-srv-sysfs: fix missing put_device Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 463/775] RDMA/rtrs-srv: Do not pass a valid pointer to PTR_ERR() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 464/775] Input: sur40 - fix an error code in sur40_probe() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 465/775] perf record: Fix continue profiling after draining the buffer Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 466/775] perf unwind: Set userdata for all __report_module() paths Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 467/775] perf intel-pt: Fix missing CYC processing in PSB Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 468/775] perf intel-pt: Fix premature IPC Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 469/775] perf intel-pt: Fix IPC with CYC threshold Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 470/775] perf test: Fix unaligned access in sample parsing test Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 471/775] Input: elo - fix an error code in elo_connect() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 472/775] sparc64: only select COMPAT_BINFMT_ELF if BINFMT_ELF is set Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 473/775] sparc: fix led.c driver when PROC_FS is not enabled Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 474/775] Input: zinitix - fix return type of zinitix_init_touch() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 475/775] Input: st1232 - add IDLE state as ready condition Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 476/775] ARM: 9065/1: OABI compat: fix build when EPOLL is not enabled Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 477/775] Input: st1232 - fix NORMAL vs. IDLE state handling Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 478/775] misc: eeprom_93xx46: Fix module alias to enable module autoprobe Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 479/775] phy: rockchip-emmc: emmc_phy_init() always return 0 Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 480/775] phy: cadence-torrent: Fix error code in cdns_torrent_phy_probe() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 481/775] misc: eeprom_93xx46: Add module alias to avoid breaking support for non device tree users Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 482/775] PCI: rcar: Always allocate MSI addresses in 32bit space Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 483/775] soundwire: debugfs: use controller id instead of link_id Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 484/775] soundwire: cadence: fix ACK/NAK handling Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 485/775] pwm: rockchip: Enable APB clock during register access while probing Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 486/775] pwm: rockchip: rockchip_pwm_probe(): Remove superfluous clk_unprepare() Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 487/775] pwm: rockchip: Eliminate potential race condition when probing Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 488/775] PCI: xilinx-cpm: Fix reference count leak on error path Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 489/775] VMCI: Use set_page_dirty_lock() when unregistering guest memory Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 490/775] PCI: Align checking of syscall user config accessors Greg Kroah-Hartman
2021-03-01 16:10 ` [PATCH 5.11 491/775] mei: hbm: call mei_set_devstate() on hbm stop response Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 492/775] drm/msm: Fix MSM_INFO_GET_IOVA with carveout Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 493/775] drm/msm: Add proper checks for GPU LLCC support Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 494/775] drm/msm/dsi: Correct io_start for MSM8994 (20nm PHY) Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 495/775] drm/msm/mdp5: Fix wait-for-commit for cmd panels Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 496/775] drm/msm: Fix race of GPU init vs timestamp power management Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 497/775] drm/msm: Fix races managing the OOB state for timestamp vs timestamps Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 498/775] drm/msm/kms: Make a lock_class_key for each crtc mutex Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 499/775] drm/msm/dp: trigger unplug event in msm_dp_display_disable Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 500/775] vfio/iommu_type1: Populate full dirty when detach non-pinned group Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 501/775] vfio/iommu_type1: Fix some sanity checks in detach group Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 502/775] vfio-pci/zdev: fix possible segmentation fault issue Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 503/775] ext4: fix potential htree index checksum corruption Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 504/775] phy: USB_LGM_PHY should depend on X86 Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 505/775] coresight: etm4x: Skip accessing TRCPDCR in save/restore Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 506/775] nvmem: core: Fix a resource leak on error in nvmem_add_cells_from_of() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 507/775] nvmem: core: skip child nodes not matching binding Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 508/775] drm/msm: Fix legacy relocs path Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 509/775] soundwire: bus: use sdw_update_no_pm when initializing a device Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 510/775] soundwire: bus: use sdw_write_no_pm when setting the bus scale registers Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 511/775] soundwire: export sdw_write/read_no_pm functions Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 512/775] soundwire: bus: fix confusion on device used by pm_runtime Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 513/775] drm/msm/dp: Add a missing semi-colon Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 514/775] misc: fastrpc: fix incorrect usage of dma_map_sgtable Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 515/775] remoteproc/mediatek: acknowledge watchdog IRQ after handled Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 516/775] mhi: Fix double dma free Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 517/775] regmap: sdw: use _no_pm functions in regmap_read/write Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 518/775] ext: EXT4_KUNIT_TESTS should depend on EXT4_FS instead of selecting it Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 519/775] mailbox: sprd: correct definition of SPRD_OUTBOX_FIFO_FULL Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 520/775] device-dax: Fix default return code of range_parse() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 521/775] PCI: pci-bridge-emul: Fix array overruns, improve safety Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 522/775] PCI: cadence: Fix DMA range mapping early return error Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 523/775] i40e: Fix flow for IPv6 next header (extension header) Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 524/775] i40e: Add zero-initialization of AQ command structures Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 525/775] i40e: Fix overwriting flow control settings during driver loading Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 526/775] i40e: Fix addition of RX filters after enabling FW LLDP agent Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 527/775] i40e: Fix VFs not created Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 528/775] Take mmap lock in cacheflush syscall Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 529/775] nios2: fixed broken sys_clone syscall Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 530/775] i40e: Fix add TC filter for IPv6 Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 531/775] i40e: Fix endianness conversions Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 532/775] octeontx2-af: Fix an off by one in rvu_dbg_qsize_write() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 533/775] pwm: iqs620a: Fix overflow and optimize calculations Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 534/775] ice: report correct max number of TCs Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 535/775] ice: Account for port VLAN in VF max packet size calculation Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 536/775] ice: Fix state bits on LLDP mode switch Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 537/775] ice: update the number of available RSS queues Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 538/775] dpaa_eth: fix the access method for the dpaa_napi_portal Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 539/775] net: stmmac: fix CBS idleslope and sendslope calculation Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 540/775] net/mlx4_core: Add missed mlx4_free_cmd_mailbox() Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 541/775] PCI: rockchip: Make ep-gpios DT property optional Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 542/775] vxlan: move debug check after netdev unregister Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 543/775] wireguard: device: do not generate ICMP for non-IP packets Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 544/775] wireguard: kconfig: use arm chacha even with no neon Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 545/775] ocfs2: fix a use after free on error Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 546/775] mm: memcontrol: fix NR_ANON_THPS accounting in charge moving Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 547/775] mm: memcontrol: fix slub memory accounting Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 548/775] mm/memory.c: fix potential pte_unmap_unlock pte error Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 549/775] mm/hugetlb: fix potential double free in hugetlb_register_node() error path Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 550/775] mm/hugetlb: suppress wrong warning info when alloc gigantic page Greg Kroah-Hartman
2021-03-01 16:11 ` [PATCH 5.11 551/775] mm/compaction: fix misbehaviors of fast_find_migrateblock() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 552/775] net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8081 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 553/775] r8169: fix jumbo packet handling on RTL8168e Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 554/775] NFSv4: Fixes for nfs4_bitmask_adjust() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 555/775] KVM: SVM: Intercept INVPCID when its disabled to inject #UD Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 556/775] KVM: x86/mmu: Expand collapsible SPTE zap for TDP MMU to ZONE_DEVICE and HugeTLB pages Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 557/775] cifs: Fix inconsistent IS_ERR and PTR_ERR Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 558/775] arm64: Add missing ISB after invalidating TLB in __primary_switch Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 559/775] i2c: brcmstb: Fix brcmstd_send_i2c_cmd condition Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 560/775] i2c: exynos5: Preserve high speed master code Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 561/775] mm,thp,shmem: make khugepaged obey tmpfs mount flags Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 562/775] mm: fix memory_failure() handling of dax-namespace metadata Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 563/775] mm/rmap: fix potential pte_unmap on an not mapped pte Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 564/775] proc: use kvzalloc for our kernel buffer Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 565/775] csky: Fix a size determination in gpr_get() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 566/775] scsi: bnx2fc: Fix Kconfig warning & CNIC build errors Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 567/775] scsi: sd: sd_zbc: Dont pass GFP_NOIO to kvcalloc Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 568/775] block: reopen the device in blkdev_reread_part Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 569/775] block: fix logging on capacity change Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 570/775] ide/falconide: Fix module unload Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 571/775] scsi: sd: Fix Opal support Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 572/775] blk-settings: align max_sectors on "logical_block_size" boundary Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 573/775] soundwire: intel: fix possible crash when no device is detected Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 574/775] ACPI: property: Fix fwnode string properties matching Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 575/775] ACPI: configfs: add missing check after configfs_register_default_group() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 576/775] cpufreq: ACPI: Set cpuinfo.max_freq directly if max boost is known Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 577/775] HID: logitech-dj: add support for keyboard events in eQUAD step 4 Gaming Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 578/775] HID: wacom: Ignore attempts to overwrite the touch_max value from HID Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 579/775] Input: raydium_ts_i2c - do not send zero length Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 580/775] Input: xpad - add support for PowerA Enhanced Wired Controller for Xbox Series X|S Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 581/775] Input: joydev - prevent potential read overflow in ioctl Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 582/775] Input: i8042 - add ASUS Zenbook Flip to noselftest list Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 583/775] media: mceusb: Fix potential out-of-bounds shift Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 584/775] USB: serial: option: update interface mapping for ZTE P685M Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 585/775] usb: musb: Fix runtime PM race in musb_queue_resume_work Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 586/775] usb: dwc3: gadget: Fix setting of DEPCFG.bInterval_m1 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 587/775] usb: dwc3: gadget: Fix dep->interval for fullspeed interrupt Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 588/775] USB: serial: ftdi_sio: fix FTX sub-integer prescaler Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 589/775] USB: serial: pl2303: fix line-speed handling on newer chips Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 590/775] USB: serial: mos7840: fix error code in mos7840_write() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 591/775] USB: serial: mos7720: fix error code in mos7720_write() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 592/775] phy: lantiq: rcu-usb2: wait after clock enable Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 593/775] ALSA: usb-audio: Correct document for snd_usb_endpoint_free_all() Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 594/775] ALSA: usb-audio: Handle invalid running state at releasing EP Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 595/775] ALSA: usb-audio: More strict state change in EP Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 596/775] ALSA: usb-audio: Dont avoid stopping the stream at disconnection Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 597/775] ALSA: usb-audio: Add implicit fb quirk for BOSS GP-10 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 598/775] ALSA: fireface: fix to parse sync status register of latter protocol Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 599/775] ALSA: hda: Add another CometLake-H PCI ID Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 600/775] ALSA: hda/hdmi: Drop bogus check at closing a stream Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 601/775] ALSA: hda/realtek: modify EAPD in the ALC886 Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 602/775] ALSA: hda/realtek: Quirk for HP Spectre x360 14 amp setup Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 603/775] MIPS: Ingenic: Disable HPTLB for D0 XBurst CPUs too Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 604/775] MIPS: Support binutils configured with --enable-mips-fix-loongson3-llsc=yes Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 605/775] MIPS: VDSO: Use CLANG_FLAGS instead of filtering out --target= Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 606/775] Revert "MIPS: Octeon: Remove special handling of CONFIG_MIPS_ELF_APPENDED_DTB=y" Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 607/775] MIPS: compressed: fix build with enabled UBSAN Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 608/775] Revert "bcache: Kill btree_io_wq" Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 609/775] bcache: Give btree_io_wq correct semantics again Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 610/775] bcache: Move journal work to new flush wq Greg Kroah-Hartman
2021-03-01 16:12 ` [PATCH 5.11 611/775] Revert "drm/amd/display: Update NV1x SR latency values" Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 612/775] drm/amd/display: Add FPU wrappers to dcn21_validate_bandwidth() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 613/775] drm/amd/display: Remove Assert from dcn10_get_dig_frontend Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 614/775] drm/amd/display: Add vupdate_no_lock interrupts for DCN2.1 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 615/775] Revert "drm/amd/display: reuse current context instead of recreating one" Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 616/775] drm/amdkfd: Fix recursive lock warnings Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 617/775] drm/amdgpu: fix CGTS_TCC_DISABLE register offset on gfx10.3 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 618/775] drm/amdgpu: Set reference clock to 100Mhz on Renoir (v2) Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 619/775] drm/amdgpu: fix shutdown and poweroff process failed with s0ix Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 620/775] drm/ttm: Fix a memory leak Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 621/775] drm/nouveau/kms: handle mDP connectors Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 622/775] drm/modes: Switch to 64bit maths to avoid integer overflow Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 623/775] drm/sched: Cancel and flush all outstanding jobs before finish Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 624/775] drm/panel: kd35t133: allow using non-continuous dsi clock Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 625/775] drm/rockchip: Require the YTR modifier for AFBC Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 626/775] ASoC: siu: Fix build error by a wrong const prefix Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 627/775] selinux: fix inconsistency between inode_getxattr and inode_listsecurity Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 628/775] erofs: initialized fields can only be observed after bit is set Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 629/775] tpm_tis: Fix check_locality for correct locality acquisition Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 630/775] tpm_tis: Clean up locality release Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 631/775] KEYS: trusted: Fix incorrect handling of tpm_get_random() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 632/775] KEYS: trusted: Fix migratable=1 failing Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 633/775] KEYS: trusted: Reserve TPM for seal and unseal operations Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 634/775] btrfs: do not cleanup upper nodes in btrfs_backref_cleanup_node Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 635/775] btrfs: do not warn if we cant find the reloc root when looking up backref Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 636/775] btrfs: add asserts for deleting backref cache nodes Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 637/775] btrfs: abort the transaction if we fail to inc ref in btrfs_copy_root Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 638/775] btrfs: fix reloc root leak with 0 ref reloc roots on recovery Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 639/775] btrfs: splice remaining dirty_bgs onto the transaction dirty bg list Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 640/775] btrfs: handle space_info::total_bytes_pinned inside the delayed ref itself Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 641/775] btrfs: account for new extents being deleted in total_bytes_pinned Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 642/775] btrfs: fix extent buffer leak on failure to copy root Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 643/775] drm/i915/gt: Flush before changing register state Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 644/775] drm/i915/gt: Correct surface base address for renderclear Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 645/775] crypto: arm64/sha - add missing module aliases Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 646/775] crypto: aesni - prevent misaligned buffers on the stack Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 647/775] crypto: michael_mic - fix broken misalignment handling Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 648/775] crypto: sun4i-ss - checking sg length is not sufficient Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 649/775] crypto: sun4i-ss - IV register does not work on A10 and A13 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 650/775] crypto: sun4i-ss - handle BigEndian for cipher Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 651/775] crypto: sun4i-ss - initialize need_fallback Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 652/775] soc: samsung: exynos-asv: dont defer early on not-supported SoCs Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 653/775] soc: samsung: exynos-asv: handle reading revision register error Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 654/775] seccomp: Add missing return in non-void function Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 655/775] arm64: ptrace: Fix seccomp of traced syscall -1 (NO_SYSCALL) Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 656/775] misc: rtsx: init of rts522a add OCP power off when no card is present Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 657/775] drivers/misc/vmw_vmci: restrict too big queue size in qp_host_alloc_queue Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 658/775] pstore: Fix typo in compression option name Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 659/775] dts64: mt7622: fix slow sd card access Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 660/775] arm64: dts: agilex: fix phy interface bit shift for gmac1 and gmac2 Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 661/775] staging/mt7621-dma: mtk-hsdma.c->hsdma-mt7621.c Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 662/775] staging: gdm724x: Fix DMA from stack Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 663/775] staging: rtl8188eu: Add Edimax EW-7811UN V2 to device table Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 664/775] floppy: reintroduce O_NDELAY fix Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 665/775] media: i2c: max9286: fix access to unallocated memory Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 666/775] media: v4l: ioctl: Fix memory leak in video_usercopy Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 667/775] media: ir_toy: add another IR Droid device Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 668/775] media: ipu3-cio2: Fix mbus_code processing in cio2_subdev_set_fmt() Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 669/775] media: marvell-ccic: power up the device on mclk enable Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 670/775] media: smipcie: fix interrupt handling and IR timeout Greg Kroah-Hartman
2021-03-01 16:13 ` [PATCH 5.11 671/775] x86/virt: Eat faults on VMXOFF in reboot flows Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 672/775] x86/reboot: Force all cpus to exit VMX root if VMX is supported Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 673/775] x86/fault: Fix AMD erratum #91 errata fixup for user code Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 674/775] x86/entry: Fix instrumentation annotation Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 675/775] powerpc/prom: Fix "ibm,arch-vec-5-platform-support" scan Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 676/775] rcu: Pull deferred rcuog wake up to rcu_eqs_enter() callers Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 677/775] rcu/nocb: Perform deferred wake up before last idles need_resched() check Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 678/775] rcu/nocb: Trigger self-IPI on late deferred wake up before user resume Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 679/775] entry: Explicitly flush pending rcuog wakeup before last rescheduling point Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 680/775] entry/kvm: " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 681/775] kprobes: Fix to delay the kprobes jump optimization Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 682/775] arm64: Extend workaround for erratum 1024718 to all versions of Cortex-A55 Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 683/775] iommu/arm-smmu-qcom: Fix mask extraction for bootloader programmed SMRs Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 684/775] mailbox: arm_mhuv2: Skip calling kfree() with invalid pointer Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 685/775] arm64: kexec_file: fix memory leakage in create_dtb() when fdt_open_into() fails Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 686/775] arm64: uprobe: Return EOPNOTSUPP for AARCH32 instruction probing Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 687/775] arm64 module: set plt* section addresses to 0x0 Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 688/775] arm64: spectre: Prevent lockdep splat on v4 mitigation enable path Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 689/775] riscv: Disable KSAN_SANITIZE for vDSO Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 690/775] watchdog: qcom: Remove incorrect usage of QCOM_WDT_ENABLE_IRQ Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 691/775] watchdog: mei_wdt: request stop on unregister Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 692/775] coresight: etm4x: Handle accesses to TRCSTALLCTLR Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 693/775] mtd: spi-nor: sfdp: Fix last erase region marking Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 694/775] mtd: spi-nor: sfdp: Fix wrong erase type bitmask for overlaid region Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 695/775] mtd: spi-nor: core: Fix erase type discovery " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 696/775] mtd: spi-nor: core: Add erase size check for erase command initialization Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 697/775] mtd: spi-nor: hisi-sfc: Put child node np on error path Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 698/775] fs/affs: release old buffer head " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 699/775] seq_file: document how per-entry resources are managed Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 700/775] x86: fix seq_file iteration for pat/memtype.c Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 701/775] mm: memcontrol: fix swap undercounting in cgroup2 Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 702/775] mm: memcontrol: fix get_active_memcg return value Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 703/775] hugetlb: fix update_and_free_page contig page struct assumption Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 704/775] hugetlb: fix copy_huge_page_from_user " Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 705/775] mm/vmscan: restore zone_reclaim_mode ABI Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 706/775] mm, compaction: make fast_isolate_freepages() stay within zone Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 707/775] KVM: nSVM: fix running nested guests when npt=0 Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 708/775] nvmem: qcom-spmi-sdam: Fix uninitialized pdev pointer Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 709/775] module: Ignore _GLOBAL_OFFSET_TABLE_ when warning for undefined symbols Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 710/775] mmc: sdhci-esdhc-imx: fix kernel panic when remove module Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 711/775] mmc: sdhci-pci-o2micro: Bug fix for SDR104 HW tuning failure Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 712/775] powerpc/32: Preserve cr1 in exception prolog stack check to fix build error Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 713/775] powerpc/kexec_file: fix FDT size estimation for kdump kernel Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 714/775] powerpc/32s: Add missing call to kuep_lock on syscall entry Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 715/775] spmi: spmi-pmic-arb: Fix hw_irq overflow Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 716/775] mei: bus: block send with vtag on non-conformat FW Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 717/775] mei: fix transfer over dma with extended header Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 718/775] mei: me: emmitsburg workstation DID Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 719/775] mei: me: add adler lake point S DID Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 720/775] mei: me: add adler lake point LP DID Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 721/775] gpio: pcf857x: Fix missing first interrupt Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 722/775] mfd: gateworks-gsc: Fix interrupt type Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 723/775] printk: fix deadlock when kernel panic Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 724/775] exfat: fix shift-out-of-bounds in exfat_fill_super() Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 725/775] zonefs: Fix file size of zones in full condition Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 726/775] kcmp: Support selection of SYS_kcmp without CHECKPOINT_RESTORE Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 727/775] thermal: cpufreq_cooling: freq_qos_update_request() returns < 0 on error Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 728/775] cpufreq: qcom-hw: drop devm_xxx() calls from init/exit hooks Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 729/775] cpufreq: intel_pstate: Change intel_pstate_get_hwp_max() argument Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 730/775] cpufreq: intel_pstate: Get per-CPU max freq via MSR_HWP_CAPABILITIES if available Greg Kroah-Hartman
2021-03-01 16:14 ` [PATCH 5.11 731/775] proc: dont allow async path resolution of /proc/thread-self components Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 732/775] s390/vtime: fix inline assembly clobber list Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 733/775] virtio/s390: implement virtio-ccw revision 2 correctly Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 734/775] um: mm: check more comprehensively for stub changes Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 735/775] um: defer killing userspace on page table update failures Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 736/775] irqchip/loongson-pch-msi: Use bitmap_zalloc() to allocate bitmap Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 737/775] f2fs: fix out-of-repair __setattr_copy() Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 738/775] f2fs: enforce the immutable flag on open files Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 739/775] f2fs: flush data when enabling checkpoint back Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 740/775] cifs: fix DFS failover Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 741/775] cifs: check all path components in resolved dfs target Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 742/775] cifs: introduce helper for finding referral server to improve DFS target resolution Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 743/775] cifs: fix nodfs mount option Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 744/775] cifs: fix handling of escaped , in the password mount argument Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 745/775] sparc32: fix a user-triggerable oops in clear_user() Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 746/775] perf stat: Use nftw() instead of ftw() Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 747/775] spi: fsl: invert spisel_boot signal on MPC8309 Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 748/775] spi: spi-synquacer: fix set_cs handling Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 749/775] gfs2: fix glock confusion in function signal_our_withdraw Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 750/775] gfs2: Dont skip dlm unlock if glock has an lvb Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 751/775] gfs2: Lock imbalance on error path in gfs2_recover_one Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 752/775] gfs2: Recursive gfs2_quota_hold in gfs2_iomap_end Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 753/775] dm: fix deadlock when swapping to encrypted device Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 754/775] dm table: fix iterate_devices based device capability checks Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 755/775] dm table: fix DAX " Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 756/775] dm table: fix zoned " Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 757/775] dm writecache: fix performance degradation in ssd mode Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 758/775] dm writecache: return the exact table values that were set Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 759/775] dm writecache: fix writing beyond end of underlying device when shrinking Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 760/775] dm era: Recover committed writeset after crash Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 761/775] dm era: Update in-core bitset after committing the metadata Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 762/775] dm era: Verify the data block size hasnt changed Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 763/775] dm era: Fix bitset memory leaks Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 764/775] dm era: Use correct value size in equality function of writeset tree Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 765/775] dm era: Reinitialize bitset cache before digesting a new writeset Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 766/775] dm era: only resize metadata in preresume Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 767/775] drm/i915: Reject 446-480MHz HDMI clock on GLK Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 768/775] kgdb: fix to kill breakpoints on initmem after boot Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 769/775] ipv6: silence compilation warning for non-IPV6 builds Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 770/775] net: icmp: pass zeroed opts from icmp{,v6}_ndo_send before sending Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 771/775] wireguard: selftests: test multiple parallel streams Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 772/775] wireguard: queueing: get rid of per-peer ring buffers Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 773/775] net: sched: fix police ext initialization Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 774/775] net: qrtr: Fix memory leak in qrtr_tun_open Greg Kroah-Hartman
2021-03-01 16:15 ` [PATCH 5.11 775/775] net_sched: fix RTNL deadlock again caused by request_module() Greg Kroah-Hartman

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=20210301161209.843826527@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bjarni.jonasson@microchip.com \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=steen.hegelund@microchip.com \
    --cc=vladimir.oltean@nxp.com \
    /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;
as well as URLs for NNTP newsgroup(s).