]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/colibri_t20_iris.h
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
[karo-tx-uboot.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 /* High-level configuration options */
13 #define V_PROMPT                   "Tegra20 (Colibri) # "
14 #define CONFIG_TEGRA_BOARD_STRING  "Toradex Colibri T20 on Iris"
15
16 /* Board-specific serial config */
17 #define CONFIG_TEGRA_ENABLE_UARTA
18 #define CONFIG_TEGRA_UARTA_SDIO1
19 #define CONFIG_SYS_NS16550_COM1    NV_PA_APB_UARTA_BASE
20
21 #define CONFIG_BOARD_EARLY_INIT_F
22
23 /* SD/MMC support */
24 #define CONFIG_MMC
25 #define CONFIG_GENERIC_MMC
26 #define CONFIG_TEGRA_MMC
27 #define CONFIG_CMD_MMC
28
29 /* USB host support */
30 #define CONFIG_USB_EHCI
31 #define CONFIG_USB_EHCI_TEGRA
32 #define CONFIG_USB_ULPI
33 #define CONFIG_USB_ULPI_VIEWPORT
34 #define CONFIG_USB_STORAGE
35 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3
36 #define CONFIG_CMD_USB
37
38 /* USB networking support */
39 #define CONFIG_USB_HOST_ETHER
40 #define CONFIG_USB_ETHER_ASIX
41 #define CONFIG_CMD_NET
42 #define CONFIG_CMD_DHCP
43 #define CONFIG_CMD_NFS
44 #define CONFIG_CMD_PING
45
46 /* NAND support */
47 #define CONFIG_CMD_NAND
48 #define CONFIG_TEGRA_NAND
49 #define CONFIG_SYS_MAX_NAND_DEVICE     1
50
51 /* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
52 #define CONFIG_ENV_IS_IN_NAND
53 #define CONFIG_ENV_OFFSET              (SZ_2M)
54 #undef  CONFIG_ENV_SIZE /* undef size from tegra20-common.h */
55 #define CONFIG_ENV_SIZE                (SZ_64K)
56
57 /* Debug commands */
58 #define CONFIG_CMD_BDI
59 #define CONFIG_CMD_CACHE
60
61 #include "tegra-common-post.h"
62
63 #endif /* __CONFIG_H */