pwm-at91.txt 425 B

12345678910111213141516
  1. Microchip AT91 PWM controller for SAMA5D2
  2. Required properties:
  3. - compatible: Should be "atmel,sama5d2-pwm"
  4. - reg: Physical base address and length of the controller's registers.
  5. - clocks: Should contain a clock identifier for the PWM's parent clock.
  6. - #pwm-cells: Should be 3.
  7. Example:
  8. pwm0: pwm@f802c000 {
  9. compatible = "atmel,sama5d2-pwm";
  10. reg = <0xf802c000 0x4000>;
  11. clocks = <&pwm_clk>;
  12. #pwm-cells = <3>;
  13. };