blob: 30b48c5fd6a88dc88b605d8c345cdda3848d8980 [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 Ziswiler8e487f32019-09-12 11:12:55 +020017/*
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 */
Stefan Agner24d4d422014-08-05 23:27:30 +020024#define CONFIG_TEGRA_ENABLE_UARTA
25#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
26
27#define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_T30
28
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010029/* 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
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010037/* Increase maximum number of arguments */
38#undef CONFIG_SYS_MAXARGS
39#define CONFIG_SYS_MAXARGS 32
40
Igor Opaniukb308ffb2020-03-27 12:15:48 +020041#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
Stefan Agner24d4d422014-08-05 23:27:30 +020052#include "tegra-common-usb-gadget.h"
53#include "tegra-common-post.h"
54
55#endif /* __CONFIG_H */