nvidia,tegra20-pwm.txt 762 B

1234567891011121314151617181920212223242526
  1. Tegra SoC PWFM controller
  2. Required properties:
  3. - compatible: should be one of:
  4. - "nvidia,tegra20-pwm"
  5. - "nvidia,tegra30-pwm"
  6. - reg: physical base address and length of the controller's registers
  7. - #pwm-cells: should be 2. See pwm.txt in this directory for a description of
  8. the cells format.
  9. - clocks: Must contain one entry, for the module clock.
  10. See ../clocks/clock-bindings.txt for details.
  11. - resets: Must contain an entry for each entry in reset-names.
  12. See ../reset/reset.txt for details.
  13. - reset-names: Must include the following entries:
  14. - pwm
  15. Example:
  16. pwm: pwm@7000a000 {
  17. compatible = "nvidia,tegra20-pwm";
  18. reg = <0x7000a000 0x100>;
  19. #pwm-cells = <2>;
  20. clocks = <&tegra_car 17>;
  21. resets = <&tegra_car 17>;
  22. reset-names = "pwm";
  23. };