blob: 162b05d505a5ef083a6a219feef4620f32dd2aab [file] [log] [blame]
Peter Barada86887f82011-12-19 19:54:51 +00001/*
2 * (C) Copyright 2011 Logic Product Development <www.logicpd.com>
3 * Peter Barada <peter.barada@logicpd.com>
4 *
5 * Configuration settings for the Logic OMAP35x/DM37x SOM LV/Torpedo
6 * reference boards.
7 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02008 * SPDX-License-Identifier: GPL-2.0+
Peter Barada86887f82011-12-19 19:54:51 +00009 */
10
11#ifndef __CONFIG_H
12#define __CONFIG_H
13
Adam Ford49c73032016-01-29 20:12:34 -060014/* High Level Configuration Options */
Peter Barada86887f82011-12-19 19:54:51 +000015
Adam Ford7b77b1f2015-09-02 09:18:20 -050016#define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
Adam Ford49c73032016-01-29 20:12:34 -060017
Adam Ford7b77b1f2015-09-02 09:18:20 -050018#include <configs/ti_omap3_common.h>
Adam Ford49c73032016-01-29 20:12:34 -060019
Adam Ford15fde732017-04-17 08:09:45 -050020#ifdef CONFIG_SPL_BUILD
Adam Ford15fde732017-04-17 08:09:45 -050021/* select serial console configuration for SPL */
Adam Ford15fde732017-04-17 08:09:45 -050022#define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1
23#endif
24
25
Tom Rinifa2f81b2016-08-26 13:30:43 -040026/*
27 * We are only ever GP parts and will utilize all of the "downloaded image"
28 * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB) in
29 * order to allow for BCH8 to fit in.
30 */
Adam Fordf92dfc82016-02-08 19:06:08 -060031#undef CONFIG_SPL_TEXT_BASE
Tom Rinifa2f81b2016-08-26 13:30:43 -040032#define CONFIG_SPL_TEXT_BASE 0x40200000
Adam Fordf92dfc82016-02-08 19:06:08 -060033
Peter Barada86887f82011-12-19 19:54:51 +000034#define CONFIG_MISC_INIT_R /* misc_init_r dumps the die id */
Adam Ford49c73032016-01-29 20:12:34 -060035#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
Peter Barada86887f82011-12-19 19:54:51 +000036#define CONFIG_SETUP_MEMORY_TAGS
37#define CONFIG_INITRD_TAG
38#define CONFIG_REVISION_TAG
39
Adam Ford49c73032016-01-29 20:12:34 -060040/* Hardware drivers */
Peter Barada86887f82011-12-19 19:54:51 +000041
Adam Ford49c73032016-01-29 20:12:34 -060042/* I2C */
Adam Ford49c73032016-01-29 20:12:34 -060043#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* EEPROM AT24C64 */
Peter Barada86887f82011-12-19 19:54:51 +000044
Adam Ford49c73032016-01-29 20:12:34 -060045/* Board NAND Info. */
46#ifdef CONFIG_NAND
Adam Ford49c73032016-01-29 20:12:34 -060047#define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */
48 /* to access nand */
49#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */
50 /* NAND devices */
Adam Ford49c73032016-01-29 20:12:34 -060051#define CONFIG_SYS_NAND_5_ADDR_CYCLE
52#define CONFIG_SYS_NAND_PAGE_COUNT 64
53#define CONFIG_SYS_NAND_PAGE_SIZE 2048
54#define CONFIG_SYS_NAND_OOBSIZE 64
55#define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
56#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
57#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, \
58 13, 14, 16, 17, 18, 19, 20, 21, 22, \
59 23, 24, 25, 26, 27, 28, 30, 31, 32, \
60 33, 34, 35, 36, 37, 38, 39, 40, 41, \
61 42, 44, 45, 46, 47, 48, 49, 50, 51, \
62 52, 53, 54, 55, 56}
Adam Ford7b77b1f2015-09-02 09:18:20 -050063
Adam Ford49c73032016-01-29 20:12:34 -060064#define CONFIG_SYS_NAND_ECCSIZE 512
65#define CONFIG_SYS_NAND_ECCBYTES 13
66#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
Adam Ford49c73032016-01-29 20:12:34 -060067#define CONFIG_SYS_NAND_MAX_OOBFREE 2
68#define CONFIG_SYS_NAND_MAX_ECCPOS 56
Adam Ford49c73032016-01-29 20:12:34 -060069#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
70#define CONFIG_MTD_PARTITIONS /* required for UBI partition support */
Adam Ford49c73032016-01-29 20:12:34 -060071#endif
Peter Barada86887f82011-12-19 19:54:51 +000072
73/* Environment information */
Peter Barada86887f82011-12-19 19:54:51 +000074
Peter Barada86887f82011-12-19 19:54:51 +000075#define CONFIG_PREBOOT \
Peter Barada86887f82011-12-19 19:54:51 +000076 "setenv preboot;" \
77 "saveenv;"
78
Peter Barada86887f82011-12-19 19:54:51 +000079#define CONFIG_EXTRA_ENV_SETTINGS \
Adam Fordbb5854c2017-01-04 09:26:43 -060080 DEFAULT_LINUX_BOOT_ENV \
Tom Rini43ede0b2017-10-22 17:55:07 -040081 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
82 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Peter Barada86887f82011-12-19 19:54:51 +000083 "mmcdev=0\0" \
Adam Ford49c73032016-01-29 20:12:34 -060084 "mmcroot=/dev/mmcblk0p2 rw\0" \
85 "mmcrootfstype=ext4 rootwait\0" \
Adam Forda094c922016-02-10 01:41:10 -060086 "nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
87 "nandrootfstype=ubifs rootwait\0" \
Andrew Bradford66968112012-10-01 05:06:52 +000088 "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
Peter Barada86887f82011-12-19 19:54:51 +000089 "if run loadbootscript; then " \
90 "run bootscript; " \
91 "else " \
92 "run defaultboot;" \
93 "fi; " \
94 "else run defaultboot; fi\0" \
95 "defaultboot=run mmcramboot\0" \
96 "consoledevice=ttyO0\0" \
Peter Barada86887f82011-12-19 19:54:51 +000097 "setconsole=setenv console ${consoledevice},${baudrate}n8\0" \
98 "dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \
99 "rotation=0\0" \
100 "vrfb_arg=if itest ${rotation} -ne 0; then " \
101 "setenv bootargs ${bootargs} omapfb.vrfb=y " \
102 "omapfb.rotate=${rotation}; " \
103 "fi\0" \
Adam Ford49c73032016-01-29 20:12:34 -0600104 "optargs=ignore_loglevel early_printk no_console_suspend\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600105 "common_bootargs=run setconsole; setenv bootargs " \
106 "${bootargs} "\
107 "console=${console} " \
108 "${mtdparts} "\
109 "${optargs}; " \
Peter Barada86887f82011-12-19 19:54:51 +0000110 "run vrfb_arg\0" \
Adam Fordbb5854c2017-01-04 09:26:43 -0600111 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Peter Barada86887f82011-12-19 19:54:51 +0000112 "bootscript=echo 'Running bootscript from mmc ...'; " \
113 "source ${loadaddr}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600114 "loadimage=mmc rescan; " \
115 "load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
Peter Barada86887f82011-12-19 19:54:51 +0000116 "ramdisksize=64000\0" \
Peter Barada86887f82011-12-19 19:54:51 +0000117 "ramdiskimage=rootfs.ext2.gz.uboot\0" \
Adam Ford49c73032016-01-29 20:12:34 -0600118 "loadramdisk=mmc rescan; " \
Adam Fordbb5854c2017-01-04 09:26:43 -0600119 "load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600120 "ramargs=setenv bootargs "\
Peter Barada86887f82011-12-19 19:54:51 +0000121 "root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600122 "mmcargs=setenv bootargs "\
123 "root=${mmcroot} rootfstype=${mmcrootfstype}\0" \
124 "nandargs=setenv bootargs "\
Adam Forda094c922016-02-10 01:41:10 -0600125 "root=${nandroot} " \
126 "rootfstype=${nandrootfstype}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600127 "nfsargs=setenv serverip ${tftpserver}; " \
128 "setenv bootargs root=/dev/nfs " \
Adam Ford760d1af2016-10-15 08:16:27 -0500129 "nfsroot=${nfsrootpath} " \
130 "ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
131 "nfsrootpath=/opt/nfs-exports/omap\0" \
132 "autoload=no\0" \
Adam Fordbb5854c2017-01-04 09:26:43 -0600133 "loadfdt=mmc rescan; " \
134 "load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600135 "mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
Adam Ford49c73032016-01-29 20:12:34 -0600136 "run mmcargs; " \
137 "run common_bootargs; " \
138 "run dump_bootargs; " \
Adam Ford476e16e2017-01-04 11:51:24 -0600139 "run loadimage; " \
140 "run loadfdt;\0 " \
141 "mmcbootz=setenv bootfile zImage; " \
142 "run mmcbootcommon; "\
Adam Ford49c73032016-01-29 20:12:34 -0600143 "bootz ${loadaddr} - ${fdtaddr}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600144 "mmcboot=setenv bootfile uImage; "\
145 "run mmcbootcommon; "\
146 "bootm ${loadaddr} - ${fdtaddr}\0" \
147 "mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
Peter Barada86887f82011-12-19 19:54:51 +0000148 "run ramargs; " \
149 "run common_bootargs; " \
150 "run dump_bootargs; " \
Adam Ford476e16e2017-01-04 11:51:24 -0600151 "run loadimage; " \
Adam Fordbb5854c2017-01-04 09:26:43 -0600152 "run loadfdt; " \
Adam Ford476e16e2017-01-04 11:51:24 -0600153 "run loadramdisk\0" \
154 "mmcramboot=setenv bootfile uImage; " \
155 "run mmcrambootcommon; " \
Adam Ford62896dc2018-03-26 10:24:12 -0500156 "bootm ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Adam Ford476e16e2017-01-04 11:51:24 -0600157 "mmcrambootz=setenv bootfile zImage; " \
158 "run mmcrambootcommon; " \
Adam Ford62896dc2018-03-26 10:24:12 -0500159 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Adam Ford49c73032016-01-29 20:12:34 -0600160 "tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
161 "run ramargs; " \
162 "run common_bootargs; " \
163 "run dump_bootargs; " \
Adam Ford760d1af2016-10-15 08:16:27 -0500164 "tftpboot ${loadaddr} ${zimage}; " \
Adam Fordbb5854c2017-01-04 09:26:43 -0600165 "tftpboot ${rdaddr} ${ramdiskimage}; " \
166 "bootm ${loadaddr} ${rdaddr}\0" \
Adam Ford760d1af2016-10-15 08:16:27 -0500167 "tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
168 "dhcp;" \
169 "run nfsargs;" \
170 "run common_bootargs;" \
171 "run dump_bootargs;" \
172 "tftpboot $loadaddr zImage;" \
Adam Ford476e16e2017-01-04 11:51:24 -0600173 "bootz $loadaddr\0" \
174 "nandbootcommon=echo 'Booting kernel from NAND...';" \
Adam Ford476e16e2017-01-04 11:51:24 -0600175 "run nandargs;" \
176 "run common_bootargs;" \
177 "run dump_bootargs;" \
178 "nand read ${loadaddr} kernel;" \
179 "nand read ${fdtaddr} spl-os;\0" \
180 "nandbootz=run nandbootcommon; "\
181 "bootz ${loadaddr} - ${fdtaddr}\0"\
182 "nandboot=run nandbootcommon; "\
183 "bootm ${loadaddr} - ${fdtaddr}\0"\
Peter Barada86887f82011-12-19 19:54:51 +0000184
185#define CONFIG_BOOTCOMMAND \
186 "run autoboot"
187
Adam Ford49c73032016-01-29 20:12:34 -0600188/* Miscellaneous configurable options */
Adam Ford7b77b1f2015-09-02 09:18:20 -0500189
Peter Barada86887f82011-12-19 19:54:51 +0000190/* memtest works on */
191#define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
192#define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
193 0x01F00000) /* 31MB */
194
Adam Ford49c73032016-01-29 20:12:34 -0600195/* FLASH and environment organization */
Peter Barada86887f82011-12-19 19:54:51 +0000196
197/* **** PISMO SUPPORT *** */
Peter Barada86887f82011-12-19 19:54:51 +0000198#if defined(CONFIG_CMD_NAND)
pekon gupta222a3112014-07-18 17:59:41 +0530199#define CONFIG_SYS_FLASH_BASE NAND_BASE
Peter Barada86887f82011-12-19 19:54:51 +0000200#endif
201
202/* Monitor at start of flash */
203#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
204
Adam Ford49c73032016-01-29 20:12:34 -0600205#define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
Peter Barada86887f82011-12-19 19:54:51 +0000206
Peter Barada86887f82011-12-19 19:54:51 +0000207#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Adam Ford7672d9d2017-09-04 21:08:02 -0500208#define CONFIG_ENV_OFFSET 0x260000
209#define CONFIG_ENV_ADDR 0x260000
Peter Barada86887f82011-12-19 19:54:51 +0000210
Adam Ford49c73032016-01-29 20:12:34 -0600211/* Defines for SPL */
212
Adam Ford49c73032016-01-29 20:12:34 -0600213/* NAND: SPL falcon mode configs */
214#ifdef CONFIG_SPL_OS_BOOT
Adam Ford49c73032016-01-29 20:12:34 -0600215#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
Adam Ford49c73032016-01-29 20:12:34 -0600216#endif
217
Peter Barada86887f82011-12-19 19:54:51 +0000218#endif /* __CONFIG_H */