1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2014-2016 Marcel Ziswiler
5 * Configuration settings for the Toradex Apalis T30 modules.
11 #include <linux/sizes.h>
13 #include "tegra30-common.h"
16 * Board-specific serial config
18 * Apalis UART1: NVIDIA UARTA
19 * Apalis UART2: NVIDIA UARTD
20 * Apalis UART3: NVIDIA UARTB
21 * Apalis UART4: NVIDIA UARTC
23 #define CONFIG_TEGRA_ENABLE_UARTA
24 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
26 #define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
28 /* PCI networking support */
29 #define CONFIG_E1000_NO_NVM
31 /* Increase console I/O buffer size */
32 #undef CONFIG_SYS_CBSIZE
33 #define CONFIG_SYS_CBSIZE 1024
35 /* Increase arguments buffer size */
36 #undef CONFIG_SYS_BARGSIZE
37 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
39 /* Increase maximum number of arguments */
40 #undef CONFIG_SYS_MAXARGS
41 #define CONFIG_SYS_MAXARGS 32
43 #define UBOOT_UPDATE \
46 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
47 "setexpr blkcnt ${blkcnt} / 0x200\0" \
48 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
49 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
51 #define BOARD_EXTRA_ENV_SETTINGS \
54 #include "tegra-common-usb-gadget.h"
55 #include "tegra-common-post.h"
57 #endif /* __CONFIG_H */