12c2a9f3aSSRICHARAN R /* 22c2a9f3aSSRICHARAN R * (C) Copyright 2013 32c2a9f3aSSRICHARAN R * Texas Instruments Incorporated. 42c2a9f3aSSRICHARAN R * Sricharan R <r.sricharan@ti.com> 52c2a9f3aSSRICHARAN R * 62c2a9f3aSSRICHARAN R * Configuration settings for the TI EVM5430 board. 72c2a9f3aSSRICHARAN R * See omap5_common.h for omap5 common settings. 82c2a9f3aSSRICHARAN R * 92c2a9f3aSSRICHARAN R * See file CREDITS for list of people who contributed to this 102c2a9f3aSSRICHARAN R * project. 112c2a9f3aSSRICHARAN R * 122c2a9f3aSSRICHARAN R * This program is free software; you can redistribute it and/or 132c2a9f3aSSRICHARAN R * modify it under the terms of the GNU General Public License as 142c2a9f3aSSRICHARAN R * published by the Free Software Foundation; either version 2 of 152c2a9f3aSSRICHARAN R * the License, or (at your option) any later version. 162c2a9f3aSSRICHARAN R * 172c2a9f3aSSRICHARAN R * This program is distributed in the hope that it will be useful, 182c2a9f3aSSRICHARAN R * but WITHOUT ANY WARRANTY; without even the implied warranty of 192c2a9f3aSSRICHARAN R * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 202c2a9f3aSSRICHARAN R * GNU General Public License for more details. 212c2a9f3aSSRICHARAN R * 222c2a9f3aSSRICHARAN R * You should have received a copy of the GNU General Public License 232c2a9f3aSSRICHARAN R * along with this program; if not, write to the Free Software 242c2a9f3aSSRICHARAN R * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 252c2a9f3aSSRICHARAN R * MA 02111-1307 USA 262c2a9f3aSSRICHARAN R */ 272c2a9f3aSSRICHARAN R 282c2a9f3aSSRICHARAN R #ifndef __CONFIG_OMAP5_EVM_H 292c2a9f3aSSRICHARAN R #define __CONFIG_OMAP5_EVM_H 302c2a9f3aSSRICHARAN R 31*9552ee3eSTom Rini /* Define the default GPT table for eMMC */ 32*9552ee3eSTom Rini #define PARTS_DEFAULT \ 33*9552ee3eSTom Rini "uuid_disk=${uuid_gpt_disk};" \ 34*9552ee3eSTom Rini "name=u-boot,size=1792KiB,uuid=${uuid_gpt_u-boot};" \ 35*9552ee3eSTom Rini "name=rootfs,size=-,uuid=${uuid_gpt_rootfs}" 36*9552ee3eSTom Rini 372c2a9f3aSSRICHARAN R #include <configs/omap5_common.h> 382c2a9f3aSSRICHARAN R 392c2a9f3aSSRICHARAN R /* TWL6035 */ 402c2a9f3aSSRICHARAN R #ifndef CONFIG_SPL_BUILD 412c2a9f3aSSRICHARAN R #define CONFIG_TWL6035_POWER 422c2a9f3aSSRICHARAN R #endif 432c2a9f3aSSRICHARAN R 44*9552ee3eSTom Rini /* MMC ENV related defines */ 45*9552ee3eSTom Rini #define CONFIG_ENV_IS_IN_MMC 46*9552ee3eSTom Rini #define CONFIG_SYS_MMC_ENV_DEV 1 /* SLOT2: eMMC(1) */ 47*9552ee3eSTom Rini #define CONFIG_ENV_OFFSET 0xE0000 48*9552ee3eSTom Rini #define CONFIG_CMD_SAVEENV 49*9552ee3eSTom Rini 50*9552ee3eSTom Rini /* Enhance our eMMC support / experience. */ 51*9552ee3eSTom Rini #define CONFIG_CMD_GPT 52*9552ee3eSTom Rini #define CONFIG_EFI_PARTITION 53*9552ee3eSTom Rini #define CONFIG_PARTITION_UUIDS 54*9552ee3eSTom Rini #define CONFIG_CMD_PART 55*9552ee3eSTom Rini 562c2a9f3aSSRICHARAN R #define CONFIG_SYS_PROMPT "OMAP5430 EVM # " 572c2a9f3aSSRICHARAN R 582c2a9f3aSSRICHARAN R #endif /* __CONFIG_OMAP5_EVM_H */ 59