]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/omap5_uevm.h
d10c2b56f9498ddea6708ff6b63c497364ec9a4b
[people/ms/u-boot.git] / include / configs / omap5_uevm.h
1 /*
2 * (C) Copyright 2013
3 * Texas Instruments Incorporated.
4 * Sricharan R <r.sricharan@ti.com>
5 *
6 * Configuration settings for the TI EVM5430 board.
7 * See omap5_common.h for omap5 common settings.
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12 #ifndef __CONFIG_OMAP5_EVM_H
13 #define __CONFIG_OMAP5_EVM_H
14
15 /* Define the default GPT table for eMMC */
16 #define PARTS_DEFAULT \
17 "uuid_disk=${uuid_gpt_disk};" \
18 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}"
19
20 #define CONFIG_CONS_INDEX 3
21 #define CONFIG_SYS_NS16550_COM3 UART3_BASE
22 #define CONFIG_BAUDRATE 115200
23
24 /* MMC ENV related defines */
25 #define CONFIG_ENV_IS_IN_MMC
26 #define CONFIG_SYS_MMC_ENV_DEV 1 /* SLOT2: eMMC(1) */
27 #define CONFIG_ENV_OFFSET 0xE0000
28 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
29 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
30 #define CONFIG_CMD_SAVEENV
31
32 /* Enhance our eMMC support / experience. */
33 #define CONFIG_CMD_GPT
34 #define CONFIG_EFI_PARTITION
35 #define CONFIG_PARTITION_UUIDS
36 #define CONFIG_CMD_PART
37
38 #define CONFIG_TCA642X
39 #define CONFIG_CMD_TCA642X
40 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
41 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
42
43 #define CONSOLEDEV "ttyO2"
44 #define CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC 16296
45
46 #include <configs/omap5_common.h>
47
48 #endif /* __CONFIG_OMAP5_EVM_H */