I’m using a Beaglebone Black to log some science data around the house. My internet connection isn’t the most reliable in the world so I first cache the data locally on the BBB and upload it separately; this means I need to capture accurate timestamps for the data. If the BBB reboots due to a power outage or something, I want the timestamps to be accurate even if the device can’t immediately sync the time from the internet, so I need a battery-backed real-time clock.
As I researched the proper way to do this, I discovered that there are a lot of articles and forum posts that discuss the topic but most of them had one or both of these problems:
- They explained how to enable the RTC for the current session but not in a way that would survive reboots.
- They gave instructions based on old or different OSes that weren’t valid for my device.
I finally put together something that I’m happy with so I’m documenting what I found. None of this information is original discovery on my part but hopefully it’ll be in a form that’s useful to others. However, it’s important to note that these instructions are for the Beaglebone Black running Debian 9 (Stretch), specifically “Linux beaglebone 4.4.91-ti-r133 #1 SMP Tue Oct 10 05:18:08 UTC 2017 armv7l GNU/Linux”. They might be helpful for other devices or other Linux flavors but some things are likely to be different.
Hardware
I’m using a really cheap I2C-based DS1307 RTC that I ordered from China, called the Tiny RTC. This device is available from a bunch of different sources but the design is exactly the same. It’s actually a poorly-designed device but it’s dirt cheap and can be fixed with a bit of surgery.
Problems
The first problem is that the Tiny RTC is designed to trickle-charge a rechargeable LIR2032 battery, but a) the charging circuit isn’t very good and b) LIR2032 batteries aren’t widely available and tend to be of poor quality. A regular CR2032 battery will last for years anyway, so it’s better to just disable the charging circuit. Don’t put a non-rechargeable CR2032 into the device without first disabling the charging circuit; the battery may eventually explode if you do.
The second problem is that the Tiny RTC is designed as a 5V device but the BBB is a 3.3V device. Fortunately the I2C bus lets us interoperate with 3.3V safely as long as we remove the pull-up resistors from the RTC.
The third problem is that the crystal oscillator is supposed to be soldered to the ground pad underneath it, according to the internet, but usually it’s not. This can cause stability problems.
Another potential problem is that DS1307 chip doesn’t keep very good time and is sensitive to temperature variations, but since I planned to have the BBB regularly update the time on the RTC, that didn’t matter much to me.
Fixing the hardware
Here’s a picture of the board:
- To disable the charging circuit, remove D1, R4, R5, R6, and short the R6 pads together.
- To make the device compatible with the 3.3V BBB, remove R2 and R3. If you plan to use the square wave output, remove R8 too.
- Carefully solder the body of the crystal to the ground pad underneath it. Do this rapidly so you don’t overheat the crystal.
Connecting to the Beaglebone
Refer to one of the many Beaglebone Black pinout diagrams available on the web.
- Connect VCC to P9-05
- Connect GND to P9-01
- Connect SCL to P9-19
- Connect SDA to P9-20
Note that the I2C pins on the BBB are for I2C-2. This may be different on other devices, which would change many things below.
Test the hardware
You can test your work so far by running this command on the BBB:
i2cdetect -y -r 2
If the RTC is wired correctly and is communicating properly, you’ll see this output indicating that there’s a device at address 0x68:
Software
As I mentioned earlier, the challenge with setting up the RTC is to do it in a way that survives reboots and doesn’t require further manual intervention. Most of the following instructions came from Mike Kazantsev’s excellent blog post with a few details filled in or tweaked for my specific environment. He wrote some great technical explanations which I won’t attempt to duplicate here; if you want to know why the following steps work, read his post.
Add the RTC to the device tree
To make the kernel aware of the RTC device and to have it enabled at boot, we need to add it to the device tree. Create a file named i2c2-rtc-ds1307.dts in your home folder with this content:
/dts-v1/; /plugin/; /* dtc -O dtb -o /lib/firmware/BB-RTC-02-00A0.dtbo -b0 i2c2-rtc-ds3231.dts */ /* bone_capemgr.enable_partno=BB-RTC-02 */ /* https://github.com/beagleboard/bb.org-overlays */ / { compatible = "ti,beaglebone", "ti,beaglebone-black", "ti,beaglebone-green"; part-number = "BB-RTC-02"; version = "00A0"; fragment@0 { target = ; __overlay__ { pinctrl-names = "default"; pinctrl-0 = ; status = "okay"; clock-frequency = ; #address-cells = ; #size-cells = ; rtc: rtc@68 { compatible = "dallas,ds1307"; reg = ; }; }; }; };
Next, run this command to compile the overlay file and place the resulting overlay in your firmware directory:
sudo dtc -O dtb -o /lib/firmware/BB-RTC-02-00A0.dtbo -b0 i2c2-rtc-ds3231.dts
You may see a warning during compilation but it appears to be benign.
Now we need to tell the kernel to load that device overlay on boot. Edit /boot/uEnv.txt and find the line that says, “###Custom Cape”. Directly below that line, enable the example overlay line and make it look like this:
###Custom Cape dtb_overlay=/lib/firmware/BB-RTC-02-00A0.dtbo
Now reboot and run this command:
ls -al /dev/rtc*
You should see this output:
Notice that we now have RTC0 and RTC1 devices. RTC0 is the built-in hardware clock in the BBB but it has no battery backup. RTC1 is the DS1307 that we connected to the BBB, so now we have two hardware clocks available. We’re not done, though, because the /dev/rtc symlink is pointing to RTC0, not RTC1.
Make our RTC the default
We can add a udev rule that will symlink to our battery-backed RTC instead. Create a new file named /etc/udev/rules.d/55-i2c-rtc.rules with this text:
SUBSYSTEM=="rtc", KERNEL=="rtc1", SYMLINK+="rtc", OPTIONS+="link_priority=10", TAG+="systemd"
Now reboot and run this command:
ls -al /dev/rtc*
You should see this output:
Now the /dev/rtc symlink points to our DS1307 RTC.
Set system time from RTC
Now we have our new RTC set up but the system time still won’t be set on boot. The systemd-timesyncd service is responsible for time syncing in this build of Debian. As it syncs the time from a time server it writes that time to disk. If the device reboots and has no internet connection, systemd-timesyncd will see that the system time is unset and will load the last-synced time from disk and use that to set the system time (which wouldn’t be correct, but at least closer than a totally unset time). We need to set the system time from our RTC before systemd-timesyncd checks it, and we can do that by creating a new systemd service.
Create a file named /etc/systemd/system/i2c-rtc.service with this text:
[Unit] ConditionCapability=CAP_SYS_TIME ConditionVirtualization=!container DefaultDependencies=no Wants=dev-rtc.device After=dev-rtc.device Before=systemd-timesyncd.service ntpd.service chrony.service [Service] Type=oneshot CapabilityBoundingSet=CAP_SYS_TIME PrivateTmp=yes ProtectSystem=full ProtectHome=yes DeviceAllow=/dev/rtc rw DevicePolicy=closed ExecStart=/sbin/hwclock -f /dev/rtc --hctosys [Install] WantedBy=time-sync.target
Then run this command to enable the service to start on boot:
sudo systemctl enable i2c-rtc
Set the RTC from system time
As mentioned above, systemd-timesyncd will regularly correct the system time from a time server whenever you have an internet connection. I thought that systemd-timesyncd would also update the default hardware clock at the same time, but it doesn’t. Turns out it’s the kernel’s job to regularly copy the system time to the hardware clock, but the kernel actually targets /dev/rtc0 directly rather than using the /dev/rtc symlink, and this is set as a compilation option, not a runtime option, so it can’t be easily changed. Instead of recompiling the kernel we’re just going to add another systemd service which will regularly update our RTC with the correct time. This is particularly important since the DS1307 isn’t a very good clock and will drift significantly in only a few days.
First create a service file named /etc/systemd/system/systohc.service with this text:
[Unit] ConditionCapability=CAP_SYS_TIME ConditionVirtualization=!container DefaultDependencies=no Wants=dev-rtc.device After=systemd-timesyncd.service [Service] Type=oneshot CapabilityBoundingSet=CAP_SYS_TIME PrivateTmp=yes ProtectSystem=full ProtectHome=yes DeviceAllow=/dev/rtc rw DevicePolicy=closed ExecStart=/sbin/hwclock -f /dev/rtc --systohc
We want this service to run periodically to keep the hardware clock updated, so create a file named /etc/systemd/system/systohc.timer with this text:
[Unit] [Timer] OnUnitActiveSec=1h OnBootSec=10s [Install] WantedBy=timers.target
Now enable the timer to start on boot with this command:
sudo systemctl enable systohc.timer
At this point we’re done with the software configuration, but don’t reboot yet because we want to do some testing.
Testing
To test that everything is working as expected, first set the DS1307 clock to some obviously incorrect date using this command:
sudo hwclock -f /dev/rtc1 –set –date=”2017-01-01 00:00:01″ –utc
Next, physically unplug any internet connection (wifi/ethernet) from the BBB and reboot. When the BBB comes back up without an internet connection, running date at the command line should show you the incorrect date you set above. This tells us that the date was loaded from the DS1307 on boot, which is what we want.
Now reconnect your internet connection, wait a minute or two, then check the system clock and both hardware clocks with this command:
date && sudo /sbin/hwclock -r -f /dev/rtc0 && sudo /sbin/hwclock -r -f /dev/rtc1
This will print out three date/time strings and they should all be the same (to within a few seconds since the commands to print each one are running sequentially). This tells us that the system clock was synced from the time server and the updated time was also copied to both hardware clocks, which is what we want.
If you walk through these instructions and find errors or clarifications, leave a comment below.
Hi,
First of all thank you for this guide.
I want to use different rtc (PCF2129At) where can ı find .dts file of this rtc ?
I think you need the following line the file /etc/systemd/system/systohc.timer to tell the timer which service to run:
Unit=systohc.service
I use a DS3231. The module can be read via I2C on the correct address. I am able to create the .dtb0 file. I inserted the line in the uEnv.txt, but after the reboot I can’t see the rtc1 additional clock. If I use the command echo ds3231 0x68 >/sys/bus/i2c/devices/i2c-2/new_device (I used the same name also on the .dts file), I have the correct output to “ls -al /dev/rtc*” command, but it least until the next reboot.
Can you advise me what to look for? Thank you very much!
PS: I use a Debian GNU/Linux 8 (jessie)
hi, on Debain 9.5 (@ 11.2018) it’s enough to use code from RTC cape:
/opt/source/bb.org-overlays/src/arm/BB-I2C2-RTC-DS1338.dts
it swaps rtc0 with rtc1 so there’s no need to do it manually, and automatic time update of hwclock over internet works fine for me without any additional scripts. If you wane you can set the time manually using hwclock –set –date “dd mmm yyyy 00:00”
the content of dts file is here:
https://github.com/beagleboard/bb.org-overlays/blob/master/src/arm/BB-I2C2-RTC-DS1338.dts
I’ve exchanged 1338 with 1307 and recompile it as -DS1307