pcf8563.txt 457 B

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