blob: fdf6bb284191a44a71103de1f28f15bfabbcfd6c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Lucas Stach85990a92012-10-07 11:36:06 +00002/*
Marcel Ziswilercad18b82015-03-26 01:31:54 +01003 * Copyright (C) 2012 Lucas Stach
Lucas Stach85990a92012-10-07 11:36:06 +00004 *
Marcel Ziswiler764d4122015-08-06 00:47:10 +02005 * Configuration settings for the Toradex Colibri T20 modules.
Lucas Stach85990a92012-10-07 11:36:06 +00006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11#include "tegra20-common.h"
12
Lucas Stach85990a92012-10-07 11:36:06 +000013/* Board-specific serial config */
14#define CONFIG_TEGRA_ENABLE_UARTA
15#define CONFIG_TEGRA_UARTA_SDIO1
Marcel Ziswiler53829532015-03-26 02:17:27 +010016#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
17
Lucas Stach85990a92012-10-07 11:36:06 +000018/* NAND support */
Marcel Ziswiler764d4122015-08-06 00:47:10 +020019#define CONFIG_SYS_MAX_NAND_DEVICE 1
Lucas Stach85990a92012-10-07 11:36:06 +000020
Igor Opaniuk2567d272020-03-27 12:15:47 +020021#define UBOOT_UPDATE \
22 "update_uboot=nand erase.part u-boot && " \
23 "nand write ${loadaddr} u-boot ${filesize}\0" \
Lucas Stach85990a92012-10-07 11:36:06 +000024
Igor Opaniuk2567d272020-03-27 12:15:47 +020025/* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
Marcel Ziswiler74068712015-08-06 00:47:07 +020026#define BOARD_EXTRA_ENV_SETTINGS \
Igor Opaniuk2567d272020-03-27 12:15:47 +020027 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
28 UBOOT_UPDATE
Marcel Ziswiler74068712015-08-06 00:47:07 +020029
Marcel Ziswiler53829532015-03-26 02:17:27 +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 Ziswiler53829532015-03-26 02:17:27 +010038/* Increase maximum number of arguments */
39#undef CONFIG_SYS_MAXARGS
40#define CONFIG_SYS_MAXARGS 32
41
Lucas Stach85990a92012-10-07 11:36:06 +000042#include "tegra-common-post.h"
43
44#endif /* __CONFIG_H */