xref: /openbmc/u-boot/include/configs/omap5_uevm.h (revision a79854a9)
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 #include <configs/omap5_common.h>
21 
22 #define CONFIG_CONS_INDEX		3
23 #define CONFIG_SYS_NS16550_COM3		UART3_BASE
24 #define CONFIG_BAUDRATE			115200
25 
26 /* MMC ENV related defines */
27 #define CONFIG_ENV_IS_IN_MMC
28 #define CONFIG_SYS_MMC_ENV_DEV		1	/* SLOT2: eMMC(1) */
29 #define CONFIG_ENV_OFFSET		0xE0000
30 #define CONFIG_ENV_OFFSET_REDUND	(CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
31 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
32 #define CONFIG_CMD_SAVEENV
33 
34 /* Enhance our eMMC support / experience. */
35 #define CONFIG_CMD_GPT
36 #define CONFIG_EFI_PARTITION
37 #define CONFIG_PARTITION_UUIDS
38 #define CONFIG_CMD_PART
39 
40 /* Required support for the TCA642X GPIO we have on the uEVM */
41 #define CONFIG_TCA642X
42 #define CONFIG_CMD_TCA642X
43 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
44 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
45 
46 /* USB UHH support options */
47 #define CONFIG_CMD_USB
48 #define CONFIG_USB_HOST
49 #define CONFIG_USB_EHCI
50 #define CONFIG_USB_EHCI_OMAP
51 #define CONFIG_USB_STORAGE
52 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
53 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
54 
55 #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 80
56 #define CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 79
57 
58 /* Enabled commands */
59 #define CONFIG_CMD_DHCP		/* DHCP Support			*/
60 #define CONFIG_CMD_NET		/* bootp, tftpboot, rarpboot	*/
61 #define CONFIG_CMD_NFS		/* NFS support			*/
62 
63 /* USB Networking options */
64 #define CONFIG_USB_HOST_ETHER
65 #define CONFIG_USB_ETHER_SMSC95XX
66 
67 #define CONSOLEDEV		"ttyO2"
68 
69 /* Max time to hold reset on this board, see doc/README.omap-reset-time */
70 #define CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC	16296
71 
72 #endif /* __CONFIG_OMAP5_EVM_H */
73