From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D70604432FE; Mon, 17 Aug 2026 15:20:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786980060; cv=none; b=WvAVeVcu7T3S4qv4d6jFg8lhiYSdu4RDTn8PxGyEE1dQYBOS1ja9yL5vY8ln+UbBJAYik56JIxc0kbaPCxUYwArjDnTht0i5mTV4diAmujO2ZWcR0bCr1tvR2QPU4SQvnoMq/hMuQvRja9LM7ZebMCV7z8JZtjtu/Iq1AXX1eqI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786980060; c=relaxed/simple; bh=kxKg2SATxDVzjpxe/ApmUYe8lPYlEUxiOVCFiFtW7co=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=aT/ViCO9KU8CrcDuH7SarIwqEpqaogDtER3k3k1VTUeoWTBnBfnI4KYFW2Sh3s2TJTKPXRNabUSt6/JReiiGCFAlGWUMZUu7IExiJ2dehO1dX6AH7PtjxDlxSTJoUhqmEFxmrDs9iu24sqIrFM5EjrgfrK8BXI2/62x3O8/dgTQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VZhSw8Zn; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="VZhSw8Zn" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 377B81F000E9; Mon, 17 Aug 2026 15:20:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786980059; bh=5T8g/RlJC1wdsbLTMzrh6qgg/Vn1ASkRwdVjY0+dzdM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=VZhSw8Zn6+k+5c3hSNurE56Kt/6EdACRFYPkBXw2Sc2efauZ9W/gFzFEYBYQjDPbb szcCQNUSgz5RVE47kxPIuJfBJ7RE7O6dziJ52ZYG+YmbuWmZcSjGnfxhwWF2vJ3Ww7 XW1EjCDZSNGge5d/TEIhqWSr17cOp5Cnd1wZo05g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Nava kishore Manne , Radhey Shyam Pandey , Michal Simek , Vinod Koul Subject: [PATCH 6.1 440/609] phy: zynqmp: fix L0_TM_DISABLE_SCRAMBLE_ENCODER mask Date: Mon, 17 Aug 2026 15:32:16 +0200 Message-ID: <20260817132558.822706735@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132543.039278408@linuxfoundation.org> References: <20260817132543.039278408@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Nava kishore Manne commit 6cb22477929489a412df8d153e550e77a012e701 upstream. The L0_TX_DIG_61 register bit 2 is a reserved read-only field. The previous mask value 0x0f incorrectly included bit 2, causing unintended writes to a reserved bit on every scrambler bypass operation. Correct the mask to (BIT(3) | GENMASK(1, 0)) to cover only the valid scramble bypass control bits. Fixes: 4a33bea00314 ("phy: zynqmp: Add PHY driver for the Xilinx ZynqMP Gigabit Transceiver") Cc: stable@vger.kernel.org Signed-off-by: Nava kishore Manne Signed-off-by: Radhey Shyam Pandey Acked-by: Michal Simek Link: https://patch.msgid.link/20260627155229.2791113-2-radhey.shyam.pandey@amd.com Signed-off-by: Vinod Koul Signed-off-by: Greg Kroah-Hartman --- drivers/phy/xilinx/phy-zynqmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/phy/xilinx/phy-zynqmp.c +++ b/drivers/phy/xilinx/phy-zynqmp.c @@ -53,7 +53,7 @@ #define L0_TM_DIG_6 0x106c #define L0_TM_DIS_DESCRAMBLE_DECODER 0x0f #define L0_TX_DIG_61 0x00f4 -#define L0_TM_DISABLE_SCRAMBLE_ENCODER 0x0f +#define L0_TM_DISABLE_SCRAMBLE_ENCODER (BIT(3) | GENMASK(1, 0)) /* PLL Test Mode register parameters */ #define L0_TM_PLL_DIG_37 0x2094