dt-bindings: pwm: Update bindings for MT7629 SoC
[linux-2.6-block.git] / Documentation / devicetree / bindings / pwm / pwm-mediatek.txt
CommitLineData
2ab15f58
JC
1MediaTek PWM controller
2
3Required properties:
4 - compatible: should be "mediatek,<name>-pwm":
62843a61
ZM
5 - "mediatek,mt2712-pwm": found on mt2712 SoC.
6 - "mediatek,mt7622-pwm": found on mt7622 SoC.
2ab15f58 7 - "mediatek,mt7623-pwm": found on mt7623 SoC.
935be8e0 8 - "mediatek,mt7628-pwm": found on mt7628 SoC.
1c00ad6e 9 - "mediatek,mt7629-pwm", "mediatek,mt7622-pwm": found on mt7629 SoC.
4b046497 10 - "mediatek,mt8516-pwm": found on mt8516 SoC.
2ab15f58
JC
11 - reg: physical base address and length of the controller's registers.
12 - #pwm-cells: must be 2. See pwm.txt in this directory for a description of
13 the cell format.
14 - clocks: phandle and clock specifier of the PWM reference clock.
935be8e0
JC
15 - clock-names: must contain the following, except for MT7628 which
16 has no clocks
2ab15f58
JC
17 - "top": the top clock generator
18 - "main": clock used by the PWM core
62843a61
ZM
19 - "pwm1-8": the eight per PWM clocks for mt2712
20 - "pwm1-6": the six per PWM clocks for mt7622
21 - "pwm1-5": the five per PWM clocks for mt7623
2ab15f58
JC
22 - pinctrl-names: Must contain a "default" entry.
23 - pinctrl-0: One property must exist for each entry in pinctrl-names.
24 See pinctrl/pinctrl-bindings.txt for details of the property values.
25
26Example:
27 pwm0: pwm@11006000 {
28 compatible = "mediatek,mt7623-pwm";
29 reg = <0 0x11006000 0 0x1000>;
30 #pwm-cells = <2>;
31 clocks = <&topckgen CLK_TOP_PWM_SEL>,
32 <&pericfg CLK_PERI_PWM>,
33 <&pericfg CLK_PERI_PWM1>,
34 <&pericfg CLK_PERI_PWM2>,
35 <&pericfg CLK_PERI_PWM3>,
36 <&pericfg CLK_PERI_PWM4>,
37 <&pericfg CLK_PERI_PWM5>;
38 clock-names = "top", "main", "pwm1", "pwm2",
39 "pwm3", "pwm4", "pwm5";
40 pinctrl-names = "default";
41 pinctrl-0 = <&pwm0_pins>;
42 };