Convert CONFIG_BOOTFILE to Kconfig
[platform/kernel/u-boot.git] / include / configs / mx23evk.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Freescale i.MX23 EVK board config
4  *
5  * Copyright (C) 2013 Otavio Salvador <otavio@ossystems.com.br>
6  * on behalf of O.S. Systems Software LTDA.
7  */
8 #ifndef __CONFIGS_MX23EVK_H__
9 #define __CONFIGS_MX23EVK_H__
10
11 /* U-Boot Commands */
12
13 /* Memory configuration */
14 #define PHYS_SDRAM_1                    0x40000000      /* Base address */
15 #define PHYS_SDRAM_1_SIZE               0x08000000      /* Max 128 MB RAM */
16 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
17
18 /* Environment */
19
20 /* Environment is in MMC */
21
22 /* USB */
23 #ifdef  CONFIG_CMD_USB
24 #define CONFIG_EHCI_MXS_PORT0
25 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
26 #endif
27
28 /* Framebuffer support */
29 #ifdef CONFIG_DM_VIDEO
30 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  (512 << 10)
31 #endif
32
33 /* Extra Environments */
34 #define CONFIG_EXTRA_ENV_SETTINGS \
35         "update_sd_firmware_filename=u-boot.sd\0" \
36         "update_sd_firmware="           /* Update the SD firmware partition */ \
37                 "if mmc rescan ; then " \
38                 "if tftp ${update_sd_firmware_filename} ; then " \
39                 "setexpr fw_sz ${filesize} / 0x200 ; "  /* SD block size */ \
40                 "setexpr fw_sz ${fw_sz} + 1 ; " \
41                 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
42                 "fi ; " \
43                 "fi\0" \
44         "script=boot.scr\0"     \
45         "image=zImage\0" \
46         "console=ttyAMA0\0" \
47         "fdt_file=imx23-evk.dtb\0" \
48         "fdt_addr=0x41000000\0" \
49         "boot_fdt=try\0" \
50         "mmcdev=0\0" \
51         "mmcpart=2\0" \
52         "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
53         "mmcargs=setenv bootargs console=${console},${baudrate} " \
54                 "root=${mmcroot}\0" \
55         "loadbootscript="  \
56                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
57         "bootscript=echo Running bootscript from mmc ...; "     \
58                 "source\0" \
59         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
60         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
61         "mmcboot=echo Booting from mmc ...; " \
62                 "run mmcargs; " \
63                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
64                         "if run loadfdt; then " \
65                                 "bootz ${loadaddr} - ${fdt_addr}; " \
66                         "else " \
67                                 "if test ${boot_fdt} = try; then " \
68                                         "bootz; " \
69                                 "else " \
70                                         "echo WARN: Cannot load the DT; " \
71                                 "fi; " \
72                         "fi; " \
73                 "else " \
74                         "bootz; " \
75                 "fi;\0"
76
77 /* The rest of the configuration is shared */
78 #include <configs/mxs.h>
79
80 #endif /* __CONFIGS_MX23EVK_H__ */