1*07067145STom Warren /* 2*07067145STom Warren * Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved. 3*07067145STom Warren * 4*07067145STom Warren * This program is free software; you can redistribute it and/or modify it 5*07067145STom Warren * under the terms and conditions of the GNU General Public License, 6*07067145STom Warren * version 2, as published by the Free Software Foundation. 7*07067145STom Warren * 8*07067145STom Warren * This program is distributed in the hope it will be useful, but WITHOUT 9*07067145STom Warren * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10*07067145STom Warren * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11*07067145STom Warren * more details. 12*07067145STom Warren * 13*07067145STom Warren * You should have received a copy of the GNU General Public License 14*07067145STom Warren * along with this program. If not, see <http://www.gnu.org/licenses/>. 15*07067145STom Warren */ 16*07067145STom Warren 17*07067145STom Warren #ifndef __CONFIG_H 18*07067145STom Warren #define __CONFIG_H 19*07067145STom Warren 20*07067145STom Warren #include <asm/sizes.h> 21*07067145STom Warren 22*07067145STom Warren #include "tegra114-common.h" 23*07067145STom Warren 24*07067145STom Warren /* Must be off for Dalmore to boot !?!? FIXME */ 25*07067145STom Warren #define CONFIG_SYS_DCACHE_OFF 26*07067145STom Warren 27*07067145STom Warren /* Enable fdt support for Dalmore. Flash the image in u-boot-dtb.bin */ 28*07067145STom Warren #define CONFIG_DEFAULT_DEVICE_TREE tegra114-dalmore 29*07067145STom Warren #define CONFIG_OF_CONTROL 30*07067145STom Warren #define CONFIG_OF_SEPARATE 31*07067145STom Warren 32*07067145STom Warren /* High-level configuration options */ 33*07067145STom Warren #define V_PROMPT "Tegra114 (Dalmore) # " 34*07067145STom Warren #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Dalmore" 35*07067145STom Warren 36*07067145STom Warren /* Board-specific serial config */ 37*07067145STom Warren #define CONFIG_SERIAL_MULTI 38*07067145STom Warren #define CONFIG_TEGRA_ENABLE_UARTD 39*07067145STom Warren #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE 40*07067145STom Warren 41*07067145STom Warren #define CONFIG_MACH_TYPE MACH_TYPE_DALMORE 42*07067145STom Warren 43*07067145STom Warren #define CONFIG_BOARD_EARLY_INIT_F 44*07067145STom Warren #define CONFIG_ENV_IS_NOWHERE 45*07067145STom Warren 46*07067145STom Warren #define MACH_TYPE_DALMORE 4304 /* not yet in mach-types.h */ 47*07067145STom Warren 48*07067145STom Warren #include "tegra-common-post.h" 49*07067145STom Warren 50*07067145STom Warren #endif /* __CONFIG_H */ 51