video: Convert CONFIG_VIDEO_LOGO 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 /* Boot Linux */
34 #define CONFIG_BOOTFILE         "uImage"
35
36 /* Extra Environments */
37 #define CONFIG_EXTRA_ENV_SETTINGS \
38         "update_sd_firmware_filename=u-boot.sd\0" \
39         "update_sd_firmware="           /* Update the SD firmware partition */ \
40                 "if mmc rescan ; then " \
41                 "if tftp ${update_sd_firmware_filename} ; then " \
42                 "setexpr fw_sz ${filesize} / 0x200 ; "  /* SD block size */ \
43                 "setexpr fw_sz ${fw_sz} + 1 ; " \
44                 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
45                 "fi ; " \
46                 "fi\0" \
47         "script=boot.scr\0"     \
48         "image=zImage\0" \
49         "console=ttyAMA0\0" \
50         "fdt_file=imx23-evk.dtb\0" \
51         "fdt_addr=0x41000000\0" \
52         "boot_fdt=try\0" \
53         "mmcdev=0\0" \
54         "mmcpart=2\0" \
55         "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
56         "mmcargs=setenv bootargs console=${console},${baudrate} " \
57                 "root=${mmcroot}\0" \
58         "loadbootscript="  \
59                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
60         "bootscript=echo Running bootscript from mmc ...; "     \
61                 "source\0" \
62         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
63         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
64         "mmcboot=echo Booting from mmc ...; " \
65                 "run mmcargs; " \
66                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
67                         "if run loadfdt; then " \
68                                 "bootz ${loadaddr} - ${fdt_addr}; " \
69                         "else " \
70                                 "if test ${boot_fdt} = try; then " \
71                                         "bootz; " \
72                                 "else " \
73                                         "echo WARN: Cannot load the DT; " \
74                                 "fi; " \
75                         "fi; " \
76                 "else " \
77                         "bootz; " \
78                 "fi;\0"
79
80 /* The rest of the configuration is shared */
81 #include <configs/mxs.h>
82
83 #endif /* __CONFIGS_MX23EVK_H__ */