blob: fa0fa93b03029861d180af2da3867271ea9c77a8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Agner60bae8c2014-08-05 23:27:30 +02002/*
Marcel Ziswilerd92dee52016-11-16 17:49:23 +01003 * Copyright (c) 2013-2016 Stefan Agner
Stefan Agner60bae8c2014-08-05 23:27:30 +02004 *
Marcel Ziswiler764d4122015-08-06 00:47:10 +02005 * Configuration settings for the Toradex Colibri T30 modules.
Stefan Agner60bae8c2014-08-05 23:27:30 +02006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11#include <linux/sizes.h>
12
13#include "tegra30-common.h"
14
Marcel Ziswilera4f0f812015-03-01 02:05:39 +010015/* High-level configuration options */
Stefan Agner60bae8c2014-08-05 23:27:30 +020016
Marcel Ziswilera4f0f812015-03-01 02:05:39 +010017/* Board-specific serial config */
Stefan Agner60bae8c2014-08-05 23:27:30 +020018#define CONFIG_TEGRA_ENABLE_UARTA
19#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
20
21#define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T30
22
Stefan Agner60bae8c2014-08-05 23:27:30 +020023/* General networking support */
Max Krummenacheraf116002015-08-06 00:47:09 +020024#define CONFIG_TFTP_TSIZE
Stefan Agner60bae8c2014-08-05 23:27:30 +020025
Marcel Ziswilera4f0f812015-03-01 02:05:39 +010026/* Increase console I/O buffer size */
27#undef CONFIG_SYS_CBSIZE
28#define CONFIG_SYS_CBSIZE 1024
29
30/* Increase arguments buffer size */
31#undef CONFIG_SYS_BARGSIZE
32#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
33
Marcel Ziswilera4f0f812015-03-01 02:05:39 +010034/* Increase maximum number of arguments */
35#undef CONFIG_SYS_MAXARGS
36#define CONFIG_SYS_MAXARGS 32
37
Igor Opaniukbc29ec72020-03-27 12:15:48 +020038#define UBOOT_UPDATE \
39 "uboot_hwpart=1\0" \
40 "uboot_blk=0\0" \
41 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
42 "setexpr blkcnt ${blkcnt} / 0x200\0" \
43 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
44 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
45
46#define BOARD_EXTRA_ENV_SETTINGS \
47 UBOOT_UPDATE
48
Stefan Agner60bae8c2014-08-05 23:27:30 +020049#include "tegra-common-usb-gadget.h"
50#include "tegra-common-post.h"
51
52#endif /* __CONFIG_H */