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