haoyu,hym8563.txt 565 B

123456789101112131415161718192021222324252627282930
  1. Haoyu Microelectronics HYM8563 Real Time Clock
  2. The HYM8563 provides basic rtc and alarm functionality
  3. as well as a clock output of up to 32kHz.
  4. Required properties:
  5. - compatible: should be: "haoyu,hym8563"
  6. - reg: i2c address
  7. - #clock-cells: the value should be 0
  8. Optional properties:
  9. - clock-output-names: From common clock binding
  10. - interrupts: rtc alarm/event interrupt
  11. Example:
  12. hym8563: hym8563@51 {
  13. compatible = "haoyu,hym8563";
  14. reg = <0x51>;
  15. interrupts = <13 IRQ_TYPE_EDGE_FALLING>;
  16. #clock-cells = <0>;
  17. };
  18. device {
  19. ...
  20. clocks = <&hym8563>;
  21. ...
  22. };