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