Message ID | 1381310411-11391-7-git-send-email-josephl@nvidia.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 10/09/2013 03:20 AM, Joseph Lo wrote: > Enable the Tegra RTC device on Venice2. It also can be used as a wakeup > device when platform suspended. > diff --git a/arch/arm/boot/dts/tegra124-venice2.dts b/arch/arm/boot/dts/tegra124-venice2.dts > + rtc@7000e000 { > + status = "okay"; > + }; Does that mean this node has status = "disabled" in tegra124.dtsi? It shouldn't have, since the RTC doesn't depend on any board-specific HW, and hence can be enabled by default. We certainly have it enabled by default on all previous SoCs. I assume this was caused by one of the commits of yours I already applied? Let's have a fixup patch to tegra124.dtsi.
diff --git a/arch/arm/boot/dts/tegra124-venice2.dts b/arch/arm/boot/dts/tegra124-venice2.dts index 5859ec2..279c7b5 100644 --- a/arch/arm/boot/dts/tegra124-venice2.dts +++ b/arch/arm/boot/dts/tegra124-venice2.dts @@ -14,6 +14,10 @@ status = "okay"; }; + rtc@7000e000 { + status = "okay"; + }; + pmc@7000e400 { nvidia,invert-interrupt; };
Enable the Tegra RTC device on Venice2. It also can be used as a wakeup device when platform suspended. Signed-off-by: Joseph Lo <josephl@nvidia.com> --- arch/arm/boot/dts/tegra124-venice2.dts | 4 ++++ 1 file changed, 4 insertions(+)