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