Rename CONFIG_EHCI_IS_TDI to CONFIG_USB_EHCI_IS_TDI
[platform/kernel/u-boot.git] / include / configs / apalis_t30.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2014-2016 Marcel Ziswiler
4  *
5  * Configuration settings for the Toradex Apalis T30 modules.
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <linux/sizes.h>
12
13 #include "tegra30-common.h"
14
15 /*
16  * Board-specific serial config
17  *
18  * Apalis UART1: NVIDIA UARTA
19  * Apalis UART2: NVIDIA UARTD
20  * Apalis UART3: NVIDIA UARTB
21  * Apalis UART4: NVIDIA UARTC
22  */
23 #define CONFIG_TEGRA_ENABLE_UARTA
24 #define CONFIG_SYS_NS16550_COM1         NV_PA_APB_UARTA_BASE
25
26 /* PCI networking support */
27 #define CONFIG_E1000_NO_NVM
28
29 /* Increase console I/O buffer size */
30 #undef CONFIG_SYS_CBSIZE
31 #define CONFIG_SYS_CBSIZE               1024
32
33 /* Increase arguments buffer size */
34 #undef CONFIG_SYS_BARGSIZE
35 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
36
37 /* Increase maximum number of arguments */
38 #undef CONFIG_SYS_MAXARGS
39 #define CONFIG_SYS_MAXARGS              32
40
41 #define UBOOT_UPDATE \
42         "uboot_hwpart=1\0" \
43         "uboot_blk=0\0" \
44         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
45                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
46         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
47                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
48
49 #define BOARD_EXTRA_ENV_SETTINGS \
50         UBOOT_UPDATE
51
52 #include "tegra-common-usb-gadget.h"
53 #include "tegra-common-post.h"
54
55 #endif /* __CONFIG_H */