Skip to content

Commit 4d26e9a

Browse files
aford173tmlind
authored andcommitted
ARM: dts: logicpd-som-lv-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 but 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: 5cb8b0f ("ARM: dts: Move most of logicpd-som-lv-37xx-devkit.dts to logicpd-som-lv-baseboard.dtsi") Signed-off-by: Adam Ford <aford173@gmail.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
1 parent d7dfee6 commit 4d26e9a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

arch/arm/boot/dts/logicpd-som-lv-baseboard.dtsi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151

5252
&mcbsp2 {
5353
status = "okay";
54+
pinctrl-names = "default";
55+
pinctrl-0 = <&mcbsp2_pins>;
5456
};
5557

5658
&charger {

0 commit comments

Comments
 (0)