pwm-rockchip.txt 674 B

123456789101112131415161718192021
  1. Rockchip PWM controller
  2. Required properties:
  3. - compatible: should be "rockchip,<name>-pwm"
  4. "rockchip,rk2928-pwm": found on RK29XX,RK3066 and RK3188 SoCs
  5. "rockchip,rk3288-pwm": found on RK3288 SoC
  6. "rockchip,vop-pwm": found integrated in VOP on RK3288 SoC
  7. - reg: physical base address and length of the controller's registers
  8. - clocks: phandle and clock specifier of the PWM reference clock
  9. - #pwm-cells: must be 2 (rk2928) or 3 (rk3288). See pwm.txt in this directory
  10. for a description of the cell format.
  11. Example:
  12. pwm0: pwm@20030000 {
  13. compatible = "rockchip,rk2928-pwm";
  14. reg = <0x20030000 0x10>;
  15. clocks = <&cru PCLK_PWM01>;
  16. #pwm-cells = <2>;
  17. };