brintos

brintos / linux-shallow public Read only

0
0
Text · 612 B · 180b714 Raw
22 lines · plain
1* Microchip PIC32 Real Time Clock and Calendar2 3The RTCC keeps time in hours, minutes, and seconds, and one half second. It4provides a calendar in weekday, date, month, and year. It also provides a5configurable alarm.6 7Required properties:8- compatible: should be: "microchip,pic32mzda-rtc"9- reg: physical base address of the controller and length of memory mapped10    region.11- interrupts: RTC alarm/event interrupt12- clocks: clock phandle13 14Example:15 16	rtc: rtc@1f8c0000 {17		compatible = "microchip,pic32mzda-rtc";18		reg = <0x1f8c0000 0x60>;19		interrupts = <166 IRQ_TYPE_EDGE_RISING>;20		clocks = <&PBCLK6>;21	};22