Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stefan Agner | 24d4d42 | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 2 | /* |
Marcel Ziswiler | b891d01 | 2016-11-16 17:49:23 +0100 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 Stefan Agner |
Stefan Agner | 24d4d42 | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 4 | * |
Marcel Ziswiler | 36a01bd | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 5 | * Configuration settings for the Toradex Colibri T30 modules. |
Stefan Agner | 24d4d42 | 2014-08-05 23:27:30 +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 | d5338c6 | 2015-03-01 02:05:39 +0100 | [diff] [blame] | 15 | /* High-level configuration options */ |
Stefan Agner | 24d4d42 | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 16 | |
Marcel Ziswiler | 8e487f3 | 2019-09-12 11:12:55 +0200 | [diff] [blame] | 17 | /* |
| 18 | * Board-specific serial config |
| 19 | * |
| 20 | * Colibri UART-A: NVIDIA UARTA |
| 21 | * Colibri UART-B: NVIDIA UARTD |
| 22 | * Colibri UART-C: NVIDIA UARTB |
| 23 | */ |
Stefan Agner | 24d4d42 | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 24 | #define CONFIG_TEGRA_ENABLE_UARTA |
| 25 | #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE |
| 26 | |
Igor Opaniuk | b308ffb | 2020-03-27 12:15:48 +0200 | [diff] [blame] | 27 | #define UBOOT_UPDATE \ |
| 28 | "uboot_hwpart=1\0" \ |
| 29 | "uboot_blk=0\0" \ |
| 30 | "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \ |
| 31 | "setexpr blkcnt ${blkcnt} / 0x200\0" \ |
| 32 | "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \ |
| 33 | "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \ |
| 34 | |
| 35 | #define BOARD_EXTRA_ENV_SETTINGS \ |
Igor Opaniuk | 1377a77 | 2022-04-13 11:33:27 +0200 | [diff] [blame] | 36 | UBOOT_UPDATE \ |
| 37 | "boot_script_dhcp=boot.scr\0" |
Igor Opaniuk | b308ffb | 2020-03-27 12:15:48 +0200 | [diff] [blame] | 38 | |
Stefan Agner | 24d4d42 | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 39 | #include "tegra-common-post.h" |
| 40 | |
| 41 | #endif /* __CONFIG_H */ |