pwm-hibvt.txt 782 B

1234567891011121314151617181920212223
  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. "hisilicon,hi3559v100-shub-pwm"
  8. "hisilicon,hi3559v100-pwm
  9. - reg: physical base address and length of the controller's registers.
  10. - clocks: phandle and clock specifier of the PWM reference clock.
  11. - resets: phandle and reset specifier for the PWM controller reset.
  12. - #pwm-cells: Should be 3. See pwm.yaml in this directory for a description of
  13. the cells format.
  14. Example:
  15. pwm: pwm@12130000 {
  16. compatible = "hisilicon,hi3516cv300-pwm";
  17. reg = <0x12130000 0x10000>;
  18. clocks = <&crg_ctrl HI3516CV300_PWM_CLK>;
  19. resets = <&crg_ctrl 0x38 0>;
  20. #pwm-cells = <3>;
  21. };