]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
bf78b271 | 2 | /* |
b891d010 | 3 | * Copyright (c) 2014-2016 Marcel Ziswiler |
bf78b271 | 4 | * |
36a01bdd | 5 | * Configuration settings for the Toradex Apalis T30 modules. |
bf78b271 MZ |
6 | */ |
7 | ||
8 | #ifndef __CONFIG_H | |
9 | #define __CONFIG_H | |
10 | ||
11 | #include <linux/sizes.h> | |
12 | ||
13 | #include "tegra30-common.h" | |
14 | ||
8e487f38 MZ |
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 | */ | |
bf78b271 | 23 | #define CONFIG_TEGRA_ENABLE_UARTA |
91092132 | 24 | #define CFG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE |
bf78b271 | 25 | |
195b4836 IO |
26 | #define UBOOT_UPDATE \ |
27 | "uboot_hwpart=1\0" \ | |
28 | "uboot_blk=0\0" \ | |
29 | "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \ | |
30 | "setexpr blkcnt ${blkcnt} / 0x200\0" \ | |
31 | "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \ | |
32 | "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \ | |
33 | ||
34 | #define BOARD_EXTRA_ENV_SETTINGS \ | |
1377a776 IO |
35 | UBOOT_UPDATE \ |
36 | "boot_script_dhcp=boot.scr\0" | |
195b4836 | 37 | |
bf78b271 MZ |
38 | #include "tegra-common-post.h" |
39 | ||
40 | #endif /* __CONFIG_H */ |