]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/omap5_uevm.h
Merge 'u-boot-microblaze/zynq' into (u-boot-arm/master'
[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 #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 #define CONFIG_TCA642X
41 #define CONFIG_CMD_TCA642X
42 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
43 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
44
45 /* USB UHH support options */
46 #define CONFIG_CMD_USB
47 #define CONFIG_USB_HOST
48 #define CONFIG_USB_EHCI
49 #define CONFIG_USB_EHCI_OMAP
50 #define CONFIG_USB_STORAGE
51 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
52 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
53
54 #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 80
55 #define CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 79
56
57 /* Enabled commands */
58 #define CONFIG_CMD_DHCP         /* DHCP Support                 */
59 #define CONFIG_CMD_NET          /* bootp, tftpboot, rarpboot    */
60 #define CONFIG_CMD_NFS          /* NFS support                  */
61
62 /* USB Networking options */
63 #define CONFIG_USB_HOST_ETHER
64 #define CONFIG_USB_ETHER_SMSC95XX
65
66 #define CONSOLEDEV              "ttyO2"
67 #define CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC        16296
68
69 #endif /* __CONFIG_OMAP5_EVM_H */