]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
x86: crownbay: Enable DM RTC support
authorBin Meng <bmeng.cn@gmail.com>
Tue, 23 Jun 2015 04:18:43 +0000 (12:18 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Wed, 9 Sep 2015 11:29:23 +0000 (13:29 +0200)
Add a RTC node in the device tree to enable DM RTC support.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/dts/crownbay.dts
arch/x86/dts/rtc.dtsi [new file with mode: 0644]
configs/crownbay_defconfig

index 1ec90cda184f6e5e38e803339a7448deb7449962..87ed0f4f195e9dc89b11cdd09630fed913914060 100644 (file)
@@ -10,6 +10,7 @@
 
 /include/ "skeleton.dtsi"
 /include/ "serial.dtsi"
+/include/ "rtc.dtsi"
 
 / {
        model = "Intel Crown Bay";
diff --git a/arch/x86/dts/rtc.dtsi b/arch/x86/dts/rtc.dtsi
new file mode 100644 (file)
index 0000000..93dacd7
--- /dev/null
@@ -0,0 +1,6 @@
+/ {
+       rtc {
+               compatible = "motorola,mc146818";
+               reg = <0x70 2>;
+       };
+};
index 93f921638d2262bdd0c1d3fd24b73e96f5ee46e1..6c385042b2ab21682baa2459e324c5301e339e99 100644 (file)
@@ -18,3 +18,4 @@ CONFIG_CPU=y
 CONFIG_SPI_FLASH=y
 CONFIG_USE_PRIVATE_LIBGCC=y
 CONFIG_SYS_VSNPRINTF=y
+CONFIG_DM_RTC=y