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