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