board: nuvoton: use an event to replace last_stage_init()
authorMichael Chang <zhang971090220@gmail.com>
Mon, 10 Feb 2025 02:37:10 +0000 (10:37 +0800)
committerTom Rini <trini@konsulko.com>
Tue, 18 Feb 2025 22:32:24 +0000 (16:32 -0600)
Add a new event which handles this function refer to commit
("91caa3bb89b1 event: Use an event to replace last_stage_init()")

Signed-off-by: Michael Chang <zhang971090220@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
board/nuvoton/arbel_evb/arbel_evb.c
board/nuvoton/common/uart.c
board/nuvoton/common/uart.h
board/nuvoton/poleg_evb/poleg_evb.c
configs/arbel_evb_defconfig
configs/poleg_evb_defconfig

index 55e93a7..699e5ca 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <dm.h>
+#include <event.h>
 #include <asm/io.h>
 #include <asm/arch/gcr.h>
 #include "../common/uart.h"
@@ -98,9 +99,5 @@ int dram_init_banksize(void)
        return 0;
 }
 
-int last_stage_init(void)
-{
-       board_set_console();
+EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, board_set_console);
 
-       return 0;
-}
index b35c795..06f6378 100644 (file)
@@ -14,7 +14,7 @@
 #define UART_LCR       0xc
 #define LCR_DLAB       BIT(7)
 
-void board_set_console(void)
+int board_set_console(void)
 {
        const unsigned long baudrate_table[] = CFG_SYS_BAUDRATE_TABLE;
        struct udevice *dev = gd->cur_serial_dev;
@@ -28,12 +28,12 @@ void board_set_console(void)
        int ret, i;
 
        if (!dev)
-               return;
+               return -ENODEV;
 
        uart_reg = dev_read_addr_ptr(dev);
        ret = clk_get_by_index(dev, 0, &clk);
        if (ret)
-               return;
+               return ret;
 
        uart_clk = clk_get_rate(&clk);
        setbits_8(uart_reg + UART_LCR, LCR_DLAB);
@@ -67,4 +67,5 @@ void board_set_console(void)
        snprintf(string, sizeof(string), "ttyS0,%un8", gd->baudrate);
        env_set("console", string);
 
+       return 0;
 }
index 9cc8952..fc8ec47 100644 (file)
@@ -6,6 +6,6 @@
 #ifndef _NUVOTON_UART_H
 #define _NUVOTON_UART_H
 
-void board_set_console(void);
+int board_set_console(void);
 
 #endif /* _NUVOTON_COMMON_H */
index 3c4e5aa..2faa349 100644 (file)
@@ -6,6 +6,7 @@
 
 #include <dm.h>
 #include <env.h>
+#include <event.h>
 #include <asm/io.h>
 #include <asm/arch/gcr.h>
 #include <asm/mach-types.h>
@@ -48,7 +49,7 @@ int dram_init(void)
        return 0;
 }
 
-int last_stage_init(void)
+static int last_stage_init(void)
 {
 
        char value[32];
@@ -68,8 +69,10 @@ int last_stage_init(void)
                }
                sprintf(value, "ttyS%d,115200n8", dev->seq_);
                env_set("console", value);
-               board_set_console();
+               return board_set_console();
        }
 
        return 0;
 }
+EVENT_SPY_SIMPLE(EVT_LAST_STAGE_INIT, last_stage_init);
+
index 2b0b8b2..9a283b8 100644 (file)
@@ -25,7 +25,6 @@ CONFIG_FIT=y
 CONFIG_FIT_VERBOSE=y
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="run common_bootargs; run romboot"
-CONFIG_LAST_STAGE_INIT=y
 CONFIG_HUSH_PARSER=y
 CONFIG_SYS_PROMPT="U-Boot>"
 CONFIG_SYS_MAXARGS=32
index 74f4092..365f643 100644 (file)
@@ -16,6 +16,7 @@ CONFIG_DEFAULT_DEVICE_TREE="nuvoton-npcm750-evb"
 CONFIG_DM_RESET=y
 CONFIG_SYS_LOAD_ADDR=0x10000000
 CONFIG_TARGET_POLEG=y
+CONFIG_SYS_SKIP_UART_INIT=y
 CONFIG_ENV_ADDR=0x80100000
 CONFIG_FIT=y
 CONFIG_USE_BOOTCOMMAND=y