2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2012-08-14 15:50:58 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_SPL_H_
|
2014-03-19 01:02:55 +00:00
|
|
|
#define _ASM_ARCH_SPL_H_
|
2012-08-14 15:50:58 +00:00
|
|
|
|
2015-07-15 14:02:20 +00:00
|
|
|
#define BOOT_DEVICE_NONE 0x00
|
|
|
|
#define BOOT_DEVICE_MMC2_2 0xFF
|
|
|
|
|
2023-05-11 18:07:24 +00:00
|
|
|
#if defined(CONFIG_AM33XX)
|
2015-07-15 14:02:20 +00:00
|
|
|
#define BOOT_DEVICE_XIP 0x01
|
|
|
|
#define BOOT_DEVICE_XIPWAIT 0x02
|
|
|
|
#define BOOT_DEVICE_NAND 0x05
|
|
|
|
#define BOOT_DEVICE_NAND_I2C 0x06
|
|
|
|
#define BOOT_DEVICE_MMC1 0x08
|
|
|
|
#define BOOT_DEVICE_MMC2 0x09
|
2016-04-05 08:56:57 +00:00
|
|
|
#define BOOT_DEVICE_SPI 0x0B
|
2015-07-15 14:02:20 +00:00
|
|
|
#define BOOT_DEVICE_UART 0x41
|
|
|
|
#define BOOT_DEVICE_USBETH 0x44
|
|
|
|
#define BOOT_DEVICE_CPGMAC 0x46
|
2017-04-01 15:15:04 +00:00
|
|
|
#define BOOT_DEVICE_ONENAND 0xFF /* ROM does not support OneNAND. */
|
2015-07-15 14:02:20 +00:00
|
|
|
|
|
|
|
#define MMC_BOOT_DEVICES_START BOOT_DEVICE_MMC1
|
|
|
|
#define MMC_BOOT_DEVICES_END BOOT_DEVICE_MMC2
|
2014-01-16 17:23:30 +00:00
|
|
|
#elif defined(CONFIG_AM43XX)
|
2015-07-15 14:02:20 +00:00
|
|
|
#define BOOT_DEVICE_NOR 0x01
|
|
|
|
#define BOOT_DEVICE_NAND 0x05
|
|
|
|
#define BOOT_DEVICE_MMC1 0x07
|
|
|
|
#define BOOT_DEVICE_MMC2 0x08
|
|
|
|
#define BOOT_DEVICE_SPI 0x0A
|
2016-04-13 04:27:04 +00:00
|
|
|
#define BOOT_DEVICE_USB 0x0D
|
2015-07-15 14:02:20 +00:00
|
|
|
#define BOOT_DEVICE_UART 0x41
|
2016-04-13 04:27:04 +00:00
|
|
|
#define BOOT_DEVICE_USBETH 0x45
|
2015-07-15 14:02:20 +00:00
|
|
|
#define BOOT_DEVICE_CPGMAC 0x47
|
|
|
|
|
|
|
|
#define MMC_BOOT_DEVICES_START BOOT_DEVICE_MMC1
|
2019-02-01 16:40:07 +00:00
|
|
|
#ifdef CONFIG_SPL_USB_STORAGE
|
2015-07-15 14:02:20 +00:00
|
|
|
#define MMC_BOOT_DEVICES_END BOOT_DEVICE_USB
|
2014-01-16 17:23:30 +00:00
|
|
|
#else
|
2015-07-15 14:02:20 +00:00
|
|
|
#define MMC_BOOT_DEVICES_END BOOT_DEVICE_MMC2
|
2014-01-16 17:23:30 +00:00
|
|
|
#endif
|
2013-04-09 15:40:40 +00:00
|
|
|
#endif
|
2015-07-15 14:02:20 +00:00
|
|
|
|
2012-08-14 15:50:58 +00:00
|
|
|
#endif
|