blob: f0c003d2fe052ab8cd449e633d9aa2270a78a72f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marcel Ziswilerbf78b272014-09-05 10:18:38 +02002/*
Marcel Ziswilerb891d012016-11-16 17:49:23 +01003 * Copyright (c) 2014-2016 Marcel Ziswiler
Marcel Ziswilerbf78b272014-09-05 10:18:38 +02004 *
Marcel Ziswiler36a01bd2015-08-06 00:47:10 +02005 * Configuration settings for the Toradex Apalis T30 modules.
Marcel Ziswilerbf78b272014-09-05 10:18:38 +02006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11#include <linux/sizes.h>
12
13#include "tegra30-common.h"
14
Marcel Ziswiler8e487f32019-09-12 11:12:55 +020015/*
16 * Board-specific serial config
17 *
18 * Apalis UART1: NVIDIA UARTA
19 * Apalis UART2: NVIDIA UARTD
20 * Apalis UART3: NVIDIA UARTB
21 * Apalis UART4: NVIDIA UARTC
22 */
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020023#define CONFIG_TEGRA_ENABLE_UARTA
24#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
25
26#define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
27
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020028/* PCI networking support */
Marcel Ziswiler3d1282f2015-03-01 02:05:38 +010029#define CONFIG_E1000_NO_NVM
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020030
31/* General networking support */
Max Krummenacherbaa6f0f2015-08-06 00:47:09 +020032#define CONFIG_TFTP_TSIZE
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020033
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010034/* Increase console I/O buffer size */
35#undef CONFIG_SYS_CBSIZE
36#define CONFIG_SYS_CBSIZE 1024
37
38/* Increase arguments buffer size */
39#undef CONFIG_SYS_BARGSIZE
40#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
41
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010042/* Increase maximum number of arguments */
43#undef CONFIG_SYS_MAXARGS
44#define CONFIG_SYS_MAXARGS 32
45
Igor Opaniuk195b4832020-03-27 12:15:46 +020046#define UBOOT_UPDATE \
47 "uboot_hwpart=1\0" \
48 "uboot_blk=0\0" \
49 "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
50 "setexpr blkcnt ${blkcnt} / 0x200\0" \
51 "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
52 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
53
54#define BOARD_EXTRA_ENV_SETTINGS \
55 UBOOT_UPDATE
56
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020057#include "tegra-common-usb-gadget.h"
58#include "tegra-common-post.h"
59
60#endif /* __CONFIG_H */