faraday,ftrtc010.txt 811 B

12345678910111213141516171819202122232425262728
  1. * Faraday Technology FTRTC010 Real Time Clock
  2. This RTC appears in for example the Storlink Gemini family of
  3. SoCs.
  4. Required properties:
  5. - compatible : Should be one of:
  6. "faraday,ftrtc010"
  7. "cortina,gemini-rtc", "faraday,ftrtc010"
  8. Optional properties:
  9. - clocks: when present should contain clock references to the
  10. PCLK and EXTCLK clocks. Faraday calls the later CLK1HZ and
  11. says the clock should be 1 Hz, but implementers actually seem
  12. to choose different clocks here, like Cortina who chose
  13. 32768 Hz (a typical low-power clock).
  14. - clock-names: should name the clocks "PCLK" and "EXTCLK"
  15. respectively.
  16. Examples:
  17. rtc@45000000 {
  18. compatible = "cortina,gemini-rtc";
  19. reg = <0x45000000 0x100>;
  20. interrupts = <17 IRQ_TYPE_LEVEL_HIGH>;
  21. clocks = <&foo 0>, <&foo 1>;
  22. clock-names = "PCLK", "EXTCLK";
  23. };