diff options
author | Eric Anholt <eric@anholt.net> | 2016-04-13 11:53:34 -0700 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-01-25 13:39:01 +0100 |
commit | 8dfcc858b42f0f96ceb1f64344b6fe03a522b761 (patch) | |
tree | acf55720829274168818d299faa905a2e5422a65 | |
parent | 53e66db17d72374b36b964b7e8fa884de13c4c55 (diff) | |
download | linux-8dfcc858b42f0f96ceb1f64344b6fe03a522b761.tar.gz |
ARM: bcm2385: Don't force pl011 onto pins 14/15.
The firmware hands off to Linux with pins 14/15 configured to a uart,
but on the Raspberry Pi 3 the miniuart is used instead of pl011. When
we reconfigured pinmux to put pl011 on these pins, we ended up with
the pl011 talking to both bluetooth and serial console, so neither
worked.
Signed-off-by: Eric Anholt <eric@anholt.net>
-rw-r--r-- | arch/arm/boot/dts/bcm2835-rpi.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/bcm2835-rpi.dtsi b/arch/arm/boot/dts/bcm2835-rpi.dtsi index 38e6050035bc..0b73f9cd03ff 100644 --- a/arch/arm/boot/dts/bcm2835-rpi.dtsi +++ b/arch/arm/boot/dts/bcm2835-rpi.dtsi @@ -39,7 +39,7 @@ }; alt0: alt0 { - brcm,pins = <4 5 7 8 9 10 11 14 15>; + brcm,pins = <4 5 7 8 9 10 11>; brcm,function = <BCM2835_FSEL_ALT0>; }; }; |