2 * Copyright (C) 2013 Marek Vasut <marex@denx.de>
4 * SPDX-License-Identifier: GPL-2.0+
6 #ifndef __CONFIGS_MX23_OLINUXINO_H__
7 #define __CONFIGS_MX23_OLINUXINO_H__
9 /* System configurations */
10 #define CONFIG_MX23 /* i.MX23 SoC */
11 #define CONFIG_MACH_TYPE 4105
14 #define CONFIG_SYS_NO_FLASH
15 #define CONFIG_DOS_PARTITION
17 #define CONFIG_CMD_LED
19 /* Memory configuration */
20 #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
21 #define PHYS_SDRAM_1 0x40000000 /* Base address */
22 #define PHYS_SDRAM_1_SIZE 0x08000000 /* Max 128 MB RAM */
23 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
26 #define CONFIG_ENV_IS_IN_MMC
27 #define CONFIG_ENV_OVERWRITE
29 /* Environment is in MMC */
30 #if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC)
31 #define CONFIG_ENV_OFFSET (256 * 1024)
32 #define CONFIG_ENV_SIZE (16 * 1024)
33 #define CONFIG_SYS_MMC_ENV_DEV 0
37 #define CONFIG_STATUS_LED
38 #define CONFIG_GPIO_LED
39 #define CONFIG_BOARD_SPECIFIC_LED
40 #define STATUS_LED_BOOT 0
41 #define STATUS_LED_BIT MX23_PAD_SSP1_DETECT__GPIO_2_1
42 #define STATUS_LED_STATE STATUS_LED_ON
43 #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
47 #define CONFIG_EHCI_MXS_PORT0
48 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
53 #define CONFIG_USB_HOST_ETHER
54 #define CONFIG_USB_ETHER_SMSC95XX
58 #define CONFIG_BOOTFILE "uImage"
59 #define CONFIG_LOADADDR 0x42000000
60 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
62 /* Extra Environment */
63 #define CONFIG_EXTRA_ENV_SETTINGS \
64 "update_sd_firmware_filename=u-boot.sd\0" \
65 "update_sd_firmware=" /* Update the SD firmware partition */ \
66 "if mmc rescan ; then " \
67 "if tftp ${update_sd_firmware_filename} ; then " \
68 "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
69 "setexpr fw_sz ${fw_sz} + 1 ; " \
70 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
76 "fdt_file=imx23-olinuxino.dtb\0" \
77 "fdt_addr=0x41000000\0" \
82 "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \
83 "mmcargs=setenv bootargs console=${console},${baudrate} " \
86 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
87 "bootscript=echo Running bootscript from mmc ...; " \
89 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
90 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
91 "mmcboot=echo Booting from mmc ...; " \
93 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
94 "if run loadfdt; then " \
95 "bootm ${loadaddr} - ${fdt_addr}; " \
97 "if test ${boot_fdt} = try; then " \
100 "echo WARN: Cannot load the DT; " \
106 "netargs=setenv bootargs console=${console},${baudrate} " \
108 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
109 "netboot=echo Booting from net ...; " \
112 "if test ${ip_dyn} = yes; then " \
113 "setenv get_cmd dhcp; " \
115 "setenv get_cmd tftp; " \
117 "${get_cmd} ${uimage}; " \
118 "if test ${boot_fdt} = yes; then " \
119 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
120 "bootm ${loadaddr} - ${fdt_addr}; " \
122 "if test ${boot_fdt} = try; then " \
125 "echo WARN: Cannot load the DT; " \
132 #define CONFIG_BOOTCOMMAND \
133 "mmc dev ${mmcdev}; if mmc rescan; then " \
134 "if run loadbootscript; then " \
137 "if run loaduimage; then " \
139 "else run netboot; " \
142 "else run netboot; fi"
144 /* The rest of the configuration is shared */
145 #include <configs/mxs.h>
147 #endif /* __CONFIGS_MX23_OLINUXINO_H__ */