xref: /rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap4/spl.h (revision 55cdbb8d4e8508dcdb95400f6dfcb928220ffc70)
1*55cdbb8dSTom Rini /*
2*55cdbb8dSTom Rini  * (C) Copyright 2012
3*55cdbb8dSTom Rini  * Texas Instruments, <www.ti.com>
4*55cdbb8dSTom Rini  *
5*55cdbb8dSTom Rini  * See file CREDITS for list of people who contributed to this
6*55cdbb8dSTom Rini  * project.
7*55cdbb8dSTom Rini  *
8*55cdbb8dSTom Rini  * This program is free software; you can redistribute it and/or
9*55cdbb8dSTom Rini  * modify it under the terms of the GNU General Public License as
10*55cdbb8dSTom Rini  * published by the Free Software Foundation; either version 2 of
11*55cdbb8dSTom Rini  * the License, or (at your option) any later version.
12*55cdbb8dSTom Rini  *
13*55cdbb8dSTom Rini  * This program is distributed in the hope that it will be useful,
14*55cdbb8dSTom Rini  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15*55cdbb8dSTom Rini  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16*55cdbb8dSTom Rini  * GNU General Public License for more details.
17*55cdbb8dSTom Rini  *
18*55cdbb8dSTom Rini  * You should have received a copy of the GNU General Public License
19*55cdbb8dSTom Rini  * along with this program; if not, write to the Free Software
20*55cdbb8dSTom Rini  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*55cdbb8dSTom Rini  * MA 02111-1307 USA
22*55cdbb8dSTom Rini  */
23*55cdbb8dSTom Rini #ifndef	_ASM_ARCH_SPL_H_
24*55cdbb8dSTom Rini #define	_ASM_SPL_H_
25*55cdbb8dSTom Rini 
26*55cdbb8dSTom Rini #define BOOT_DEVICE_NONE	0
27*55cdbb8dSTom Rini #define BOOT_DEVICE_XIP		1
28*55cdbb8dSTom Rini #define BOOT_DEVICE_XIPWAIT	2
29*55cdbb8dSTom Rini #define BOOT_DEVICE_NAND	3
30*55cdbb8dSTom Rini #define BOOT_DEVICE_ONE_NAND	4
31*55cdbb8dSTom Rini #define BOOT_DEVICE_MMC1	5
32*55cdbb8dSTom Rini #define BOOT_DEVICE_MMC2	6
33*55cdbb8dSTom Rini #define BOOT_DEVICE_MMC2_2	0xFF
34*55cdbb8dSTom Rini 
35*55cdbb8dSTom Rini #endif
36