]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/omap5_uevm.h
siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support
[karo-tx-uboot.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 /* Required support for the TCA642X GPIO we have on the uEVM */
39 #define CONFIG_TCA642X
40 #define CONFIG_CMD_TCA642X
41 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
42 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
43
44 #define CONSOLEDEV              "ttyO2"
45
46 /* Max time to hold reset on this board, see doc/README.omap-reset-time */
47 #define CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC        16296
48
49 #include <configs/omap5_common.h>
50
51 #endif /* __CONFIG_OMAP5_EVM_H */