Merge branch '2021-09-07-ATAGs-and-related-migration' into next
[platform/kernel/u-boot.git] / include / configs / omap3_logic.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
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.
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 /* High Level Configuration Options */
14
15 #include <configs/ti_omap3_common.h>
16
17 /*
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  */
22
23 /* Hardware drivers */
24
25 /* I2C */
26
27 #ifdef CONFIG_SPL_BUILD
28 #undef CONFIG_USB_EHCI_OMAP
29 #endif
30 #ifdef CONFIG_USB_EHCI_OMAP
31 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO        4
32 #endif
33
34 /* Board NAND Info. */
35 #ifdef CONFIG_MTD_RAW_NAND
36 #define CONFIG_SYS_MAX_NAND_DEVICE      1         /* Max number of */
37                                                   /* NAND devices */
38 #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}
50
51 #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
54 #define CONFIG_SYS_NAND_MAX_OOBFREE     2
55 #define CONFIG_SYS_NAND_MAX_ECCPOS      56
56 #endif
57
58 /* Environment information */
59
60 #define CONFIG_EXTRA_ENV_SETTINGS \
61         DEFAULT_LINUX_BOOT_ENV \
62         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0"    \
63         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
64         "mmcdev=0\0" \
65         "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \
66         "mmcrootfstype=ext4 rootwait\0" \
67         "nandroot=ubi0:rootfs rw ubi.mtd=fs noinitrd\0" \
68         "nandrootfstype=ubifs rootwait\0" \
69         "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
70                         "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" \
77         "consoledevice=ttyS0\0" \
78         "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" \
85         "optargs=ignore_loglevel early_printk no_console_suspend\0" \
86         "common_bootargs=run setconsole; setenv bootargs " \
87                 "${bootargs} "\
88                 "console=${console} " \
89                 "${mtdparts} "\
90                 "${optargs}; " \
91                 "run vrfb_arg\0" \
92         "loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
93         "bootscript=echo 'Running bootscript from mmc ...'; " \
94                 "source ${loadaddr}\0" \
95         "loadimage=mmc rescan; " \
96                 "load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
97         "ramdisksize=64000\0" \
98         "ramdiskimage=rootfs.ext2.gz.uboot\0" \
99         "loadramdisk=mmc rescan; " \
100                 "load mmc ${mmcdev} ${rdaddr} ${ramdiskimage}\0" \
101         "ramargs=setenv bootargs "\
102                 "root=/dev/ram rw ramdisk_size=${ramdisksize}\0" \
103         "mmcargs=setenv bootargs "\
104                 "root=PARTUUID=${uuid} " \
105                 "rootfstype=${mmcrootfstype} rw\0" \
106         "nandargs=setenv bootargs "\
107                 "root=${nandroot} " \
108                 "rootfstype=${nandrootfstype}\0" \
109         "nfsargs=setenv serverip ${tftpserver}; " \
110                 "setenv bootargs root=/dev/nfs " \
111                 "nfsroot=${nfsrootpath} " \
112                 "ip=${ipaddr}:${tftpserver}:${gatewayip}:${netmask}::eth0:off\0" \
113         "nfsrootpath=/opt/nfs-exports/omap\0" \
114         "autoload=no\0" \
115         "fdtimage=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
116         "loadfdt=mmc rescan; " \
117                 "load mmc ${mmcdev} ${fdtaddr} ${fdtimage}\0" \
118         "mmcbootcommon=echo Booting with DT from mmc${mmcdev} ...; " \
119                 "run finduuid; "\
120                 "run mmcargs; " \
121                 "run common_bootargs; " \
122                 "run dump_bootargs; " \
123                 "run loadimage; " \
124                 "run loadfdt;\0 " \
125         "mmcbootz=setenv bootfile zImage; " \
126                 "run mmcbootcommon; "\
127                 "bootz ${loadaddr} - ${fdtaddr}\0" \
128         "mmcboot=setenv bootfile uImage; "\
129                 "run mmcbootcommon; "\
130                 "bootm ${loadaddr} - ${fdtaddr}\0" \
131         "mmcrambootcommon=echo 'Booting kernel from MMC w/ramdisk...'; " \
132                 "run ramargs; " \
133                 "run common_bootargs; " \
134                 "run dump_bootargs; " \
135                 "run loadimage; " \
136                 "run loadfdt; " \
137                 "run loadramdisk\0" \
138         "mmcramboot=setenv bootfile uImage; " \
139                 "run mmcrambootcommon; " \
140                 "bootm ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
141         "mmcrambootz=setenv bootfile zImage; " \
142                 "run mmcrambootcommon; " \
143                 "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \
144         "tftpboot=echo 'Booting kernel/ramdisk rootfs from tftp...'; " \
145                 "run ramargs; " \
146                 "run common_bootargs; " \
147                 "run dump_bootargs; " \
148                 "tftpboot ${loadaddr} ${zimage}; " \
149                 "tftpboot ${rdaddr} ${ramdiskimage}; " \
150                 "bootm ${loadaddr} ${rdaddr}\0" \
151         "tftpbootz=echo 'Booting kernel NFS rootfs...'; " \
152                 "dhcp;" \
153                 "run nfsargs;" \
154                 "run common_bootargs;" \
155                 "run dump_bootargs;" \
156                 "tftpboot $loadaddr zImage;" \
157                 "bootz $loadaddr\0" \
158         "nandbootcommon=echo 'Booting kernel from NAND...';" \
159                 "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"\
168
169 #define CONFIG_BOOTCOMMAND \
170         "run autoboot"
171
172 /* Miscellaneous configurable options */
173
174 /* memtest works on */
175
176 /* FLASH and environment organization */
177
178 /* **** PISMO SUPPORT *** */
179 #if defined(CONFIG_CMD_NAND)
180 #define CONFIG_SYS_FLASH_BASE           0x10000000
181 #endif
182
183 #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
188 /* Monitor at start of flash */
189 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
190
191 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
192
193 /* Defines for SPL */
194
195 /* NAND: SPL falcon mode configs */
196 #ifdef CONFIG_SPL_OS_BOOT
197 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
198 #endif
199
200 #endif /* __CONFIG_H */