diff options
author | Jim Liu <jim.t90615@gmail.com> | 2024-04-23 15:22:08 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-03 12:22:59 -0600 |
commit | ceec9c9d291bf76ccc9338ded89e1b5156313db1 (patch) | |
tree | 31ce3aad3f657180d788c736b740760fa1face06 | |
parent | e69b187486e3b8124af966d2f20c55c8605ea1ae (diff) | |
download | u-boot-ceec9c9d291bf76ccc9338ded89e1b5156313db1.zip u-boot-ceec9c9d291bf76ccc9338ded89e1b5156313db1.tar.gz u-boot-ceec9c9d291bf76ccc9338ded89e1b5156313db1.tar.bz2 |
Arm: npcm: fix npcm7xx boot to kernel error
Add mem and console env information and modify the wrong earlycon env.
Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
-rw-r--r-- | board/nuvoton/poleg_evb/poleg_evb.c | 27 | ||||
-rw-r--r-- | include/configs/poleg.h | 4 |
2 files changed, 22 insertions, 9 deletions
diff --git a/board/nuvoton/poleg_evb/poleg_evb.c b/board/nuvoton/poleg_evb/poleg_evb.c index 7421911..e69bca9 100644 --- a/board/nuvoton/poleg_evb/poleg_evb.c +++ b/board/nuvoton/poleg_evb/poleg_evb.c @@ -21,7 +21,6 @@ int board_init(void) int dram_init(void) { - char value[32]; struct npcm_gcr *gcr = (struct npcm_gcr *)NPCM_GCR_BA; int ramsize = (readl(&gcr->intcr3) >> 8) & 0x7; @@ -47,17 +46,31 @@ int dram_init(void) break; } - if (gd->ram_size > 0) { - sprintf(value, "%ldM", (gd->ram_size / 0x100000)); - env_set("mem", value); - } - return 0; } int last_stage_init(void) { - board_set_console(); + + char value[32]; + struct udevice *dev = gd->cur_serial_dev; + + if (gd->ram_size > 0) { + sprintf(value, "%ldM", (gd->ram_size / 0x100000)); + env_set("mem", value); + } + + if (dev && (dev->seq_ >= 0)) { + void *addr; + addr = dev_read_addr_ptr(dev); + if (addr) { + sprintf(value, "uart8250,mmio32,0x%x", (u32)addr); + env_set("earlycon", value); + } + sprintf(value, "ttyS%d,115200n8", dev->seq_); + env_set("console", value); + board_set_console(); + } return 0; } diff --git a/include/configs/poleg.h b/include/configs/poleg.h index 2a2d85c..14ead16 100644 --- a/include/configs/poleg.h +++ b/include/configs/poleg.h @@ -30,9 +30,9 @@ "eth2addr=00:00:F7:A0:00:FE\0" \ "eth3addr=00:00:F7:A0:00:FF\0" \ "console=ttyS0,115200n8\0" \ - "earlycon=uart8250,mmio32,0xf0000000\0" \ + "earlycon=uart8250,mmio32,0xf0001000\0" \ "common_bootargs=setenv bootargs earlycon=${earlycon} root=/dev/ram " \ - "console=${console} mem=${mem} ramdisk_size=48000 basemac=${ethaddr}\0" \ + "console=${console} mem=${mem} ramdisk_size=48000 basemac=${ethaddr} oops=panic panic=20\0" \ "sd_prog=fatload mmc 0 10000000 image-bmc; cp.b 10000000 80000000 ${filesize}\0" \ "sd_run=fatload mmc 0 10000000 image-bmc; bootm 10200000\0" \ "\0" |