kconfig: move CONFIG_OF_* to Kconfig
[platform/kernel/u-boot.git] / include / configs / colibri_t20_iris.h
1 /*
2  *  Copyright (C) 2012 Lucas Stach
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9
10 #include "tegra20-common.h"
11
12 /* Enable FDT support */
13 #define CONFIG_DEFAULT_DEVICE_TREE      tegra20-colibri_t20_iris
14
15 /* High-level configuration options */
16 #define V_PROMPT                   "Tegra20 (Colibri) # "
17 #define CONFIG_TEGRA_BOARD_STRING  "Toradex Colibri T20 on Iris"
18
19 /* Board-specific serial config */
20 #define CONFIG_TEGRA_ENABLE_UARTA
21 #define CONFIG_TEGRA_UARTA_SDIO1
22 #define CONFIG_SYS_NS16550_COM1    NV_PA_APB_UARTA_BASE
23
24 #define CONFIG_BOARD_EARLY_INIT_F
25
26 /* SD/MMC support */
27 #define CONFIG_MMC
28 #define CONFIG_GENERIC_MMC
29 #define CONFIG_TEGRA_MMC
30 #define CONFIG_CMD_MMC
31
32 /* USB host support */
33 #define CONFIG_USB_EHCI
34 #define CONFIG_USB_EHCI_TEGRA
35 #define CONFIG_USB_ULPI
36 #define CONFIG_USB_ULPI_VIEWPORT
37 #define CONFIG_USB_STORAGE
38 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3
39 #define CONFIG_CMD_USB
40
41 /* USB networking support */
42 #define CONFIG_USB_HOST_ETHER
43 #define CONFIG_USB_ETHER_ASIX
44 #define CONFIG_CMD_NET
45 #define CONFIG_CMD_DHCP
46 #define CONFIG_CMD_NFS
47 #define CONFIG_CMD_PING
48
49 /* NAND support */
50 #define CONFIG_CMD_NAND
51 #define CONFIG_TEGRA_NAND
52 #define CONFIG_SYS_MAX_NAND_DEVICE     1
53
54 /* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
55 #define CONFIG_ENV_IS_IN_NAND
56 #define CONFIG_ENV_OFFSET              (SZ_2M)
57 #undef  CONFIG_ENV_SIZE /* undef size from tegra20-common.h */
58 #define CONFIG_ENV_SIZE                (SZ_64K)
59
60 /* Debug commands */
61 #define CONFIG_CMD_BDI
62 #define CONFIG_CMD_CACHE
63
64 #include "tegra-common-post.h"
65
66 #endif /* __CONFIG_H */