pcf8563.txt 447 B

12345678910111213141516171819202122232425
  1. * Philips PCF8563/Epson RTC8564 Real Time Clock
  2. Philips PCF8563/Epson RTC8564 Real Time Clock
  3. Required properties:
  4. see: Documentation/devicetree/bindings/i2c/trivial-devices.txt
  5. Optional property:
  6. - #clock-cells: Should be 0.
  7. - clock-output-names:
  8. overwrite the default clock name "pcf8563-clkout"
  9. Example:
  10. pcf8563: pcf8563@51 {
  11. compatible = "nxp,pcf8563";
  12. reg = <0x51>;
  13. #clock-cells = <0>;
  14. };
  15. device {
  16. ...
  17. clocks = <&pcf8563>;
  18. ...
  19. };