diff options
author | Olliver Schinagl <oliver@schinagl.nl> | 2016-06-13 18:13:07 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2016-07-02 13:53:03 +0200 |
commit | 9acebe8a18788c5a0d7b154e812cf2d9dfbab68f (patch) | |
tree | 18aa132ceede6bf883a1ee27db5b552c53f471a3 | |
parent | cd8b35d2e14f598ab0e5c8a211495b675b978915 (diff) | |
download | u-boot-9acebe8a18788c5a0d7b154e812cf2d9dfbab68f.tar.gz u-boot-9acebe8a18788c5a0d7b154e812cf2d9dfbab68f.tar.bz2 u-boot-9acebe8a18788c5a0d7b154e812cf2d9dfbab68f.zip |
sunxi: Add missing boot_media fields in the SPL header
Commit b19236fd1 ("sunxi: Increase SPL header size to 64 bytes to avoid
code corruption") Added defines for MMC0 and SPI as boot identification.
After verifying on an OLinuXino Lime2 with NAND and eMMC, the expected
values have been confirmed and added to spl.h
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | arch/arm/include/asm/arch-sunxi/spl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-sunxi/spl.h b/arch/arm/include/asm/arch-sunxi/spl.h index a0f33b05b5..ec73379735 100644 --- a/arch/arm/include/asm/arch-sunxi/spl.h +++ b/arch/arm/include/asm/arch-sunxi/spl.h @@ -20,6 +20,8 @@ /* The low 8-bits of the 'boot_media' field in the SPL header */ #define SUNXI_BOOTED_FROM_MMC0 0 +#define SUNXI_BOOTED_FROM_NAND 1 +#define SUNXI_BOOTED_FROM_MMC2 2 #define SUNXI_BOOTED_FROM_SPI 3 /* boot head definition from sun4i boot code */ |