configs: Migrate CONFIG_USB_STORAGE
[platform/kernel/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 #ifndef CONFIG_SPL_BUILD
16 /* Define the default GPT table for eMMC */
17 #define PARTS_DEFAULT \
18         "uuid_disk=${uuid_gpt_disk};" \
19         "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}"
20 #endif
21
22 #define DFU_ALT_INFO_MMC \
23         "dfu_alt_info_mmc=" \
24         "boot part 0 1;" \
25         "rootfs part 0 2;" \
26         "MLO fat 0 1;" \
27         "MLO.raw raw 0x100 0x100;" \
28         "u-boot.img.raw raw 0x300 0x400;" \
29         "spl-os-args.raw raw 0x80 0x80;" \
30         "spl-os-image.raw raw 0x900 0x2000;" \
31         "spl-os-args fat 0 1;" \
32         "spl-os-image fat 0 1;" \
33         "u-boot.img fat 0 1;" \
34         "uEnv.txt fat 0 1\0"
35
36 #define DFU_ALT_INFO_EMMC \
37         "dfu_alt_info_emmc=" \
38         "rawemmc raw 0 3751936;" \
39         "boot part 1 1;" \
40         "rootfs part 1 2;" \
41         "MLO fat 1 1;" \
42         "MLO.raw raw 0x100 0x100;" \
43         "u-boot.img.raw raw 0x300 0x400;" \
44         "spl-os-args.raw raw 0x80 0x80;" \
45         "spl-os-image.raw raw 0x900 0x2000;" \
46         "spl-os-args fat 1 1;" \
47         "spl-os-image fat 1 1;" \
48         "u-boot.img fat 1 1;" \
49         "uEnv.txt fat 1 1\0"
50
51 #define DFU_ALT_INFO_RAM \
52         "dfu_alt_info_ram=" \
53         "kernel ram 0x80200000 0x4000000;" \
54         "fdt ram 0x80f80000 0x80000;" \
55         "ramdisk ram 0x81000000 0x4000000\0"
56
57 #define DFUARGS \
58         "dfu_bufsiz=0x10000\0" \
59         DFU_ALT_INFO_MMC \
60         DFU_ALT_INFO_EMMC \
61         DFU_ALT_INFO_RAM
62
63 #include <configs/ti_omap5_common.h>
64
65 #define CONFIG_CONS_INDEX               3
66 #define CONFIG_SYS_NS16550_COM3         UART3_BASE
67 #define CONFIG_BAUDRATE                 115200
68
69 #define CONFIG_MISC_INIT_R
70 /* MMC ENV related defines */
71 #define CONFIG_ENV_IS_IN_MMC
72 #define CONFIG_SYS_MMC_ENV_DEV          1       /* SLOT2: eMMC(1) */
73 #define CONFIG_ENV_SIZE                 (128 << 10)
74 #define CONFIG_ENV_OFFSET               0xE0000
75 #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
76 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
77
78 /* Enhance our eMMC support / experience. */
79 #define CONFIG_CMD_GPT
80 #define CONFIG_EFI_PARTITION
81 #define CONFIG_HSMMC2_8BIT
82 #define CONFIG_SUPPORT_EMMC_BOOT
83
84 /* Required support for the TCA642X GPIO we have on the uEVM */
85 #define CONFIG_TCA642X
86 #define CONFIG_CMD_TCA642X
87 #define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
88 #define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
89
90 /* USB UHH support options */
91 #define CONFIG_USB_EHCI
92 #define CONFIG_USB_EHCI_OMAP
93 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
94 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
95
96 #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 80
97 #define CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 79
98
99 /* USB Device Firmware Update support */
100 #define CONFIG_USB_FUNCTION_DFU
101 #define CONFIG_DFU_RAM
102
103 #define CONFIG_DFU_MMC
104
105 /* Enabled commands */
106
107 /* USB Networking options */
108 #define CONFIG_USB_HOST_ETHER
109 #define CONFIG_USB_ETHER_SMSC95XX
110
111 #define CONSOLEDEV              "ttyO2"
112
113 /* Max time to hold reset on this board, see doc/README.omap-reset-time */
114 #define CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC        16296
115
116 #define CONFIG_SCSI
117 #define CONFIG_LIBATA
118 #define CONFIG_SCSI_AHCI
119 #define CONFIG_SCSI_AHCI_PLAT
120 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     1
121 #define CONFIG_SYS_SCSI_MAX_LUN         1
122 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
123                                                 CONFIG_SYS_SCSI_MAX_LUN)
124
125 #endif /* __CONFIG_OMAP5_EVM_H */