1*4026aca6SThierry Reding /* 2*4026aca6SThierry Reding * (C) Copyright 2010,2011 3*4026aca6SThierry Reding * NVIDIA Corporation <www.nvidia.com> 4*4026aca6SThierry Reding * (C) Copyright 2011 5*4026aca6SThierry Reding * Avionic Design GmbH <www.avionic-design.de> 6*4026aca6SThierry Reding * 7*4026aca6SThierry Reding * See file CREDITS for list of people who contributed to this 8*4026aca6SThierry Reding * project. 9*4026aca6SThierry Reding * 10*4026aca6SThierry Reding * This program is free software; you can redistribute it and/or 11*4026aca6SThierry Reding * modify it under the terms of the GNU General Public License as 12*4026aca6SThierry Reding * published by the Free Software Foundation; either version 2 of 13*4026aca6SThierry Reding * the License, or (at your option) any later version. 14*4026aca6SThierry Reding * 15*4026aca6SThierry Reding * This program is distributed in the hope that it will be useful, 16*4026aca6SThierry Reding * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*4026aca6SThierry Reding * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*4026aca6SThierry Reding * GNU General Public License for more details. 19*4026aca6SThierry Reding * 20*4026aca6SThierry Reding * You should have received a copy of the GNU General Public License 21*4026aca6SThierry Reding * along with this program; if not, write to the Free Software 22*4026aca6SThierry Reding * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 23*4026aca6SThierry Reding * MA 02111-1307 USA 24*4026aca6SThierry Reding */ 25*4026aca6SThierry Reding 26*4026aca6SThierry Reding #ifndef __CONFIG_H 27*4026aca6SThierry Reding #define __CONFIG_H 28*4026aca6SThierry Reding 29*4026aca6SThierry Reding #include "tegra2-common.h" 30*4026aca6SThierry Reding 31*4026aca6SThierry Reding /* High-level configuration options */ 32*4026aca6SThierry Reding #define TEGRA2_SYSMEM "mem=384M@0M nvmem=128M@384M" 33*4026aca6SThierry Reding #define V_PROMPT "Tegra2 (Plutux) # " 34*4026aca6SThierry Reding #define CONFIG_TEGRA2_BOARD_STRING "Avionic Design Plutux" 35*4026aca6SThierry Reding #define CONFIG_SYS_BOARD_ODMDATA 0x2b2d8011 36*4026aca6SThierry Reding 37*4026aca6SThierry Reding /* Board-specific serial config */ 38*4026aca6SThierry Reding #define CONFIG_SERIAL_MULTI 39*4026aca6SThierry Reding #define CONFIG_TEGRA2_ENABLE_UARTD /* UARTD: debug UART */ 40*4026aca6SThierry Reding #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE 41*4026aca6SThierry Reding 42*4026aca6SThierry Reding #define CONFIG_BOARD_EARLY_INIT_F 43*4026aca6SThierry Reding 44*4026aca6SThierry Reding /* SD/MMC */ 45*4026aca6SThierry Reding #define CONFIG_MMC 46*4026aca6SThierry Reding #define CONFIG_GENERIC_MMC 47*4026aca6SThierry Reding #define CONFIG_TEGRA2_MMC 48*4026aca6SThierry Reding #define CONFIG_CMD_MMC 49*4026aca6SThierry Reding 50*4026aca6SThierry Reding #define CONFIG_DOS_PARTITION 51*4026aca6SThierry Reding #define CONFIG_EFI_PARTITION 52*4026aca6SThierry Reding #define CONFIG_CMD_EXT2 53*4026aca6SThierry Reding #define CONFIG_CMD_FAT 54*4026aca6SThierry Reding 55*4026aca6SThierry Reding #define CONFIG_FIT 56*4026aca6SThierry Reding 57*4026aca6SThierry Reding #define CONFIG_BOOTCOMMAND \ 58*4026aca6SThierry Reding "mmc rescan;" \ 59*4026aca6SThierry Reding "ext2load mmc 0 0x17000000 /boot/uImage;" \ 60*4026aca6SThierry Reding "bootm" 61*4026aca6SThierry Reding 62*4026aca6SThierry Reding #endif /* __CONFIG_H */ 63