arm: dts: bcm283x: Allow UARTs to work before relocation

At present the pinctrl nodes are not enabled in pre-relocation U-Boot so
the UARTs do not correctly select the pinconfig to enable the UART pins.
Fix this so that the U-Boot banner is printed.

This fixes serial output on rpi_3b_32b with the following config.txt
options:

   enable_uart=1
   gpu_freq=250

Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 9821636b64 (bcm2835_pinctrl: Probe pre-reloc)
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
This commit is contained in:
Simon Glass 2020-03-22 21:15:52 -06:00 committed by Matthias Brugger
parent 57805f2270
commit 6cbb41432d
1 changed files with 8 additions and 0 deletions

View File

@ -19,3 +19,11 @@
&gpio {
u-boot,dm-pre-reloc;
};
&uart0_gpio14 {
u-boot,dm-pre-reloc;
};
&uart1_gpio14 {
u-boot,dm-pre-reloc;
};