diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2017-06-15 23:33:45 +0200 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-06-16 12:07:10 -0700 |
commit | 192ec775f5b1530b4394de6236aa72f1dc69422e (patch) | |
tree | 572e762586e03840601a270df62ac7b80806a199 /arch/arm | |
parent | 5239e0504826d4b2ca7c225cc32d1a1a9e755453 (diff) | |
download | linux-rt-192ec775f5b1530b4394de6236aa72f1dc69422e.tar.gz |
ARM: dts: meson8: add the PWM_E and PWM_F pins
This adds the definition of the PWM_E (CBUS) and PWM_F (AOBUS) to
meson8.dtsi, allowing devices to use them. PWM_E can be used on some
devices to generate the 32.768kHz clock for the SDIO wifi module, while
PWM_F can be used to control the power LED.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/meson8.dtsi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/meson8.dtsi b/arch/arm/boot/dts/meson8.dtsi index c5d73b999773..5ff7903964c6 100644 --- a/arch/arm/boot/dts/meson8.dtsi +++ b/arch/arm/boot/dts/meson8.dtsi @@ -123,6 +123,13 @@ function = "remote"; }; }; + + pwm_f_ao_pins: pwm-f-ao { + mux { + groups = "pwm_f_ao"; + function = "pwm_f_ao"; + }; + }; }; }; @@ -168,6 +175,13 @@ function = "ethernet"; }; }; + + pwm_e_pins: pwm-e { + mux { + groups = "pwm_e"; + function = "pwm_e"; + }; + }; }; }; |