]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm: socfpga: misc: Add support for printing boot mode
authorMarek Vasut <marex@denx.de>
Tue, 21 Jul 2015 14:10:13 +0000 (16:10 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 06:17:22 +0000 (08:17 +0200)
Add support for printing from which device the SoCFPGA board booted.
This decodes the BSEL settings and prints it in human readable form.

Signed-off-by: Marek Vasut <marex@denx.de>
arch/arm/mach-socfpga/misc.c

index a6ff793c736de290cc4d52a3ca9f3fbbece1e812..d653bf624bc7bd685531cda6bd0fe2735301a510 100644 (file)
@@ -101,12 +101,25 @@ int cpu_mmc_init(bd_t *bis)
 #endif
 
 #if defined(CONFIG_DISPLAY_CPUINFO)
+const char * const bsel_str[] = {
+       "Reserved",
+       "FPGA (HPS2FPGA Bridge)",
+       "NAND Flash (1.8V)",
+       "NAND Flash (3.0V)",
+       "SD/MMC External Transceiver (1.8V)",
+       "SD/MMC Internal Transceiver (3.0V)",
+       "QSPI Flash (1.8V)",
+       "QSPI Flash (3.0V)",
+};
+
 /*
  * Print CPU information
  */
 int print_cpuinfo(void)
 {
+       const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7;
        puts("CPU:   Altera SoCFPGA Platform\n");
+       printf("BOOT:  %s\n", bsel_str[bsel]);
        return 0;
 }
 #endif