blob: 821162a2be8ae2c5e85d5a4851bbdf0d7b6d81da [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02002/*
Marcel Ziswilerd92dee52016-11-16 17:49:23 +01003 * Copyright (c) 2014-2016 Marcel Ziswiler
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02004 *
Marcel Ziswiler764d4122015-08-06 00:47:10 +02005 * Configuration settings for the Toradex Apalis T30 modules.
Marcel Ziswiler11e2a532014-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 Ziswiler11e2a532014-09-05 10:18:38 +020015/* Board-specific serial config */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020016#define CONFIG_TEGRA_ENABLE_UARTA
17#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
18
19#define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
20
Marcel Ziswiler070a0782016-11-16 17:49:24 +010021/* Environment in eMMC, before config block at the end of 1st "boot sector" */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020022#define CONFIG_SYS_MMC_ENV_DEV 0
Marcel Ziswiler070a0782016-11-16 17:49:24 +010023#define CONFIG_SYS_MMC_ENV_PART 1
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020024
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020025/* PCI networking support */
Marcel Ziswiler0fa8af52015-03-01 02:05:38 +010026#define CONFIG_E1000_NO_NVM
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020027
28/* General networking support */
Max Krummenacheraf116002015-08-06 00:47:09 +020029#define CONFIG_TFTP_TSIZE
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020030
Marcel Ziswilera4f0f812015-03-01 02:05:39 +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 Ziswilera4f0f812015-03-01 02:05:39 +010039/* Increase maximum number of arguments */
40#undef CONFIG_SYS_MAXARGS
41#define CONFIG_SYS_MAXARGS 32
42
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020043#include "tegra-common-usb-gadget.h"
44#include "tegra-common-post.h"
45
46#endif /* __CONFIG_H */