Convert CONFIG_SPL_FS_LOAD_PAYLOAD_NAME et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / siemens-am33x-common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
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/
11  */
12
13 #ifndef __CONFIG_SIEMENS_AM33X_COMMON_H
14 #define __CONFIG_SIEMENS_AM33X_COMMON_H
15
16 #include <asm/arch/omap.h>
17
18 /* commands to include */
19
20 #ifndef CONFIG_SPL_BUILD
21 #define CONFIG_ROOTPATH         "/opt/eldk"
22 #endif
23
24 #define CONFIG_SYS_AUTOLOAD     "yes"
25
26 /* Clock Defines */
27 #define V_OSCK                          24000000  /* Clock output from T2 */
28 #define V_SCLK                          (V_OSCK)
29
30 /* Console I/O Buffer Size */
31
32 /*
33  * memtest works on 8 MB in DRAM after skipping 32MB from
34  * start addr of ram disk
35  */
36
37  /* Physical Memory Map */
38 #define PHYS_DRAM_1                     0x80000000      /* DRAM Bank #1 */
39
40 #define CONFIG_SYS_SDRAM_BASE           PHYS_DRAM_1
41 #define CONFIG_SYS_INIT_SP_ADDR         (NON_SECURE_SRAM_END - \
42                                                 GENERATED_GBL_DATA_SIZE)
43  /* Platform/Board specific defs */
44 #define CONFIG_SYS_TIMERBASE            0x48040000      /* Use Timer2 */
45
46 /* NS16550 Configuration */
47 #define CONFIG_SYS_NS16550_SERIAL
48 #define CONFIG_SYS_NS16550_CLK          (48000000)
49 #define CONFIG_SYS_NS16550_COM1         0x44e09000
50 #define CONFIG_SYS_NS16550_COM4         0x481a6000
51
52
53 /* I2C Configuration */
54
55 /* Defines for SPL */
56 #define CONFIG_SPL_MAX_SIZE             (SRAM_SCRATCH_SPACE_ADDR - \
57                                          CONFIG_SPL_TEXT_BASE)
58
59 #define CONFIG_SPL_BSS_START_ADDR       0x80000000
60 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000         /* 512 KB */
61
62 #define CONFIG_SYS_NAND_ECCPOS          { 2, 3, 4, 5, 6, 7, 8, 9, \
63                                          10, 11, 12, 13, 14, 15, 16, 17, \
64                                          18, 19, 20, 21, 22, 23, 24, 25, \
65                                          26, 27, 28, 29, 30, 31, 32, 33, \
66                                          34, 35, 36, 37, 38, 39, 40, 41, \
67                                          42, 43, 44, 45, 46, 47, 48, 49, \
68                                          50, 51, 52, 53, 54, 55, 56, 57, }
69
70 #define CONFIG_SYS_NAND_ECCSIZE         512
71 #define CONFIG_SYS_NAND_ECCBYTES        14
72
73 #define CONFIG_SYS_NAND_ECCSTEPS        4
74 #define CONFIG_SYS_NAND_ECCTOTAL        (CONFIG_SYS_NAND_ECCBYTES * \
75                                                 CONFIG_SYS_NAND_ECCSTEPS)
76
77 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
78
79 /*
80  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
81  * 64 bytes before this address should be set aside for u-boot.img's
82  * header. That is 0x800FFFC0--0x80100000 should not be used for any
83  * other needs.
84  */
85 #define CONFIG_SYS_SPL_MALLOC_START     0x80208000
86 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x100000
87
88 /*
89  * Since SPL did pll and ddr initialization for us,
90  * we don't need to do it twice.
91  */
92
93 #ifndef CONFIG_SPL_BUILD
94
95 /* USB DRACO ID as default */
96 #define CONFIG_USBD_HS
97
98 /* USB Device Firmware Update support */
99 #define DFU_MANIFEST_POLL_TIMEOUT       25000
100
101 #endif /* CONFIG_SPL_BUILD */
102
103 /*
104  * Default to using SPI for environment, etc.  We have multiple copies
105  * of SPL as the ROM will check these locations.
106  * 0x0 - 0x20000 : First copy of SPL
107  * 0x20000 - 0x40000 : Second copy of SPL
108  * 0x40000 - 0x60000 : Third copy of SPL
109  * 0x60000 - 0x80000 : Fourth copy of SPL
110  * 0x80000 - 0xDF000 : U-Boot
111  * 0xDF000 - 0xE0000 : U-Boot Environment
112  * 0xE0000 - 0x442000 : Linux Kernel
113  * 0x442000 - 0x800000 : Userland
114  */
115
116 /* NAND support */
117 #ifdef CONFIG_MTD_RAW_NAND
118 /* UBI Support */
119
120 /* Commen environment */
121 #define COMMON_ENV_DFU_ARGS     "dfu_args=run bootargs_defaults;" \
122                                 "setenv bootargs ${bootargs};" \
123                                 "mtdparts default;" \
124                                 "draco_led 1;" \
125                                 "dfu 0 nand 0;" \
126                                 "draco_led 0;\0" \
127
128 #define COMMON_ENV_NAND_BOOT \
129                 "nand_boot=echo Booting from nand; " \
130                 "if test ${upgrade_available} -eq 1; then " \
131                         "if test ${bootcount} -gt ${bootlimit}; " \
132                                 "then " \
133                                 "setenv upgrade_available 0;" \
134                                 "setenv ${partitionset_active} true;" \
135                                 "if test -n ${A}; then " \
136                                         "setenv partitionset_active B; " \
137                                         "env delete A; " \
138                                 "fi;" \
139                                 "if test -n ${B}; then " \
140                                         "setenv partitionset_active A; " \
141                                         "env delete B; " \
142                                 "fi;" \
143                                 "saveenv; " \
144                         "fi;" \
145                 "fi;" \
146                 "echo set ${partitionset_active}...;" \
147                 "run nand_args; "
148
149 #define COMMON_ENV_NAND_CMDS    "flash_self=run nand_boot\0" \
150                                 "flash_self_test=setenv testargs test; " \
151                                         "run nand_boot\0" \
152                                 "dfu_start=echo Preparing for dfu mode ...; " \
153                                 "run dfu_args; \0"
154
155 #define COMMON_ENV_SETTINGS \
156         "verify=no \0" \
157         "project_dir=targetdir\0" \
158         "upgrade_available=0\0" \
159         "altbootcmd=run bootcmd\0" \
160         "partitionset_active=A\0" \
161         "loadaddr=0x82000000\0" \
162         "kloadaddr=0x81000000\0" \
163         "script_addr=0x81900000\0" \
164         "console=console=ttyMTD,mtdoops console=ttyO0,115200n8 panic=5\0" \
165         "nfsopts=nolock rw\0" \
166         "ip_method=none\0" \
167         "bootenv=uEnv.txt\0" \
168         "bootargs_defaults=setenv bootargs " \
169                 "console=${console} " \
170                 "${testargs} " \
171                 "${optargs}\0" \
172         "siemens_help=echo; "\
173                 "echo Type 'run flash_self' to use kernel and root " \
174                 "filesystem on memory; echo Type 'run flash_self_test' to " \
175                 "use kernel and root filesystem on memory, boot in test " \
176                 "mode; echo Not ready yet: 'run flash_nfs' to use kernel " \
177                 "from memory and root filesystem over NFS; echo Type " \
178                 "'run net_nfs' to get Kernel over TFTP and mount root " \
179                 "filesystem over NFS; " \
180                 "echo Set partitionset_active variable to 'A' " \
181                 "or 'B' to select kernel and rootfs partition; " \
182                 "echo" \
183                 "\0"
184
185 /*
186  * Variant 1 partition layout
187  * chip-size = 256MiB
188  *|         name |        size |           address area |
189  *-------------------------------------------------------
190  *|          spl | 128.000 KiB | 0x       0..0x   1ffff |
191  *|  spl.backup1 | 128.000 KiB | 0x   20000..0x   3ffff |
192  *|  spl.backup2 | 128.000 KiB | 0x   40000..0x   5ffff |
193  *|  spl.backup3 | 128.000 KiB | 0x   60000..0x   7ffff |
194  *|       u-boot |   1.875 MiB | 0x   80000..0x  25ffff |
195  *|    uboot.env | 128.000 KiB | 0x  260000..0x  27ffff |
196  *|     kernel_a |   5.000 MiB | 0x  280000..0x  77ffff |
197  *|     kernel_b |   5.000 MiB | 0x  780000..0x  c7ffff |
198  *|      mtdoops |   8.000 MiB | 0x  c80000..0x 147ffff |
199  *|       rootfs | 235.500 MiB | 0x 1480000..0x fffffff |
200  *-------------------------------------------------------
201
202                                         "mtdparts=omap2-nand.0:" \
203                                         "128k(spl),"            \
204                                         "128k(spl.backup1),"    \
205                                         "128k(spl.backup2),"    \
206                                         "128k(spl.backup3),"    \
207                                         "1920k(u-boot),"        \
208                                         "128k(uboot.env),"      \
209                                         "5120k(kernel_a),"      \
210                                         "5120k(kernel_b),"      \
211                                         "8192k(mtdoops),"       \
212                                         "-(rootfs)"
213  */
214
215 #define DFU_ALT_INFO_NAND_V1 \
216         "spl part 0 1;" \
217         "spl.backup1 part 0 2;" \
218         "spl.backup2 part 0 3;" \
219         "spl.backup3 part 0 4;" \
220         "u-boot part 0 5;" \
221         "u-boot.env part 0 6;" \
222         "kernel_a part 0 7;" \
223         "kernel_b part 0 8;" \
224         "rootfs partubi 0 10"
225
226 #define CONFIG_ENV_SETTINGS_NAND_V1 \
227         "nand_active_ubi_vol=rootfs_a\0" \
228         "nand_active_ubi_vol_A=rootfs_a\0" \
229         "nand_active_ubi_vol_B=rootfs_b\0" \
230         "nand_root_fs_type=ubifs rootwait=1\0" \
231         "nand_src_addr=0x280000\0" \
232         "nand_src_addr_A=0x280000\0" \
233         "nand_src_addr_B=0x780000\0" \
234         "nand_args=run bootargs_defaults;" \
235                 "mtdparts default;" \
236                 "setenv ${partitionset_active} true;" \
237                 "if test -n ${A}; then " \
238                         "setenv nand_active_ubi_vol ${nand_active_ubi_vol_A};" \
239                         "setenv nand_src_addr ${nand_src_addr_A};" \
240                 "fi;" \
241                 "if test -n ${B}; then " \
242                         "setenv nand_active_ubi_vol ${nand_active_ubi_vol_B};" \
243                         "setenv nand_src_addr ${nand_src_addr_B};" \
244                 "fi;" \
245                 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
246                 "ubi.mtd=9,${ubi_off};" \
247                 "setenv bootargs ${bootargs} " \
248                 "root=${nand_root} noinitrd ${mtdparts} " \
249                 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
250                 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
251                 "=mtdoops\0" \
252         COMMON_ENV_DFU_ARGS \
253                 "dfu_alt_info=" DFU_ALT_INFO_NAND_V1 "\0" \
254         COMMON_ENV_NAND_BOOT \
255                 "nand read.i ${kloadaddr} ${nand_src_addr} " \
256                 "${nand_img_size}; bootm ${kloadaddr}\0" \
257         COMMON_ENV_NAND_CMDS
258
259 #define CONFIG_ENV_SETTINGS_V1 \
260                 COMMON_ENV_SETTINGS \
261         "net_args=run bootargs_defaults;" \
262                 "mtdparts default;" \
263                 "setenv bootfile ${project_dir}/kernel/uImage;" \
264                 "setenv rootpath /home/projects/${project_dir}/rootfs;" \
265                 "setenv bootargs ${bootargs} " \
266                 "root=/dev/nfs ${mtdparts} " \
267                 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
268                 "ip=${ipaddr}:${serverip}:" \
269                 "${gatewayip}:${netmask}:${hostname}:eth0:off\0" \
270         "net_nfs=echo Booting from network ...; " \
271                 "run net_args; " \
272                 "tftpboot ${kloadaddr} ${serverip}:${bootfile}; " \
273                 "bootm ${kloadaddr}\0"
274
275 /*
276  * Variant 2 partition layout (default)
277  * chip-size = 256MiB or 512 MiB
278  *|         name |        size |           address area |
279  *-------------------------------------------------------
280  *|          spl | 128.000 KiB | 0x       0..0x   1ffff |
281  *|  spl.backup1 | 128.000 KiB | 0x   20000..0x   3ffff |
282  *|  spl.backup2 | 128.000 KiB | 0x   40000..0x   5ffff |
283  *|  spl.backup3 | 128.000 KiB | 0x   60000..0x   7ffff |
284  *|       u-boot |   1.875 MiB | 0x   80000..0x  25ffff |
285  *|   uboot.env0 | 512.000 KiB | 0x  260000..0x  2Dffff |
286  *|   uboot.env1 | 512.000 KiB | 0x  2E0000..0x  35ffff |
287  *|      mtdoops | 512.000 KiB | 0x  360000..0x  3dffff |
288  *| (256) rootfs | 252.125 MiB | 0x  3E0000..0x fffffff |
289  *| (512) rootfs | 508.125 MiB | 0x  3E0000..0x1fffffff |
290  *-------------------------------------------------------
291  */
292
293 #define DFU_ALT_INFO_NAND_V2 \
294         "spl part 0 1;" \
295         "spl.backup1 part 0 2;" \
296         "spl.backup2 part 0 3;" \
297         "spl.backup3 part 0 4;" \
298         "u-boot part 0 5;" \
299         "u-boot.env0 part 0 6;" \
300         "u-boot.env1 part 0 7;" \
301         "rootfs partubi 0 9" \
302
303 #define CONFIG_ENV_SETTINGS_NAND_V2 \
304         "nand_active_ubi_vol=rootfs_a\0" \
305         "rootfs_name=rootfs\0" \
306         "kernel_name=uImage\0"\
307         "nand_root_fs_type=ubifs rootwait=1\0" \
308         "nand_args=run bootargs_defaults;" \
309                 "mtdparts default;" \
310                 "setenv ${partitionset_active} true;" \
311                 "if test -n ${A}; then " \
312                         "setenv nand_active_ubi_vol ${rootfs_name}_a;" \
313                 "fi;" \
314                 "if test -n ${B}; then " \
315                         "setenv nand_active_ubi_vol ${rootfs_name}_b;" \
316                 "fi;" \
317                 "setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
318                 "ubi.mtd=rootfs,2048;" \
319                 "setenv bootargs ${bootargs} " \
320                 "root=${nand_root} noinitrd ${mtdparts} " \
321                 "rootfstype=${nand_root_fs_type} ip=${ip_method} " \
322                 "console=ttyMTD,mtdoops console=ttyO0,115200n8 mtdoops.mtddev" \
323                 "=mtdoops\0" \
324         COMMON_ENV_DFU_ARGS \
325                 "dfu_alt_info=" DFU_ALT_INFO_NAND_V2 "\0" \
326         COMMON_ENV_NAND_BOOT \
327                 "ubi part rootfs ${ubi_off};" \
328                 "ubifsmount ubi0:${nand_active_ubi_vol};" \
329                 "ubifsload ${kloadaddr} boot/${kernel_name};" \
330                 "ubifsload ${loadaddr} boot/${dtb_name}.dtb;" \
331                 "bootm ${kloadaddr} - ${loadaddr}\0" \
332         "nand_boot_backup=ubifsload ${loadaddr} boot/am335x-draco.dtb;" \
333                 "bootm ${kloadaddr} - ${loadaddr}\0" \
334         COMMON_ENV_NAND_CMDS
335
336 #define CONFIG_ENV_SETTINGS_V2 \
337                 COMMON_ENV_SETTINGS \
338         "net_args=run bootargs_defaults;" \
339                 "mtdparts default;" \
340                 "setenv bootfile ${project_dir}/kernel/uImage;" \
341                 "setenv bootdtb ${project_dir}/kernel/dtb;" \
342                 "setenv rootpath /home/projects/${project_dir}/rootfs;" \
343                 "setenv bootargs ${bootargs} " \
344                 "root=/dev/nfs ${mtdparts} " \
345                 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
346                 "ip=${ipaddr}:${serverip}:" \
347                 "${gatewayip}:${netmask}:${hostname}:eth0:off\0" \
348         "net_nfs=echo Booting from network ...; " \
349                 "run net_args; " \
350                 "tftpboot ${kloadaddr} ${serverip}:${bootfile}; " \
351                 "tftpboot ${loadaddr} ${serverip}:${bootdtb}; " \
352                 "bootm ${kloadaddr} - ${loadaddr}\0"
353
354 /*
355  * Variant 3 partition layout
356  * chip-size = 512MiB
357  *|         name |        size |           address area |
358  *-------------------------------------------------------
359  *|          spl | 128.000 KiB | 0x       0..0x   1ffff |
360  *|  spl.backup1 | 128.000 KiB | 0x   20000..0x   3ffff |
361  *|  spl.backup2 | 128.000 KiB | 0x   40000..0x   5ffff |
362  *|  spl.backup3 | 128.000 KiB | 0x   60000..0x   7ffff |
363  *|       u-boot |   1.875 MiB | 0x   80000..0x  25ffff |
364  *|   uboot.env0 | 512.000 KiB | 0x  260000..0x  2Dffff |
365  *|   uboot.env1 | 512.000 KiB | 0x  2E0000..0x  35ffff |
366  *|       rootfs | 300.000 MiB | 0x  360000..0x12f5ffff |
367  *|      mtdoops | 512.000 KiB | 0x12f60000..0x12fdffff |
368  *|configuration | 104.125 MiB | 0x12fe0000..0x1fffffff |
369  *-------------------------------------------------------
370
371                                         "mtdparts=omap2-nand.0:" \
372                                         "128k(spl),"            \
373                                         "128k(spl.backup1),"    \
374                                         "128k(spl.backup2),"    \
375                                         "128k(spl.backup3),"    \
376                                         "1920k(u-boot),"        \
377                                         "512k(u-boot.env0),"    \
378                                         "512k(u-boot.env1),"    \
379                                         "300m(rootfs),"         \
380                                         "512k(mtdoops),"        \
381                                         "-(configuration)"
382
383  */
384
385 #define CONFIG_SYS_NAND_BASE            (0x08000000)    /* physical address */
386                                                         /* to access nand at */
387                                                         /* CS0 */
388 #define CONFIG_SYS_MAX_NAND_DEVICE      1               /* Max number of NAND
389                                                            devices */
390 #if !defined(CONFIG_SPI_BOOT)
391 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
392 #endif
393 #endif
394
395 #endif  /* ! __CONFIG_SIEMENS_AM33X_COMMON_H */