cpufreq: fix overflow in cpufreq_table_find_index_dl()
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / clock / maxim,max77802.txt
1 Binding for Maxim MAX77802 32k clock generator block
2
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.
5
6 The MAX77802 contains two 32.768khz clock outputs that can be controlled
7 (gated/ungated) over I2C.
8
9 Following properties should be present in main device node of the MFD chip.
10
11 Required properties:
12 - #clock-cells: From common clock binding; shall be set to 1.
13
14 Optional properties:
15 - clock-output-names: From common clock binding.
16
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.
21
22 Clocks are defined as preprocessor macros in dt-bindings/clock/maxim,max77802.h
23 header and can be used in device tree sources.
24
25 Example: Node of the MFD chip
26
27         max77802: max77802@09 {
28                 compatible = "maxim,max77802";
29                 interrupt-parent = <&wakeup_eint>;
30                 interrupts = <26 0>;
31                 reg = <0x09>;
32                 #clock-cells = <1>;
33
34                 /* ... */
35         };
36
37 Example: Clock consumer node
38
39         foo@0 {
40                 compatible = "bar,foo";
41                 /* ... */
42                 clock-names = "my-clock";
43                 clocks = <&max77802 MAX77802_CLK_32K_AP>;
44         };