]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/colibri_t20.h
Move setexpr to Kconfig
[people/ms/u-boot.git] / include / configs / colibri_t20.h
CommitLineData
6bbda883 1/*
e57c6e5b 2 * Copyright (C) 2012 Lucas Stach
6bbda883 3 *
1a459660 4 * SPDX-License-Identifier: GPL-2.0+
6bbda883
LS
5 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
10#include "tegra20-common.h"
11
6bbda883 12/* High-level configuration options */
e57c6e5b
MZ
13#define V_PROMPT "Colibri T20 # "
14#define CONFIG_TEGRA_BOARD_STRING "Toradex Colibri T20"
6bbda883
LS
15
16/* Board-specific serial config */
e979a808 17#define CONFIG_SERIAL_MULTI
6bbda883
LS
18#define CONFIG_TEGRA_ENABLE_UARTA
19#define CONFIG_TEGRA_UARTA_SDIO1
e979a808
MZ
20#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
21
22#define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T20
6bbda883 23
6bbda883
LS
24/* SD/MMC support */
25#define CONFIG_MMC
26#define CONFIG_GENERIC_MMC
27#define CONFIG_TEGRA_MMC
28#define CONFIG_CMD_MMC
29
6bbda883
LS
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
6bbda883 35#define CONFIG_USB_MAX_CONTROLLER_COUNT 3
e979a808 36#define CONFIG_USB_STORAGE
6bbda883
LS
37#define CONFIG_CMD_USB
38
39/* USB networking support */
40#define CONFIG_USB_HOST_ETHER
41#define CONFIG_USB_ETHER_ASIX
e979a808
MZ
42
43/* General networking support */
6bbda883
LS
44#define CONFIG_CMD_NET
45#define CONFIG_CMD_DHCP
6bbda883
LS
46
47/* NAND support */
48#define CONFIG_CMD_NAND
49#define CONFIG_TEGRA_NAND
50#define CONFIG_SYS_MAX_NAND_DEVICE 1
51
52/* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
53#define CONFIG_ENV_IS_IN_NAND
54#define CONFIG_ENV_OFFSET (SZ_2M)
55#undef CONFIG_ENV_SIZE /* undef size from tegra20-common.h */
56#define CONFIG_ENV_SIZE (SZ_64K)
57
58/* Debug commands */
59#define CONFIG_CMD_BDI
60#define CONFIG_CMD_CACHE
61
e979a808 62/* Miscellaneous commands */
e979a808
MZ
63#define CONFIG_FAT_WRITE
64
65/* Increase console I/O buffer size */
66#undef CONFIG_SYS_CBSIZE
67#define CONFIG_SYS_CBSIZE 1024
68
69/* Increase arguments buffer size */
70#undef CONFIG_SYS_BARGSIZE
71#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
72
73/* Increase print buffer size */
74#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
75
76/* Increase maximum number of arguments */
77#undef CONFIG_SYS_MAXARGS
78#define CONFIG_SYS_MAXARGS 32
79
80#include "tegra-common-usb-gadget.h"
6bbda883
LS
81#include "tegra-common-post.h"
82
83#endif /* __CONFIG_H */