Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| /dts-v1/; | |
| /plugin/; | |
| /* | |
| Legal pin,function combinations for each channel: | |
| PWM0: 12,4(Alt0) 18,2(Alt5) 40,4(Alt0) 52,5(Alt1) | |
| PWM1: 13,4(Alt0) 19,2(Alt5) 41,4(Alt0) 45,4(Alt0) 53,5(Alt1) | |
| N.B.: | |
| 1) Pin 18 is the only one available on all platforms, and | |
| it is the one used by the I2S audio interface. | |
| Pins 12 and 13 might be better choices on an A+, B+ or Pi2. | |
| 2) The onboard analogue audio output uses both PWM channels. | |
| 3) So be careful mixing audio and PWM. | |
| */ | |
| / { | |
| fragment@0 { | |
| target = <&gpio>; | |
| __overlay__ { | |
| pwm_pins: pwm_pins { | |
| brcm,pins = <18>; | |
| brcm,function = <2>; /* Alt5 */ | |
| }; | |
| }; | |
| }; | |
| fragment@1 { | |
| target = <&pwm>; | |
| __overlay__ { | |
| pinctrl-names = "default"; | |
| pinctrl-0 = <&pwm_pins>; | |
| status = "okay"; | |
| }; | |
| }; | |
| fragment@2 { | |
| target = <&clk_pwm>; | |
| frag2: __overlay__ { | |
| clock-frequency = <100000000>; | |
| }; | |
| }; | |
| __overrides__ { | |
| pin = <&pwm_pins>,"brcm,pins:0"; | |
| func = <&pwm_pins>,"brcm,function:0"; | |
| clock = <&frag2>,"clock-frequency:0"; | |
| }; | |
| }; |