diff options
| author | Andrew Turner <andrew@FreeBSD.org> | 2016-01-28 20:21:15 +0000 |
|---|---|---|
| committer | Andrew Turner <andrew@FreeBSD.org> | 2016-01-28 20:21:15 +0000 |
| commit | 235ad806ee815395bce54dc1b0ce1c06cd29b44a (patch) | |
| tree | 41cbd9055ad0d6dfa04377df1bb51f3c3f3948e2 /Bindings/rtc/pcf8563.txt | |
| parent | da75c2cc5808a45edc76752ba495dcc5dcd4346c (diff) | |
Notes
Diffstat (limited to 'Bindings/rtc/pcf8563.txt')
| -rw-r--r-- | Bindings/rtc/pcf8563.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Bindings/rtc/pcf8563.txt b/Bindings/rtc/pcf8563.txt new file mode 100644 index 0000000000000..72f6d2c9665e4 --- /dev/null +++ b/Bindings/rtc/pcf8563.txt @@ -0,0 +1,25 @@ +* 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>; +... +}; |
