From patchwork Tue Apr 28 16:14:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Suniel Mahesh X-Patchwork-Id: 238762 List-Id: U-Boot discussion From: sunil at amarulasolutions.com (sunil at amarulasolutions.com) Date: Tue, 28 Apr 2020 21:44:24 +0530 Subject: [PATCH v3 1/4] arm: dts: rockchip: rk3399-roc-pc: Add RTC child node for RK808 PMIC In-Reply-To: <1588090467-8877-1-git-send-email-sunil@amarulasolutions.com> References: <061ff3f0-8d56-8ccd-bd53-eaad584fa83c@rock-chips.com> <1588090467-8877-1-git-send-email-sunil@amarulasolutions.com> Message-ID: <1588090467-8877-2-git-send-email-sunil@amarulasolutions.com> From: Suniel Mahesh Rockchip RK808 PMIC is a multi function device which hosts a Real Time Clock along with other devices. Add a child RTC node so that it can be bound and probed once the master pmic node completes probe. Signed-off-by: Suniel Mahesh Reviewed-by: Kever Yang --- Changes for v3: - added reviewed by tag Changes for v2: - no changes --- arch/arm/dts/rk3399-roc-pc-u-boot.dtsi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/rk3399-roc-pc-u-boot.dtsi b/arch/arm/dts/rk3399-roc-pc-u-boot.dtsi index 5746442..7d189c8 100644 --- a/arch/arm/dts/rk3399-roc-pc-u-boot.dtsi +++ b/arch/arm/dts/rk3399-roc-pc-u-boot.dtsi @@ -20,3 +20,11 @@ regulator-min-microvolt = <430000>; regulator-init-microvolt = <950000>; }; + +&rk808 { + rtc { + rkrtc: rk808-rtc { + status="okay"; + }; + }; +};