blob: ea7d648eb6a49125a6228061abe95cb5fa3e5b2a [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 */
Tom Rinidf6a2152022-11-16 13:10:28 -050014#define CFG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
Marcel Ziswiler53829532015-03-26 02:17:27 +010015
Lucas Stach85990a92012-10-07 11:36:06 +000016/* NAND support */
Lucas Stach85990a92012-10-07 11:36:06 +000017
Igor Opaniuk2567d272020-03-27 12:15:47 +020018#define UBOOT_UPDATE \
19 "update_uboot=nand erase.part u-boot && " \
20 "nand write ${loadaddr} u-boot ${filesize}\0" \
Lucas Stach85990a92012-10-07 11:36:06 +000021
Igor Opaniuk2567d272020-03-27 12:15:47 +020022/* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
Marcel Ziswiler74068712015-08-06 00:47:07 +020023#define BOARD_EXTRA_ENV_SETTINGS \
Igor Opaniuk84c1a2d2022-04-13 11:33:27 +020024 "boot_script_dhcp=boot.scr\0" \
Igor Opaniuk2567d272020-03-27 12:15:47 +020025 UBOOT_UPDATE
Marcel Ziswiler74068712015-08-06 00:47:07 +020026
Lucas Stach85990a92012-10-07 11:36:06 +000027#include "tegra-common-post.h"
28
29#endif /* __CONFIG_H */