Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Sricharan | 74866ea | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 2 | /* |
Lokesh Vutla | 3e716e2 | 2013-02-17 23:34:35 +0000 | [diff] [blame] | 3 | * (C) Copyright 2013 |
Sricharan | 74866ea | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 4 | * Texas Instruments Incorporated. |
5 | * Sricharan R <r.sricharan@ti.com> | ||||
6 | * | ||||
Sricharan | 74866ea | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 7 | * Configuration settings for the TI EVM5430 board. |
Enric Balletbò i Serra | 2785bb7 | 2013-12-06 21:30:19 +0100 | [diff] [blame] | 8 | * See ti_omap5_common.h for omap5 common settings. |
Sricharan | 74866ea | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 9 | */ |
Sricharan | 74866ea | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 10 | |
Lokesh Vutla | 3e716e2 | 2013-02-17 23:34:35 +0000 | [diff] [blame] | 11 | #ifndef __CONFIG_OMAP5_EVM_H |
12 | #define __CONFIG_OMAP5_EVM_H | ||||
Sricharan | 74866ea | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 13 | |
Sekhar Nori | bb018cf | 2016-11-25 14:25:54 +0530 | [diff] [blame] | 14 | #include <environment/ti/dfu.h> |
15 | |||||
Tom Rini | aed1ba1 | 2015-06-12 20:52:29 -0400 | [diff] [blame] | 16 | #ifndef CONFIG_SPL_BUILD |
Tom Rini | 546c6c1 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 17 | /* Define the default GPT table for eMMC */ |
18 | #define PARTS_DEFAULT \ | ||||
19 | "uuid_disk=${uuid_gpt_disk};" \ | ||||
Tom Rini | c131305 | 2013-04-10 15:10:10 -0400 | [diff] [blame] | 20 | "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}" |
Tom Rini | aed1ba1 | 2015-06-12 20:52:29 -0400 | [diff] [blame] | 21 | #endif |
Tom Rini | 546c6c1 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 22 | |
Kishon Vijay Abraham I | ce40a18 | 2015-09-03 15:27:52 +0530 | [diff] [blame] | 23 | #define DFUARGS \ |
24 | "dfu_bufsiz=0x10000\0" \ | ||||
25 | DFU_ALT_INFO_MMC \ | ||||
26 | DFU_ALT_INFO_EMMC \ | ||||
27 | DFU_ALT_INFO_RAM | ||||
28 | |||||
Enric Balletbò i Serra | 2785bb7 | 2013-12-06 21:30:19 +0100 | [diff] [blame] | 29 | #include <configs/ti_omap5_common.h> |
Tom Rini | 929f561 | 2013-08-27 10:56:18 -0400 | [diff] [blame] | 30 | |
Tom Rini | df6a215 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 31 | #define CFG_SYS_NS16550_COM3 UART3_BASE |
Sricharan R | 9cc5ba0 | 2013-05-30 03:19:33 +0000 | [diff] [blame] | 32 | |
Tom Rini | 546c6c1 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 33 | /* MMC ENV related defines */ |
Tom Rini | 546c6c1 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 34 | |
Tom Rini | 611fe8d | 2013-08-20 08:53:53 -0400 | [diff] [blame] | 35 | /* Required support for the TCA642X GPIO we have on the uEVM */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 36 | #define CFG_SYS_I2C_TCA642X_BUS_NUM 4 |
37 | #define CFG_SYS_I2C_TCA642X_ADDR 0x22 | ||||
Dan Murphy | 05d5f99 | 2013-07-11 13:10:28 -0500 | [diff] [blame] | 38 | |
Dan Murphy | 29d04b5 | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 39 | /* Enabled commands */ |
Dan Murphy | 29d04b5 | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 40 | |
41 | /* USB Networking options */ | ||||
Dan Murphy | 29d04b5 | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 42 | |
Sam Protsenko | 02c005f | 2019-07-12 20:38:12 +0300 | [diff] [blame] | 43 | #define CONSOLEDEV "ttyS2" |
Tom Rini | 611fe8d | 2013-08-20 08:53:53 -0400 | [diff] [blame] | 44 | |
Lokesh Vutla | 3e716e2 | 2013-02-17 23:34:35 +0000 | [diff] [blame] | 45 | #endif /* __CONFIG_OMAP5_EVM_H */ |