blob: 886f2e9d86f80f53d81c123f929048aeb37c5a16 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Peter Baradae5b77e62011-12-19 19:54:51 +00002/*
3 * (C) Copyright 2011 Logic Product Development <www.logicpd.com>
4 * Peter Barada <peter.barada@logicpd.com>
5 *
6 * Configuration settings for the Logic OMAP35x/DM37x SOM LV/Torpedo
7 * reference boards.
Peter Baradae5b77e62011-12-19 19:54:51 +00008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Adam Ford5326c292016-01-29 20:12:34 -060013/* High Level Configuration Options */
Peter Baradae5b77e62011-12-19 19:54:51 +000014
Adam Ford5326c292016-01-29 20:12:34 -060015#include <configs/ti_omap3_common.h>
16
Tom Rinicfff4aa2016-08-26 13:30:43 -040017/*
18 * We are only ever GP parts and will utilize all of the "downloaded image"
19 * area in SRAM which starts at 0x40200000 and ends at 0x4020FFFF (64KB) in
20 * order to allow for BCH8 to fit in.
21 */
Adam Fordd92313a2016-02-08 19:06:08 -060022
Adam Ford5326c292016-01-29 20:12:34 -060023/* Hardware drivers */
Peter Baradae5b77e62011-12-19 19:54:51 +000024
Adam Ford5326c292016-01-29 20:12:34 -060025/* I2C */
Peter Baradae5b77e62011-12-19 19:54:51 +000026
Adam Ford291af6e2019-08-22 15:32:42 -050027#ifdef CONFIG_SPL_BUILD
28#undef CONFIG_USB_EHCI_OMAP
29#endif
Adam Ford5e6b4ff2019-06-30 17:30:49 -050030#ifdef CONFIG_USB_EHCI_OMAP
31#define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 4
32#endif
33
Adam Ford5326c292016-01-29 20:12:34 -060034/* Board NAND Info. */
Miquel Raynald0935362019-10-03 19:50:03 +020035#ifdef CONFIG_MTD_RAW_NAND
Adam Ford5326c292016-01-29 20:12:34 -060036#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */
37 /* NAND devices */
Adam Ford5326c292016-01-29 20:12:34 -060038#define CONFIG_SYS_NAND_5_ADDR_CYCLE
39#define CONFIG_SYS_NAND_PAGE_COUNT 64
40#define CONFIG_SYS_NAND_PAGE_SIZE 2048
41#define CONFIG_SYS_NAND_OOBSIZE 64
42#define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
43#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
44#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, \
45 13, 14, 16, 17, 18, 19, 20, 21, 22, \
46 23, 24, 25, 26, 27, 28, 30, 31, 32, \
47 33, 34, 35, 36, 37, 38, 39, 40, 41, \
48 42, 44, 45, 46, 47, 48, 49, 50, 51, \
49 52, 53, 54, 55, 56}
Adam Ford04c848a2015-09-02 09:18:20 -050050
Adam Ford5326c292016-01-29 20:12:34 -060051#define CONFIG_SYS_NAND_ECCSIZE 512
52#define CONFIG_SYS_NAND_ECCBYTES 13
53#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
Adam Ford5326c292016-01-29 20:12:34 -060054#define CONFIG_SYS_NAND_MAX_OOBFREE 2
55#define CONFIG_SYS_NAND_MAX_ECCPOS 56
Adam Ford5326c292016-01-29 20:12:34 -060056#endif
Peter Baradae5b77e62011-12-19 19:54:51 +000057
58/* Environment information */
Peter Baradae5b77e62011-12-19 19:54:51 +000059
Peter Baradae5b77e62011-12-19 19:54:51 +000060#define CONFIG_EXTRA_ENV_SETTINGS \
Adam Ford34f28ee2017-01-04 09:26:43 -060061 DEFAULT_LINUX_BOOT_ENV \
Tom Rini5ad8e112017-10-22 17:55:07 -040062 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
63 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
Peter Baradae5b77e62011-12-19 19:54:51 +000064 "mmcdev=0\0" \
Adam Ford3ccdb962019-04-11 15:24:33 -050065 "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \
Adam Ford5326c292016-01-29 20:12:34 -060066 "mmcrootfstype=ext4 rootwait\0" \
Adam Ford193e9a12016-02-10 01:41:10 -060067 "nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
68 "nandrootfstype=ubifs rootwait\0" \
Andrew Bradforde1c7c8a2012-10-01 05:06:52 +000069 "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
Peter Baradae5b77e62011-12-19 19:54:51 +000070 "if run loadbootscript; then " \
71 "run bootscript; " \
72 "else " \
73 "run defaultboot;" \
74 "fi; " \
75 "else run defaultboot; fi\0" \
76 "defaultboot=run mmcramboot\0" \
Adam Fordb36bb902018-06-15 08:12:02 -050077 "consoledevice=ttyS0\0" \
Peter Baradae5b77e62011-12-19 19:54:51 +000078 "setconsole=setenv console ${consoledevice},${baudrate}n8\0" \
79 "dump_bootargs=echo 'Bootargs: '; echo $bootargs\0" \
80 "rotation=0\0" \
81 "vrfb_arg=if itest ${rotation} -ne 0; then " \
82 "setenv bootargs ${bootargs} omapfb.vrfb=y " \
83 "omapfb.rotate=${rotation}; " \
84 "fi\0" \
Adam Ford5326c292016-01-29 20:12:34 -060085 "optargs=ignore_loglevel early_printk no_console_suspend\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -060086 "common_bootargs=run setconsole; setenv bootargs " \
87 "${bootargs} "\
88 "console=${console} " \
89 "${mtdparts} "\
90 "${optargs}; " \
Peter Baradae5b77e62011-12-19 19:54:51 +000091 "run vrfb_arg\0" \
Adam Ford34f28ee2017-01-04 09:26:43 -060092 "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Peter Baradae5b77e62011-12-19 19:54:51 +000093 "bootscript=echo 'Running bootscript from mmc ...'; " \
94 "source ${loadaddr}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -060095 "loadimage=mmc rescan; " \
96 "load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
Peter Baradae5b77e62011-12-19 19:54:51 +000097 "ramdisksize=64000\0" \
Peter Baradae5b77e62011-12-19 19:54:51 +000098 "ramdiskimage=rootfs.ext2.gz.uboot\0" \
Adam Ford5326c292016-01-29 20:12:34 -060099 "loadramdisk=mmc rescan; " \
Adam Ford34f28ee2017-01-04 09:26:43 -0600100 "load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600101 "ramargs=setenv bootargs "\
Peter Baradae5b77e62011-12-19 19:54:51 +0000102 "root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600103 "mmcargs=setenv bootargs "\
Adam Ford3ccdb962019-04-11 15:24:33 -0500104 "root=PARTUUID=${uuid} " \
105 "rootfstype=${mmcrootfstype} rw\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600106 "nandargs=setenv bootargs "\
Adam Ford193e9a12016-02-10 01:41:10 -0600107 "root=${nandroot} " \
108 "rootfstype=${nandrootfstype}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600109 "nfsargs=setenv serverip ${tftpserver}; " \
110 "setenv bootargs root=/dev/nfs " \
Adam Ford97073d02016-10-15 08:16:27 -0500111 "nfsroot=${nfsrootpath} " \
112 "ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
113 "nfsrootpath=/opt/nfs-exports/omap\0" \
114 "autoload=no\0" \
Adam Ford81b19d72018-09-29 14:10:19 -0500115 "fdtimage=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
Adam Ford34f28ee2017-01-04 09:26:43 -0600116 "loadfdt=mmc rescan; " \
117 "load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600118 "mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
Adam Ford3ccdb962019-04-11 15:24:33 -0500119 "run finduuid; "\
Adam Ford5326c292016-01-29 20:12:34 -0600120 "run mmcargs; " \
121 "run common_bootargs; " \
122 "run dump_bootargs; " \
Adam Ford4760c8f2017-01-04 11:51:24 -0600123 "run loadimage; " \
124 "run loadfdt;\0 " \
125 "mmcbootz=setenv bootfile zImage; " \
126 "run mmcbootcommon; "\
Adam Ford5326c292016-01-29 20:12:34 -0600127 "bootz ${loadaddr} - ${fdtaddr}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600128 "mmcboot=setenv bootfile uImage; "\
129 "run mmcbootcommon; "\
130 "bootm ${loadaddr} - ${fdtaddr}\0" \
131 "mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
Peter Baradae5b77e62011-12-19 19:54:51 +0000132 "run ramargs; " \
133 "run common_bootargs; " \
134 "run dump_bootargs; " \
Adam Ford4760c8f2017-01-04 11:51:24 -0600135 "run loadimage; " \
Adam Ford34f28ee2017-01-04 09:26:43 -0600136 "run loadfdt; " \
Adam Ford4760c8f2017-01-04 11:51:24 -0600137 "run loadramdisk\0" \
138 "mmcramboot=setenv bootfile uImage; " \
139 "run mmcrambootcommon; " \
Adam Ford8717e922018-03-26 10:24:12 -0500140 "bootm ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600141 "mmcrambootz=setenv bootfile zImage; " \
142 "run mmcrambootcommon; " \
Adam Ford8717e922018-03-26 10:24:12 -0500143 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
Adam Ford5326c292016-01-29 20:12:34 -0600144 "tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
Peter Baradae5b77e62011-12-19 19:54:51 +0000145 "run ramargs; " \
146 "run common_bootargs; " \
147 "run dump_bootargs; " \
Adam Ford97073d02016-10-15 08:16:27 -0500148 "tftpboot ${loadaddr} ${zimage}; " \
Adam Ford34f28ee2017-01-04 09:26:43 -0600149 "tftpboot ${rdaddr} ${ramdiskimage}; " \
150 "bootm ${loadaddr} ${rdaddr}\0" \
Adam Ford97073d02016-10-15 08:16:27 -0500151 "tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
152 "dhcp;" \
153 "run nfsargs;" \
154 "run common_bootargs;" \
155 "run dump_bootargs;" \
156 "tftpboot $loadaddr zImage;" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600157 "bootz $loadaddr\0" \
158 "nandbootcommon=echo 'Booting kernel from NAND...';" \
Adam Ford4760c8f2017-01-04 11:51:24 -0600159 "run nandargs;" \
160 "run common_bootargs;" \
161 "run dump_bootargs;" \
162 "nand read ${loadaddr} kernel;" \
163 "nand read ${fdtaddr} spl-os;\0" \
164 "nandbootz=run nandbootcommon; "\
165 "bootz ${loadaddr} - ${fdtaddr}\0"\
166 "nandboot=run nandbootcommon; "\
167 "bootm ${loadaddr} - ${fdtaddr}\0"\
Peter Baradae5b77e62011-12-19 19:54:51 +0000168
169#define CONFIG_BOOTCOMMAND \
170 "run autoboot"
171
Adam Ford5326c292016-01-29 20:12:34 -0600172/* Miscellaneous configurable options */
Adam Ford04c848a2015-09-02 09:18:20 -0500173
Peter Baradae5b77e62011-12-19 19:54:51 +0000174/* memtest works on */
Peter Baradae5b77e62011-12-19 19:54:51 +0000175
Adam Ford5326c292016-01-29 20:12:34 -0600176/* FLASH and environment organization */
Peter Baradae5b77e62011-12-19 19:54:51 +0000177
178/* **** PISMO SUPPORT *** */
Peter Baradae5b77e62011-12-19 19:54:51 +0000179#if defined(CONFIG_CMD_NAND)
Adam Ford726ab5d2018-10-14 15:53:17 -0500180#define CONFIG_SYS_FLASH_BASE 0x10000000
Peter Baradae5b77e62011-12-19 19:54:51 +0000181#endif
182
Adam Ford726ab5d2018-10-14 15:53:17 -0500183#define CONFIG_SYS_MAX_FLASH_SECT 256
184#define CONFIG_SYS_MAX_FLASH_BANKS 1
185#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
186#define CONFIG_SYS_FLASH_SIZE 0x4000000
187
Peter Baradae5b77e62011-12-19 19:54:51 +0000188/* Monitor at start of flash */
189#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
190
Peter Baradae5b77e62011-12-19 19:54:51 +0000191#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
Peter Baradae5b77e62011-12-19 19:54:51 +0000192
Adam Ford5326c292016-01-29 20:12:34 -0600193/* Defines for SPL */
194
Adam Ford5326c292016-01-29 20:12:34 -0600195/* NAND: SPL falcon mode configs */
196#ifdef CONFIG_SPL_OS_BOOT
Adam Ford5326c292016-01-29 20:12:34 -0600197#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
Adam Ford5326c292016-01-29 20:12:34 -0600198#endif
199
Peter Baradae5b77e62011-12-19 19:54:51 +0000200#endif /* __CONFIG_H */