xref: /openbmc/u-boot/include/configs/harmony.h (revision b994efbd)
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 V_PROMPT		"Tegra20 (Harmony) # "
16 #define CONFIG_TEGRA_BOARD_STRING	"NVIDIA Harmony"
17 
18 /* Board-specific serial config */
19 #define CONFIG_TEGRA_ENABLE_UARTD
20 
21 /* UARTD: keyboard satellite board UART, default */
22 #define CONFIG_SYS_NS16550_COM1		NV_PA_APB_UARTD_BASE
23 #ifdef CONFIG_TEGRA_ENABLE_UARTA
24 /* UARTA: debug board UART */
25 #define CONFIG_SYS_NS16550_COM2		NV_PA_APB_UARTA_BASE
26 #endif
27 
28 #define CONFIG_MACH_TYPE		MACH_TYPE_HARMONY
29 
30 #define CONFIG_BOARD_EARLY_INIT_F
31 #define CONFIG_BOARD_LATE_INIT		/* Make sure LCD init is complete */
32 
33 /* SD/MMC */
34 #define CONFIG_MMC
35 #define CONFIG_GENERIC_MMC
36 #define CONFIG_TEGRA_MMC
37 #define CONFIG_CMD_MMC
38 
39 /* NAND support */
40 #define CONFIG_CMD_NAND
41 #define CONFIG_TEGRA_NAND
42 #define CONFIG_SYS_MAX_NAND_DEVICE	1
43 
44 /* Environment in NAND (which is 512M), aligned to start of last sector */
45 #define CONFIG_ENV_IS_IN_NAND
46 #define CONFIG_ENV_OFFSET	(SZ_512M - SZ_128K) /* 128K sector size */
47 
48 /* USB Host support */
49 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3
50 #define CONFIG_USB_EHCI
51 #define CONFIG_USB_EHCI_TEGRA
52 #define CONFIG_USB_ULPI
53 #define CONFIG_USB_ULPI_VIEWPORT
54 #define CONFIG_USB_STORAGE
55 #define CONFIG_CMD_USB
56 
57 /* USB networking support */
58 #define CONFIG_USB_HOST_ETHER
59 #define CONFIG_USB_ETHER_ASIX
60 #define CONFIG_USB_ETHER_MCS7830
61 #define CONFIG_USB_ETHER_SMSC95XX
62 
63 /* General networking support */
64 #define CONFIG_CMD_NET
65 #define CONFIG_CMD_DHCP
66 
67 /* LCD support */
68 #define CONFIG_LCD
69 #define CONFIG_PWM_TEGRA
70 #define CONFIG_VIDEO_TEGRA
71 #define LCD_BPP				LCD_COLOR16
72 #define CONFIG_SYS_WHITE_ON_BLACK
73 #define CONFIG_CONSOLE_SCROLL_LINES	10
74 
75 #include "tegra-common-post.h"
76 
77 #endif /* __CONFIG_H */
78