2009-01-28 20:39:58 +00:00
|
|
|
/*
|
2011-10-25 06:11:29 +00:00
|
|
|
* Configuration settings for the TI OMAP3 EVM board.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2011 Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
*
|
2009-01-28 20:39:58 +00:00
|
|
|
* Author :
|
|
|
|
* Manikandan Pillai <mani.pillai@ti.com>
|
|
|
|
* Derived from Beagle Board and 3430 SDP code by
|
|
|
|
* Richard Woodruff <r-woodruff2@ti.com>
|
|
|
|
* Syed Mohammed Khasim <khasim@ti.com>
|
|
|
|
*
|
|
|
|
* Manikandan Pillai <mani.pillai@ti.com>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2009-01-28 20:39:58 +00:00
|
|
|
*/
|
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
2011-10-25 06:11:29 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
|
2011-10-25 06:11:29 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#include <configs/ti_omap3_common.h>
|
2016-07-28 02:29:42 +00:00
|
|
|
|
|
|
|
/*
|
2017-08-06 05:00:21 +00:00
|
|
|
* We are only ever GP parts and will utilize all of the "downloaded image"
|
|
|
|
* area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB).
|
2016-07-28 02:29:42 +00:00
|
|
|
*/
|
2017-08-06 05:00:21 +00:00
|
|
|
#undef CONFIG_SPL_TEXT_BASE
|
|
|
|
#define CONFIG_SPL_TEXT_BASE 0x40200000
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#define CONFIG_SPL_FRAMEWORK
|
2016-07-28 02:29:42 +00:00
|
|
|
|
|
|
|
#define CONFIG_MISC_INIT_R
|
2017-08-06 05:00:21 +00:00
|
|
|
#define CONFIG_CMDLINE_TAG
|
2016-07-28 02:29:42 +00:00
|
|
|
#define CONFIG_SETUP_MEMORY_TAGS
|
|
|
|
#define CONFIG_INITRD_TAG
|
|
|
|
#define CONFIG_REVISION_TAG
|
|
|
|
|
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
/* Override OMAP3 serial console configuration */
|
|
|
|
#undef CONFIG_CONS_INDEX
|
|
|
|
#define CONFIG_CONS_INDEX 1
|
|
|
|
#define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1
|
|
|
|
#if defined(CONFIG_SPL_BUILD)
|
|
|
|
#undef CONFIG_SYS_NS16550_REG_SIZE
|
|
|
|
#else /* !CONFIG_SPL_BUILD */
|
|
|
|
#define CONFIG_SYS_NS16550_REG_SIZE (-1)
|
|
|
|
#endif /* CONFIG_SPL_BUILD */
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
/* NAND */
|
|
|
|
#if defined(CONFIG_NAND)
|
|
|
|
#define CONFIG_NAND_OMAP_GPMC
|
2016-07-28 02:29:42 +00:00
|
|
|
#define CONFIG_SYS_FLASH_BASE NAND_BASE
|
2017-08-06 05:00:21 +00:00
|
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
|
|
#define CONFIG_SYS_NAND_BUSWIDTH_16BIT
|
|
|
|
#define CONFIG_SYS_NAND_5_ADDR_CYCLE
|
|
|
|
#define CONFIG_SYS_NAND_PAGE_COUNT 64
|
|
|
|
#define CONFIG_SYS_NAND_PAGE_SIZE 2048
|
|
|
|
#define CONFIG_SYS_NAND_OOBSIZE 64
|
|
|
|
#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
|
|
|
|
#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
|
|
|
|
#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
|
|
|
|
10, 11, 12, 13}
|
|
|
|
#define CONFIG_SYS_NAND_ECCSIZE 512
|
|
|
|
#define CONFIG_SYS_NAND_ECCBYTES 3
|
|
|
|
#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
|
|
|
|
#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
|
|
|
|
#define CONFIG_ENV_IS_IN_NAND 1
|
|
|
|
#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
|
|
|
|
#define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */
|
|
|
|
#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
|
|
|
|
#define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
|
|
|
|
#define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
|
|
|
|
#define CONFIG_ENV_OVERWRITE
|
|
|
|
#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
|
|
|
|
#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
|
|
|
|
#endif /* CONFIG_NAND */
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#define CONFIG_USB_OMAP3
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
/* MUSB */
|
|
|
|
#define CONFIG_USB_MUSB_OMAP2PLUS
|
|
|
|
#define CONFIG_USB_MUSB_PIO_ONLY
|
|
|
|
#define CONFIG_USB_ETHER
|
|
|
|
#define CONFIG_USB_ETHER_RNDIS
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
/* USB EHCI */
|
|
|
|
#define CONFIG_SYS_USB_FAT_BOOT_PARTITION 1
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
/* SMSC911x Ethernet */
|
2016-07-28 02:29:42 +00:00
|
|
|
#if defined(CONFIG_CMD_NET)
|
|
|
|
#define CONFIG_SMC911X
|
|
|
|
#define CONFIG_SMC911X_32_BIT
|
2017-08-06 05:00:21 +00:00
|
|
|
#define CONFIG_SMC911X_BASE 0x2C000000
|
2016-07-28 02:29:42 +00:00
|
|
|
#endif /* CONFIG_CMD_NET */
|
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
/* Environment */
|
|
|
|
#define CONFIG_PREBOOT "usb start"
|
2009-05-15 21:48:37 +00:00
|
|
|
|
2009-01-28 20:39:58 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2017-08-06 05:00:21 +00:00
|
|
|
DEFAULT_LINUX_BOOT_ENV \
|
|
|
|
"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
|
|
|
|
"mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
|
2009-01-28 20:39:58 +00:00
|
|
|
"loadaddr=0x82000000\0" \
|
2009-11-04 21:58:23 +00:00
|
|
|
"usbtty=cdc_acm\0" \
|
2011-09-04 01:42:35 +00:00
|
|
|
"mmcdev=0\0" \
|
2011-09-23 05:25:28 +00:00
|
|
|
"console=ttyO0,115200n8\0" \
|
2009-01-28 20:39:58 +00:00
|
|
|
"mmcargs=setenv bootargs console=${console} " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"${optargs} " \
|
2009-01-28 20:39:58 +00:00
|
|
|
"root=/dev/mmcblk0p2 rw " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"rootfstype=ext4 rootwait\0" \
|
2009-01-28 20:39:58 +00:00
|
|
|
"nandargs=setenv bootargs console=${console} " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"${optargs} " \
|
|
|
|
"root=ubi0:rootfs rw ubi.mtd=rootfs noinitrd " \
|
|
|
|
"rootfstype=ubifs rootwait\0" \
|
2011-09-04 01:42:35 +00:00
|
|
|
"loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
|
2009-01-28 20:39:58 +00:00
|
|
|
"bootscript=echo Running bootscript from mmc ...; " \
|
2009-04-01 21:34:12 +00:00
|
|
|
"source ${loadaddr}\0" \
|
2017-08-06 05:00:21 +00:00
|
|
|
"loaduimage=setenv bootfile uImage; " \
|
|
|
|
"fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
|
|
|
|
"loadzimage=setenv bootfile zImage; " \
|
|
|
|
"fatload mmc ${mmcdev} ${loadaddr} zImage\0" \
|
|
|
|
"loaddtb=fatload mmc ${mmcdev} ${fdtaddr} omap3-evm.dtb\0" \
|
|
|
|
"mmcboot=echo Booting ${bootfile} from mmc ...; " \
|
|
|
|
"run mmcargs; " \
|
|
|
|
"bootm ${loadaddr} - ${fdtaddr}\0" \
|
|
|
|
"mmcbootz=echo Booting ${bootfile} from mmc ...; " \
|
2009-01-28 20:39:58 +00:00
|
|
|
"run mmcargs; " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"bootz ${loadaddr} - ${fdtaddr}\0" \
|
|
|
|
"nandboot=echo Booting uImage from nand ...; " \
|
2009-01-28 20:39:58 +00:00
|
|
|
"run nandargs; " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"nand read ${loadaddr} kernel; " \
|
|
|
|
"nand read ${fdtaddr} dtb; " \
|
|
|
|
"bootm ${loadaddr} - ${fdtaddr}\0"
|
2009-01-28 20:39:58 +00:00
|
|
|
|
|
|
|
#define CONFIG_BOOTCOMMAND \
|
2012-10-01 05:06:52 +00:00
|
|
|
"mmc dev ${mmcdev}; if mmc rescan; then " \
|
2009-01-28 20:39:58 +00:00
|
|
|
"if run loadbootscript; then " \
|
|
|
|
"run bootscript; " \
|
|
|
|
"else " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"if run loadzimage && run loaddtb; then " \
|
|
|
|
"run mmcbootz; fi; " \
|
|
|
|
"if run loaduimage && run loaddtb; then " \
|
|
|
|
"run mmcboot; fi; " \
|
|
|
|
"run nandboot; " \
|
2009-01-28 20:39:58 +00:00
|
|
|
"fi; " \
|
|
|
|
"else run nandboot; fi"
|
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#endif /* __CONFIG_H */
|