xref: /openbmc/u-boot/include/configs/omap5_uevm.h (revision 78a88f79)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2013
4  * Texas Instruments Incorporated.
5  * Sricharan R	  <r.sricharan@ti.com>
6  *
7  * Configuration settings for the TI EVM5430 board.
8  * See ti_omap5_common.h for omap5 common settings.
9  */
10 
11 #ifndef __CONFIG_OMAP5_EVM_H
12 #define __CONFIG_OMAP5_EVM_H
13 
14 #include <environment/ti/dfu.h>
15 
16 #ifndef CONFIG_SPL_BUILD
17 /* Define the default GPT table for eMMC */
18 #define PARTS_DEFAULT \
19 	"uuid_disk=${uuid_gpt_disk};" \
20 	"name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}"
21 #endif
22 
23 #define DFUARGS \
24 	"dfu_bufsiz=0x10000\0" \
25 	DFU_ALT_INFO_MMC \
26 	DFU_ALT_INFO_EMMC \
27 	DFU_ALT_INFO_RAM
28 
29 #include <configs/ti_omap5_common.h>
30 
31 #define CONFIG_SYS_NS16550_COM3		UART3_BASE
32 
33 #define CONFIG_MISC_INIT_R
34 /* MMC ENV related defines */
35 #define CONFIG_SYS_MMC_ENV_DEV		1	/* SLOT2: eMMC(1) */
36 #define CONFIG_ENV_SIZE			(128 << 10)
37 #define CONFIG_ENV_OFFSET		0x260000
38 #define CONFIG_ENV_OFFSET_REDUND	(CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
39 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
40 
41 /* Enhance our eMMC support / experience. */
42 #define CONFIG_HSMMC2_8BIT
43 #define CONFIG_SUPPORT_EMMC_BOOT
44 
45 /* Required support for the TCA642X GPIO we have on the uEVM */
46 #define CONFIG_TCA642X
47 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
48 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
49 
50 /* USB UHH support options */
51 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
52 
53 #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 80
54 #define CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 79
55 
56 /* Enabled commands */
57 
58 /* USB Networking options */
59 
60 #define CONSOLEDEV		"ttyO2"
61 
62 #define CONFIG_SCSI_AHCI_PLAT
63 #define CONFIG_SYS_SCSI_MAX_SCSI_ID	1
64 #define CONFIG_SYS_SCSI_MAX_LUN		1
65 #define CONFIG_SYS_SCSI_MAX_DEVICE	(CONFIG_SYS_SCSI_MAX_SCSI_ID * \
66 						CONFIG_SYS_SCSI_MAX_LUN)
67 
68 #endif /* __CONFIG_OMAP5_EVM_H */
69