sh_eth: fix EESIPR values for SH77{34|63}
[linux/fpc-iii.git] / Documentation / devicetree / bindings / rtc / haoyu,hym8563.txt
bloba8934fe2ab4c19c8186e0bad5dbca2a1b29f1579
1 Haoyu Microelectronics HYM8563 Real Time Clock
3 The HYM8563 provides basic rtc and alarm functionality
4 as well as a clock output of up to 32kHz.
6 Required properties:
7 - compatible: should be: "haoyu,hym8563"
8 - reg: i2c address
9 - #clock-cells: the value should be 0
11 Optional properties:
12 - clock-output-names: From common clock binding
13 - interrupts: rtc alarm/event interrupt
15 Example:
17 hym8563: hym8563@51 {
18         compatible = "haoyu,hym8563";
19         reg = <0x51>;
21         interrupts = <13 IRQ_TYPE_EDGE_FALLING>;
23         #clock-cells = <0>;
26 device {
27 ...
28         clocks = <&hym8563>;
29 ...