blob: 646086a956685e4c08b132e4c779a74e2b9b00eb [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 Ziswilerbf78b272014-09-05 10:18:38 +020015/* High-level configuration options */
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020016
17/* Board-specific serial config */
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020018#define CONFIG_TEGRA_ENABLE_UARTA
19#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
20
21#define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
22
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020023/* I2C */
24#define CONFIG_SYS_I2C_TEGRA
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020025
Marcel Ziswiler74b19ad2016-11-16 17:49:24 +010026/* Environment in eMMC, before config block at the end of 1st "boot sector" */
Marcel Ziswiler74b19ad2016-11-16 17:49:24 +010027#define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE + \
28 CONFIG_TDX_CFG_BLOCK_OFFSET)
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020029#define CONFIG_SYS_MMC_ENV_DEV 0
Marcel Ziswiler74b19ad2016-11-16 17:49:24 +010030#define CONFIG_SYS_MMC_ENV_PART 1
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020031
Marcel Ziswiler36a01bd2015-08-06 00:47:10 +020032/* USB host support */
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020033#define CONFIG_USB_EHCI_TEGRA
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020034
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020035/* PCI host support */
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020036
37/* PCI networking support */
Marcel Ziswiler3d1282f2015-03-01 02:05:38 +010038#define CONFIG_E1000_NO_NVM
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020039
40/* General networking support */
Max Krummenacherbaa6f0f2015-08-06 00:47:09 +020041#define CONFIG_IP_DEFRAG
Marcel Ziswilerf7c81e22016-09-15 00:54:00 +020042#define CONFIG_TFTP_BLOCKSIZE 16352
Max Krummenacherbaa6f0f2015-08-06 00:47:09 +020043#define CONFIG_TFTP_TSIZE
Marcel Ziswilerbf78b272014-09-05 10:18:38 +020044
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010045/* Increase console I/O buffer size */
46#undef CONFIG_SYS_CBSIZE
47#define CONFIG_SYS_CBSIZE 1024
48
49/* Increase arguments buffer size */
50#undef CONFIG_SYS_BARGSIZE
51#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
52
Marcel Ziswilerd5338c62015-03-01 02:05:39 +010053/* Increase maximum number of arguments */
54#undef CONFIG_SYS_MAXARGS
55#define CONFIG_SYS_MAXARGS 32
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 */