1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Menlosystems M53Menlo configuration
9 #ifndef __M53MENLO_CONFIG_H__
10 #define __M53MENLO_CONFIG_H__
12 #include <asm/arch/imx-regs.h>
14 #define CONFIG_SYS_FSL_CLK
16 #define CONFIG_TIMESTAMP /* Print image info with timestamp */
19 * Memory configurations
21 #define PHYS_SDRAM_1 CSD0_BASE_ADDR
22 #define PHYS_SDRAM_1_SIZE (gd->bd->bi_dram[0].size)
23 #define PHYS_SDRAM_2 CSD1_BASE_ADDR
24 #define PHYS_SDRAM_2_SIZE (gd->bd->bi_dram[1].size)
25 #define PHYS_SDRAM_SIZE (gd->ram_size)
27 #define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
28 #define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
29 #define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
31 #define CONFIG_SYS_INIT_SP_OFFSET \
32 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
33 #define CONFIG_SYS_INIT_SP_ADDR \
34 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
37 * U-Boot general configurations
39 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
40 #define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
41 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
42 /* Boot argument buffer size */
47 #define CONFIG_MXC_UART_BASE UART1_BASE
53 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
54 #define CONFIG_SYS_FSL_ESDHC_NUM 1
60 #ifdef CONFIG_CMD_NAND
61 #define CONFIG_SYS_MAX_NAND_DEVICE 1
62 #define CONFIG_SYS_NAND_BASE NFC_BASE_ADDR_AXI
63 #define CONFIG_MXC_NAND_REGS_BASE NFC_BASE_ADDR_AXI
64 #define CONFIG_MXC_NAND_IP_REGS_BASE NFC_BASE_ADDR
65 #define CONFIG_SYS_NAND_LARGEPAGE
66 #define CONFIG_MXC_NAND_HWECC
68 /* Environment is in NAND */
69 #define CONFIG_ENV_RANGE (0x00080000) /* 512 KiB */
73 * Ethernet on SOC (FEC)
76 #define CONFIG_FEC_MXC
77 #define IMX_FEC_BASE FEC_BASE_ADDR
78 #define CONFIG_FEC_MXC_PHYADDR 0x0
80 #define CONFIG_DISCOVER_PHY
81 #define CONFIG_FEC_XCV_TYPE RMII
82 #define CONFIG_ETHPRIME "FEC0"
85 #define CONFIG_SYS_RTC_BUS_NUM 1 /* I2C2 */
90 #ifdef CONFIG_CMD_DATE
91 #define CONFIG_SYS_I2C_RTC_ADDR 0x68
92 #define CONFIG_SYS_M41T11_BASE_YEAR 2000
99 #define CONFIG_MXC_USB_PORT 1
100 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
101 #define CONFIG_MXC_USB_FLAGS 0
107 #ifdef CONFIG_CMD_SATA
108 #define CONFIG_SYS_SATA_MAX_DEVICE 1
109 #define CONFIG_DWC_AHSATA_PORT_ID 0
110 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_BASE_ADDR
117 #define CONFIG_VIDEO_LOGO
118 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (2 << 20)
121 #define CONFIG_SYS_LDB_CLOCK 33260000
122 #define CONFIG_IMX_VIDEO_SKIP
125 #define CONFIG_FSL_IIM
132 #define CONFIG_BOOTFILE "boot/fitImage"
133 #define CONFIG_BOOTCOMMAND "run mmc_mmc"
138 #define CONFIG_SPL_TARGET "u-boot-with-nand-spl.imx"
139 #define CONFIG_SPL_PAD_TO 0x8000
140 #define CONFIG_SPL_STACK 0x70004000
142 #define CONFIG_SYS_NAND_SIZE (256 * 1024 * 1024)
147 #define CONFIG_HOSTNAME "m53menlo"
149 #define CONFIG_EXTRA_ENV_SETTINGS \
150 "consdev=ttymxc0\0" \
151 "baudrate=115200\0" \
152 "bootscript=boot.scr\0" \
156 "kernel_addr_r=0x72000000\0" \
157 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
158 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
160 "splashsource=mmc_fs\0" \
161 "splashfile=boot/usplash.bmp.gz\0" \
162 "splashimage=0x88000000\0" \
164 "stdout=serial,vidconsole\0" \
165 "stderr=serial,vidconsole\0" \
167 "setenv bootargs ${bootargs} " \
168 "console=${consdev},${baudrate}\0" \
170 "setenv bootargs ${bootargs} " \
171 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
172 ":${hostname}:${netdev}:off\0" \
173 "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
175 "setenv bootargs ${bootargs} ${miscargs}\0" \
176 "addargs=run addcons addmisc addmtd\0" \
178 "mmc rescan ; load mmc ${mmcdev}:${mmcpart} " \
179 "${kernel_addr_r} ${bootfile}\0" \
180 "miscargs=nohlt panic=1\0" \
181 "mmcargs=setenv bootargs root=/dev/mmcblk0p${mmcpart} rw " \
184 "run mmcload mmcargs addargs ; " \
185 "bootm ${kernel_addr_r}\0" \
186 "netload=tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
188 "run netload nfsargs addip addargs ; " \
189 "bootm ${kernel_addr_r}\0" \
191 "setenv bootargs root=/dev/nfs rw " \
192 "nfsroot=${serverip}:${rootpath}${hostname},v3,tcp\0" \
195 "if test -e mmc 0:1 ${bootscript} ; then " \
196 "if load mmc 0:1 ${kernel_addr_r} ${bootscript};" \
198 "echo Running bootscript... ; " \
199 "source ${kernel_addr_r} ; " \
203 #if defined(CONFIG_SPL_BUILD)
204 #undef CONFIG_WATCHDOG
205 #define CONFIG_HW_WATCHDOG
208 #endif /* __M53MENLO_CONFIG_H__ */