xref: /rk3399_rockchip-uboot/include/cmd_spl.h (revision 1648a37505e84fc4e5268b026c3f1db862107e00)
1*1648a375SSimon Schwarz /* Copyright (C) 2011
2*1648a375SSimon Schwarz  * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
3*1648a375SSimon Schwarz  *
4*1648a375SSimon Schwarz  * See file CREDITS for list of people who contributed to this
5*1648a375SSimon Schwarz  * project.
6*1648a375SSimon Schwarz  *
7*1648a375SSimon Schwarz  * This program is free software; you can redistribute it and/or
8*1648a375SSimon Schwarz  * modify it under the terms of the GNU General Public License as
9*1648a375SSimon Schwarz  * published by the Free Software Foundation; either version 2 of
10*1648a375SSimon Schwarz  * the License, or (at your option) any later version.
11*1648a375SSimon Schwarz  *
12*1648a375SSimon Schwarz  * This program is distributed in the hope that it will be useful,
13*1648a375SSimon Schwarz  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14*1648a375SSimon Schwarz  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*1648a375SSimon Schwarz  * GNU General Public License for more details.
16*1648a375SSimon Schwarz  *
17*1648a375SSimon Schwarz  * You should have received a copy of the GNU General Public License
18*1648a375SSimon Schwarz  * along with this program; if not, write to the Free Software
19*1648a375SSimon Schwarz  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20*1648a375SSimon Schwarz  * MA 02111-1307 USA
21*1648a375SSimon Schwarz  */
22*1648a375SSimon Schwarz #ifndef _NAND_SPL_H_
23*1648a375SSimon Schwarz #define	_NAND_SPL_H_
24*1648a375SSimon Schwarz 
25*1648a375SSimon Schwarz #define SPL_EXPORT	(0x00000001)
26*1648a375SSimon Schwarz 
27*1648a375SSimon Schwarz #define SPL_EXPORT_FDT		(0x00000001)
28*1648a375SSimon Schwarz #define SPL_EXPORT_ATAGS	(0x00000002)
29*1648a375SSimon Schwarz #define SPL_EXPORT_LAST		SPL_EXPORT_ATAGS
30*1648a375SSimon Schwarz 
31*1648a375SSimon Schwarz #endif /* _NAND_SPL_H_ */
32