blob: 68275520815d7d80c827de1f84b92acced664620 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Schocher499c4982013-08-19 16:39:01 +02002/*
3 * siemens am33x common board options
4 * (C) Copyright 2013 Siemens Schweiz AG
5 * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
6 *
7 * Based on:
8 * U-Boot file:/include/configs/am335x_evm.h
9 *
10 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
Heiko Schocher499c4982013-08-19 16:39:01 +020011 */
12
13#ifndef __CONFIG_SIEMENS_AM33X_COMMON_H
14#define __CONFIG_SIEMENS_AM33X_COMMON_H
15
Heiko Schocher499c4982013-08-19 16:39:01 +020016#include <asm/arch/omap.h>
17
18#define CONFIG_DMA_COHERENT
19#define CONFIG_DMA_COHERENT_SIZE (1 << 20)
20
Heiko Schocher499c4982013-08-19 16:39:01 +020021#define CONFIG_SYS_MALLOC_LEN (16 * 1024 * 1024)
Heiko Schocherb7a6d142015-06-15 14:56:41 +020022#ifdef CONFIG_SIEMENS_MACH_TYPE
Heiko Schocher499c4982013-08-19 16:39:01 +020023#define CONFIG_MACH_TYPE CONFIG_SIEMENS_MACH_TYPE
Heiko Schocherb7a6d142015-06-15 14:56:41 +020024#endif
Heiko Schocher499c4982013-08-19 16:39:01 +020025
26#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
27#define CONFIG_SETUP_MEMORY_TAGS
28#define CONFIG_INITRD_TAG
29
Heiko Schocher499c4982013-08-19 16:39:01 +020030/* commands to include */
Heiko Schocher499c4982013-08-19 16:39:01 +020031
Heiko Schocher499c4982013-08-19 16:39:01 +020032#ifndef CONFIG_SPL_BUILD
33#define CONFIG_ROOTPATH "/opt/eldk"
34#endif
35
36#define CONFIG_ENV_OVERWRITE 1
Heiko Schocher499c4982013-08-19 16:39:01 +020037
Heiko Schocher499c4982013-08-19 16:39:01 +020038#define CONFIG_SYS_AUTOLOAD "yes"
39
40/* Clock Defines */
41#define V_OSCK 24000000 /* Clock output from T2 */
42#define V_SCLK (V_OSCK)
43
44/* We set the max number of command args high to avoid HUSH bugs. */
45#define CONFIG_SYS_MAXARGS 32
46
47/* Console I/O Buffer Size */
Heiko Schocherd17c3fc2015-06-16 14:59:34 +020048#define CONFIG_SYS_CBSIZE 1024
Heiko Schocher499c4982013-08-19 16:39:01 +020049
Heiko Schocher499c4982013-08-19 16:39:01 +020050/* Boot Argument Buffer Size */
51#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
52
53/*
54 * memtest works on 8 MB in DRAM after skipping 32MB from
55 * start addr of ram disk
56 */
Heiko Schocher499c4982013-08-19 16:39:01 +020057
58#define CONFIG_SYS_LOAD_ADDR 0x81000000 /* Default load address */
Heiko Schocher499c4982013-08-19 16:39:01 +020059
Heiko Schocher499c4982013-08-19 16:39:01 +020060 /* Physical Memory Map */
Heiko Schocher499c4982013-08-19 16:39:01 +020061#define PHYS_DRAM_1 0x80000000 /* DRAM Bank #1 */
62
63#define CONFIG_SYS_SDRAM_BASE PHYS_DRAM_1
64#define CONFIG_SYS_INIT_SP_ADDR (NON_SECURE_SRAM_END - \
65 GENERATED_GBL_DATA_SIZE)
66 /* Platform/Board specific defs */
67#define CONFIG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */
68#define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
Heiko Schocher499c4982013-08-19 16:39:01 +020069
70/* NS16550 Configuration */
Heiko Schocher499c4982013-08-19 16:39:01 +020071#define CONFIG_SYS_NS16550_SERIAL
Heiko Schocher499c4982013-08-19 16:39:01 +020072#define CONFIG_SYS_NS16550_CLK (48000000)
73#define CONFIG_SYS_NS16550_COM1 0x44e09000
74#define CONFIG_SYS_NS16550_COM4 0x481a6000
75
Heiko Schocher499c4982013-08-19 16:39:01 +020076
77/* I2C Configuration */
78#define CONFIG_I2C
Heiko Schocherf53f2b82013-10-22 11:03:18 +020079#define CONFIG_SYS_I2C
Heiko Schocher499c4982013-08-19 16:39:01 +020080
81/* Defines for SPL */
Tom Rinicfff4aa2016-08-26 13:30:43 -040082#define CONFIG_SPL_MAX_SIZE (SRAM_SCRATCH_SPACE_ADDR - \
83 CONFIG_SPL_TEXT_BASE)
Heiko Schocher499c4982013-08-19 16:39:01 +020084
85#define CONFIG_SPL_BSS_START_ADDR 0x80000000
86#define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */
87
Paul Kocialkowski341e8cd2014-11-08 23:14:55 +010088#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
Guillaume GARDET602a16c2014-10-15 17:53:11 +020089#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
Heiko Schocher499c4982013-08-19 16:39:01 +020090
Heiko Schocher499c4982013-08-19 16:39:01 +020091#define CONFIG_SPL_NAND_BASE
92#define CONFIG_SPL_NAND_DRIVERS
93#define CONFIG_SPL_NAND_ECC
Heiko Schochercbec11a2016-06-07 08:55:45 +020094#define CONFIG_SYS_NAND_ONFI_DETECTION
Heiko Schocher499c4982013-08-19 16:39:01 +020095#define CONFIG_SYS_NAND_5_ADDR_CYCLE
96#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
97 CONFIG_SYS_NAND_PAGE_SIZE)
98#define CONFIG_SYS_NAND_PAGE_SIZE 2048
99#define CONFIG_SYS_NAND_OOBSIZE 64
100#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
101#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
102#define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \
103 10, 11, 12, 13, 14, 15, 16, 17, \
104 18, 19, 20, 21, 22, 23, 24, 25, \
105 26, 27, 28, 29, 30, 31, 32, 33, \
106 34, 35, 36, 37, 38, 39, 40, 41, \
107 42, 43, 44, 45, 46, 47, 48, 49, \
108 50, 51, 52, 53, 54, 55, 56, 57, }
109
110#define CONFIG_SYS_NAND_ECCSIZE 512
111#define CONFIG_SYS_NAND_ECCBYTES 14
pekon gupta3ef49732013-11-18 19:03:01 +0530112#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
Heiko Schocher499c4982013-08-19 16:39:01 +0200113
114#define CONFIG_SYS_NAND_ECCSTEPS 4
115#define CONFIG_SYS_NAND_ECCTOTAL (CONFIG_SYS_NAND_ECCBYTES * \
116 CONFIG_SYS_NAND_ECCSTEPS)
117
118#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
119
120#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
121
122/*
123 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
124 * 64 bytes before this address should be set aside for u-boot.img's
125 * header. That is 0x800FFFC0--0x80100000 should not be used for any
126 * other needs.
127 */
Heiko Schocher499c4982013-08-19 16:39:01 +0200128#define CONFIG_SYS_SPL_MALLOC_START 0x80208000
129#define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000
130
131/*
132 * Since SPL did pll and ddr initialization for us,
133 * we don't need to do it twice.
134 */
135#ifndef CONFIG_SPL_BUILD
136#define CONFIG_SKIP_LOWLEVEL_INIT
137#endif
138
139#ifndef CONFIG_SPL_BUILD
140/*
141 * USB configuration
142 */
Heiko Schocher499c4982013-08-19 16:39:01 +0200143#define CONFIG_AM335X_USB0
144#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
145#define CONFIG_AM335X_USB1
146#define CONFIG_AM335X_USB1_MODE MUSB_HOST
Heiko Schocher499c4982013-08-19 16:39:01 +0200147
Samuel Egli8069bfe2013-11-04 14:05:03 +0100148/* USB DRACO ID as default */
Heiko Schocher499c4982013-08-19 16:39:01 +0200149#define CONFIG_USBD_HS
Heiko Schocher499c4982013-08-19 16:39:01 +0200150
151/* USB Device Firmware Update support */
Heiko Schocher499c4982013-08-19 16:39:01 +0200152#define CONFIG_SYS_DFU_DATA_BUF_SIZE (1 << 20)
Heiko Schocherea75c472014-03-18 08:09:57 +0100153#define DFU_MANIFEST_POLL_TIMEOUT 25000
Heiko Schocher499c4982013-08-19 16:39:01 +0200154
155#endif /* CONFIG_SPL_BUILD */
156
157/*
158 * Default to using SPI for environment, etc. We have multiple copies
159 * of SPL as the ROM will check these locations.
160 * 0x0 - 0x20000 : First copy of SPL
161 * 0x20000 - 0x40000 : Second copy of SPL
162 * 0x40000 - 0x60000 : Third copy of SPL
163 * 0x60000 - 0x80000 : Fourth copy of SPL
164 * 0x80000 - 0xDF000 : U-Boot
165 * 0xDF000 - 0xE0000 : U-Boot Environment
166 * 0xE0000 - 0x442000 : Linux Kernel
167 * 0x442000 - 0x800000 : Userland
168 */
Heiko Schocher499c4982013-08-19 16:39:01 +0200169
Heiko Schocher499c4982013-08-19 16:39:01 +0200170#define CONFIG_BOOTP_DEFAULT
Heiko Schocher499c4982013-08-19 16:39:01 +0200171#define CONFIG_BOOTP_SEND_HOSTNAME
Heiko Schocher499c4982013-08-19 16:39:01 +0200172#define CONFIG_NET_RETRY_COUNT 10
Heiko Schocher499c4982013-08-19 16:39:01 +0200173
Heiko Schocher499c4982013-08-19 16:39:01 +0200174/* NAND support */
Miquel Raynald0935362019-10-03 19:50:03 +0200175#ifdef CONFIG_MTD_RAW_NAND
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200176/* UBI Support */
Heiko Schocher499c4982013-08-19 16:39:01 +0200177
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200178/* Commen environment */
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200179#define COMMON_ENV_DFU_ARGS "dfu_args=run bootargs_defaults;" \
180 "setenv bootargs ${bootargs};" \
181 "mtdparts default;" \
182 "draco_led 1;" \
183 "dfu 0 nand 0;" \
184 "draco_led 0;\0" \
185
186#define COMMON_ENV_NAND_BOOT \
187 "nand_boot=echo Booting from nand; " \
188 "if test ${upgrade_available} -eq 1; then " \
189 "if test ${bootcount} -gt ${bootlimit}; " \
190 "then " \
191 "setenv upgrade_available 0;" \
192 "setenv ${partitionset_active} true;" \
193 "if test -n ${A}; then " \
194 "setenv partitionset_active B; " \
195 "env delete A; " \
196 "fi;" \
197 "if test -n ${B}; then " \
198 "setenv partitionset_active A; " \
199 "env delete B; " \
200 "fi;" \
201 "saveenv; " \
202 "fi;" \
203 "fi;" \
204 "echo set ${partitionset_active}...;" \
205 "run nand_args; "
206
207#define COMMON_ENV_NAND_CMDS "flash_self=run nand_boot\0" \
208 "flash_self_test=setenv testargs test; " \
209 "run nand_boot\0" \
210 "dfu_start=echo Preparing for dfu mode ...; " \
211 "run dfu_args; \0"
212
213#define COMMON_ENV_SETTINGS \
214 "verify=no \0" \
215 "project_dir=targetdir\0" \
216 "upgrade_available=0\0" \
217 "altbootcmd=run bootcmd\0" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200218 "partitionset_active=A\0" \
219 "loadaddr=0x82000000\0" \
220 "kloadaddr=0x81000000\0" \
221 "script_addr=0x81900000\0" \
222 "console=console=ttyMTD,mtdoops console=ttyO0,115200n8 panic=5\0" \
223 "nfsopts=nolock rw\0" \
224 "ip_method=none\0" \
225 "bootenv=uEnv.txt\0" \
226 "bootargs_defaults=setenv bootargs " \
227 "console=${console} " \
228 "${testargs} " \
229 "${optargs}\0" \
230 "siemens_help=echo; "\
231 "echo Type 'run flash_self' to use kernel and root " \
232 "filesystem on memory; echo Type 'run flash_self_test' to " \
233 "use kernel and root filesystem on memory, boot in test " \
234 "mode; echo Not ready yet: 'run flash_nfs' to use kernel " \
235 "from memory and root filesystem over NFS; echo Type " \
236 "'run net_nfs' to get Kernel over TFTP and mount root " \
237 "filesystem over NFS; " \
238 "echo Set partitionset_active variable to 'A' " \
239 "or 'B' to select kernel and rootfs partition; " \
240 "echo" \
241 "\0"
242
Heiko Schocher499c4982013-08-19 16:39:01 +0200243/*
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200244 * Variant 1 partition layout
Heiko Schocher499c4982013-08-19 16:39:01 +0200245 * chip-size = 256MiB
246 *| name | size | address area |
247 *-------------------------------------------------------
248 *| spl | 128.000 KiB | 0x 0..0x 1ffff |
249 *| spl.backup1 | 128.000 KiB | 0x 20000..0x 3ffff |
250 *| spl.backup2 | 128.000 KiB | 0x 40000..0x 5ffff |
251 *| spl.backup3 | 128.000 KiB | 0x 60000..0x 7ffff |
252 *| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
253 *| uboot.env | 128.000 KiB | 0x 260000..0x 27ffff |
254 *| kernel_a | 5.000 MiB | 0x 280000..0x 77ffff |
255 *| kernel_b | 5.000 MiB | 0x 780000..0x c7ffff |
256 *| mtdoops | 8.000 MiB | 0x c80000..0x 147ffff |
257 *| rootfs | 235.500 MiB | 0x 1480000..0x fffffff |
258 *-------------------------------------------------------
Tom Rini5ad8e112017-10-22 17:55:07 -0400259
260 "mtdparts=omap2-nand.0:" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200261 "128k(spl)," \
262 "128k(spl.backup1)," \
263 "128k(spl.backup2)," \
264 "128k(spl.backup3)," \
265 "1920k(u-boot)," \
266 "128k(uboot.env)," \
267 "5120k(kernel_a)," \
268 "5120k(kernel_b)," \
269 "8192k(mtdoops)," \
270 "-(rootfs)"
Tom Rini5ad8e112017-10-22 17:55:07 -0400271 */
Heiko Schocher499c4982013-08-19 16:39:01 +0200272
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200273#define DFU_ALT_INFO_NAND_V1 \
Heiko Schocher499c4982013-08-19 16:39:01 +0200274 "spl part 0 1;" \
275 "spl.backup1 part 0 2;" \
276 "spl.backup2 part 0 3;" \
277 "spl.backup3 part 0 4;" \
278 "u-boot part 0 5;" \
279 "u-boot.env part 0 6;" \
280 "kernel_a part 0 7;" \
281 "kernel_b part 0 8;" \
282 "rootfs partubi 0 10"
283
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200284#define CONFIG_ENV_SETTINGS_NAND_V1 \
Heiko Schocher499c4982013-08-19 16:39:01 +0200285 "nand_active_ubi_vol=rootfs_a\0" \
Samuel Egli8069bfe2013-11-04 14:05:03 +0100286 "nand_active_ubi_vol_A=rootfs_a\0" \
287 "nand_active_ubi_vol_B=rootfs_b\0" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200288 "nand_root_fs_type=ubifs rootwait=1\0" \
289 "nand_src_addr=0x280000\0" \
Samuel Egli8069bfe2013-11-04 14:05:03 +0100290 "nand_src_addr_A=0x280000\0" \
291 "nand_src_addr_B=0x780000\0" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200292 "nand_args=run bootargs_defaults;" \
293 "mtdparts default;" \
Samuel Egli8069bfe2013-11-04 14:05:03 +0100294 "setenv ${partitionset_active} true;" \
295 "if test -n ${A}; then " \
296 "setenv nand_active_ubi_vol ${nand_active_ubi_vol_A};" \
297 "setenv nand_src_addr ${nand_src_addr_A};" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200298 "fi;" \
Samuel Egli8069bfe2013-11-04 14:05:03 +0100299 "if test -n ${B}; then " \
300 "setenv nand_active_ubi_vol ${nand_active_ubi_vol_B};" \
301 "setenv nand_src_addr ${nand_src_addr_B};" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200302 "fi;" \
303 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
Heiko Schochercbec11a2016-06-07 08:55:45 +0200304 "ubi.mtd=9,${ubi_off};" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200305 "setenv bootargs ${bootargs} " \
306 "root=${nand_root} noinitrd ${mtdparts} " \
307 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
308 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
309 "=mtdoops\0" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200310 COMMON_ENV_DFU_ARGS \
311 "dfu_alt_info=" DFU_ALT_INFO_NAND_V1 "\0" \
312 COMMON_ENV_NAND_BOOT \
313 "nand read.i ${kloadaddr} ${nand_src_addr} " \
314 "${nand_img_size}; bootm ${kloadaddr}\0" \
315 COMMON_ENV_NAND_CMDS
316
317#define CONFIG_ENV_SETTINGS_V1 \
318 COMMON_ENV_SETTINGS \
Heiko Schocher499c4982013-08-19 16:39:01 +0200319 "net_args=run bootargs_defaults;" \
320 "mtdparts default;" \
321 "setenv bootfile ${project_dir}/kernel/uImage;" \
322 "setenv rootpath /home/projects/${project_dir}/rootfs;" \
323 "setenv bootargs ${bootargs} " \
324 "root=/dev/nfs ${mtdparts} " \
325 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
Samuel Egli8069bfe2013-11-04 14:05:03 +0100326 "ip=${ipaddr}:${serverip}:" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200327 "${gatewayip}:${netmask}:${hostname}:eth0:off\0" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200328 "net_nfs=echo Booting from network ...; " \
329 "run net_args; " \
330 "tftpboot ${kloadaddr} ${serverip}:${bootfile}; " \
331 "bootm ${kloadaddr}\0"
332
333/*
Tom Rini5ad8e112017-10-22 17:55:07 -0400334 * Variant 2 partition layout (default)
Egli, Samuel21c5f722015-07-01 17:57:39 +0200335 * chip-size = 256MiB or 512 MiB
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200336 *| name | size | address area |
337 *-------------------------------------------------------
338 *| spl | 128.000 KiB | 0x 0..0x 1ffff |
339 *| spl.backup1 | 128.000 KiB | 0x 20000..0x 3ffff |
340 *| spl.backup2 | 128.000 KiB | 0x 40000..0x 5ffff |
341 *| spl.backup3 | 128.000 KiB | 0x 60000..0x 7ffff |
342 *| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
343 *| uboot.env0 | 512.000 KiB | 0x 260000..0x 2Dffff |
344 *| uboot.env1 | 512.000 KiB | 0x 2E0000..0x 35ffff |
Egli, Samuel21c5f722015-07-01 17:57:39 +0200345 *| mtdoops | 512.000 KiB | 0x 360000..0x 3dffff |
346 *| (256) rootfs | 252.125 MiB | 0x 3E0000..0x fffffff |
347 *| (512) rootfs | 508.125 MiB | 0x 3E0000..0x1fffffff |
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200348 *-------------------------------------------------------
349 */
350
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200351#define DFU_ALT_INFO_NAND_V2 \
352 "spl part 0 1;" \
353 "spl.backup1 part 0 2;" \
354 "spl.backup2 part 0 3;" \
355 "spl.backup3 part 0 4;" \
356 "u-boot part 0 5;" \
357 "u-boot.env0 part 0 6;" \
358 "u-boot.env1 part 0 7;" \
Egli, Samuel21c5f722015-07-01 17:57:39 +0200359 "rootfs partubi 0 9" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200360
361#define CONFIG_ENV_SETTINGS_NAND_V2 \
362 "nand_active_ubi_vol=rootfs_a\0" \
363 "rootfs_name=rootfs\0" \
364 "kernel_name=uImage\0"\
365 "nand_root_fs_type=ubifs rootwait=1\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 ${rootfs_name}_a;" \
Samuel Egli8069bfe2013-11-04 14:05:03 +0100371 "fi;" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200372 "if test -n ${B}; then " \
373 "setenv nand_active_ubi_vol ${rootfs_name}_b;" \
374 "fi;" \
375 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
Egli, Samuel21c5f722015-07-01 17:57:39 +0200376 "ubi.mtd=rootfs,2048;" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200377 "setenv bootargs ${bootargs} " \
378 "root=${nand_root} noinitrd ${mtdparts} " \
379 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
380 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
381 "=mtdoops\0" \
382 COMMON_ENV_DFU_ARGS \
383 "dfu_alt_info=" DFU_ALT_INFO_NAND_V2 "\0" \
384 COMMON_ENV_NAND_BOOT \
Heiko Schochercbec11a2016-06-07 08:55:45 +0200385 "ubi part rootfs ${ubi_off};" \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200386 "ubifsmount ubi0:${nand_active_ubi_vol};" \
387 "ubifsload ${kloadaddr} boot/${kernel_name};" \
388 "ubifsload ${loadaddr} boot/${dtb_name}.dtb;" \
389 "bootm ${kloadaddr} - ${loadaddr}\0" \
390 "nand_boot_backup=ubifsload ${loadaddr} boot/am335x-draco.dtb;" \
391 "bootm ${kloadaddr} - ${loadaddr}\0" \
392 COMMON_ENV_NAND_CMDS
393
394#define CONFIG_ENV_SETTINGS_V2 \
395 COMMON_ENV_SETTINGS \
396 "net_args=run bootargs_defaults;" \
397 "mtdparts default;" \
398 "setenv bootfile ${project_dir}/kernel/uImage;" \
399 "setenv bootdtb ${project_dir}/kernel/dtb;" \
400 "setenv rootpath /home/projects/${project_dir}/rootfs;" \
401 "setenv bootargs ${bootargs} " \
402 "root=/dev/nfs ${mtdparts} " \
403 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
404 "ip=${ipaddr}:${serverip}:" \
405 "${gatewayip}:${netmask}:${hostname}:eth0:off\0" \
Heiko Schocher499c4982013-08-19 16:39:01 +0200406 "net_nfs=echo Booting from network ...; " \
407 "run net_args; " \
408 "tftpboot ${kloadaddr} ${serverip}:${bootfile}; " \
Heiko Schocherd17c3fc2015-06-16 14:59:34 +0200409 "tftpboot ${loadaddr} ${serverip}:${bootdtb}; " \
410 "bootm ${kloadaddr} - ${loadaddr}\0"
411
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200412/*
413 * Variant 3 partition layout
414 * chip-size = 512MiB
415 *| name | size | address area |
416 *-------------------------------------------------------
417 *| spl | 128.000 KiB | 0x 0..0x 1ffff |
418 *| spl.backup1 | 128.000 KiB | 0x 20000..0x 3ffff |
419 *| spl.backup2 | 128.000 KiB | 0x 40000..0x 5ffff |
420 *| spl.backup3 | 128.000 KiB | 0x 60000..0x 7ffff |
421 *| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
422 *| uboot.env0 | 512.000 KiB | 0x 260000..0x 2Dffff |
423 *| uboot.env1 | 512.000 KiB | 0x 2E0000..0x 35ffff |
424 *| rootfs | 300.000 MiB | 0x 360000..0x12f5ffff |
425 *| mtdoops | 512.000 KiB | 0x12f60000..0x12fdffff |
426 *|configuration | 104.125 MiB | 0x12fe0000..0x1fffffff |
427 *-------------------------------------------------------
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200428
Tom Rini5ad8e112017-10-22 17:55:07 -0400429 "mtdparts=omap2-nand.0:" \
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200430 "128k(spl)," \
431 "128k(spl.backup1)," \
432 "128k(spl.backup2)," \
433 "128k(spl.backup3)," \
434 "1920k(u-boot)," \
435 "512k(u-boot.env0)," \
436 "512k(u-boot.env1)," \
437 "300m(rootfs)," \
438 "512k(mtdoops)," \
439 "-(configuration)"
440
Tom Rini5ad8e112017-10-22 17:55:07 -0400441 */
442
Heiko Schocher499c4982013-08-19 16:39:01 +0200443#define CONFIG_SYS_NAND_BASE (0x08000000) /* physical address */
444 /* to access nand at */
445 /* CS0 */
446#define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND
447 devices */
448#if !defined(CONFIG_SPI_BOOT)
Heiko Schocher499c4982013-08-19 16:39:01 +0200449#define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
450#endif
451#endif
452
Samuel Egli8069bfe2013-11-04 14:05:03 +0100453/* Reboot after 60 sec if bootcmd fails */
454#define CONFIG_RESET_TO_RETRY
455#define CONFIG_BOOT_RETRY_TIME 60
456
Heiko Schocher499c4982013-08-19 16:39:01 +0200457#endif /* ! __CONFIG_SIEMENS_AM33X_COMMON_H */