blob: daf88265df32391004a72238c5c39061d707eb84 [file] [log] [blame]
Lee Jones5cb69742015-04-09 15:47:32 +01001STMicroelectronics Low Power Controller (LPC) - RTC
2===================================================
3
Lee Jonesc74a06d2015-05-12 13:58:16 +01004LPC currently supports Watchdog OR Real Time Clock OR Clocksource
5functionality.
Lee Jones5cb69742015-04-09 15:47:32 +01006
7[See: ../watchdog/st_lpc_wdt.txt for Watchdog options]
Lee Jonesc74a06d2015-05-12 13:58:16 +01008[See: ../timer/st,stih407-lpc for Clocksource options]
Lee Jones5cb69742015-04-09 15:47:32 +01009
10Required properties
11
Lee Jonesc74a06d2015-05-12 13:58:16 +010012- compatible : Must be: "st,stih407-lpc"
Lee Jones5cb69742015-04-09 15:47:32 +010013- reg : LPC registers base address + size
14- interrupts : LPC interrupt line number and associated flags
15- clocks : Clock used by LPC device (See: ../clock/clock-bindings.txt)
Lee Jonesc74a06d2015-05-12 13:58:16 +010016- st,lpc-mode : The LPC can run either one of three modes:
17 ST_LPC_MODE_RTC [0]
18 ST_LPC_MODE_WDT [1]
19 ST_LPC_MODE_CLKSRC [2]
20 One (and only one) mode must be selected.
Lee Jones5cb69742015-04-09 15:47:32 +010021
22Example:
23 lpc@fde05000 {
24 compatible = "st,stih407-lpc";
25 reg = <0xfde05000 0x1000>;
26 clocks = <&clk_s_d3_flexgen CLK_LPC_0>;
27 st,lpc-mode = <ST_LPC_MODE_RTC>;
28 };