diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-09 19:50:30 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-27 11:10:01 +0200 |
commit | 2340c646e6a5da658e114be2f721ff90853588d4 (patch) | |
tree | df9744d2344e71e8c5d1b75c3e1528bc474313fe /target/linux/brcm2708/patches-4.19/950-0715-overlays-audremap-Support-GPIOs-18-19.patch | |
parent | 81d0da118694feb874f992093063a2852285d194 (diff) | |
download | upstream-2340c646e6a5da658e114be2f721ff90853588d4.tar.gz upstream-2340c646e6a5da658e114be2f721ff90853588d4.tar.bz2 upstream-2340c646e6a5da658e114be2f721ff90853588d4.zip |
brcm2708: update to latest patches from RPi foundation
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.19/950-0715-overlays-audremap-Support-GPIOs-18-19.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.19/950-0715-overlays-audremap-Support-GPIOs-18-19.patch | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/target/linux/brcm2708/patches-4.19/950-0715-overlays-audremap-Support-GPIOs-18-19.patch b/target/linux/brcm2708/patches-4.19/950-0715-overlays-audremap-Support-GPIOs-18-19.patch deleted file mode 100644 index 14437d7ca0..0000000000 --- a/target/linux/brcm2708/patches-4.19/950-0715-overlays-audremap-Support-GPIOs-18-19.patch +++ /dev/null @@ -1,68 +0,0 @@ -From abd2aaea7bbe687aadff3f1dad14ea5458be2d00 Mon Sep 17 00:00:00 2001 -From: Phil Elwell <phil@raspberrypi.org> -Date: Tue, 23 Jul 2019 12:55:07 +0100 -Subject: [PATCH 715/725] overlays: audremap: Support GPIOs 18 & 19 - -PWM audio can also be used on GPIOs 18 and 19, so add the pins_18_19 -parameter to select that location. pins_12_13 explicitly chooses GPIOs -12 and 13, although this is the default behaviour so is there only for -completeness. - -See: https://github.com/raspberrypi/firmware/issues/1178 - -Signed-off-by: Phil Elwell <phil@raspberrypi.org> ---- - arch/arm/boot/dts/overlays/README | 4 +++- - arch/arm/boot/dts/overlays/audremap-overlay.dts | 16 ++++++++++++++++ - 2 files changed, 19 insertions(+), 1 deletion(-) - ---- a/arch/arm/boot/dts/overlays/README -+++ b/arch/arm/boot/dts/overlays/README -@@ -475,12 +475,14 @@ Params: <None> - - - Name: audremap --Info: Switches PWM sound output to pins 12 (Right) & 13 (Left) -+Info: Switches PWM sound output to GPIOs on the 40-pin header - Load: dtoverlay=audremap,<param>=<val> - Params: swap_lr Reverse the channel allocation, which will also - swap the audio jack outputs (default off) - enable_jack Don't switch off the audio jack output - (default off) -+ pins_12_13 Select GPIOs 12 & 13 (default) -+ pins_18_19 Select GPIOs 18 & 19 - - - Name: balena-fin ---- a/arch/arm/boot/dts/overlays/audremap-overlay.dts -+++ b/arch/arm/boot/dts/overlays/audremap-overlay.dts -@@ -7,13 +7,29 @@ - fragment@0 { - target = <&audio_pins>; - frag0: __overlay__ { -+ }; -+ }; -+ -+ fragment@1 { -+ target = <&audio_pins>; -+ __overlay__ { - brcm,pins = < 12 13 >; - brcm,function = < 4 >; /* alt0 alt0 */ - }; - }; - -+ fragment@2 { -+ target = <&audio_pins>; -+ __dormant__ { -+ brcm,pins = < 18 19 >; -+ brcm,function = < 2 >; /* alt5 alt5 */ -+ }; -+ }; -+ - __overrides__ { - swap_lr = <&frag0>, "swap_lr?"; - enable_jack = <&frag0>, "enable_jack?"; -+ pins_12_13 = <0>,"+1-2"; -+ pins_18_19 = <0>,"-1+2"; - }; - }; |