2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2012-10-07 11:36:06 +00:00
|
|
|
/*
|
2015-03-26 00:31:54 +00:00
|
|
|
* Copyright (C) 2012 Lucas Stach
|
2012-10-07 11:36:06 +00:00
|
|
|
*
|
2015-08-05 22:47:10 +00:00
|
|
|
* Configuration settings for the Toradex Colibri T20 modules.
|
2012-10-07 11:36:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#include "tegra20-common.h"
|
|
|
|
|
|
|
|
/* Board-specific serial config */
|
|
|
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
|
|
|
#define CONFIG_TEGRA_UARTA_SDIO1
|
2015-03-26 01:17:27 +00:00
|
|
|
#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
|
|
|
|
|
2017-01-26 01:42:35 +00:00
|
|
|
#define CONFIG_MACH_TYPE MACH_TYPE_COLIBRI_TEGRA2
|
|
|
|
|
2015-08-05 22:47:02 +00:00
|
|
|
/* LCD support */
|
|
|
|
#define CONFIG_LCD_LOGO
|
|
|
|
|
2012-10-07 11:36:06 +00:00
|
|
|
/* NAND support */
|
|
|
|
#define CONFIG_TEGRA_NAND
|
2015-08-05 22:47:10 +00:00
|
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
2012-10-07 11:36:06 +00:00
|
|
|
|
2020-03-27 10:15:47 +00:00
|
|
|
#define UBOOT_UPDATE \
|
|
|
|
"update_uboot=nand erase.part u-boot && " \
|
|
|
|
"nand write ${loadaddr} u-boot ${filesize}\0" \
|
2012-10-07 11:36:06 +00:00
|
|
|
|
2020-03-27 10:15:47 +00:00
|
|
|
/* Environment in NAND, 64K is a bit excessive but erase block is 512K anyway */
|
2015-08-05 22:47:07 +00:00
|
|
|
#define BOARD_EXTRA_ENV_SETTINGS \
|
2020-03-27 10:15:47 +00:00
|
|
|
"mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
|
|
|
|
UBOOT_UPDATE
|
2015-08-05 22:47:07 +00:00
|
|
|
|
2015-03-26 01:17:27 +00:00
|
|
|
/* Increase console I/O buffer size */
|
|
|
|
#undef CONFIG_SYS_CBSIZE
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024
|
|
|
|
|
|
|
|
/* Increase arguments buffer size */
|
|
|
|
#undef CONFIG_SYS_BARGSIZE
|
|
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
|
|
|
|
|
|
/* Increase maximum number of arguments */
|
|
|
|
#undef CONFIG_SYS_MAXARGS
|
|
|
|
#define CONFIG_SYS_MAXARGS 32
|
|
|
|
|
|
|
|
#include "tegra-common-usb-gadget.h"
|
2012-10-07 11:36:06 +00:00
|
|
|
#include "tegra-common-post.h"
|
|
|
|
|
|
|
|
#endif /* __CONFIG_H */
|