1*efc05ae1STom Warren /* 2*efc05ae1STom Warren * (C) Copyright 2010,2011 3*efc05ae1STom Warren * NVIDIA Corporation <www.nvidia.com> 4*efc05ae1STom Warren * 5*efc05ae1STom Warren * See file CREDITS for list of people who contributed to this 6*efc05ae1STom Warren * project. 7*efc05ae1STom Warren * 8*efc05ae1STom Warren * This program is free software; you can redistribute it and/or 9*efc05ae1STom Warren * modify it under the terms of the GNU General Public License as 10*efc05ae1STom Warren * published by the Free Software Foundation; either version 2 of 11*efc05ae1STom Warren * the License, or (at your option) any later version. 12*efc05ae1STom Warren * 13*efc05ae1STom Warren * This program is distributed in the hope that it will be useful, 14*efc05ae1STom Warren * but WITHOUT ANY WARRANTY; without even the implied warranty of 15*efc05ae1STom Warren * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16*efc05ae1STom Warren * GNU General Public License for more details. 17*efc05ae1STom Warren * 18*efc05ae1STom Warren * You should have received a copy of the GNU General Public License 19*efc05ae1STom Warren * along with this program; if not, write to the Free Software 20*efc05ae1STom Warren * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 21*efc05ae1STom Warren * MA 02111-1307 USA 22*efc05ae1STom Warren */ 23*efc05ae1STom Warren 24*efc05ae1STom Warren #ifndef __CONFIG_H 25*efc05ae1STom Warren #define __CONFIG_H 26*efc05ae1STom Warren 27*efc05ae1STom Warren #include <asm/sizes.h> 28*efc05ae1STom Warren #include "tegra2-common.h" 29*efc05ae1STom Warren 30*efc05ae1STom Warren /* High-level configuration options */ 31*efc05ae1STom Warren #define TEGRA2_SYSMEM "mem=384M@0M nvmem=128M@384M mem=512M@512M" 32*efc05ae1STom Warren #define V_PROMPT "Tegra2 (Harmony) # " 33*efc05ae1STom Warren #define CONFIG_TEGRA2_BOARD_STRING "NVIDIA Harmony" 34*efc05ae1STom Warren 35*efc05ae1STom Warren /* Board-specific serial config */ 36*efc05ae1STom Warren #define CONFIG_SERIAL_MULTI 37*efc05ae1STom Warren #define CONFIG_TEGRA2_ENABLE_UARTD 38*efc05ae1STom Warren 39*efc05ae1STom Warren /* UARTD: keyboard satellite board UART, default */ 40*efc05ae1STom Warren #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE 41*efc05ae1STom Warren #ifdef CONFIG_TEGRA2_ENABLE_UARTA 42*efc05ae1STom Warren /* UARTA: debug board UART */ 43*efc05ae1STom Warren #define CONFIG_SYS_NS16550_COM2 NV_PA_APB_UARTA_BASE 44*efc05ae1STom Warren #endif 45*efc05ae1STom Warren 46*efc05ae1STom Warren #define CONFIG_MACH_TYPE MACH_TYPE_HARMONY 47*efc05ae1STom Warren #define CONFIG_SYS_BOARD_ODMDATA 0x300d8011 /* lp1, 1GB */ 48*efc05ae1STom Warren 49*efc05ae1STom Warren #endif /* __CONFIG_H */ 50