1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2013-2016 Stefan Agner
5 * Configuration settings for the Toradex Colibri T30 modules.
11 #include <linux/sizes.h>
13 #include "tegra30-common.h"
15 /* High-level configuration options */
18 * Board-specific serial config
20 * Colibri UART-A: NVIDIA UARTA
21 * Colibri UART-B: NVIDIA UARTD
22 * Colibri UART-C: NVIDIA UARTB
24 #define CONFIG_TEGRA_ENABLE_UARTA
25 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
27 #define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T30
29 /* General networking support */
30 #define CONFIG_TFTP_TSIZE
32 /* Increase console I/O buffer size */
33 #undef CONFIG_SYS_CBSIZE
34 #define CONFIG_SYS_CBSIZE 1024
36 /* Increase arguments buffer size */
37 #undef CONFIG_SYS_BARGSIZE
38 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
40 /* Increase maximum number of arguments */
41 #undef CONFIG_SYS_MAXARGS
42 #define CONFIG_SYS_MAXARGS 32
44 #define UBOOT_UPDATE \
47 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
48 "setexpr blkcnt ${blkcnt} / 0x200\0" \
49 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
50 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
52 #define BOARD_EXTRA_ENV_SETTINGS \
55 #include "tegra-common-usb-gadget.h"
56 #include "tegra-common-post.h"
58 #endif /* __CONFIG_H */