Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 1 | /* |
Marcel Ziswiler | e57c6e5 | 2015-03-26 01:31:54 +0100 | [diff] [blame] | 2 | * Copyright (C) 2012 Lucas Stach |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CONFIG_H |
| 8 | #define __CONFIG_H |
| 9 | |
| 10 | #include "tegra20-common.h" |
| 11 | |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 12 | /* High-level configuration options */ |
Marcel Ziswiler | e57c6e5 | 2015-03-26 01:31:54 +0100 | [diff] [blame] | 13 | #define V_PROMPT "Colibri T20 # " |
| 14 | #define CONFIG_TEGRA_BOARD_STRING "Toradex Colibri T20" |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 15 | |
| 16 | /* Board-specific serial config */ |
| 17 | #define CONFIG_TEGRA_ENABLE_UARTA |
| 18 | #define CONFIG_TEGRA_UARTA_SDIO1 |
Marcel Ziswiler | e979a80 | 2015-03-26 02:17:27 +0100 | [diff] [blame] | 19 | #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE |
| 20 | |
| 21 | #define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T20 |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 22 | |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 23 | /* SD/MMC support */ |
| 24 | #define CONFIG_MMC |
| 25 | #define CONFIG_GENERIC_MMC |
| 26 | #define CONFIG_TEGRA_MMC |
| 27 | #define CONFIG_CMD_MMC |
| 28 | |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 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 |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 34 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 3 |
Marcel Ziswiler | e979a80 | 2015-03-26 02:17:27 +0100 | [diff] [blame] | 35 | #define CONFIG_USB_STORAGE |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 36 | #define CONFIG_CMD_USB |
| 37 | |
| 38 | /* USB networking support */ |
| 39 | #define CONFIG_USB_HOST_ETHER |
| 40 | #define CONFIG_USB_ETHER_ASIX |
Marcel Ziswiler | e979a80 | 2015-03-26 02:17:27 +0100 | [diff] [blame] | 41 | |
| 42 | /* General networking support */ |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 43 | #define CONFIG_CMD_DHCP |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 44 | |
| 45 | /* NAND support */ |
| 46 | #define CONFIG_CMD_NAND |
| 47 | #define CONFIG_TEGRA_NAND |
| 48 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 49 | |
| 50 | /* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */ |
| 51 | #define CONFIG_ENV_IS_IN_NAND |
| 52 | #define CONFIG_ENV_OFFSET (SZ_2M) |
| 53 | #undef CONFIG_ENV_SIZE /* undef size from tegra20-common.h */ |
| 54 | #define CONFIG_ENV_SIZE (SZ_64K) |
| 55 | |
| 56 | /* Debug commands */ |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 57 | #define CONFIG_CMD_CACHE |
| 58 | |
Marcel Ziswiler | e979a80 | 2015-03-26 02:17:27 +0100 | [diff] [blame] | 59 | /* Miscellaneous commands */ |
Marcel Ziswiler | e979a80 | 2015-03-26 02:17:27 +0100 | [diff] [blame] | 60 | #define CONFIG_FAT_WRITE |
| 61 | |
| 62 | /* Increase console I/O buffer size */ |
| 63 | #undef CONFIG_SYS_CBSIZE |
| 64 | #define CONFIG_SYS_CBSIZE 1024 |
| 65 | |
| 66 | /* Increase arguments buffer size */ |
| 67 | #undef CONFIG_SYS_BARGSIZE |
| 68 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
| 69 | |
| 70 | /* Increase print buffer size */ |
| 71 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) |
| 72 | |
| 73 | /* Increase maximum number of arguments */ |
| 74 | #undef CONFIG_SYS_MAXARGS |
| 75 | #define CONFIG_SYS_MAXARGS 32 |
| 76 | |
| 77 | #include "tegra-common-usb-gadget.h" |
Lucas Stach | 6bbda88 | 2012-10-07 11:36:06 +0000 | [diff] [blame] | 78 | #include "tegra-common-post.h" |
| 79 | |
| 80 | #endif /* __CONFIG_H */ |