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