mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
Add device-tree overlay for ds1307
Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
This commit is contained in:
@@ -64,6 +64,7 @@ dtb-$(CONFIG_BCM2708_DT) += iqaudio-dacplus-overlay.dtb
|
|||||||
dtb-$(CONFIG_BCM2708_DT) += lirc-rpi-overlay.dtb
|
dtb-$(CONFIG_BCM2708_DT) += lirc-rpi-overlay.dtb
|
||||||
dtb-$(CONFIG_BCM2708_DT) += pcf8523-rtc-overlay.dtb
|
dtb-$(CONFIG_BCM2708_DT) += pcf8523-rtc-overlay.dtb
|
||||||
dtb-$(CONFIG_BCM2708_DT) += pps-gpio-overlay.dtb
|
dtb-$(CONFIG_BCM2708_DT) += pps-gpio-overlay.dtb
|
||||||
|
dtb-$(CONFIG_BCM2708_DT) += ds1307-rtc-overlay.dtb
|
||||||
dtb-$(CONFIG_BCM2708_DT) += w1-gpio-overlay.dtb
|
dtb-$(CONFIG_BCM2708_DT) += w1-gpio-overlay.dtb
|
||||||
dtb-$(CONFIG_BCM2708_DT) += w1-gpio-pullup-overlay.dtb
|
dtb-$(CONFIG_BCM2708_DT) += w1-gpio-pullup-overlay.dtb
|
||||||
dtb-$(CONFIG_ARCH_BCM2835) += bcm2835-rpi-b.dtb
|
dtb-$(CONFIG_ARCH_BCM2835) += bcm2835-rpi-b.dtb
|
||||||
|
|||||||
22
arch/arm/boot/dts/ds1307-rtc-overlay.dts
Normal file
22
arch/arm/boot/dts/ds1307-rtc-overlay.dts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
// Definitions for DS1307 Real Time Clock
|
||||||
|
/dts-v1/;
|
||||||
|
/plugin/;
|
||||||
|
|
||||||
|
/ {
|
||||||
|
compatible = "brcm,bcm2708";
|
||||||
|
|
||||||
|
fragment@0 {
|
||||||
|
target = <&i2c1>;
|
||||||
|
__overlay__ {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
ds1307@68 {
|
||||||
|
compatible = "maxim,ds1307";
|
||||||
|
reg = <0x68>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user