]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
serial-uclass: reset gd->cur_serial_dev to NULL if serial not found
authorMaksim Kiselev <bigunclemax@gmail.com>
Fri, 18 Aug 2023 09:34:30 +0000 (12:34 +0300)
committerTom Rini <trini@konsulko.com>
Wed, 30 Aug 2023 21:56:21 +0000 (17:56 -0400)
Reset gd->cur_serial_dev pointer to avoid calling non-relocated code
from relocated code if a serial driver is not found and
CONFIG_REQUIRE_SERIAL_CONSOLE is disabled.

Here is detailed explanation of what this patch is trying to fix.

U-boot calls the serial_find_console_or_panic() function twice.
The first console setup occurs before U-boot relocation in
the serial_init(). This stage uses simple FDT parsing and
assigns gd->cur_serial_dev to a "serial" device that lives in
non-relocated code too.

The second console setup after U-boot relocation(from serial_initialize())
may use full live DT (if OF_LIVE enabled) probe sequence with buses,
clocks, resets, etc... And if the console setup fails at this step,
than we should be caught by panic_str("No serial driver found").

But... If we disable CONFIG_REQUIRE_SERIAL_CONSOLE, than we
return from serial_init() with gd->cur_serial_dev pointing
to the "old"(non-relocated) serial device.

And if this area, where "old" serial device is placed, is changed
(e.g. Linux kernel may be relocated at this address), than we will get
an unexpected crash on the next call of printf().

Signed-off-by: Maksim Kiselev <bigunclemax@gmail.com>
drivers/serial/serial-uclass.c

index 067fae26145cf0a342f08854c9c79db623f11197..e954f0189bbddff3fd84a2628a7d095ff62e54e2 100644 (file)
@@ -151,6 +151,7 @@ static void serial_find_console_or_panic(void)
 #ifdef CONFIG_REQUIRE_SERIAL_CONSOLE
        panic_str("No serial driver found");
 #endif
+       gd->cur_serial_dev = NULL;
 }
 #endif /* CONFIG_SERIAL_PRESENT */