upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
410 B
24 lines
410 B
/*
|
|
* Copyright (C) 2013 Atmel Corporation
|
|
* Bo Shen <voice.shen@atmel.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_SPL_H_
|
|
#define _ASM_ARCH_SPL_H_
|
|
|
|
enum {
|
|
BOOT_DEVICE_NONE,
|
|
#ifdef CONFIG_SYS_USE_MMC
|
|
BOOT_DEVICE_MMC1,
|
|
BOOT_DEVICE_MMC2,
|
|
BOOT_DEVICE_MMC2_2,
|
|
#elif CONFIG_SYS_USE_NANDFLASH
|
|
BOOT_DEVICE_NAND,
|
|
#elif CONFIG_SYS_USE_SERIALFLASH
|
|
BOOT_DEVICE_SPI,
|
|
#endif
|
|
};
|
|
|
|
#endif
|
|
|