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 CONFIG_TEGRA_BOARD_STRING "Toradex Colibri T20" 14 15 /* Board-specific serial config */ 16 #define CONFIG_TEGRA_ENABLE_UARTA 17 #define CONFIG_TEGRA_UARTA_SDIO1 18 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE 19 20 #define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T20 21 22 /* SD/MMC support */ 23 #define CONFIG_MMC 24 #define CONFIG_GENERIC_MMC 25 #define CONFIG_TEGRA_MMC 26 #define CONFIG_CMD_MMC 27 28 /* USB host support */ 29 #define CONFIG_USB_EHCI 30 #define CONFIG_USB_EHCI_TEGRA 31 #define CONFIG_USB_ULPI 32 #define CONFIG_USB_ULPI_VIEWPORT 33 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3 34 #define CONFIG_USB_STORAGE 35 #define CONFIG_CMD_USB 36 37 /* USB networking support */ 38 #define CONFIG_USB_HOST_ETHER 39 #define CONFIG_USB_ETHER_ASIX 40 41 /* General networking support */ 42 #define CONFIG_CMD_DHCP 43 44 /* NAND support */ 45 #define CONFIG_CMD_NAND 46 #define CONFIG_TEGRA_NAND 47 #define CONFIG_SYS_MAX_NAND_DEVICE 1 48 49 /* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */ 50 #define CONFIG_ENV_IS_IN_NAND 51 #define CONFIG_ENV_OFFSET (SZ_2M) 52 #undef CONFIG_ENV_SIZE /* undef size from tegra20-common.h */ 53 #define CONFIG_ENV_SIZE (SZ_64K) 54 55 /* Debug commands */ 56 #define CONFIG_CMD_CACHE 57 58 /* Miscellaneous commands */ 59 #define CONFIG_FAT_WRITE 60 61 /* Increase console I/O buffer size */ 62 #undef CONFIG_SYS_CBSIZE 63 #define CONFIG_SYS_CBSIZE 1024 64 65 /* Increase arguments buffer size */ 66 #undef CONFIG_SYS_BARGSIZE 67 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 68 69 /* Increase print buffer size */ 70 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 71 72 /* Increase maximum number of arguments */ 73 #undef CONFIG_SYS_MAXARGS 74 #define CONFIG_SYS_MAXARGS 32 75 76 #include "tegra-common-usb-gadget.h" 77 #include "tegra-common-post.h" 78 79 #endif /* __CONFIG_H */ 80