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__
8 /* System configurations */
9 #define CONFIG_MACH_TYPE 4105
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
22 #define CONFIG_EHCI_MXS_PORT0
23 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
29 #define CONFIG_BOOTFILE "uImage"
30 #define CONFIG_LOADADDR 0x42000000
31 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
33 /* Extra Environment */
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} ; " \
47 "fdt_file=imx23-olinuxino.dtb\0" \
48 "fdt_addr=0x41000000\0" \
53 "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
54 "mmcargs=setenv bootargs console=${console},${baudrate} " \
57 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
58 "bootscript=echo Running bootscript from mmc ...; " \
60 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
61 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
62 "mmcboot=echo Booting from mmc ...; " \
64 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
65 "if run loadfdt; then " \
66 "bootm ${loadaddr} - ${fdt_addr}; " \
68 "if test ${boot_fdt} = try; then " \
71 "echo WARN: Cannot load the DT; " \
77 "netargs=setenv bootargs console=${console},${baudrate} " \
79 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
80 "netboot=echo Booting from net ...; " \
83 "if test ${ip_dyn} = yes; then " \
84 "setenv get_cmd dhcp; " \
86 "setenv get_cmd tftp; " \
88 "${get_cmd} ${uimage}; " \
89 "if test ${boot_fdt} = yes; then " \
90 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
91 "bootm ${loadaddr} - ${fdt_addr}; " \
93 "if test ${boot_fdt} = try; then " \
96 "echo WARN: Cannot load the DT; " \
103 #define CONFIG_BOOTCOMMAND \
104 "mmc dev ${mmcdev}; if mmc rescan; then " \
105 "if run loadbootscript; then " \
108 "if run loaduimage; then " \
110 "else run netboot; " \
113 "else run netboot; fi"
115 /* The rest of the configuration is shared */
116 #include <configs/mxs.h>
118 #endif /* __CONFIGS_MX23_OLINUXINO_H__ */