omap3_logic.h 7.0 KB
Newer Older
1 2 3 4 5 6 7
/*
 * (C) Copyright 2011 Logic Product Development <www.logicpd.com>
 *	Peter Barada <peter.barada@logicpd.com>
 *
 * Configuration settings for the Logic OMAP35x/DM37x SOM LV/Torpedo
 * reference boards.
 *
8
 * SPDX-License-Identifier:	GPL-2.0+
9 10 11 12 13
 */

#ifndef __CONFIG_H
#define __CONFIG_H

A
Adam Ford 已提交
14
/* High Level Configuration Options */
15

16
#define CONFIG_NR_DRAM_BANKS	2	/* CS1 may or may not be populated */
17

A
Adam Ford 已提交
18 19
#include <configs/ti_omap3_common.h>

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#ifdef CONFIG_SPL_BUILD
/*
 * Disable MMC DM for SPL build and can be re-enabled after adding
 * DM support in SPL
 */
#undef CONFIG_DM_MMC
#undef OMAP_HSMMC_USE_GPIO

/* select serial console configuration for SPL */
#undef CONFIG_CONS_INDEX
#define CONFIG_CONS_INDEX              1
#define CONFIG_SYS_NS16550_COM1                OMAP34XX_UART1
#endif


35 36 37 38 39
/*
 * 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) in
 * order to allow for BCH8 to fit in.
 */
40
#undef CONFIG_SPL_TEXT_BASE
41
#define CONFIG_SPL_FRAMEWORK
42
#define CONFIG_SPL_TEXT_BASE		0x40200000
43

44
#define CONFIG_MISC_INIT_R		/* misc_init_r dumps the die id */
A
Adam Ford 已提交
45
#define CONFIG_CMDLINE_TAG		/* enable passing of ATAGs */
46 47 48 49
#define CONFIG_SETUP_MEMORY_TAGS
#define CONFIG_INITRD_TAG
#define CONFIG_REVISION_TAG

A
Adam Ford 已提交
50
/* Hardware drivers */
51

A
Adam Ford 已提交
52 53
/* I2C */
#define CONFIG_SYS_I2C_EEPROM_ADDR	0x50	/* EEPROM AT24C64      */
54

55 56
/* USB */

A
Adam Ford 已提交
57
/* TWL4030 */
58
#define CONFIG_TWL4030_USB
59

A
Adam Ford 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
/* Board NAND Info. */
#ifdef CONFIG_NAND
#define CONFIG_SYS_NAND_ADDR		NAND_BASE /* physical address */
						  /* to access nand */
#define CONFIG_SYS_MAX_NAND_DEVICE	1	  /* Max number of */
						  /* NAND devices */
#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, 14, 16, 17, 18, 19, 20, 21, 22, \
					 23, 24, 25, 26, 27, 28, 30, 31, 32, \
					 33, 34, 35, 36, 37, 38, 39, 40, 41, \
					 42, 44, 45, 46, 47, 48, 49, 50, 51, \
					 52, 53, 54, 55, 56}

#define CONFIG_SYS_NAND_ECCSIZE		512
#define CONFIG_SYS_NAND_ECCBYTES	13
#define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
#define CONFIG_SYS_NAND_MAX_OOBFREE	2
#define CONFIG_SYS_NAND_MAX_ECCPOS	56
#define CONFIG_MTD_DEVICE		/* needed for mtdparts commands */
#define CONFIG_MTD_PARTITIONS		/* required for UBI partition support */
#endif
87 88 89 90 91 92 93 94

/* Environment information */

#define CONFIG_PREBOOT \
	"setenv preboot;"						\
	"saveenv;"

#define CONFIG_EXTRA_ENV_SETTINGS \
95
	DEFAULT_LINUX_BOOT_ENV \
96 97
	"mtdids=" CONFIG_MTDIDS_DEFAULT "\0"	\
	"mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
98
	"mmcdev=0\0" \
A
Adam Ford 已提交
99 100
	"mmcroot=/dev/mmcblk0p2 rw\0" \
	"mmcrootfstype=ext4 rootwait\0" \
101 102
	"nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
	"nandrootfstype=ubifs rootwait\0" \
A
Andrew Bradford 已提交
103
	"autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
			"if run loadbootscript; then " \
				"run bootscript; " \
			"else " \
				"run defaultboot;" \
			"fi; " \
		"else run defaultboot; fi\0" \
	"defaultboot=run mmcramboot\0" \
	"consoledevice=ttyO0\0" \
	"setconsole=setenv console ${consoledevice},${baudrate}n8\0" \
	"dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \
	"rotation=0\0" \
	"vrfb_arg=if itest ${rotation} -ne 0; then " \
		"setenv bootargs ${bootargs} omapfb.vrfb=y " \
		"omapfb.rotate=${rotation}; " \
		"fi\0" \
A
Adam Ford 已提交
119
	"optargs=ignore_loglevel early_printk no_console_suspend\0" \
120 121 122 123 124
	"common_bootargs=run setconsole; setenv bootargs " \
		"${bootargs} "\
		"console=${console} " \
		"${mtdparts} "\
		"${optargs}; " \
