blob: f6b3ab1b041ad45352f96b343020ad375b0a9665 [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 Opaniuk84c1a2d2022-04-13 11:33:27 +020027 "boot_script_dhcp=boot.scr\0" \
Igor Opaniuk2567d272020-03-27 12:15:47 +020028 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
29 UBOOT_UPDATE
Marcel Ziswiler74068712015-08-06 00:47:07 +020030
Marcel Ziswiler53829532015-03-26 02:17:27 +010031/* Increase console I/O buffer size */
32#undef CONFIG_SYS_CBSIZE
33#define CONFIG_SYS_CBSIZE 1024
34
35/* Increase arguments buffer size */
36#undef CONFIG_SYS_BARGSIZE
37#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
38
Marcel Ziswiler53829532015-03-26 02:17:27 +010039/* Increase maximum number of arguments */
40#undef CONFIG_SYS_MAXARGS
41#define CONFIG_SYS_MAXARGS 32
42
Lucas Stach85990a92012-10-07 11:36:06 +000043#include "tegra-common-post.h"
44
45#endif /* __CONFIG_H */