1*d2f18c27SAneesh V /* 2*d2f18c27SAneesh V * (C) Copyright 2010 3*d2f18c27SAneesh V * Texas Instruments, <www.ti.com> 4*d2f18c27SAneesh V * 5*d2f18c27SAneesh V * Aneesh V <aneesh@ti.com> 6*d2f18c27SAneesh V * 7*d2f18c27SAneesh V * See file CREDITS for list of people who contributed to this 8*d2f18c27SAneesh V * project. 9*d2f18c27SAneesh V * 10*d2f18c27SAneesh V * This program is free software; you can redistribute it and/or 11*d2f18c27SAneesh V * modify it under the terms of the GNU General Public License as 12*d2f18c27SAneesh V * published by the Free Software Foundation; either version 2 of 13*d2f18c27SAneesh V * the License, or (at your option) any later version. 14*d2f18c27SAneesh V * 15*d2f18c27SAneesh V * This program is distributed in the hope that it will be useful, 16*d2f18c27SAneesh V * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*d2f18c27SAneesh V * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*d2f18c27SAneesh V * GNU General Public License for more details. 19*d2f18c27SAneesh V * 20*d2f18c27SAneesh V * You should have received a copy of the GNU General Public License 21*d2f18c27SAneesh V * along with this program; if not, write to the Free Software 22*d2f18c27SAneesh V * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 23*d2f18c27SAneesh V * MA 02111-1307 USA 24*d2f18c27SAneesh V */ 25*d2f18c27SAneesh V #ifndef _OMAP_COMMON_H_ 26*d2f18c27SAneesh V #define _OMAP_COMMON_H_ 27*d2f18c27SAneesh V 28*d2f18c27SAneesh V /* HW Init Context */ 29*d2f18c27SAneesh V #define OMAP_INIT_CONTEXT_SPL 0 30*d2f18c27SAneesh V #define OMAP_INIT_CONTEXT_UBOOT_FROM_NOR 1 31*d2f18c27SAneesh V #define OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL 2 32*d2f18c27SAneesh V #define OMAP_INIT_CONTEXT_UBOOT_AFTER_CH 3 33*d2f18c27SAneesh V 34*d2f18c27SAneesh V #endif /* _OMAP_COMMON_H_ */ 35