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 02E5831281E; Thu, 27 Nov 2025 14:59:00 +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=1764255541; cv=none; b=GvRSzBVfGP4jrNj+mrzD/yPDOfxtdM4FTZixtGph+l/+OlzNkVyOd4vLoHZ+dKOI+SXODriZ4QgRRvAuT9xR/XMj1AogOQEOqqUnFNtVC6SdrGgijmGD171GXzM/feMnXmAAVknhAUfHyeI6++VWboOlG/MItUOcG4+i0UHCtsE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764255541; c=relaxed/simple; bh=O+L0zsi03mCgAYxY0XoGlM8PXPzZiemNBgUu+IjUdsM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=p3jQh2MRGmOWlJZxa1gbk0HbY6YLZkyERw1+KOow9Vg6OPh7SAOlV2gjv+Efu03G/V/vMpSLV1MoP1pSSJFzeGXGGX/l/JIhItZUnVwRlXumRg8YhaTn0OCyroB6azAQYoZ9F/+O7QtKJ7YtXf7Qq6KhRqTokkRUyM7cOb71KnI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=F/9mXM4I; 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="F/9mXM4I" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 741B9C4CEF8; Thu, 27 Nov 2025 14:59:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764255540; bh=O+L0zsi03mCgAYxY0XoGlM8PXPzZiemNBgUu+IjUdsM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=F/9mXM4IPsvecmGCyHDQ1pThQXXDVDCXSZEuzWwD4p9SER1oZRokC70JovAw76lnU fdhtRGlZGssZMI9h4p1f5sghD+HFdCJjlR4KliNuA3JHASvh9mXRc2VAWrDHFlssNZ EEF/lrXiZiuzXe2DIIrmS9DSDTyoDYdVgUpYPvts= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Mykola Kvach , Michael Riesch , Heiko Stuebner Subject: [PATCH 6.17 007/175] arm64: dts: rockchip: fix PCIe 3.3V regulator voltage on orangepi-5 Date: Thu, 27 Nov 2025 15:44:20 +0100 Message-ID: <20251127144043.224834681@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251127144042.945669935@linuxfoundation.org> References: <20251127144042.945669935@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.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Mykola Kvach commit b5414520793e68d266fdd97a84989d9831156aad upstream. The vcc3v3_pcie20 fixed regulator powers the PCIe device-side 3.3V rail for pcie2x1l2 via vpcie3v3-supply. The DTS mistakenly set its regulator-min/max-microvolt to 1800000 (1.8 V). Correct both to 3300000 (3.3 V) to match the rail name, the PCIe/M.2 power requirement, and the actual hardware wiring on Orange Pi 5. Fixes: b6bc755d806e ("arm64: dts: rockchip: Add Orange Pi 5") Cc: stable@vger.kernel.org Signed-off-by: Mykola Kvach Reviewed-by: Michael Riesch Link: https://patch.msgid.link/cf6e08dfdfbf1c540685d12388baab1326f95d2c.1762165324.git.xakep.amatop@gmail.com Signed-off-by: Heiko Stuebner Signed-off-by: Greg Kroah-Hartman --- arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts +++ b/arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dts @@ -14,8 +14,8 @@ gpios = <&gpio0 RK_PC5 GPIO_ACTIVE_HIGH>; regulator-name = "vcc3v3_pcie20"; regulator-boot-on; - regulator-min-microvolt = <1800000>; - regulator-max-microvolt = <1800000>; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; startup-delay-us = <50000>; vin-supply = <&vcc5v0_sys>; };