Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / pwm / ingenic,jz47xx-pwm.txt
1 Ingenic JZ47xx PWM Controller
2 =============================
3
4 Required properties:
5 - compatible: One of:
6   * "ingenic,jz4740-pwm"
7   * "ingenic,jz4770-pwm"
8   * "ingenic,jz4780-pwm"
9 - #pwm-cells: Should be 3. See pwm.txt in this directory for a description
10   of the cells format.
11 - clocks : phandle to the external clock.
12 - clock-names : Should be "ext".
13
14
15 Example:
16
17         pwm: pwm@10002000 {
18                 compatible = "ingenic,jz4740-pwm";
19                 reg = <0x10002000 0x1000>;
20
21                 #pwm-cells = <3>;
22
23                 clocks = <&ext>;
24                 clock-names = "ext";
25         };