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
25 /* Extra Environment */
26 #define CONFIG_EXTRA_ENV_SETTINGS \
27 "update_sd_firmware_filename=u-boot.sd\0" \
28 "update_sd_firmware=" /* Update the SD firmware partition */ \
29 "if mmc rescan ; then " \
30 "if tftp ${update_sd_firmware_filename} ; then " \
31 "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
32 "setexpr fw_sz ${fw_sz} + 1 ; " \
33 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
39 "fdt_file=imx23-olinuxino.dtb\0" \
40 "fdt_addr=0x41000000\0" \
45 "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
46 "mmcargs=setenv bootargs console=${console},${baudrate} " \
49 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
50 "bootscript=echo Running bootscript from mmc ...; " \
52 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
53 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
54 "mmcboot=echo Booting from mmc ...; " \
56 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
57 "if run loadfdt; then " \
58 "bootm ${loadaddr} - ${fdt_addr}; " \
60 "if test ${boot_fdt} = try; then " \
63 "echo WARN: Cannot load the DT; " \
69 "netargs=setenv bootargs console=${console},${baudrate} " \
71 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
72 "netboot=echo Booting from net ...; " \
75 "if test ${ip_dyn} = yes; then " \
76 "setenv get_cmd dhcp; " \
78 "setenv get_cmd tftp; " \
80 "${get_cmd} ${uimage}; " \
81 "if test ${boot_fdt} = yes; then " \
82 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
83 "bootm ${loadaddr} - ${fdt_addr}; " \
85 "if test ${boot_fdt} = try; then " \
88 "echo WARN: Cannot load the DT; " \
95 /* The rest of the configuration is shared */
96 #include <configs/mxs.h>
98 #endif /* __CONFIGS_MX23_OLINUXINO_H__ */