repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
16 lines
354 B
Plaintext
16 lines
354 B
Plaintext
DS3232 Real-Time Clock with SRAM
|
|
|
|
The RTC driver provides time and date functionality. Also read and write
|
|
functions are provided that can be used to access the SRAM memory.
|
|
|
|
Required properties:
|
|
- compatible : should contain "dallas,ds3232"
|
|
- reg : the I2C RTC address
|
|
|
|
Example:
|
|
|
|
rtc@68 {
|
|
compatible = "dallas,ds3232";
|
|
reg = <0x68>;
|
|
};
|