blob: 41c05795674d790ed55d8ab42c364e7eedaef05c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behmebb732be2009-01-28 21:39:58 +01002/*
Sanjeev Premi22ad1022011-10-25 06:11:29 +00003 * Configuration settings for the TI OMAP3 EVM board.
4 *
5 * Copyright (C) 2006-2011 Texas Instruments Incorporated - http://www.ti.com/
6 *
Dirk Behmebb732be2009-01-28 21:39:58 +01007 * Author :
8 * Manikandan Pillai <mani.pillai@ti.com>
9 * Derived from Beagle Board and 3430 SDP code by
10 * Richard Woodruff <r-woodruff2@ti.com>
11 * Syed Mohammed Khasim <khasim@ti.com>
12 *
13 * Manikandan Pillai <mani.pillai@ti.com>
Dirk Behmebb732be2009-01-28 21:39:58 +010014 */
Sanjeev Premi22ad1022011-10-25 06:11:29 +000015
Derald D. Woods1b01bf92017-08-06 00:00:21 -050016#ifndef __CONFIG_H
17#define __CONFIG_H
Sanjeev Premi22ad1022011-10-25 06:11:29 +000018
Derald D. Woods1b01bf92017-08-06 00:00:21 -050019#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
Sanjeev Premi22ad1022011-10-25 06:11:29 +000020
Derald D. Woods1b01bf92017-08-06 00:00:21 -050021#include <configs/ti_omap3_common.h>
Tom Rinidf407782016-07-27 22:29:42 -040022
23/*
Derald D. Woods1b01bf92017-08-06 00:00:21 -050024 * We are only ever GP parts and will utilize all of the "downloaded image"
25 * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB).
Tom Rinidf407782016-07-27 22:29:42 -040026 */
Derald D. Woods1b01bf92017-08-06 00:00:21 -050027#undef CONFIG_SPL_TEXT_BASE
28#define CONFIG_SPL_TEXT_BASE 0x40200000
Tom Rinidf407782016-07-27 22:29:42 -040029
Tom Rinidf407782016-07-27 22:29:42 -040030#define CONFIG_MISC_INIT_R
Derald D. Woods1b01bf92017-08-06 00:00:21 -050031#define CONFIG_CMDLINE_TAG
Tom Rinidf407782016-07-27 22:29:42 -040032#define CONFIG_SETUP_MEMORY_TAGS
33#define CONFIG_INITRD_TAG
34#define CONFIG_REVISION_TAG
35
Derald D. Woods1b01bf92017-08-06 00:00:21 -050036/* Override OMAP3 serial console configuration */
Derald D. Woods1b01bf92017-08-06 00:00:21 -050037#define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1
Tom Rinidf407782016-07-27 22:29:42 -040038
Derald D. Woods1b01bf92017-08-06 00:00:21 -050039/* NAND */
40#if defined(CONFIG_NAND)
Tom Rinidf407782016-07-27 22:29:42 -040041#define CONFIG_SYS_FLASH_BASE NAND_BASE
Derald D. Woods1b01bf92017-08-06 00:00:21 -050042#define CONFIG_SYS_MAX_NAND_DEVICE 1
Derald D. Woods1b01bf92017-08-06 00:00:21 -050043#define CONFIG_SYS_NAND_5_ADDR_CYCLE
44#define CONFIG_SYS_NAND_PAGE_COUNT 64
45#define CONFIG_SYS_NAND_PAGE_SIZE 2048
46#define CONFIG_SYS_NAND_OOBSIZE 64
47#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
48#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
49#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
50 10, 11, 12, 13}
51#define CONFIG_SYS_NAND_ECCSIZE 512
52#define CONFIG_SYS_NAND_ECCBYTES 3
53#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
Derald D. Woods4d593102018-02-26 17:52:59 -060054#define CONFIG_SYS_ENV_SECT_SIZE SZ_128K
Adam Ford6b1c1652017-09-04 21:08:02 -050055#define CONFIG_ENV_OFFSET 0x260000
56#define CONFIG_ENV_ADDR 0x260000
Derald D. Woods1b01bf92017-08-06 00:00:21 -050057#define CONFIG_ENV_OVERWRITE
Derald D. Woods1b01bf92017-08-06 00:00:21 -050058#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
Derald D. Woods17f8f982017-09-02 17:43:05 -050059/* NAND: SPL falcon mode configs */
60#if defined(CONFIG_SPL_OS_BOOT)
Derald D. Woods4d593102018-02-26 17:52:59 -060061#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000
Derald D. Woods17f8f982017-09-02 17:43:05 -050062#endif /* CONFIG_SPL_OS_BOOT */
Derald D. Woods1b01bf92017-08-06 00:00:21 -050063#endif /* CONFIG_NAND */
Tom Rinidf407782016-07-27 22:29:42 -040064
Derald D. Woods1b01bf92017-08-06 00:00:21 -050065/* Environment */
Derald D. Woods4d593102018-02-26 17:52:59 -060066#define CONFIG_ENV_SIZE SZ_128K
67
Derald D. Woods1b01bf92017-08-06 00:00:21 -050068#define CONFIG_PREBOOT "usb start"
Sanjeev Premibf2f48c2009-05-15 23:48:37 +020069
Derald D. Woodsf6438a82017-11-29 03:28:55 +000070#define MEM_LAYOUT_ENV_SETTINGS \
71 DEFAULT_LINUX_BOOT_ENV
72
Derald D. Woods4da58202018-01-20 21:16:14 -060073#define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -060074 "bootcmd_" #devtypel #instance "=" \
Derald D. Woods4da58202018-01-20 21:16:14 -060075 "setenv mmcdev " #instance "; " \
Derald D. Woods4da58202018-01-20 21:16:14 -060076 "run mmcboot\0"
77#define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -060078 #devtypel #instance " "
Derald D. Woodsf6438a82017-11-29 03:28:55 +000079
Derald D. Woods4d593102018-02-26 17:52:59 -060080#if defined(CONFIG_NAND)
81
82#define BOOTENV_DEV_NAND(devtypeu, devtypel, instance) \
83 "bootcmd_" #devtypel #instance "=" \
84 "if test ${mtdids} = '' || test ${mtdparts} = '' ; then " \
85 "echo NAND boot disabled: No mtdids and/or mtdparts; " \
86 "else " \
87 "run nandboot; " \
88 "fi\0"
89#define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \
90 #devtypel #instance " "
91
Derald D. Woodsf6438a82017-11-29 03:28:55 +000092#define BOOT_TARGET_DEVICES(func) \
93 func(MMC, mmc, 0) \
Derald D. Woods4da58202018-01-20 21:16:14 -060094 func(LEGACY_MMC, legacy_mmc, 0) \
95 func(UBIFS, ubifs, 0) \
Derald D. Woodsf6438a82017-11-29 03:28:55 +000096 func(NAND, nand, 0)
97
Derald D. Woods4d593102018-02-26 17:52:59 -060098#else /* !CONFIG_NAND */
99
100#define BOOT_TARGET_DEVICES(func) \
101 func(MMC, mmc, 0) \
102 func(LEGACY_MMC, legacy_mmc, 0)
103
104#endif /* CONFIG_NAND */
105
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000106#include <config_distro_bootcmd.h>
107
Dirk Behmebb732be2009-01-28 21:39:58 +0100108#define CONFIG_EXTRA_ENV_SETTINGS \
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000109 MEM_LAYOUT_ENV_SETTINGS \
110 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Derald D. Woods17f8f982017-09-02 17:43:05 -0500111 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
Derald D. Woods1b01bf92017-08-06 00:00:21 -0500112 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Derald D. Woods3126cfd2017-12-28 01:25:43 -0600113 "fdt_high=0xffffffff\0" \
Derald D. Woods4d593102018-02-26 17:52:59 -0600114 "console=ttyO0,115200n8\0" \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -0600115 "bootdir=/boot\0" \
Derald D. Woods17f8f982017-09-02 17:43:05 -0500116 "bootenv=uEnv.txt\0" \
Derald D. Woods4da58202018-01-20 21:16:14 -0600117 "bootfile=zImage\0" \
Derald D. Woods4d593102018-02-26 17:52:59 -0600118 "bootpart=0:2\0" \
Derald D. Woods4da58202018-01-20 21:16:14 -0600119 "bootubivol=rootfs\0" \
120 "bootubipart=rootfs\0" \
Derald D. Woods17f8f982017-09-02 17:43:05 -0500121 "optargs=\0" \
Vaibhav Hiremath4fdf2b72011-09-03 21:42:35 -0400122 "mmcdev=0\0" \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -0600123 "mmcpart=2\0" \
Derald D. Woods4d593102018-02-26 17:52:59 -0600124 "mmcroot=/dev/mmcblk0p2 rw\0" \
125 "mmcrootfstype=ext4 rootwait\0" \
Dirk Behmebb732be2009-01-28 21:39:58 +0100126 "mmcargs=setenv bootargs console=${console} " \
Derald D. Woods17f8f982017-09-02 17:43:05 -0500127 "${mtdparts} " \
Derald D. Woods1b01bf92017-08-06 00:00:21 -0500128 "${optargs} " \
Derald D. Woods4d593102018-02-26 17:52:59 -0600129 "root=${mmcroot} " \
130 "rootfstype=${mmcrootfstype}\0" \
Derald D. Woods17f8f982017-09-02 17:43:05 -0500131 "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
Derald D. Woods4da58202018-01-20 21:16:14 -0600132 "ext4bootenv=ext4load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootenv}\0" \
Derald D. Woods4d593102018-02-26 17:52:59 -0600133 "importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
Derald D. Woods17f8f982017-09-02 17:43:05 -0500134 "env import -t ${loadaddr} ${filesize}\0" \
Derald D. Woods4d593102018-02-26 17:52:59 -0600135 "mmcbootenv=setenv bootpart ${mmcdev}:${mmcpart}; " \
136 "mmc dev ${mmcdev}; " \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -0600137 "if mmc rescan; then " \
138 "run loadbootenv && run importbootenv; " \
139 "run ext4bootenv && run importbootenv; " \
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000140 "if test -n $uenvcmd; then " \
141 "echo Running uenvcmd ...; " \
142 "run uenvcmd; " \
143 "fi; " \
144 "fi\0" \
Derald D. Woods4da58202018-01-20 21:16:14 -0600145 "loadimage=ext4load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
146 "loaddtb=ext4load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000147 "mmcboot=run mmcbootenv; " \
Derald D. Woods4da58202018-01-20 21:16:14 -0600148 "if run loadimage && run loaddtb; then " \
149 "echo Booting ${bootdir}/${bootfile} from mmc ${bootpart} ...; " \
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000150 "run mmcargs; " \
Derald D. Woods4da58202018-01-20 21:16:14 -0600151 "if test ${bootfile} = uImage; then " \
152 "bootm ${loadaddr} - ${fdtaddr}; " \
153 "fi; " \
154 "if test ${bootfile} = zImage; then " \
155 "bootz ${loadaddr} - ${fdtaddr}; " \
156 "fi; " \
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000157 "fi\0" \
Derald D. Woods4d593102018-02-26 17:52:59 -0600158 "nandroot=ubi0:rootfs ubi.mtd=rootfs rw noinitrd\0" \
159 "nandrootfstype=ubifs rootwait\0" \
160 "nandargs=setenv bootargs console=${console} " \
161 "${mtdparts} " \
162 "${optargs} " \
163 "root=${nandroot} " \
164 "rootfstype=${nandrootfstype}\0" \
165 "nandboot=if nand read ${loadaddr} kernel && nand read ${fdtaddr} dtb; then " \
Derald D. Woods4da58202018-01-20 21:16:14 -0600166 "echo Booting uImage from NAND MTD 'kernel' partition ...; " \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -0600167 "run nandargs; " \
Derald D. Woods4da58202018-01-20 21:16:14 -0600168 "bootm ${loadaddr} - ${fdtaddr}; " \
Derald D. Woodsbb7444e2018-01-06 23:10:06 -0600169 "fi\0" \
Derald D. Woodsf6438a82017-11-29 03:28:55 +0000170 BOOTENV
Dirk Behmebb732be2009-01-28 21:39:58 +0100171
Derald D. Woods1b01bf92017-08-06 00:00:21 -0500172#endif /* __CONFIG_H */