1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Menlosystems M53Menlo configuration
5 * Copyright (C) 2012-2017 Marek Vasut <marex@denx.de>
6 * Copyright (C) 2014-2017 Olaf Mandel <o.mandel@menlosystems.com>
9 #ifndef __M53MENLO_CONFIG_H__
10 #define __M53MENLO_CONFIG_H__
12 #include <asm/arch/imx-regs.h>
15 * Memory configurations
17 #define PHYS_SDRAM_1 CSD0_BASE_ADDR
18 #define PHYS_SDRAM_1_SIZE (gd->bd->bi_dram[0].size)
19 #define PHYS_SDRAM_2 CSD1_BASE_ADDR
20 #define PHYS_SDRAM_2_SIZE (gd->bd->bi_dram[1].size)
21 #define PHYS_SDRAM_SIZE (gd->ram_size)
23 #define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
24 #define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
25 #define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
28 * U-Boot general configurations
34 #define CONFIG_MXC_UART_BASE UART1_BASE
40 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
41 #define CONFIG_SYS_FSL_ESDHC_NUM 1
47 #ifdef CONFIG_CMD_NAND
48 #define CONFIG_SYS_MAX_NAND_DEVICE 1
49 #define CONFIG_SYS_NAND_BASE NFC_BASE_ADDR_AXI
50 #define CONFIG_MXC_NAND_REGS_BASE NFC_BASE_ADDR_AXI
51 #define CONFIG_MXC_NAND_IP_REGS_BASE NFC_BASE_ADDR
52 #define CONFIG_SYS_NAND_LARGEPAGE
53 #define CONFIG_MXC_NAND_HWECC
55 /* Environment is in NAND */
56 #define CONFIG_ENV_RANGE (0x00080000) /* 512 KiB */
60 * Ethernet on SOC (FEC)
63 #define CONFIG_FEC_MXC_PHYADDR 0x0
66 #define CONFIG_SYS_RTC_BUS_NUM 1 /* I2C2 */
71 #ifdef CONFIG_CMD_DATE
72 #define CONFIG_SYS_I2C_RTC_ADDR 0x68
73 #define CONFIG_SYS_M41T11_BASE_YEAR 2000
80 #define CONFIG_MXC_USB_PORT 1
81 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
82 #define CONFIG_MXC_USB_FLAGS 0
88 #ifdef CONFIG_CMD_SATA
89 #define CONFIG_DWC_AHSATA_PORT_ID 0
90 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_BASE_ADDR
97 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (2 << 20)
100 #define CONFIG_SYS_LDB_CLOCK 33260000
101 #define CONFIG_IMX_VIDEO_SKIP
104 #define CONFIG_FSL_IIM
112 #define CONFIG_SYS_NAND_SIZE (256 * 1024 * 1024)
117 #define CONFIG_HOSTNAME "m53menlo"
119 #define CONFIG_EXTRA_ENV_SETTINGS \
120 "consdev=ttymxc0\0" \
121 "baudrate=115200\0" \
122 "bootscript=boot.scr\0" \
126 "kernel_addr_r=0x72000000\0" \
127 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
128 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
130 "splashsource=mmc_fs\0" \
131 "splashfile=boot/usplash.bmp.gz\0" \
132 "splashimage=0x88000000\0" \
135 "if test ${mmcpart} -eq 1 ; then " \
136 "setenv mmcpart 2 ; " \
138 "setenv mmcpart 1 ; " \
141 "stdout=serial,vidconsole\0" \
142 "stderr=serial,vidconsole\0" \
144 "setenv bootargs ${bootargs} " \
145 "console=${consdev},${baudrate}\0" \
147 "setenv bootargs ${bootargs} " \
148 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
149 ":${hostname}:${netdev}:off\0" \
150 "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
152 "setenv bootargs ${bootargs} ${miscargs}\0" \
153 "addargs=run addcons addmisc addmtd\0" \
155 "mmc rescan || reset ; load mmc ${mmcdev}:${mmcpart} " \
156 "${kernel_addr_r} ${bootfile} || reset\0" \
157 "miscargs=nohlt panic=1\0" \
158 "mmcargs=setenv bootargs root=/dev/mmcblk0p${mmcpart} rw " \
161 "run mmcload mmcargs addargs || reset ; " \
162 "bootm ${kernel_addr_r} ; reset\0" \
163 "netload=tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
165 "run netload nfsargs addip addargs ; " \
166 "bootm ${kernel_addr_r}\0" \
168 "setenv bootargs root=/dev/nfs rw " \
169 "nfsroot=${serverip}:${rootpath}${hostname},v3,tcp\0" \
172 "if test -e mmc 0:1 ${bootscript} ; then " \
173 "if load mmc 0:1 ${kernel_addr_r} ${bootscript};" \
175 "echo Running bootscript... ; " \
176 "source ${kernel_addr_r} ; " \
180 #endif /* __M53MENLO_CONFIG_H__ */