Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2010,2011 |
| 3 | * NVIDIA Corporation <www.nvidia.com> |
Thierry Reding | a7dafd7 | 2012-06-04 20:02:26 +0000 | [diff] [blame] | 4 | * (C) Copyright 2011-2012 |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 5 | * Avionic Design GmbH <www.avionic-design.de> |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 13 | #include "tegra20-common.h" |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 14 | |
| 15 | /* High-level configuration options */ |
Allen Martin | 00a2749 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 16 | #define V_PROMPT "Tegra20 (Plutux) # " |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 17 | #define CONFIG_TEGRA_BOARD_STRING "Avionic Design Plutux" |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 18 | |
| 19 | /* Board-specific serial config */ |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 20 | #define CONFIG_TEGRA_ENABLE_UARTD /* UARTD: debug UART */ |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 21 | #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTD_BASE |
| 22 | |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 23 | /* SD/MMC */ |
| 24 | #define CONFIG_MMC |
| 25 | #define CONFIG_GENERIC_MMC |
Tom Warren | 3f82d89 | 2012-05-22 11:44:48 +0000 | [diff] [blame] | 26 | #define CONFIG_TEGRA_MMC |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 27 | #define CONFIG_CMD_MMC |
| 28 | |
Thierry Reding | 51016ff | 2013-04-03 04:52:44 +0000 | [diff] [blame] | 29 | /* NAND support */ |
| 30 | #define CONFIG_CMD_NAND |
| 31 | #define CONFIG_TEGRA_NAND |
| 32 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 33 | |
| 34 | /* Environment in NAND, aligned to start of last sector */ |
| 35 | #define CONFIG_ENV_IS_IN_NAND |
| 36 | #define CONFIG_ENV_OFFSET (SZ_512M - SZ_128K) /* 128K sectors */ |
| 37 | |
Thierry Reding | a7dafd7 | 2012-06-04 20:02:26 +0000 | [diff] [blame] | 38 | /* USB host support */ |
| 39 | #define CONFIG_USB_EHCI |
| 40 | #define CONFIG_USB_EHCI_TEGRA |
| 41 | #define CONFIG_USB_STORAGE |
| 42 | #define CONFIG_CMD_USB |
| 43 | |
| 44 | /* USB networking support */ |
| 45 | #define CONFIG_USB_HOST_ETHER |
| 46 | #define CONFIG_USB_ETHER_SMSC95XX |
| 47 | |
| 48 | /* General networking support */ |
| 49 | #define CONFIG_CMD_NET |
| 50 | #define CONFIG_CMD_DHCP |
| 51 | |
Thierry Reding | 51016ff | 2013-04-03 04:52:44 +0000 | [diff] [blame] | 52 | /* support the new (FDT-based) image format */ |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 53 | #define CONFIG_FIT |
| 54 | |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 55 | #include "tegra-common-post.h" |
Stephen Warren | bea2674 | 2012-05-16 06:21:00 +0000 | [diff] [blame] | 56 | |
Thierry Reding | 4026aca | 2011-11-17 00:10:25 +0000 | [diff] [blame] | 57 | #endif /* __CONFIG_H */ |