blob: 4e5e89b547d9eb21153617ebf2808574a9c40fae [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Agner24d4d422014-08-05 23:27:30 +02002/*
Marcel Ziswilerb891d012016-11-16 17:49:23 +01003 * Copyright (c) 2013-2016 Stefan Agner
Stefan Agner24d4d422014-08-05 23:27:30 +02004 *
Marcel Ziswiler36a01bd2015-08-06 00:47:10 +02005 * Configuration settings for the Toradex Colibri T30 modules.
Stefan Agner24d4d422014-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 Ziswilerd5338c62015-03-01 02:05:39 +010015/* High-level configuration options */
Stefan Agner24d4d422014-08-05 23:27:30 +020016
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010017/* Board-specific serial config */
Stefan Agner24d4d422014-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
Marcel Ziswiler74b19ad2016-11-16 17:49:24 +010023/* Environment in eMMC, before config block at the end of 1st "boot sector" */
Stefan Agner24d4d422014-08-05 23:27:30 +020024#define CONFIG_SYS_MMC_ENV_DEV 0
Marcel Ziswiler74b19ad2016-11-16 17:49:24 +010025#define CONFIG_SYS_MMC_ENV_PART 1
Stefan Agner24d4d422014-08-05 23:27:30 +020026
Stefan Agner24d4d422014-08-05 23:27:30 +020027/* General networking support */
Max Krummenacherbaa6f0f2015-08-06 00:47:09 +020028#define CONFIG_TFTP_TSIZE
Stefan Agner24d4d422014-08-05 23:27:30 +020029
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010030/* Increase console I/O buffer size */
31#undef CONFIG_SYS_CBSIZE
32#define CONFIG_SYS_CBSIZE 1024
33
34/* Increase arguments buffer size */
35#undef CONFIG_SYS_BARGSIZE
36#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
37
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010038/* Increase maximum number of arguments */
39#undef CONFIG_SYS_MAXARGS
40#define CONFIG_SYS_MAXARGS 32
41
Igor Opaniukb308ffb2020-03-27 12:15:48 +020042#define UBOOT_UPDATE \
43 "uboot_hwpart=1\0" \
44 "uboot_blk=0\0" \
45 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
46 "setexpr blkcnt ${blkcnt} / 0x200\0" \
47 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
48 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
49
50#define BOARD_EXTRA_ENV_SETTINGS \
51 UBOOT_UPDATE
52
Stefan Agner24d4d422014-08-05 23:27:30 +020053#include "tegra-common-usb-gadget.h"
54#include "tegra-common-post.h"
55
56#endif /* __CONFIG_H */