mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 18:41:48 +00:00
a39a6405d5
Add the clkout output clk to the common clock framework. Disable the CLKOUT of the RTC after power-up. After power-up/reset of the RTC, CLKOUT is enabled by default, with CLKOUT enabled the RTC chip has 2-3 times higher power consumption. Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
26 lines
447 B
Plaintext
26 lines
447 B
Plaintext
* Philips PCF8563/Epson RTC8564 Real Time Clock
|
|
|
|
Philips PCF8563/Epson RTC8564 Real Time Clock
|
|
|
|
Required properties:
|
|
see: Documentation/devicetree/bindings/i2c/trivial-devices.txt
|
|
|
|
Optional property:
|
|
- #clock-cells: Should be 0.
|
|
- clock-output-names:
|
|
overwrite the default clock name "pcf8563-clkout"
|
|
|
|
Example:
|
|
|
|
pcf8563: pcf8563@51 {
|
|
compatible = "nxp,pcf8563";
|
|
reg = <0x51>;
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
device {
|
|
...
|
|
clocks = <&pcf8563>;
|
|
...
|
|
};
|