From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 563FC15624B; Tue, 22 Jul 2025 13:48:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753192117; cv=none; b=qsVHNP4vwx17I4bGHTLUpB4hSvNXEdOWH0Dyf55g5BVUpsXwNZ7k5EqkPCFG+7SYToJ7kpD/LrDV8bC/KJv1bJmtN6/PnwUBhh903ajhvan+H1QPAXvT9KY2th1KDADDqFOyeIYFVHmvvvoXDRgyo+217tfyifNAIBrhXET2ok4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753192117; c=relaxed/simple; bh=vWNFw3Tebr6em9+oxnvB4Y5uhTGkxYEcGm8EG6ZkGlE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=txoEGaVdJyrBEjxIUqcqAEtN16/A9KhBC04HOzuQ7k6b0KVGG47vVdMFLkF504XRM11yTNXdxFpQSr/hClSRzphUoR/ZJE/+aV+qBdpchP9EYQOtwitrHkf2PqicrZZ7xHEJlpSkCWRD2a0x43X1KZZdIV1QIDEljh9dN1+mVxQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=C2iz2pmc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="C2iz2pmc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BABD9C4CEEB; Tue, 22 Jul 2025 13:48:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1753192117; bh=vWNFw3Tebr6em9+oxnvB4Y5uhTGkxYEcGm8EG6ZkGlE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=C2iz2pmcxnns+i3InYSvvO3mU79IhhmnoyFhE+Abj3conW+rr82GX2lMidyZzotWx wEmLmRLSV0UUee869nt18U38NM6QIDsivqcywuT03NSsLfAqsGwr02W+Bx+ZxhOKxV DRDDcWAepb9voDfoFpvVd716CXGr+d0ZF5iEIwjM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Francesco Dolcini , Frank Li , Shawn Guo Subject: [PATCH 6.1 17/79] arm64: dts: freescale: imx8mm-verdin: Keep LDO5 always on Date: Tue, 22 Jul 2025 15:44:13 +0200 Message-ID: <20250722134329.015837988@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250722134328.384139905@linuxfoundation.org> References: <20250722134328.384139905@linuxfoundation.org> User-Agent: quilt/0.68 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: Francesco Dolcini commit fbe94be09fa81343d623a86ec64a742759b669b3 upstream. LDO5 regulator is used to power the i.MX8MM NVCC_SD2 I/O supply, that is used for the SD2 card interface and also for some GPIOs. When the SD card interface is not enabled the regulator subsystem could turn off this supply, since it is not used anywhere else, however this will also remove the power to some other GPIOs, for example one I/O that is used to power the ethernet phy, leading to a non working ethernet interface. [ 31.820515] On-module +V3.3_1.8_SD (LDO5): disabling [ 31.821761] PMIC_USDHC_VSELECT: disabling [ 32.764949] fec 30be0000.ethernet end0: Link is Down Fix this keeping the LDO5 supply always on. Cc: stable@vger.kernel.org Fixes: 6a57f224f734 ("arm64: dts: freescale: add initial support for verdin imx8m mini") Fixes: f5aab0438ef1 ("regulator: pca9450: Fix enable register for LDO5") Signed-off-by: Francesco Dolcini Reviewed-by: Frank Li Signed-off-by: Shawn Guo Signed-off-by: Greg Kroah-Hartman --- arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi | 1 + 1 file changed, 1 insertion(+) --- a/arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mm-verdin.dtsi @@ -466,6 +466,7 @@ }; reg_nvcc_sd: LDO5 { + regulator-always-on; regulator-max-microvolt = <3300000>; regulator-min-microvolt = <1800000>; regulator-name = "On-module +V3.3_1.8_SD (LDO5)";