]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/omap5_uevm.h
ARM: ti: Update layout for MMC and eMMC (env and dfu)
[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 ti_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 #include <environment/ti/dfu.h>
16
17 #ifndef CONFIG_SPL_BUILD
18 /* Define the default GPT table for eMMC */
19 #define PARTS_DEFAULT \
20 "uuid_disk=${uuid_gpt_disk};" \
21 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}"
22 #endif
23
24 #define DFUARGS \
25 "dfu_bufsiz=0x10000\0" \
26 DFU_ALT_INFO_MMC \
27 DFU_ALT_INFO_EMMC \
28 DFU_ALT_INFO_RAM
29
30 #include <configs/ti_omap5_common.h>
31
32 #define CONFIG_CONS_INDEX 3
33 #define CONFIG_SYS_NS16550_COM3 UART3_BASE
34
35 #define CONFIG_MISC_INIT_R
36 /* MMC ENV related defines */
37 #define CONFIG_ENV_IS_IN_MMC
38 #define CONFIG_SYS_MMC_ENV_DEV 1 /* SLOT2: eMMC(1) */
39 #define CONFIG_ENV_SIZE (128 << 10)
40 #define CONFIG_ENV_OFFSET 0x260000
41 #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
42 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
43
44 /* Enhance our eMMC support / experience. */
45 #define CONFIG_HSMMC2_8BIT
46 #define CONFIG_SUPPORT_EMMC_BOOT
47
48 /* Required support for the TCA642X GPIO we have on the uEVM */
49 #define CONFIG_TCA642X
50 #define CONFIG_CMD_TCA642X
51 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
52 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
53
54 /* USB UHH support options */
55 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
56 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
57
58 #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 80
59 #define CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 79
60
61 /* Enabled commands */
62
63 /* USB Networking options */
64 #define CONFIG_USB_HOST_ETHER
65 #define CONFIG_USB_ETHER_SMSC95XX
66
67 #define CONSOLEDEV "ttyO2"
68
69 #define CONFIG_SCSI
70 #define CONFIG_LIBATA
71 #define CONFIG_SCSI_AHCI
72 #define CONFIG_SCSI_AHCI_PLAT
73 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
74 #define CONFIG_SYS_SCSI_MAX_LUN 1
75 #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
76 CONFIG_SYS_SCSI_MAX_LUN)
77
78 #endif /* __CONFIG_OMAP5_EVM_H */