1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2013 Marek Vasut <marex@denx.de>
5 #ifndef __CONFIGS_MX23_OLINUXINO_H__
6 #define __CONFIGS_MX23_OLINUXINO_H__
10 /* Memory configuration */
11 #define PHYS_SDRAM_1 0x40000000 /* Base address */
12 #define PHYS_SDRAM_1_SIZE 0x08000000 /* Max 128 MB RAM */
13 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
19 #define CONFIG_EHCI_MXS_PORT0
20 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
26 #define CONFIG_BOOTFILE "uImage"
28 /* Extra Environment */
29 #define CONFIG_EXTRA_ENV_SETTINGS \
30 "update_sd_firmware_filename=u-boot.sd\0" \
31 "update_sd_firmware=" /* Update the SD firmware partition */ \
32 "if mmc rescan ; then " \
33 "if tftp ${update_sd_firmware_filename} ; then " \
34 "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
35 "setexpr fw_sz ${fw_sz} + 1 ; " \
36 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
42 "fdt_file=imx23-olinuxino.dtb\0" \
43 "fdt_addr=0x41000000\0" \
48 "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
49 "mmcargs=setenv bootargs console=${console},${baudrate} " \
52 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
53 "bootscript=echo Running bootscript from mmc ...; " \
55 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
56 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
57 "mmcboot=echo Booting from mmc ...; " \
59 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
60 "if run loadfdt; then " \
61 "bootm ${loadaddr} - ${fdt_addr}; " \
63 "if test ${boot_fdt} = try; then " \
66 "echo WARN: Cannot load the DT; " \
72 "netargs=setenv bootargs console=${console},${baudrate} " \
74 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
75 "netboot=echo Booting from net ...; " \
78 "if test ${ip_dyn} = yes; then " \
79 "setenv get_cmd dhcp; " \
81 "setenv get_cmd tftp; " \
83 "${get_cmd} ${uimage}; " \
84 "if test ${boot_fdt} = yes; then " \
85 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
86 "bootm ${loadaddr} - ${fdt_addr}; " \
88 "if test ${boot_fdt} = try; then " \
91 "echo WARN: Cannot load the DT; " \
98 #define CONFIG_BOOTCOMMAND \
99 "mmc dev ${mmcdev}; if mmc rescan; then " \
100 "if run loadbootscript; then " \
103 "if run loaduimage; then " \
105 "else run netboot; " \
108 "else run netboot; fi"
110 /* The rest of the configuration is shared */
111 #include <configs/mxs.h>
113 #endif /* __CONFIGS_MX23_OLINUXINO_H__ */