]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/siemens-am33x-common.h
configs: Migrate RBTREE, LZO, CMD_MTDPARTS, CMD_UBI and CMD_UBIFS
[people/ms/u-boot.git] / include / configs / siemens-am33x-common.h
1 /*
2 * siemens am33x common board options
3 * (C) Copyright 2013 Siemens Schweiz AG
4 * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
5 *
6 * Based on:
7 * U-Boot file:/include/configs/am335x_evm.h
8 *
9 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
10 *
11 * SPDX-License-Identifier: GPL-2.0+
12 */
13
14 #ifndef __CONFIG_SIEMENS_AM33X_COMMON_H
15 #define __CONFIG_SIEMENS_AM33X_COMMON_H
16
17 #include <asm/arch/omap.h>
18
19 #define CONFIG_DMA_COHERENT
20 #define CONFIG_DMA_COHERENT_SIZE (1 << 20)
21
22 #define CONFIG_ENV_SIZE (0x2000)
23 #define CONFIG_SYS_MALLOC_LEN (16 * 1024 * 1024)
24 #define CONFIG_SYS_LONGHELP /* undef to save memory */
25 #ifdef CONFIG_SIEMENS_MACH_TYPE
26 #define CONFIG_MACH_TYPE CONFIG_SIEMENS_MACH_TYPE
27 #endif
28
29 #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
30 #define CONFIG_SETUP_MEMORY_TAGS
31 #define CONFIG_INITRD_TAG
32
33 /* commands to include */
34
35 #define CONFIG_ENV_VARS_UBOOT_CONFIG
36 #ifndef CONFIG_SPL_BUILD
37 #define CONFIG_ROOTPATH "/opt/eldk"
38 #endif
39
40 #define CONFIG_ENV_OVERWRITE 1
41 #define CONFIG_ENV_IS_NOWHERE
42
43 #define CONFIG_SYS_LONGHELP
44 #define CONFIG_CMDLINE_EDITING
45 #define CONFIG_AUTO_COMPLETE
46 #define CONFIG_SYS_AUTOLOAD "yes"
47
48 /* Clock Defines */
49 #define V_OSCK 24000000 /* Clock output from T2 */
50 #define V_SCLK (V_OSCK)
51
52 /* We set the max number of command args high to avoid HUSH bugs. */
53 #define CONFIG_SYS_MAXARGS 32
54
55 /* Console I/O Buffer Size */
56 #define CONFIG_SYS_CBSIZE 1024
57
58 /* Print Buffer Size */
59 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \
60 + sizeof(CONFIG_SYS_PROMPT) + 16)
61
62 /* Boot Argument Buffer Size */
63 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
64
65 /*
66 * memtest works on 8 MB in DRAM after skipping 32MB from
67 * start addr of ram disk
68 */
69 #define CONFIG_SYS_MEMTEST_START (PHYS_DRAM_1 + (64 * 1024 * 1024))
70 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START \
71 + (8 * 1024 * 1024))
72
73 #define CONFIG_SYS_LOAD_ADDR 0x81000000 /* Default load address */
74
75 #define CONFIG_SPI
76 #define CONFIG_OMAP3_SPI
77 #define CONFIG_MTD_DEVICE
78 #define CONFIG_SF_DEFAULT_SPEED (75000000)
79
80 /* Physical Memory Map */
81 #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
82 #define PHYS_DRAM_1 0x80000000 /* DRAM Bank #1 */
83
84 #define CONFIG_SYS_SDRAM_BASE PHYS_DRAM_1
85 #define CONFIG_SYS_INIT_SP_ADDR (NON_SECURE_SRAM_END - \
86 GENERATED_GBL_DATA_SIZE)
87 /* Platform/Board specific defs */
88 #define CONFIG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */
89 #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
90
91 /* NS16550 Configuration */
92 #ifdef CONFIG_SPL_BUILD
93 #define CONFIG_SYS_NS16550_SERIAL
94 #define CONFIG_SYS_NS16550_REG_SIZE (-4)
95 #endif
96 #define CONFIG_SYS_NS16550_CLK (48000000)
97 #define CONFIG_SYS_NS16550_COM1 0x44e09000
98 #define CONFIG_SYS_NS16550_COM4 0x481a6000
99
100 #define CONFIG_SERIAL1 1
101 #define CONFIG_CONS_INDEX 1
102
103 /* I2C Configuration */
104 #define CONFIG_I2C
105 #define CONFIG_SYS_I2C
106 #define CONFIG_SYS_OMAP24_I2C_SPEED 100000
107 #define CONFIG_SYS_OMAP24_I2C_SLAVE 1
108 #define CONFIG_SYS_I2C_OMAP24XX
109
110 /* Defines for SPL */
111 #define CONFIG_SPL_FRAMEWORK
112 #define CONFIG_SPL_TEXT_BASE 0x402F0400
113 #define CONFIG_SPL_MAX_SIZE (SRAM_SCRATCH_SPACE_ADDR - \
114 CONFIG_SPL_TEXT_BASE)
115
116 #define CONFIG_SPL_BSS_START_ADDR 0x80000000
117 #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */
118
119 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
120 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
121
122 #define CONFIG_SPL_SPI_LOAD
123 #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
124
125 #define CONFIG_SPL_LDSCRIPT "arch/arm/mach-omap2/u-boot-spl.lds"
126
127 #define CONFIG_SPL_NAND_AM33XX_BCH
128 #define CONFIG_SPL_NAND_BASE
129 #define CONFIG_SPL_NAND_DRIVERS
130 #define CONFIG_SPL_NAND_ECC
131 #define CONFIG_SYS_NAND_ONFI_DETECTION
132 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
133 #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
134 CONFIG_SYS_NAND_PAGE_SIZE)
135 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
136 #define CONFIG_SYS_NAND_OOBSIZE 64
137 #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
138 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
139 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
140 10, 11, 12, 13, 14, 15, 16, 17, \
141 18, 19, 20, 21, 22, 23, 24, 25, \
142 26, 27, 28, 29, 30, 31, 32, 33, \
143 34, 35, 36, 37, 38, 39, 40, 41, \
144 42, 43, 44, 45, 46, 47, 48, 49, \
145 50, 51, 52, 53, 54, 55, 56, 57, }
146
147 #define CONFIG_SYS_NAND_ECCSIZE 512
148 #define CONFIG_SYS_NAND_ECCBYTES 14
149 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
150
151 #define CONFIG_SYS_NAND_ECCSTEPS 4
152 #define CONFIG_SYS_NAND_ECCTOTAL (CONFIG_SYS_NAND_ECCBYTES * \
153 CONFIG_SYS_NAND_ECCSTEPS)
154
155 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
156
157 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
158
159 /*
160 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
161 * 64 bytes before this address should be set aside for u-boot.img's
162 * header. That is 0x800FFFC0--0x80100000 should not be used for any
163 * other needs.
164 */
165 #define CONFIG_SYS_TEXT_BASE 0x80100000
166 #define CONFIG_SYS_SPL_MALLOC_START 0x80208000
167 #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000
168
169 /*
170 * Since SPL did pll and ddr initialization for us,
171 * we don't need to do it twice.
172 */
173 #ifndef CONFIG_SPL_BUILD
174 #define CONFIG_SKIP_LOWLEVEL_INIT
175 #endif
176
177 #ifndef CONFIG_SPL_BUILD
178 /*
179 * USB configuration
180 */
181 #define CONFIG_USB_MUSB_DSPS
182 #define CONFIG_USB_MUSB_PIO_ONLY
183 #define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
184 #undef CONFIG_USB_GADGET_DUALSPEED
185
186 #define CONFIG_AM335X_USB0
187 #define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
188 #define CONFIG_AM335X_USB1
189 #define CONFIG_AM335X_USB1_MODE MUSB_HOST
190
191 #ifdef CONFIG_USB_MUSB_GADGET
192 #define CONFIG_USB_ETHER
193 #define CONFIG_USB_ETH_RNDIS
194 #define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
195 #endif /* CONFIG_USB_MUSB_GADGET */
196
197 /* USB DRACO ID as default */
198 #define CONFIG_USBD_HS
199
200 /* USB Device Firmware Update support */
201 #define CONFIG_SYS_DFU_DATA_BUF_SIZE (1 << 20)
202 #define DFU_MANIFEST_POLL_TIMEOUT 25000
203
204 #endif /* CONFIG_SPL_BUILD */
205
206 /*
207 * Default to using SPI for environment, etc. We have multiple copies
208 * of SPL as the ROM will check these locations.
209 * 0x0 - 0x20000 : First copy of SPL
210 * 0x20000 - 0x40000 : Second copy of SPL
211 * 0x40000 - 0x60000 : Third copy of SPL
212 * 0x60000 - 0x80000 : Fourth copy of SPL
213 * 0x80000 - 0xDF000 : U-Boot
214 * 0xDF000 - 0xE0000 : U-Boot Environment
215 * 0xE0000 - 0x442000 : Linux Kernel
216 * 0x442000 - 0x800000 : Userland
217 */
218 #if defined(CONFIG_SPI_BOOT)
219 # undef CONFIG_ENV_IS_NOWHERE
220 # define CONFIG_ENV_IS_IN_SPI_FLASH
221 # define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
222 # define CONFIG_ENV_OFFSET (892 << 10) /* 892 KiB in */
223 # define CONFIG_ENV_SECT_SIZE (4 << 10) /* 4 KB sectors */
224 #endif /* SPI support */
225
226 #define CONFIG_DRIVER_TI_CPSW
227 #define CONFIG_MII
228 #define CONFIG_PHY_GIGE
229 #define CONFIG_PHYLIB
230 #define CONFIG_BOOTP_DEFAULT
231 #define CONFIG_BOOTP_DNS
232 #define CONFIG_BOOTP_DNS2
233 #define CONFIG_BOOTP_SEND_HOSTNAME
234 #define CONFIG_BOOTP_GATEWAY
235 #define CONFIG_BOOTP_SUBNETMASK
236 #define CONFIG_NET_RETRY_COUNT 10
237
238 #define CONFIG_NAND
239 /* NAND support */
240 #ifdef CONFIG_NAND
241 #define CONFIG_CMD_NAND
242
243 /* UBI Support */
244 #ifndef CONFIG_SPL_BUILD
245 #define CONFIG_MTD_PARTITIONS
246 #define CONFIG_MTD_DEVICE
247 #endif
248
249 /* Commen environment */
250 #define CONFIG_PREBOOT
251 #define COMMON_ENV_DFU_ARGS "dfu_args=run bootargs_defaults;" \
252 "setenv bootargs ${bootargs};" \
253 "mtdparts default;" \
254 "draco_led 1;" \
255 "dfu 0 nand 0;" \
256 "draco_led 0;\0" \
257
258 #define COMMON_ENV_NAND_BOOT \
259 "nand_boot=echo Booting from nand; " \
260 "if test ${upgrade_available} -eq 1; then " \
261 "if test ${bootcount} -gt ${bootlimit}; " \
262 "then " \
263 "setenv upgrade_available 0;" \
264 "setenv ${partitionset_active} true;" \
265 "if test -n ${A}; then " \
266 "setenv partitionset_active B; " \
267 "env delete A; " \
268 "fi;" \
269 "if test -n ${B}; then " \
270 "setenv partitionset_active A; " \
271 "env delete B; " \
272 "fi;" \
273 "saveenv; " \
274 "fi;" \
275 "fi;" \
276 "echo set ${partitionset_active}...;" \
277 "run nand_args; "
278
279 #define COMMON_ENV_NAND_CMDS "flash_self=run nand_boot\0" \
280 "flash_self_test=setenv testargs test; " \
281 "run nand_boot\0" \
282 "dfu_start=echo Preparing for dfu mode ...; " \
283 "run dfu_args; \0"
284
285 #define COMMON_ENV_SETTINGS \
286 "verify=no \0" \
287 "project_dir=targetdir\0" \
288 "upgrade_available=0\0" \
289 "altbootcmd=run bootcmd\0" \
290 "bootlimit=3\0" \
291 "partitionset_active=A\0" \
292 "loadaddr=0x82000000\0" \
293 "kloadaddr=0x81000000\0" \
294 "script_addr=0x81900000\0" \
295 "console=console=ttyMTD,mtdoops console=ttyO0,115200n8 panic=5\0" \
296 "nfsopts=nolock rw\0" \
297 "ip_method=none\0" \
298 "bootenv=uEnv.txt\0" \
299 "bootargs_defaults=setenv bootargs " \
300 "console=${console} " \
301 "${testargs} " \
302 "${optargs}\0" \
303 "siemens_help=echo; "\
304 "echo Type 'run flash_self' to use kernel and root " \
305 "filesystem on memory; echo Type 'run flash_self_test' to " \
306 "use kernel and root filesystem on memory, boot in test " \
307 "mode; echo Not ready yet: 'run flash_nfs' to use kernel " \
308 "from memory and root filesystem over NFS; echo Type " \
309 "'run net_nfs' to get Kernel over TFTP and mount root " \
310 "filesystem over NFS; " \
311 "echo Set partitionset_active variable to 'A' " \
312 "or 'B' to select kernel and rootfs partition; " \
313 "echo" \
314 "\0"
315
316 /*
317 * Variant 1 partition layout
318 * chip-size = 256MiB
319 *| name | size | address area |
320 *-------------------------------------------------------
321 *| spl | 128.000 KiB | 0x 0..0x 1ffff |
322 *| spl.backup1 | 128.000 KiB | 0x 20000..0x 3ffff |
323 *| spl.backup2 | 128.000 KiB | 0x 40000..0x 5ffff |
324 *| spl.backup3 | 128.000 KiB | 0x 60000..0x 7ffff |
325 *| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
326 *| uboot.env | 128.000 KiB | 0x 260000..0x 27ffff |
327 *| kernel_a | 5.000 MiB | 0x 280000..0x 77ffff |
328 *| kernel_b | 5.000 MiB | 0x 780000..0x c7ffff |
329 *| mtdoops | 8.000 MiB | 0x c80000..0x 147ffff |
330 *| rootfs | 235.500 MiB | 0x 1480000..0x fffffff |
331 *-------------------------------------------------------
332 */
333 #define MTDIDS_NAME_STR "omap2-nand.0"
334 #define MTDIDS_DEFAULT "nand0=" MTDIDS_NAME_STR
335 #define MTDPARTS_DEFAULT_V1 "mtdparts=" MTDIDS_NAME_STR ":" \
336 "128k(spl)," \
337 "128k(spl.backup1)," \
338 "128k(spl.backup2)," \
339 "128k(spl.backup3)," \
340 "1920k(u-boot)," \
341 "128k(uboot.env)," \
342 "5120k(kernel_a)," \
343 "5120k(kernel_b)," \
344 "8192k(mtdoops)," \
345 "-(rootfs)"
346
347 #define DFU_ALT_INFO_NAND_V1 \
348 "spl part 0 1;" \
349 "spl.backup1 part 0 2;" \
350 "spl.backup2 part 0 3;" \
351 "spl.backup3 part 0 4;" \
352 "u-boot part 0 5;" \
353 "u-boot.env part 0 6;" \
354 "kernel_a part 0 7;" \
355 "kernel_b part 0 8;" \
356 "rootfs partubi 0 10"
357
358 #define CONFIG_ENV_SETTINGS_NAND_V1 \
359 "nand_active_ubi_vol=rootfs_a\0" \
360 "nand_active_ubi_vol_A=rootfs_a\0" \
361 "nand_active_ubi_vol_B=rootfs_b\0" \
362 "nand_root_fs_type=ubifs rootwait=1\0" \
363 "nand_src_addr=0x280000\0" \
364 "nand_src_addr_A=0x280000\0" \
365 "nand_src_addr_B=0x780000\0" \
366 "nand_args=run bootargs_defaults;" \
367 "mtdparts default;" \
368 "setenv ${partitionset_active} true;" \
369 "if test -n ${A}; then " \
370 "setenv nand_active_ubi_vol ${nand_active_ubi_vol_A};" \
371 "setenv nand_src_addr ${nand_src_addr_A};" \
372 "fi;" \
373 "if test -n ${B}; then " \
374 "setenv nand_active_ubi_vol ${nand_active_ubi_vol_B};" \
375 "setenv nand_src_addr ${nand_src_addr_B};" \
376 "fi;" \
377 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
378 "ubi.mtd=9,${ubi_off};" \
379 "setenv bootargs ${bootargs} " \
380 "root=${nand_root} noinitrd ${mtdparts} " \
381 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
382 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
383 "=mtdoops\0" \
384 COMMON_ENV_DFU_ARGS \
385 "dfu_alt_info=" DFU_ALT_INFO_NAND_V1 "\0" \
386 COMMON_ENV_NAND_BOOT \
387 "nand read.i ${kloadaddr} ${nand_src_addr} " \
388 "${nand_img_size}; bootm ${kloadaddr}\0" \
389 COMMON_ENV_NAND_CMDS
390
391 #define CONFIG_ENV_SETTINGS_V1 \
392 COMMON_ENV_SETTINGS \
393 "net_args=run bootargs_defaults;" \
394 "mtdparts default;" \
395 "setenv bootfile ${project_dir}/kernel/uImage;" \
396 "setenv rootpath /home/projects/${project_dir}/rootfs;" \
397 "setenv bootargs ${bootargs} " \
398 "root=/dev/nfs ${mtdparts} " \
399 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
400 "ip=${ipaddr}:${serverip}:" \
401 "${gatewayip}:${netmask}:${hostname}:eth0:off\0" \
402 "net_nfs=echo Booting from network ...; " \
403 "run net_args; " \
404 "tftpboot ${kloadaddr} ${serverip}:${bootfile}; " \
405 "bootm ${kloadaddr}\0"
406
407 /*
408 * Variant 2 partition layout
409 * chip-size = 256MiB or 512 MiB
410 *| name | size | address area |
411 *-------------------------------------------------------
412 *| spl | 128.000 KiB | 0x 0..0x 1ffff |
413 *| spl.backup1 | 128.000 KiB | 0x 20000..0x 3ffff |
414 *| spl.backup2 | 128.000 KiB | 0x 40000..0x 5ffff |
415 *| spl.backup3 | 128.000 KiB | 0x 60000..0x 7ffff |
416 *| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
417 *| uboot.env0 | 512.000 KiB | 0x 260000..0x 2Dffff |
418 *| uboot.env1 | 512.000 KiB | 0x 2E0000..0x 35ffff |
419 *| mtdoops | 512.000 KiB | 0x 360000..0x 3dffff |
420 *| (256) rootfs | 252.125 MiB | 0x 3E0000..0x fffffff |
421 *| (512) rootfs | 508.125 MiB | 0x 3E0000..0x1fffffff |
422 *-------------------------------------------------------
423 */
424
425 #define MTDPARTS_DEFAULT_V2 "mtdparts=" MTDIDS_NAME_STR ":" \
426 "128k(spl)," \
427 "128k(spl.backup1)," \
428 "128k(spl.backup2)," \
429 "128k(spl.backup3)," \
430 "1920k(u-boot)," \
431 "512k(u-boot.env0)," \
432 "512k(u-boot.env1)," \
433 "512k(mtdoops)," \
434 "-(rootfs)"
435
436 #define DFU_ALT_INFO_NAND_V2 \
437 "spl part 0 1;" \
438 "spl.backup1 part 0 2;" \
439 "spl.backup2 part 0 3;" \
440 "spl.backup3 part 0 4;" \
441 "u-boot part 0 5;" \
442 "u-boot.env0 part 0 6;" \
443 "u-boot.env1 part 0 7;" \
444 "rootfs partubi 0 9" \
445
446 #define CONFIG_ENV_SETTINGS_NAND_V2 \
447 "nand_active_ubi_vol=rootfs_a\0" \
448 "rootfs_name=rootfs\0" \
449 "kernel_name=uImage\0"\
450 "nand_root_fs_type=ubifs rootwait=1\0" \
451 "nand_args=run bootargs_defaults;" \
452 "mtdparts default;" \
453 "setenv ${partitionset_active} true;" \
454 "if test -n ${A}; then " \
455 "setenv nand_active_ubi_vol ${rootfs_name}_a;" \
456 "fi;" \
457 "if test -n ${B}; then " \
458 "setenv nand_active_ubi_vol ${rootfs_name}_b;" \
459 "fi;" \
460 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
461 "ubi.mtd=rootfs,2048;" \
462 "setenv bootargs ${bootargs} " \
463 "root=${nand_root} noinitrd ${mtdparts} " \
464 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
465 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
466 "=mtdoops\0" \
467 COMMON_ENV_DFU_ARGS \
468 "dfu_alt_info=" DFU_ALT_INFO_NAND_V2 "\0" \
469 COMMON_ENV_NAND_BOOT \
470 "ubi part rootfs ${ubi_off};" \
471 "ubifsmount ubi0:${nand_active_ubi_vol};" \
472 "ubifsload ${kloadaddr} boot/${kernel_name};" \
473 "ubifsload ${loadaddr} boot/${dtb_name}.dtb;" \
474 "bootm ${kloadaddr} - ${loadaddr}\0" \
475 "nand_boot_backup=ubifsload ${loadaddr} boot/am335x-draco.dtb;" \
476 "bootm ${kloadaddr} - ${loadaddr}\0" \
477 COMMON_ENV_NAND_CMDS
478
479 #define CONFIG_ENV_SETTINGS_V2 \
480 COMMON_ENV_SETTINGS \
481 "net_args=run bootargs_defaults;" \
482 "mtdparts default;" \
483 "setenv bootfile ${project_dir}/kernel/uImage;" \
484 "setenv bootdtb ${project_dir}/kernel/dtb;" \
485 "setenv rootpath /home/projects/${project_dir}/rootfs;" \
486 "setenv bootargs ${bootargs} " \
487 "root=/dev/nfs ${mtdparts} " \
488 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
489 "ip=${ipaddr}:${serverip}:" \
490 "${gatewayip}:${netmask}:${hostname}:eth0:off\0" \
491 "net_nfs=echo Booting from network ...; " \
492 "run net_args; " \
493 "tftpboot ${kloadaddr} ${serverip}:${bootfile}; " \
494 "tftpboot ${loadaddr} ${serverip}:${bootdtb}; " \
495 "bootm ${kloadaddr} - ${loadaddr}\0"
496
497 /*
498 * Variant 3 partition layout
499 * chip-size = 512MiB
500 *| name | size | address area |
501 *-------------------------------------------------------
502 *| spl | 128.000 KiB | 0x 0..0x 1ffff |
503 *| spl.backup1 | 128.000 KiB | 0x 20000..0x 3ffff |
504 *| spl.backup2 | 128.000 KiB | 0x 40000..0x 5ffff |
505 *| spl.backup3 | 128.000 KiB | 0x 60000..0x 7ffff |
506 *| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
507 *| uboot.env0 | 512.000 KiB | 0x 260000..0x 2Dffff |
508 *| uboot.env1 | 512.000 KiB | 0x 2E0000..0x 35ffff |
509 *| rootfs | 300.000 MiB | 0x 360000..0x12f5ffff |
510 *| mtdoops | 512.000 KiB | 0x12f60000..0x12fdffff |
511 *|configuration | 104.125 MiB | 0x12fe0000..0x1fffffff |
512 *-------------------------------------------------------
513 */
514
515 #define MTDPARTS_DEFAULT_V3 "mtdparts=" MTDIDS_NAME_STR ":" \
516 "128k(spl)," \
517 "128k(spl.backup1)," \
518 "128k(spl.backup2)," \
519 "128k(spl.backup3)," \
520 "1920k(u-boot)," \
521 "512k(u-boot.env0)," \
522 "512k(u-boot.env1)," \
523 "300m(rootfs)," \
524 "512k(mtdoops)," \
525 "-(configuration)"
526
527 #define CONFIG_NAND_OMAP_GPMC
528 #define CONFIG_NAND_OMAP_ELM
529 #define CONFIG_SYS_NAND_BASE (0x08000000) /* physical address */
530 /* to access nand at */
531 /* CS0 */
532 #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND
533 devices */
534 #if !defined(CONFIG_SPI_BOOT)
535 #undef CONFIG_ENV_IS_NOWHERE
536 #define CONFIG_ENV_IS_IN_NAND
537 #define CONFIG_ENV_OFFSET 0x260000 /* environment starts here */
538 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
539 #endif
540 #endif
541
542 /* Reboot after 60 sec if bootcmd fails */
543 #define CONFIG_RESET_TO_RETRY
544 #define CONFIG_BOOT_RETRY_TIME 60
545
546 #define CONFIG_BOOTCOUNT_LIMIT
547 #define CONFIG_BOOTCOUNT_ENV
548
549 #endif /* ! __CONFIG_SIEMENS_AM33X_COMMON_H */