blob: 2ec319c08a56b9b884ee25f0057357b5f9e03839 [file] [log] [blame]
Tom Rini55cdbb82012-08-14 08:50:58 -07001/*
2 * (C) Copyright 2012
3 * Texas Instruments, <www.ti.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Rini55cdbb82012-08-14 08:50:58 -07006 */
7#ifndef _ASM_ARCH_SPL_H_
8#define _ASM_SPL_H_
9
10#define BOOT_DEVICE_NONE 0
11#define BOOT_DEVICE_XIP 1
12#define BOOT_DEVICE_NAND 2
Enric Balletbo i Serra66c7f392013-02-07 23:14:46 +000013#define BOOT_DEVICE_ONENAND 3
Tom Rini55cdbb82012-08-14 08:50:58 -070014#define BOOT_DEVICE_MMC2 5 /*emmc*/
15#define BOOT_DEVICE_MMC1 6
16#define BOOT_DEVICE_XIPWAIT 7
17#define BOOT_DEVICE_MMC2_2 0xFF
Tom Rinic3d2c242013-04-05 06:21:44 +000018
19#define MMC_BOOT_DEVICES_START BOOT_DEVICE_MMC2
20#define MMC_BOOT_DEVICES_END BOOT_DEVICE_MMC1
Tom Rini55cdbb82012-08-14 08:50:58 -070021#endif