2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
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>
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
#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
|
|
|
#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
|
|
|
/* NAND */
|
2019-10-03 17:50:03 +00:00
|
|
|
#if defined(CONFIG_MTD_RAW_NAND)
|
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_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
|
2018-02-26 23:52:59 +00:00
|
|
|
#define CONFIG_SYS_ENV_SECT_SIZE SZ_128K
|
2017-09-02 22:43:05 +00:00
|
|
|
/* NAND: SPL falcon mode configs */
|
|
|
|
#if defined(CONFIG_SPL_OS_BOOT)
|
2018-02-26 23:52:59 +00:00
|
|
|
#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000
|
2017-09-02 22:43:05 +00:00
|
|
|
#endif /* CONFIG_SPL_OS_BOOT */
|
2019-10-03 17:50:03 +00:00
|
|
|
#endif /* CONFIG_MTD_RAW_NAND */
|
2016-07-28 02:29:42 +00:00
|
|
|
|
2017-11-29 03:28:55 +00:00
|
|
|
#define MEM_LAYOUT_ENV_SETTINGS \
|
|
|
|
DEFAULT_LINUX_BOOT_ENV
|
|
|
|
|
2018-01-21 03:16:14 +00:00
|
|
|
#define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \
|
2018-01-07 05:10:06 +00:00
|
|
|
"bootcmd_" #devtypel #instance "=" \
|
2018-01-21 03:16:14 +00:00
|
|
|
"setenv mmcdev " #instance "; " \
|
|
|
|
"run mmcboot\0"
|
|
|
|
#define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \
|
2017-11-29 03:28:55 +00:00
|
|
|
#devtypel #instance " "
|
|
|
|
|
2019-10-03 17:50:03 +00:00
|
|
|
#if defined(CONFIG_MTD_RAW_NAND)
|
2018-02-26 23:52:59 +00:00
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_" #devtypel #instance "=" \
|
|
|
|
"if test ${mtdids} = '' || test ${mtdparts} = '' ; then " \
|
|
|
|
"echo NAND boot disabled: No mtdids and/or mtdparts; " \
|
|
|
|
"else " \
|
|
|
|
"run nandboot; " \
|
|
|
|
"fi\0"
|
|
|
|
#define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
|
|
|
|
#devtypel #instance " "
|
|
|
|
|
2017-11-29 03:28:55 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0) \
|
2018-01-21 03:16:14 +00:00
|
|
|
func(LEGACY_MMC, legacy_mmc, 0) \
|
|
|
|
func(UBIFS, ubifs, 0) \
|
2017-11-29 03:28:55 +00:00
|
|
|
func(NAND, nand, 0)
|
|
|
|
|
2019-10-03 17:50:03 +00:00
|
|
|
#else /* !CONFIG_MTD_RAW_NAND */
|
2018-02-26 23:52:59 +00:00
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0) \
|
|
|
|
func(LEGACY_MMC, legacy_mmc, 0)
|
|
|
|
|
2019-10-03 17:50:03 +00:00
|
|
|
#endif /* CONFIG_MTD_RAW_NAND */
|
2018-02-26 23:52:59 +00:00
|
|
|
|
2017-11-29 03:28:55 +00:00
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2009-01-28 20:39:58 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2017-11-29 03:28:55 +00:00
|
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
|
|
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
2017-09-02 22:43:05 +00:00
|
|
|
"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
|
2017-08-06 05:00:21 +00:00
|
|
|
"mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
|
2017-12-28 07:25:43 +00:00
|
|
|
"fdt_high=0xffffffff\0" \
|
2018-02-26 23:52:59 +00:00
|
|
|
"console=ttyO0,115200n8\0" \
|
2018-01-07 05:10:06 +00:00
|
|
|
"bootdir=/boot\0" \
|
2017-09-02 22:43:05 +00:00
|
|
|
"bootenv=uEnv.txt\0" \
|
2018-01-21 03:16:14 +00:00
|
|
|
"bootfile=zImage\0" \
|
2018-02-26 23:52:59 +00:00
|
|
|
"bootpart=0:2\0" \
|
2018-01-21 03:16:14 +00:00
|
|
|
"bootubivol=rootfs\0" \
|
|
|
|
"bootubipart=rootfs\0" \
|
2017-09-02 22:43:05 +00:00
|
|
|
"optargs=\0" \
|
2011-09-04 01:42:35 +00:00
|
|
|
"mmcdev=0\0" \
|
2018-01-07 05:10:06 +00:00
|
|
|
"mmcpart=2\0" \
|
2018-02-26 23:52:59 +00:00
|
|
|
"mmcroot=/dev/mmcblk0p2 rw\0" \
|
|
|
|
"mmcrootfstype=ext4 rootwait\0" \
|
2009-01-28 20:39:58 +00:00
|
|
|
"mmcargs=setenv bootargs console=${console} " \
|
2017-09-02 22:43:05 +00:00
|
|
|
"${mtdparts} " \
|
2017-08-06 05:00:21 +00:00
|
|
|
"${optargs} " \
|
2018-02-26 23:52:59 +00:00
|
|
|
"root=${mmcroot} " \
|
|
|
|
"rootfstype=${mmcrootfstype}\0" \
|
2017-09-02 22:43:05 +00:00
|
|
|
"loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
|
2018-01-21 03:16:14 +00:00
|
|
|
"ext4bootenv=ext4load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootenv}\0" \
|
2018-02-26 23:52:59 +00:00
|
|
|
"importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
|
2017-09-02 22:43:05 +00:00
|
|
|
"env import -t ${loadaddr} ${filesize}\0" \
|
2018-02-26 23:52:59 +00:00
|
|
|
"mmcbootenv=setenv bootpart ${mmcdev}:${mmcpart}; " \
|
|
|
|
"mmc dev ${mmcdev}; " \
|
2018-01-07 05:10:06 +00:00
|
|
|
"if mmc rescan; then " \
|
|
|
|
"run loadbootenv && run importbootenv; " \
|
|
|
|
"run ext4bootenv && run importbootenv; " \
|
2017-11-29 03:28:55 +00:00
|
|
|
"if test -n $uenvcmd; then " \
|
|
|
|
"echo Running uenvcmd ...; " \
|
|
|
|
"run uenvcmd; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi\0" \
|
2018-01-21 03:16:14 +00:00
|
|
|
"loadimage=ext4load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
|
|
|
|
"loaddtb=ext4load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
|
2017-11-29 03:28:55 +00:00
|
|
|
"mmcboot=run mmcbootenv; " \
|
2018-01-21 03:16:14 +00:00
|
|
|
"if run loadimage && run loaddtb; then " \
|
|
|
|
"echo Booting ${bootdir}/${bootfile} from mmc ${bootpart} ...; " \
|
2017-11-29 03:28:55 +00:00
|
|
|
"run mmcargs; " \
|
2018-01-21 03:16:14 +00:00
|
|
|
"if test ${bootfile} = uImage; then " \
|
|
|
|
"bootm ${loadaddr} - ${fdtaddr}; " \
|
|
|
|
"fi; " \
|
|
|
|
"if test ${bootfile} = zImage; then " \
|
|
|
|
"bootz ${loadaddr} - ${fdtaddr}; " \
|
|
|
|
"fi; " \
|
2017-11-29 03:28:55 +00:00
|
|
|
"fi\0" \
|
2018-02-26 23:52:59 +00:00
|
|
|
"nandroot=ubi0:rootfs ubi.mtd=rootfs rw noinitrd\0" \
|
|
|
|
"nandrootfstype=ubifs rootwait\0" \
|
|
|
|
"nandargs=setenv bootargs console=${console} " \
|
|
|
|
"${mtdparts} " \
|
|
|
|
"${optargs} " \
|
|
|
|
"root=${nandroot} " \
|
|
|
|
"rootfstype=${nandrootfstype}\0" \
|
|
|
|
"nandboot=if nand read ${loadaddr} kernel && nand read ${fdtaddr} dtb; then " \
|
2018-01-21 03:16:14 +00:00
|
|
|
"echo Booting uImage from NAND MTD 'kernel' partition ...; " \
|
2018-01-07 05:10:06 +00:00
|
|
|
"run nandargs; " \
|
2018-01-21 03:16:14 +00:00
|
|
|
"bootm ${loadaddr} - ${fdtaddr}; " \
|
2018-01-07 05:10:06 +00:00
|
|
|
"fi\0" \
|
2017-11-29 03:28:55 +00:00
|
|
|
BOOTENV
|
2009-01-28 20:39:58 +00:00
|
|
|
|
2017-08-06 05:00:21 +00:00
|
|
|
#endif /* __CONFIG_H */
|