Skip to content
Snippets Groups Projects
Commit cbbc2d80 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

ARM: uniphier: add NOR boot support


This allows to boot from NOR flash (or SRAM) with help of an external
loader (NOR-loader).

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 95a2d438
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ struct boot_device_info boot_device_table[] = { ...@@ -43,7 +43,7 @@ struct boot_device_info boot_device_table[] = {
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NONE, "Reserved"},
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NONE, "Reserved"},
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NONE, "Reserved"},
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NOR, "NOR Boot"},
}; };
static int get_boot_mode_sel(void) static int get_boot_mode_sel(void)
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include "boot-device.h" #include "boot-device.h"
static struct boot_device_info boot_device_table[] = { static struct boot_device_info boot_device_table[] = {
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NOR, "NOR boot"},
{BOOT_DEVICE_NONE, "External Master"}, {BOOT_DEVICE_NONE, "External Master"},
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NONE, "Reserved"},
{BOOT_DEVICE_NONE, "Reserved"}, {BOOT_DEVICE_NONE, "Reserved"},
......
...@@ -261,6 +261,7 @@ ...@@ -261,6 +261,7 @@
#define CONFIG_SPL_FRAMEWORK #define CONFIG_SPL_FRAMEWORK
#define CONFIG_SPL_SERIAL_SUPPORT #define CONFIG_SPL_SERIAL_SUPPORT
#define CONFIG_SPL_NOR_SUPPORT
#define CONFIG_SPL_NAND_SUPPORT #define CONFIG_SPL_NAND_SUPPORT
#define CONFIG_SPL_MMC_SUPPORT #define CONFIG_SPL_MMC_SUPPORT
...@@ -270,6 +271,8 @@ ...@@ -270,6 +271,8 @@
#define CONFIG_SPL_BOARD_INIT #define CONFIG_SPL_BOARD_INIT
#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x10000 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x10000
#define CONFIG_SYS_UBOOT_BASE 0x60000
#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x80 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x80
#define CONFIG_SPL_MAX_FOOTPRINT 0x10000 #define CONFIG_SPL_MAX_FOOTPRINT 0x10000
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment