xref: /openbmc/u-boot/include/configs/harmony.h (revision 2f6ed3b8)
1 /*
2  *  (C) Copyright 2010-2012
3  *  NVIDIA Corporation <www.nvidia.com>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10 
11 #include <linux/sizes.h>
12 #include "tegra20-common.h"
13 
14 /* High-level configuration options */
15 #define CONFIG_TEGRA_BOARD_STRING	"NVIDIA Harmony"
16 
17 /* Board-specific serial config */
18 #define CONFIG_TEGRA_ENABLE_UARTD
19 
20 /* UARTD: keyboard satellite board UART, default */
21 #define CONFIG_SYS_NS16550_COM1		NV_PA_APB_UARTD_BASE
22 #ifdef CONFIG_TEGRA_ENABLE_UARTA
23 /* UARTA: debug board UART */
24 #define CONFIG_SYS_NS16550_COM2		NV_PA_APB_UARTA_BASE
25 #endif
26 
27 #define CONFIG_MACH_TYPE		MACH_TYPE_HARMONY
28 
29 /* SD/MMC */
30 #define CONFIG_MMC
31 #define CONFIG_GENERIC_MMC
32 #define CONFIG_TEGRA_MMC
33 #define CONFIG_CMD_MMC
34 
35 /* NAND support */
36 #define CONFIG_CMD_NAND
37 #define CONFIG_TEGRA_NAND
38 #define CONFIG_SYS_MAX_NAND_DEVICE	1
39 
40 /* Environment in NAND (which is 512M), aligned to start of last sector */
41 #define CONFIG_ENV_IS_IN_NAND
42 #define CONFIG_ENV_OFFSET	(SZ_512M - SZ_128K) /* 128K sector size */
43 
44 /* USB Host support */
45 #define CONFIG_USB_EHCI
46 #define CONFIG_USB_EHCI_TEGRA
47 #define CONFIG_USB_ULPI
48 #define CONFIG_USB_ULPI_VIEWPORT
49 #define CONFIG_USB_STORAGE
50 #define CONFIG_CMD_USB
51 
52 /* USB networking support */
53 #define CONFIG_USB_HOST_ETHER
54 #define CONFIG_USB_ETHER_ASIX
55 #define CONFIG_USB_ETHER_MCS7830
56 #define CONFIG_USB_ETHER_SMSC95XX
57 
58 /* General networking support */
59 #define CONFIG_CMD_DHCP
60 
61 /* LCD support */
62 #define CONFIG_SYS_WHITE_ON_BLACK
63 #define CONFIG_CONSOLE_SCROLL_LINES	10
64 
65 #include "tegra-common-post.h"
66 
67 #endif /* __CONFIG_H */
68