Sricharan | a9c1c04 | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 1 | /* |
Lokesh Vutla | 3ef5ebe | 2013-02-17 23:34:35 +0000 | [diff] [blame] | 2 | * (C) Copyright 2013 |
Sricharan | a9c1c04 | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 3 | * Texas Instruments Incorporated. |
| 4 | * Sricharan R <r.sricharan@ti.com> |
| 5 | * |
Sricharan | a9c1c04 | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 6 | * Configuration settings for the TI EVM5430 board. |
Enric Balletbò i Serra | 3d657a0 | 2013-12-06 21:30:19 +0100 | [diff] [blame] | 7 | * See ti_omap5_common.h for omap5 common settings. |
Sricharan | a9c1c04 | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 8 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Sricharan | a9c1c04 | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 10 | */ |
| 11 | |
Lokesh Vutla | 3ef5ebe | 2013-02-17 23:34:35 +0000 | [diff] [blame] | 12 | #ifndef __CONFIG_OMAP5_EVM_H |
| 13 | #define __CONFIG_OMAP5_EVM_H |
Sricharan | a9c1c04 | 2011-11-15 09:50:06 -0500 | [diff] [blame] | 14 | |
Tom Rini | 08520bf | 2015-06-12 20:52:29 -0400 | [diff] [blame] | 15 | #ifndef CONFIG_SPL_BUILD |
Tom Rini | 9552ee3 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 16 | /* Define the default GPT table for eMMC */ |
| 17 | #define PARTS_DEFAULT \ |
| 18 | "uuid_disk=${uuid_gpt_disk};" \ |
Tom Rini | a519602 | 2013-04-10 15:10:10 -0400 | [diff] [blame] | 19 | "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}" |
Tom Rini | 08520bf | 2015-06-12 20:52:29 -0400 | [diff] [blame] | 20 | #endif |
Tom Rini | 9552ee3 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 21 | |
Kishon Vijay Abraham I | bcd62e7 | 2015-09-03 15:27:52 +0530 | [diff] [blame] | 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 | |
Enric Balletbò i Serra | 3d657a0 | 2013-12-06 21:30:19 +0100 | [diff] [blame] | 63 | #include <configs/ti_omap5_common.h> |
Tom Rini | a228296 | 2013-08-27 10:56:18 -0400 | [diff] [blame] | 64 | |
Sricharan R | 378bd1f | 2013-05-30 03:19:33 +0000 | [diff] [blame] | 65 | #define CONFIG_CONS_INDEX 3 |
| 66 | #define CONFIG_SYS_NS16550_COM3 UART3_BASE |
| 67 | #define CONFIG_BAUDRATE 115200 |
| 68 | |
Felipe Balbi | ba2e01c | 2014-11-06 08:28:42 -0600 | [diff] [blame] | 69 | #define CONFIG_MISC_INIT_R |
Tom Rini | 9552ee3 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 70 | /* MMC ENV related defines */ |
| 71 | #define CONFIG_ENV_IS_IN_MMC |
| 72 | #define CONFIG_SYS_MMC_ENV_DEV 1 /* SLOT2: eMMC(1) */ |
Tom Rini | 2737f01 | 2014-04-03 07:52:52 -0400 | [diff] [blame] | 73 | #define CONFIG_ENV_SIZE (128 << 10) |
Tom Rini | 9552ee3 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 74 | #define CONFIG_ENV_OFFSET 0xE0000 |
Tom Rini | 63216de | 2013-04-30 16:04:17 -0400 | [diff] [blame] | 75 | #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) |
| 76 | #define CONFIG_SYS_REDUNDAND_ENVIRONMENT |
Tom Rini | 9552ee3 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 77 | |
| 78 | /* Enhance our eMMC support / experience. */ |
| 79 | #define CONFIG_CMD_GPT |
| 80 | #define CONFIG_EFI_PARTITION |
Lubomir Popov | f931483 | 2013-12-19 17:14:02 +0200 | [diff] [blame] | 81 | #define CONFIG_HSMMC2_8BIT |
Tom Rini | 378ec0f | 2014-02-05 10:24:24 -0500 | [diff] [blame] | 82 | #define CONFIG_SUPPORT_EMMC_BOOT |
Tom Rini | 9552ee3 | 2013-04-05 06:21:45 +0000 | [diff] [blame] | 83 | |
Tom Rini | 318aeb4 | 2013-08-20 08:53:53 -0400 | [diff] [blame] | 84 | /* Required support for the TCA642X GPIO we have on the uEVM */ |
Dan Murphy | fdce7b6 | 2013-07-11 13:10:28 -0500 | [diff] [blame] | 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 | |
Dan Murphy | 5e5cfaf | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 90 | /* USB UHH support options */ |
Dan Murphy | 5e5cfaf | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 91 | #define CONFIG_USB_HOST |
| 92 | #define CONFIG_USB_EHCI |
| 93 | #define CONFIG_USB_EHCI_OMAP |
| 94 | #define CONFIG_USB_STORAGE |
| 95 | #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3 |
| 96 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
| 97 | |
| 98 | #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 80 |
| 99 | #define CONFIG_OMAP_EHCI_PHY3_RESET_GPIO 79 |
| 100 | |
Kishon Vijay Abraham I | bcd62e7 | 2015-09-03 15:27:52 +0530 | [diff] [blame] | 101 | /* USB Device Firmware Update support */ |
| 102 | #define CONFIG_USB_FUNCTION_DFU |
| 103 | #define CONFIG_DFU_RAM |
Kishon Vijay Abraham I | bcd62e7 | 2015-09-03 15:27:52 +0530 | [diff] [blame] | 104 | |
| 105 | #define CONFIG_DFU_MMC |
| 106 | |
Dan Murphy | 5e5cfaf | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 107 | /* Enabled commands */ |
Dan Murphy | 5e5cfaf | 2013-08-01 14:05:59 -0500 | [diff] [blame] | 108 | |
| 109 | /* USB Networking options */ |
| 110 | #define CONFIG_USB_HOST_ETHER |
| 111 | #define CONFIG_USB_ETHER_SMSC95XX |
| 112 | |
Dan Murphy | 45dbbf2 | 2013-06-11 11:22:30 -0500 | [diff] [blame] | 113 | #define CONSOLEDEV "ttyO2" |
Tom Rini | 318aeb4 | 2013-08-20 08:53:53 -0400 | [diff] [blame] | 114 | |
| 115 | /* Max time to hold reset on this board, see doc/README.omap-reset-time */ |
Lokesh Vutla | 0b1b60c | 2013-04-17 20:49:40 +0000 | [diff] [blame] | 116 | #define CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC 16296 |
Tom Rini | a801757 | 2013-08-09 11:22:18 -0400 | [diff] [blame] | 117 | |
Simon Glass | c649e3c | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 118 | #define CONFIG_SCSI |
Roger Quadros | afdc632 | 2013-11-11 16:56:42 +0200 | [diff] [blame] | 119 | #define CONFIG_LIBATA |
| 120 | #define CONFIG_SCSI_AHCI |
| 121 | #define CONFIG_SCSI_AHCI_PLAT |
| 122 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 |
| 123 | #define CONFIG_SYS_SCSI_MAX_LUN 1 |
| 124 | #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ |
| 125 | CONFIG_SYS_SCSI_MAX_LUN) |
| 126 | |
Lokesh Vutla | 3ef5ebe | 2013-02-17 23:34:35 +0000 | [diff] [blame] | 127 | #endif /* __CONFIG_OMAP5_EVM_H */ |