blob: 3182126189bfb48b93dd7e004c2c11b64cc00ba7 [file] [log] [blame]
Beniamino Galvanieae266a2014-06-21 16:22:07 +02001Rockchip PWM controller
2
3Required properties:
4 - compatible: should be "rockchip,rk2928-pwm"
5 - reg: physical base address and length of the controller's registers
6 - clocks: phandle and clock specifier of the PWM reference clock
7 - #pwm-cells: should be 2. See pwm.txt in this directory for a
8 description of the cell format.
9
10Example:
11
12 pwm0: pwm@20030000 {
13 compatible = "rockchip,rk2928-pwm";
14 reg = <0x20030000 0x10>;
15 clocks = <&cru PCLK_PWM01>;
16 #pwm-cells = <2>;
17 };