Skip to content

Commit d7dfee6

Browse files
aford173tmlind
authored andcommitted
ARM: dts: logicpd-torpedo-baseboard: Fix broken audio
Older versions of U-Boot would pinmux the whole board, but as the bootloader got updated, it started to only pinmux the pins it needed, and expected Linux to configure what it needed. Unfortunately this caused an issue with the audio, because the mcbsp2 pins were configured in the device tree, they were never referenced by the driver. When U-Boot stopped muxing the audio pins, the audio died. This patch adds the references to the associate the pin controller with the mcbsp2 driver which makes audio operate again. Fixes: 739f85b ("ARM: dts: Move most of logicpd-torpedo-37xx-devkit to logicpd-torpedo-baseboard") Signed-off-by: Adam Ford <aford173@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
1 parent a58cfdb commit d7dfee6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

arch/arm/boot/dts/logicpd-torpedo-baseboard.dtsi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@
8181
};
8282

8383
&mcbsp2 {
84+
pinctrl-names = "default";
85+
pinctrl-0 = <&mcbsp2_pins>;
8486
status = "okay";
8587
};
8688

0 commit comments

Comments
 (0)