Convert CONFIG_SYS_CBSIZE to Kconfig
[platform/kernel/u-boot.git] / include / configs / colibri_t30.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2013-2016 Stefan Agner
4  *
5  * Configuration settings for the Toradex Colibri 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 /* High-level configuration options */
16
17 /*
18  * Board-specific serial config
19  *
20  * Colibri UART-A: NVIDIA UARTA
21  * Colibri UART-B: NVIDIA UARTD
22  * Colibri UART-C: NVIDIA UARTB
23  */
24 #define CONFIG_TEGRA_ENABLE_UARTA
25 #define CONFIG_SYS_NS16550_COM1         NV_PA_APB_UARTA_BASE
26
27 /* Increase arguments buffer size */
28 #undef CONFIG_SYS_BARGSIZE
29 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
30
31 #define UBOOT_UPDATE \
32         "uboot_hwpart=1\0" \
33         "uboot_blk=0\0" \
34         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
35                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
36         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
37                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
38
39 #define BOARD_EXTRA_ENV_SETTINGS \
40         UBOOT_UPDATE \
41         "boot_script_dhcp=boot.scr\0"
42
43 #include "tegra-common-post.h"
44
45 #endif /* __CONFIG_H */