diff options
author | Andre Przywara <andre.przywara@arm.com> | 2020-03-10 12:33:16 +0000 |
---|---|---|
committer | Andre Przywara <andre.przywara@arm.com> | 2020-03-17 12:44:09 +0000 |
commit | 795aefe5e80494018c731cea69e2284140f4abbb (patch) | |
tree | 14486ff3182615e9b8d7e3d59ce72d35f5209d2e /plat/rpi/rpi4/rpi4_bl31_setup.c | |
parent | 0d92745e101b95a19c34dd6e2d1eccc2d9fcb629 (diff) | |
download | trusted-firmware-a-795aefe5e80494018c731cea69e2284140f4abbb.tar.gz |
rpi3: console: Use same "clock-less" setup scheme as RPi4
In the wake of the upcoming unification of the console setup code
between RPi3 and RPi4, extend the "clock-less" setup scheme to the
RPi3. This avoid programming any clocks or baud rate registers,
which makes the port more robust against GPU firmware changes.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Change-Id: Ida83a963bb18a878997e9cbd55f8ceac6a2e1c1f
Diffstat (limited to 'plat/rpi/rpi4/rpi4_bl31_setup.c')
-rw-r--r-- | plat/rpi/rpi4/rpi4_bl31_setup.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/plat/rpi/rpi4/rpi4_bl31_setup.c b/plat/rpi/rpi4/rpi4_bl31_setup.c index 9e3b539797..0a49d81b21 100644 --- a/plat/rpi/rpi4/rpi4_bl31_setup.c +++ b/plat/rpi/rpi4/rpi4_bl31_setup.c @@ -132,14 +132,8 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, /* Early GPU firmware revisions need a little break here. */ ldelay(100000); - /* - * Initialize the console to provide early debug support. - * We rely on the GPU firmware to have initialised the UART correctly, - * as the baud base clock rate differs across GPU firmware revisions. - * Providing a base clock of 0 lets the 16550 UART init routine skip - * the initial enablement and baud rate setup. - */ - rpi3_console_init(0); + /* Initialize the console to provide early debug support. */ + rpi3_console_init(); bl33_image_ep_info.pc = plat_get_ns_image_entrypoint(); bl33_image_ep_info.spsr = rpi3_get_spsr_for_bl33_entry(); |