mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 17:41:08 +00:00
arm: socfpga: misc: Export bootmode into environment variable
setenv an environment variable called "bootmode" , which contains the board boot mode. This can be in turn used in scripts to determine from where to load kernel and such. Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
d85e311e7f
commit
9ec7414e29
2 changed files with 24 additions and 11 deletions
|
@ -100,26 +100,38 @@ int cpu_mmc_init(bd_t *bis)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_DISPLAY_CPUINFO)
|
struct {
|
||||||
const char * const bsel_str[] = {
|
const char *mode;
|
||||||
"Reserved",
|
const char *name;
|
||||||
"FPGA (HPS2FPGA Bridge)",
|
} bsel_str[] = {
|
||||||
"NAND Flash (1.8V)",
|
{ "rsvd", "Reserved", },
|
||||||
"NAND Flash (3.0V)",
|
{ "fpga", "FPGA (HPS2FPGA Bridge)", },
|
||||||
"SD/MMC External Transceiver (1.8V)",
|
{ "nand", "NAND Flash (1.8V)", },
|
||||||
"SD/MMC Internal Transceiver (3.0V)",
|
{ "nand", "NAND Flash (3.0V)", },
|
||||||
"QSPI Flash (1.8V)",
|
{ "sd", "SD/MMC External Transceiver (1.8V)", },
|
||||||
"QSPI Flash (3.0V)",
|
{ "sd", "SD/MMC Internal Transceiver (3.0V)", },
|
||||||
|
{ "qspi", "QSPI Flash (1.8V)", },
|
||||||
|
{ "qspi", "QSPI Flash (3.0V)", },
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Print CPU information
|
* Print CPU information
|
||||||
*/
|
*/
|
||||||
|
#if defined(CONFIG_DISPLAY_CPUINFO)
|
||||||
int print_cpuinfo(void)
|
int print_cpuinfo(void)
|
||||||
{
|
{
|
||||||
const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7;
|
const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7;
|
||||||
puts("CPU: Altera SoCFPGA Platform\n");
|
puts("CPU: Altera SoCFPGA Platform\n");
|
||||||
printf("BOOT: %s\n", bsel_str[bsel]);
|
printf("BOOT: %s\n", bsel_str[bsel].name);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_ARCH_MISC_INIT
|
||||||
|
int arch_misc_init(void)
|
||||||
|
{
|
||||||
|
const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7;
|
||||||
|
setenv("bootmode", bsel_str[bsel].mode);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*/
|
*/
|
||||||
#define CONFIG_DISPLAY_CPUINFO
|
#define CONFIG_DISPLAY_CPUINFO
|
||||||
#define CONFIG_DISPLAY_BOARDINFO_LATE
|
#define CONFIG_DISPLAY_BOARDINFO_LATE
|
||||||
|
#define CONFIG_ARCH_MISC_INIT
|
||||||
#define CONFIG_ARCH_EARLY_INIT_R
|
#define CONFIG_ARCH_EARLY_INIT_R
|
||||||
#define CONFIG_SYS_NO_FLASH
|
#define CONFIG_SYS_NO_FLASH
|
||||||
#define CONFIG_CLOCKS
|
#define CONFIG_CLOCKS
|
||||||
|
|
Loading…
Reference in a new issue