blob: 2ba3c3bc87db2e50fbf6c14949e7544ff4de7803 [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
Tom Rinidf6a2152022-11-16 13:10:28 -050016#define CFG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
Marcel Ziswiler53829532015-03-26 02:17:27 +010017
Lucas Stach85990a92012-10-07 11:36:06 +000018/* NAND support */
Lucas Stach85990a92012-10-07 11:36:06 +000019
Igor Opaniuk2567d272020-03-27 12:15:47 +020020#define UBOOT_UPDATE \
21 "update_uboot=nand erase.part u-boot && " \
22 "nand write ${loadaddr} u-boot ${filesize}\0" \
Lucas Stach85990a92012-10-07 11:36:06 +000023
Igor Opaniuk2567d272020-03-27 12:15:47 +020024/* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
Marcel Ziswiler74068712015-08-06 00:47:07 +020025#define BOARD_EXTRA_ENV_SETTINGS \
Igor Opaniuk84c1a2d2022-04-13 11:33:27 +020026 "boot_script_dhcp=boot.scr\0" \
Igor Opaniuk2567d272020-03-27 12:15:47 +020027 UBOOT_UPDATE
Marcel Ziswiler74068712015-08-06 00:47:07 +020028
Lucas Stach85990a92012-10-07 11:36:06 +000029#include "tegra-common-post.h"
30
31#endif /* __CONFIG_H */