blob: 069ed20427bc19ea9ff15b3aa20af4aee1302810 [file] [log] [blame]
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02001/*
Marcel Ziswilerd92dee52016-11-16 17:49:23 +01002 * Copyright (c) 2014-2016 Marcel Ziswiler
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02003 *
Marcel Ziswiler764d4122015-08-06 00:47:10 +02004 * Configuration settings for the Toradex Apalis T30 modules.
5 *
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02006 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
12#include <linux/sizes.h>
13
14#include "tegra30-common.h"
15
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020016#define CONFIG_ARCH_MISC_INIT
17
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020018/* High-level configuration options */
Marcel Ziswilerd92dee52016-11-16 17:49:23 +010019#define CONFIG_DISPLAY_BOARDINFO_LATE /* Calls show_board_info() */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020020
21/* Board-specific serial config */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020022#define CONFIG_TEGRA_ENABLE_UARTA
23#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
24
25#define CONFIG_MACH_TYPE MACH_TYPE_APALIS_T30
26
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020027/* I2C */
28#define CONFIG_SYS_I2C_TEGRA
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020029
Marcel Ziswiler764d4122015-08-06 00:47:10 +020030/* SD/MMC support */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020031#define CONFIG_MMC
32#define CONFIG_GENERIC_MMC
33#define CONFIG_TEGRA_MMC
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020034
35/* Environment in eMMC, at the end of 2nd "boot sector" */
36#define CONFIG_ENV_IS_IN_MMC
37#define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
38#define CONFIG_SYS_MMC_ENV_DEV 0
39#define CONFIG_SYS_MMC_ENV_PART 2
40
Marcel Ziswiler764d4122015-08-06 00:47:10 +020041/* USB host support */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020042#define CONFIG_USB_EHCI
43#define CONFIG_USB_EHCI_TEGRA
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020044
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020045/* PCI host support */
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020046#define CONFIG_CMD_PCI
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020047
48/* PCI networking support */
Marcel Ziswiler0fa8af52015-03-01 02:05:38 +010049#define CONFIG_E1000_NO_NVM
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020050
51/* General networking support */
Max Krummenacheraf116002015-08-06 00:47:09 +020052#define CONFIG_IP_DEFRAG
Marcel Ziswiler36124b92016-09-15 00:54:00 +020053#define CONFIG_TFTP_BLOCKSIZE 16352
Max Krummenacheraf116002015-08-06 00:47:09 +020054#define CONFIG_TFTP_TSIZE
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020055
Marcel Ziswilera4f0f812015-03-01 02:05:39 +010056/* Miscellaneous commands */
Marcel Ziswilera4f0f812015-03-01 02:05:39 +010057#define CONFIG_FAT_WRITE
58
59/* Increase console I/O buffer size */
60#undef CONFIG_SYS_CBSIZE
61#define CONFIG_SYS_CBSIZE 1024
62
63/* Increase arguments buffer size */
64#undef CONFIG_SYS_BARGSIZE
65#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
66
67/* Increase print buffer size */
68#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
69
70/* Increase maximum number of arguments */
71#undef CONFIG_SYS_MAXARGS
72#define CONFIG_SYS_MAXARGS 32
73
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020074#include "tegra-common-usb-gadget.h"
75#include "tegra-common-post.h"
76
77#endif /* __CONFIG_H */