Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Marcel Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 2 | /* |
Marcel Ziswiler | b891d01 | 2016-11-16 17:49:23 +0100 | [diff] [blame] | 3 | * Copyright (c) 2014-2016 Marcel Ziswiler |
Marcel Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 4 | * |
Marcel Ziswiler | 36a01bd | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 5 | * Configuration settings for the Toradex Apalis T30 modules. |
Marcel Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
| 11 | #include <linux/sizes.h> |
| 12 | |
| 13 | #include "tegra30-common.h" |
| 14 | |
Marcel Ziswiler | 8e487f3 | 2019-09-12 11:12:55 +0200 | [diff] [blame] | 15 | /* |
| 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 Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 23 | #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 Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 28 | /* PCI networking support */ |
Marcel Ziswiler | 3d1282f | 2015-03-01 02:05:38 +0100 | [diff] [blame] | 29 | #define CONFIG_E1000_NO_NVM |
Marcel Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 30 | |
Marcel Ziswiler | d5338c6 | 2015-03-01 02:05:39 +0100 | [diff] [blame] | 31 | /* 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 Ziswiler | d5338c6 | 2015-03-01 02:05:39 +0100 | [diff] [blame] | 39 | /* Increase maximum number of arguments */ |
| 40 | #undef CONFIG_SYS_MAXARGS |
| 41 | #define CONFIG_SYS_MAXARGS 32 |
| 42 | |
Igor Opaniuk | 195b483 | 2020-03-27 12:15:46 +0200 | [diff] [blame] | 43 | #define UBOOT_UPDATE \ |
| 44 | "uboot_hwpart=1\0" \ |
| 45 | "uboot_blk=0\0" \ |
| 46 | "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \ |
| 47 | "setexpr blkcnt ${blkcnt} / 0x200\0" \ |
| 48 | "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \ |
| 49 | "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \ |
| 50 | |
| 51 | #define BOARD_EXTRA_ENV_SETTINGS \ |
| 52 | UBOOT_UPDATE |
| 53 | |
Marcel Ziswiler | bf78b27 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 54 | #include "tegra-common-usb-gadget.h" |
| 55 | #include "tegra-common-post.h" |
| 56 | |
| 57 | #endif /* __CONFIG_H */ |