1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2016-2017
4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
10 #include "mx6_common.h"
12 #define CONFIG_SPL_LIBCOMMON_SUPPORT
15 #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
16 #define CONFIG_SYS_UBOOT_BASE (CONFIG_SYS_FLASH_BASE + 0x80000)
17 #define CONFIG_SPL_OS_BOOT
18 #define CONFIG_SYS_OS_BASE (CONFIG_SYS_FLASH_BASE + 0x180000)
19 #define CONFIG_SYS_FDT_BASE (CONFIG_SYS_FLASH_BASE + 0x1980000)
20 #define CONFIG_SYS_FDT_SIZE (48 * SZ_1K)
21 #define CONFIG_SYS_SPL_ARGS_ADDR 0x18000000
24 * Below defines are set but NOT really used since we by
25 * design force U-Boot run when we boot in development
26 * mode from SD card (SD2)
28 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR (0x800)
29 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS (0x80)
30 #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR (0x1000)
31 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage"
32 #define CONFIG_SPL_FS_LOAD_ARGS_NAME "imx6q-mccmon.dtb"
34 /* Size of malloc() pool */
35 #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
37 #define CONFIG_BOARD_EARLY_INIT_F
38 #define CONFIG_BOARD_LATE_INIT
40 #define CONFIG_MXC_UART
41 #define CONFIG_MXC_UART_BASE UART1_BASE
43 #define CONFIG_SYS_MEMTEST_START 0x10000000
44 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 500 * SZ_1M)
47 #define CONFIG_SYS_I2C
48 #define CONFIG_SYS_I2C_MXC
49 #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
50 #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
51 #define CONFIG_SYS_I2C_SPEED 100000
53 /* MMC Configuration */
54 #define CONFIG_SYS_FSL_USDHC_NUM 2
55 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
58 #define CONFIG_SYS_FLASH_BASE WEIM_ARB_BASE_ADDR
59 #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
60 #define CONFIG_SYS_FLASH_EMPTY_INFO
61 #define CONFIG_FLASH_VERIFY
64 #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
65 #define CONFIG_SYS_FLASH_BANKS_LIST { (CONFIG_SYS_FLASH_BASE) }
66 #define CONFIG_SYS_FLASH_BANKS_SIZES { (32 * SZ_1M) }
69 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
70 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
71 #define CONFIG_MXC_USB_FLAGS 0
73 /* Ethernet Configuration */
74 #define CONFIG_FEC_MXC
75 #define IMX_FEC_BASE ENET_BASE_ADDR
76 #define CONFIG_FEC_XCV_TYPE RGMII
77 #define CONFIG_ETHPRIME "FEC"
78 #define CONFIG_FEC_MXC_PHYADDR 1
80 #define CONFIG_EXTRA_ENV_SETTINGS \
81 "console=ttymxc0,115200 quiet\0" \
82 "fdtfile=imx6q-mccmon6.dtb\0" \
83 "fdt_high=0xffffffff\0" \
84 "initrd_high=0xffffffff\0" \
87 "tftpboot ${kernel_addr} ${kernel_file};" \
88 "tftpboot ${fdt_addr} ${fdtfile};\0" \
90 "setenv boot_medium nor;" \
91 "setexpr.l _src_sbmr1 *0x020d8004;" \
92 "setexpr _b_medium ${_src_sbmr1} '&' 0x00000040;" \
93 "if test ${_b_medium} = 40; then " \
94 "setenv boot_medium sdcard;" \
96 "kernel_file=uImage\0" \
98 "load mmc ${bootdev}:${bootpart} ${kernel_addr} uImage;" \
99 "load mmc ${bootdev}:${bootpart} ${fdt_addr} ${fdtfile};\0" \
101 "echo '#######################';" \
102 "echo '# Factory SDcard Boot #';" \
103 "echo '#######################';" \
105 "setenv mmcfactorydev 0;" \
106 "setenv mmcfactorypart 1;" \
107 "run factory_flash_img;\0" \
109 "setenv kernelnor 0x08180000;" \
110 "setenv dtbnor 0x09980000;" \
111 "setenv bootargs console=${console} " \
112 CONFIG_MTDPARTS_DEFAULT " " \
113 "root=/dev/mmcblk1 rootfstype=ext4 rw rootwait noinitrd;" \
114 "cp.l ${dtbnor} ${dtbloadaddr} 0x8000;" \
115 "bootm ${kernelnor} - ${dtbloadaddr};\0" \
117 "echo '#######################';" \
118 "echo '# RECOVERY SWU Boot #';" \
119 "echo '#######################';" \
120 "setenv rootfsloadaddr 0x13000000;" \
121 "setenv swukernelnor 0x08980000;" \
122 "setenv swurootfsnor 0x09180000;" \
123 "setenv swudtbnor 0x099A0000;" \
124 "setenv bootargs console=${console} " \
125 CONFIG_MTDPARTS_DEFAULT " " \
126 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
127 ":${hostname}::off root=/dev/ram rw;" \
128 "cp.l ${swurootfsnor} ${rootfsloadaddr} 0x200000;" \
129 "cp.l ${swudtbnor} ${dtbloadaddr} 0x8000;" \
130 "bootm ${swukernelnor} ${rootfsloadaddr} ${dtbloadaddr};\0" \
132 "echo '#######################';" \
133 "echo '# TFTP Boot #';" \
134 "echo '#######################';" \
135 "if run download_kernel; then " \
136 "setenv bootargs console=${console} " \
137 "root=/dev/mmcblk0p2 rootwait;" \
138 "bootm ${kernel_addr} - ${fdt_addr};" \
141 "if test -n ${recovery_status}; then " \
142 "run boot_recovery;" \
144 "if test ! -n ${boot_medium}; then " \
145 "run get_boot_medium;" \
146 "if test ${boot_medium} = sdcard; then " \
152 "if test ${boot_medium} = tftp; then " \
157 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
158 "fdt_addr=0x18000000\0" \
161 "kernel_addr=" __stringify(CONFIG_LOADADDR) "\0" \
163 "load_addr=0x11000000\0" \
164 "dtbloadaddr=0x12000000\0" \
165 "uboot_file=u-boot.img\0" \
167 "load_uboot=tftp ${load_addr} ${uboot_file}\0" \
168 "nor_img_addr=0x11000000\0" \
169 "nor_img_file=core-image-lwn-mccmon6.nor\0" \
170 "emmc_img_file=core-image-lwn-mccmon6.ext4\0" \
171 "nor_bank_start=" __stringify(CONFIG_SYS_FLASH_BASE) "\0" \
172 "nor_img_size=0x02000000\0" \
173 "factory_script_file=factory.scr\0" \
174 "factory_load_script=" \
175 "if test -e mmc ${mmcdev}:${mmcfactorypart} " \
176 "${factory_script_file}; then " \
177 "load mmc ${mmcdev}:${mmcfactorypart} " \
178 "${loadaddr} ${factory_script_file};" \
180 "factory_script=echo Running factory script from mmc${mmcdev} ...; " \
181 "source ${loadaddr}\0" \
182 "factory_flash_img="\
183 "echo 'Flash mccmon6 with factory images'; " \
184 "if run factory_load_script; then " \
185 "run factory_script;" \
187 "echo No factory script: ${factory_script_file} found on " \
188 "device ${mmcdev};" \
189 "run factory_nor_img;" \
190 "run factory_eMMC_img;" \
193 "echo 'Update mccmon6 eMMC image'; " \
194 "if load mmc ${mmcdev}:${mmcfactorypart} " \
195 "${loadaddr} ${emmc_img_file}; then " \
196 "setexpr fw_sz ${filesize} / 0x200;" \
197 "setexpr fw_sz ${fw_sz} + 1;" \
198 "mmc dev ${mmcfactorydev};" \
199 "mmc write ${loadaddr} 0x0 ${fw_sz};" \
202 "echo 'Update mccmon6 NOR image'; " \
203 "if load mmc ${mmcdev}:${mmcfactorypart} " \
204 "${nor_img_addr} ${nor_img_file}; then " \
208 "protect off ${nor_bank_start} +${nor_img_size};" \
209 "erase ${nor_bank_start} +${nor_img_size};" \
210 "setexpr nor_img_size ${nor_img_size} / 4; " \
211 "cp.l ${nor_img_addr} ${nor_bank_start} ${nor_img_size}\0" \
213 "echo 'Update mccmon6 NOR U-BOOT via TFTP'; " \
214 "setenv nor_img_file u-boot.img; " \
215 "setenv nor_img_size 0x80000; " \
216 "setenv nor_bank_start 0x08080000; " \
217 "if tftpboot ${nor_img_addr} ${nor_img_file}; then " \
221 "echo 'Update mccmon6 NOR uImage via TFTP'; " \
222 "setenv nor_img_file uImage; " \
223 "setenv nor_img_size 0x500000; " \
224 "setenv nor_bank_start 0x08180000; " \
225 "if tftpboot ${nor_img_addr} ${nor_img_file}; then " \
229 "echo 'Update mccmon6 NOR DTB via TFTP'; " \
230 "setenv nor_img_file imx6q-mccmon6.dtb; " \
231 "setenv nor_img_size 0x20000; " \
232 "setenv nor_bank_start 0x09980000; " \
233 "if tftpboot ${nor_img_addr} ${nor_img_file}; then " \
237 "echo 'Update mccmon6 NOR image via TFTP'; " \
238 "if tftpboot ${nor_img_addr} ${nor_img_file}; then " \
242 "if tftp ${load_addr} SPL_padded; then " \
243 "erase 0x08000000 +0x20000;" \
244 "cp.b ${load_addr} 0x08000000 0x20000;" \
247 "if mmc dev 1; then " \
248 "if tftp ${load_addr} ${SPL_file}; then " \
249 "setexpr fw_sz ${filesize} / 0x200; " \
250 "setexpr fw_sz ${fw_sz} + 1; " \
251 "mmc write ${load_addr} 0x2 ${fw_sz};" \
255 "if mmc dev 1; then " \
256 "if run load_uboot; then " \
257 "setexpr fw_sz ${filesize} / 0x200; " \
258 "setexpr fw_sz ${fw_sz} + 1; " \
259 "mmc write ${load_addr} 0x8A ${fw_sz};" \
263 /* Physical Memory Map */
264 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
266 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
267 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
268 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
270 #define CONFIG_SYS_INIT_SP_OFFSET \
271 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
272 #define CONFIG_SYS_INIT_SP_ADDR \
273 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
275 /* Environment organization */
276 #define CONFIG_ENV_SIZE (SZ_128K)
278 /* Envs are stored in NOR flash */
279 #define CONFIG_ENV_SECT_SIZE (SZ_128K)
280 #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x40000)
282 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
283 #define CONFIG_ENV_ADDR_REDUND (CONFIG_SYS_FLASH_BASE + 0x60000)
284 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
286 #endif /* __CONFIG_H * */