Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22 lines
612 B
Plaintext
22 lines
612 B
Plaintext
* Microchip PIC32 Real Time Clock and Calendar
|
|
|
|
The RTCC keeps time in hours, minutes, and seconds, and one half second. It
|
|
provides a calendar in weekday, date, month, and year. It also provides a
|
|
configurable alarm.
|
|
|
|
Required properties:
|
|
- compatible: should be: "microchip,pic32mzda-rtc"
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- interrupts: RTC alarm/event interrupt
|
|
- clocks: clock phandle
|
|
|
|
Example:
|
|
|
|
rtc: rtc@1f8c0000 {
|
|
compatible = "microchip,pic32mzda-rtc";
|
|
reg = <0x1f8c0000 0x60>;
|
|
interrupts = <166 IRQ_TYPE_EDGE_RISING>;
|
|
clocks = <&PBCLK6>;
|
|
};
|