pwm-hibvt.txt 721 B

123456789101112131415161718192021
  1. Hisilicon PWM controller
  2. Required properties:
  3. -compatible: should contain one SoC specific compatible string
  4. The SoC specific strings supported including:
  5. "hisilicon,hi3516cv300-pwm"
  6. "hisilicon,hi3519v100-pwm"
  7. - reg: physical base address and length of the controller's registers.
  8. - clocks: phandle and clock specifier of the PWM reference clock.
  9. - resets: phandle and reset specifier for the PWM controller reset.
  10. - #pwm-cells: Should be 3. See pwm.txt in this directory for a description of
  11. the cells format.
  12. Example:
  13. pwm: pwm@12130000 {
  14. compatible = "hisilicon,hi3516cv300-pwm";
  15. reg = <0x12130000 0x10000>;
  16. clocks = <&crg_ctrl HI3516CV300_PWM_CLK>;
  17. resets = <&crg_ctrl 0x38 0>;
  18. #pwm-cells = <3>;
  19. };