125
		"run vrfb_arg\0" \
126
	"loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
127 128
	"bootscript=echo 'Running bootscript from mmc ...'; " \
		"source ${loadaddr}\0" \
129 130
	"loadimage=mmc rescan; " \
		"load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
131 132
	"ramdisksize=64000\0" \
	"ramdiskimage=rootfs.ext2.gz.uboot\0" \
A
Adam Ford 已提交
133
	"loadramdisk=mmc rescan; " \
134
		"load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
135
	"ramargs=setenv bootargs "\
136
		"root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
137 138 139
	"mmcargs=setenv bootargs "\
		"root=${mmcroot} rootfstype=${mmcrootfstype}\0" \
	"nandargs=setenv bootargs "\
140 141
		"root=${nandroot} " \
		"rootfstype=${nandrootfstype}\0" \
142 143
	"nfsargs=setenv serverip ${tftpserver}; " \
		"setenv bootargs root=/dev/nfs " \
144 145 146 147
		"nfsroot=${nfsrootpath} " \
		"ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
	"nfsrootpath=/opt/nfs-exports/omap\0" \
	"autoload=no\0" \
148 149
	"loadfdt=mmc rescan; " \
		"load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
150
	"mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
A
Adam Ford 已提交
151 152 153
		"run mmcargs; " \
		"run common_bootargs; " \
		"run dump_bootargs; " \
154 155 156 157
		"run loadimage; " \
		"run loadfdt;\0 " \
	"mmcbootz=setenv bootfile zImage; " \
		"run mmcbootcommon; "\
A
Adam Ford 已提交
158
		"bootz ${loadaddr} - ${fdtaddr}\0" \
159 160 161 162
	"mmcboot=setenv bootfile uImage; "\
		"run mmcbootcommon; "\
		"bootm ${loadaddr} - ${fdtaddr}\0" \
	"mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
163 164 165
		"run ramargs; " \
		"run common_bootargs; " \
		"run dump_bootargs; " \
166
		"run loadimage; " \
167
		"run loadfdt; " \
168 169 170 171 172 173 174
		"run loadramdisk\0" \
	"mmcramboot=setenv bootfile uImage; " \
		"run mmcrambootcommon; " \
		"bootm ${loadaddr} ${rdaddr} ${fdtimage}\0" \
	"mmcrambootz=setenv bootfile zImage; " \
		"run mmcrambootcommon; " \
		"bootz ${loadaddr} ${rdaddr} ${fdtimage}\0" \
A
Adam Ford 已提交
175 176 177 178
	"tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
		"run ramargs; " \
		"run common_bootargs; " \
		"run dump_bootargs; " \
179
		"tftpboot ${loadaddr} ${zimage}; " \
180 181
		"tftpboot ${rdaddr} ${ramdiskimage}; " \
		"bootm ${loadaddr} ${rdaddr}\0" \
182 183 184 185 186 187
	"tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
		"dhcp;" \
		"run nfsargs;" \
		"run common_bootargs;" \
		"run dump_bootargs;" \
		"tftpboot $loadaddr zImage;" \
188 189 190 191 192 193 194 195 196 197 198
		"bootz $loadaddr\0" \
	"nandbootcommon=echo 'Booting kernel from NAND...';" \
		"run nandargs;" \
		"run common_bootargs;" \
		"run dump_bootargs;" \
		"nand read ${loadaddr} kernel;" \
		"nand read ${fdtaddr} spl-os;\0" \
	"nandbootz=run nandbootcommon; "\
		"bootz ${loadaddr} - ${fdtaddr}\0"\
	"nandboot=run nandbootcommon; "\
		"bootm ${loadaddr} - ${fdtaddr}\0"\
199 200 201 202

#define CONFIG_BOOTCOMMAND \
	"run autoboot"

A
Adam Ford 已提交
203
/* Miscellaneous configurable options */
204

205 206 207 208 209
/* memtest works on */
#define CONFIG_SYS_MEMTEST_START	(OMAP34XX_SDRC_CS0)
#define CONFIG_SYS_MEMTEST_END		(OMAP34XX_SDRC_CS0 + \
					0x01F00000) /* 31MB */

A
Adam Ford 已提交
210
/* FLASH and environment organization */
211 212 213

/* **** PISMO SUPPORT *** */
#if defined(CONFIG_CMD_NAND)
214
#define CONFIG_SYS_FLASH_BASE		NAND_BASE
215 216 217 218 219
#endif

/* Monitor at start of flash */
#define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_FLASH_BASE

A
Adam Ford 已提交
220
#define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB */
221 222

#define CONFIG_SYS_ENV_SECT_SIZE	(128 << 10)	/* 128 KiB */
223 224
#define CONFIG_ENV_OFFSET		0x260000
#define CONFIG_ENV_ADDR			0x260000
225

A
Adam Ford 已提交
226 227 228 229 230 231 232
/* Defines for SPL */

/* NAND: SPL falcon mode configs */
#ifdef CONFIG_SPL_OS_BOOT
#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS	0x280000
#endif

233
#endif /* __CONFIG_H */