blob: 23dc0893f9814d674f99c8bd8af0fc8dcb3c8a2b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Sricharan74866ea2011-11-15 09:50:06 -05002/*
Lokesh Vutla3e716e22013-02-17 23:34:35 +00003 * (C) Copyright 2013
Sricharan74866ea2011-11-15 09:50:06 -05004 * Texas Instruments Incorporated.
5 * Sricharan R <r.sricharan@ti.com>
6 *
Sricharan74866ea2011-11-15 09:50:06 -05007 * Configuration settings for the TI EVM5430 board.
Enric Balletbò i Serra2785bb72013-12-06 21:30:19 +01008 * See ti_omap5_common.h for omap5 common settings.
Sricharan74866ea2011-11-15 09:50:06 -05009 */
Sricharan74866ea2011-11-15 09:50:06 -050010
Lokesh Vutla3e716e22013-02-17 23:34:35 +000011#ifndef __CONFIG_OMAP5_EVM_H
12#define __CONFIG_OMAP5_EVM_H
Sricharan74866ea2011-11-15 09:50:06 -050013
Sekhar Noribb018cf2016-11-25 14:25:54 +053014#include <environment/ti/dfu.h>
15
Tom Riniaed1ba12015-06-12 20:52:29 -040016#ifndef CONFIG_SPL_BUILD
Tom Rini546c6c12013-04-05 06:21:45 +000017/* Define the default GPT table for eMMC */
18#define PARTS_DEFAULT \
19 "uuid_disk=${uuid_gpt_disk};" \
Tom Rinic1313052013-04-10 15:10:10 -040020 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}"
Tom Riniaed1ba12015-06-12 20:52:29 -040021#endif
Tom Rini546c6c12013-04-05 06:21:45 +000022
Kishon Vijay Abraham Ice40a182015-09-03 15:27:52 +053023#define DFUARGS \
24 "dfu_bufsiz=0x10000\0" \
25 DFU_ALT_INFO_MMC \
26 DFU_ALT_INFO_EMMC \
27 DFU_ALT_INFO_RAM
28
Enric Balletbò i Serra2785bb72013-12-06 21:30:19 +010029#include <configs/ti_omap5_common.h>
Tom Rini929f5612013-08-27 10:56:18 -040030
Sricharan R9cc5ba02013-05-30 03:19:33 +000031#define CONFIG_SYS_NS16550_COM3 UART3_BASE
Sricharan R9cc5ba02013-05-30 03:19:33 +000032
Felipe Balbi96c2d072014-11-06 08:28:42 -060033#define CONFIG_MISC_INIT_R
Tom Rini546c6c12013-04-05 06:21:45 +000034/* MMC ENV related defines */
Tom Rini546c6c12013-04-05 06:21:45 +000035#define CONFIG_SYS_MMC_ENV_DEV 1 /* SLOT2: eMMC(1) */
Tom Rini886e55e2014-04-03 07:52:52 -040036#define CONFIG_ENV_SIZE (128 << 10)
Jean-Jacques Hiblota0900532017-05-24 12:08:27 +020037#define CONFIG_ENV_OFFSET 0x260000
Tom Rini0e389ce2013-04-30 16:04:17 -040038#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
39#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
Tom Rini546c6c12013-04-05 06:21:45 +000040
41/* Enhance our eMMC support / experience. */
Lubomir Popov8bf096d2013-12-19 17:14:02 +020042#define CONFIG_HSMMC2_8BIT
Tom Rini5c5eb292014-02-05 10:24:24 -050043#define CONFIG_SUPPORT_EMMC_BOOT
Tom Rini546c6c12013-04-05 06:21:45 +000044
Tom Rini611fe8d2013-08-20 08:53:53 -040045/* Required support for the TCA642X GPIO we have on the uEVM */
Dan Murphy05d5f992013-07-11 13:10:28 -050046#define CONFIG_TCA642X
Dan Murphy05d5f992013-07-11 13:10:28 -050047#define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
48#define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
49
Dan Murphy29d04b52013-08-01 14:05:59 -050050/* USB UHH support options */
Dan Murphy29d04b52013-08-01 14:05:59 -050051#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 */
Dan Murphy29d04b52013-08-01 14:05:59 -050057
58/* USB Networking options */
Dan Murphy29d04b52013-08-01 14:05:59 -050059
Dan Murphya6f9d152013-06-11 11:22:30 -050060#define CONSOLEDEV "ttyO2"
Tom Rini611fe8d2013-08-20 08:53:53 -040061
Roger Quadrosd88ab9c2013-11-11 16:56:42 +020062#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
Lokesh Vutla3e716e22013-02-17 23:34:35 +000068#endif /* __CONFIG_OMAP5_EVM_H */