Linux 4.1.18
[linux/fpc-iii.git] / Documentation / devicetree / bindings / clock / maxim,max77802.txt
blobc6dc7835f06ccce77b6c497271ae5ab2ccb46c7b
1 Binding for Maxim MAX77802 32k clock generator block
3 This is a part of device tree bindings of MAX77802 multi-function device.
4 More information can be found in bindings/mfd/max77802.txt file.
6 The MAX77802 contains two 32.768khz clock outputs that can be controlled
7 (gated/ungated) over I2C.
9 Following properties should be present in main device node of the MFD chip.
11 Required properties:
12 - #clock-cells: From common clock binding; shall be set to 1.
14 Optional properties:
15 - clock-output-names: From common clock binding.
17 Each clock is assigned an identifier and client nodes can use this identifier
18 to specify the clock which they consume. Following indices are allowed:
19      - 0: 32khz_ap clock,
20      - 1: 32khz_cp clock.
22 Clocks are defined as preprocessor macros in dt-bindings/clock/maxim,max77802.h
23 header and can be used in device tree sources.
25 Example: Node of the MFD chip
27         max77802: max77802@09 {
28                 compatible = "maxim,max77802";
29                 interrupt-parent = <&wakeup_eint>;
30                 interrupts = <26 0>;
31                 reg = <0x09>;
32                 #clock-cells = <1>;
34                 /* ... */
35         };
37 Example: Clock consumer node
39         foo@0 {
40                 compatible = "bar,foo";
41                 /* ... */
42                 clock-names = "my-clock";
43                 clocks = <&max77802 MAX77802_CLK_32K_AP>;
44         };