]>
Commit | Line | Data |
---|---|---|
bcfc7118 FE |
1 | /* |
2 | * Copyright (C) 2012 Freescale Semiconductor, Inc. | |
3 | * | |
4 | * Configuration settings for the Freescale i.MX6Q SabreSD board. | |
5 | * | |
1a459660 | 6 | * SPDX-License-Identifier: GPL-2.0+ |
bcfc7118 FE |
7 | */ |
8 | ||
9 | #ifndef __MX6QSABRE_COMMON_CONFIG_H | |
10 | #define __MX6QSABRE_COMMON_CONFIG_H | |
11 | ||
5ea6d7c8 | 12 | #define CONFIG_MX6 |
8f393776 SW |
13 | |
14 | #include "mx6_common.h" | |
1ace4022 | 15 | #include <linux/sizes.h> |
8f393776 | 16 | |
bcfc7118 FE |
17 | #define CONFIG_DISPLAY_CPUINFO |
18 | #define CONFIG_DISPLAY_BOARDINFO | |
19 | ||
20 | #include <asm/arch/imx-regs.h> | |
8bfa9c69 | 21 | #include <asm/imx-common/gpio.h> |
bcfc7118 FE |
22 | |
23 | #define CONFIG_CMDLINE_TAG | |
24 | #define CONFIG_SETUP_MEMORY_TAGS | |
25 | #define CONFIG_INITRD_TAG | |
26 | #define CONFIG_REVISION_TAG | |
27 | ||
6c920ee9 YL |
28 | #define CONFIG_IMX6_THERMAL |
29 | ||
12be4cbe FE |
30 | #define CONFIG_SYS_GENERIC_BOARD |
31 | ||
bcfc7118 | 32 | /* Size of malloc() pool */ |
58cc9787 | 33 | #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M) |
bcfc7118 FE |
34 | |
35 | #define CONFIG_BOARD_EARLY_INIT_F | |
85449dbd | 36 | #define CONFIG_BOARD_LATE_INIT |
bcfc7118 FE |
37 | #define CONFIG_MXC_GPIO |
38 | ||
39 | #define CONFIG_MXC_UART | |
40 | ||
5dc64ab7 | 41 | #define CONFIG_CMD_FUSE |
6c920ee9 | 42 | #if defined(CONFIG_CMD_FUSE) || defined(CONFIG_IMX6_THERMAL) |
5dc64ab7 FE |
43 | #define CONFIG_MXC_OCOTP |
44 | #endif | |
45 | ||
bcfc7118 FE |
46 | /* MMC Configs */ |
47 | #define CONFIG_FSL_ESDHC | |
48 | #define CONFIG_FSL_USDHC | |
49 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 | |
bcfc7118 FE |
50 | |
51 | #define CONFIG_MMC | |
52 | #define CONFIG_CMD_MMC | |
53 | #define CONFIG_GENERIC_MMC | |
640fb607 | 54 | #define CONFIG_BOUNCE_BUFFER |
bcfc7118 FE |
55 | #define CONFIG_CMD_EXT2 |
56 | #define CONFIG_CMD_FAT | |
57 | #define CONFIG_DOS_PARTITION | |
58 | ||
59 | #define CONFIG_CMD_PING | |
60 | #define CONFIG_CMD_DHCP | |
61 | #define CONFIG_CMD_MII | |
62 | #define CONFIG_CMD_NET | |
63 | #define CONFIG_FEC_MXC | |
64 | #define CONFIG_MII | |
65 | #define IMX_FEC_BASE ENET_BASE_ADDR | |
66 | #define CONFIG_FEC_XCV_TYPE RGMII | |
67 | #define CONFIG_ETHPRIME "FEC" | |
68 | #define CONFIG_FEC_MXC_PHYADDR 1 | |
69 | ||
70 | #define CONFIG_PHYLIB | |
71 | #define CONFIG_PHY_ATHEROS | |
72 | ||
8bfa9c69 FE |
73 | #define CONFIG_CMD_SF |
74 | #ifdef CONFIG_CMD_SF | |
75 | #define CONFIG_SPI_FLASH | |
76 | #define CONFIG_SPI_FLASH_STMICRO | |
77 | #define CONFIG_MXC_SPI | |
78 | #define CONFIG_SF_DEFAULT_BUS 0 | |
155fa9af | 79 | #define CONFIG_SF_DEFAULT_CS 0 |
8bfa9c69 FE |
80 | #define CONFIG_SF_DEFAULT_SPEED 20000000 |
81 | #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0 | |
82 | #endif | |
83 | ||
bcfc7118 FE |
84 | /* allow to overwrite serial and ethaddr */ |
85 | #define CONFIG_ENV_OVERWRITE | |
86 | #define CONFIG_CONS_INDEX 1 | |
87 | #define CONFIG_BAUDRATE 115200 | |
88 | ||
89 | /* Command definition */ | |
90 | #include <config_cmd_default.h> | |
91 | ||
85449dbd | 92 | #define CONFIG_CMD_BMODE |
ea215cdf | 93 | #define CONFIG_CMD_BOOTZ |
810d6df0 | 94 | #define CONFIG_CMD_SETEXPR |
bcfc7118 FE |
95 | #undef CONFIG_CMD_IMLS |
96 | ||
072f26b1 | 97 | #define CONFIG_BOOTDELAY 1 |
bcfc7118 | 98 | |
2f994fe6 | 99 | #define CONFIG_LOADADDR 0x12000000 |
bcfc7118 FE |
100 | #define CONFIG_SYS_TEXT_BASE 0x17800000 |
101 | ||
03ce3302 OS |
102 | #ifdef CONFIG_SUPPORT_EMMC_BOOT |
103 | #define EMMC_ENV \ | |
104 | "emmcdev=2\0" \ | |
105 | "update_emmc_firmware=" \ | |
106 | "if test ${ip_dyn} = yes; then " \ | |
107 | "setenv get_cmd dhcp; " \ | |
108 | "else " \ | |
109 | "setenv get_cmd tftp; " \ | |
110 | "fi; " \ | |
111 | "if ${get_cmd} ${update_sd_firmware_filename}; then " \ | |
112 | "if mmc dev ${emmcdev} && " \ | |
113 | "mmc open ${emmcdev} 1; then " \ | |
114 | "setexpr fw_sz ${filesize} / 0x200; " \ | |
115 | "setexpr fw_sz ${fw_sz} + 1; " \ | |
116 | "mmc write ${loadaddr} 0x2 ${fw_sz}; " \ | |
117 | "mmc close ${emmcdev} 1; " \ | |
118 | "fi; " \ | |
119 | "fi\0" | |
120 | #else | |
121 | #define EMMC_ENV "" | |
122 | #endif | |
123 | ||
bcfc7118 FE |
124 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
125 | "script=boot.scr\0" \ | |
f2e4288a | 126 | "image=zImage\0" \ |
bf0c2245 | 127 | "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
6584a1b5 | 128 | "fdt_addr=0x18000000\0" \ |
bf0c2245 OS |
129 | "boot_fdt=try\0" \ |
130 | "ip_dyn=yes\0" \ | |
51535d9f | 131 | "console=" CONFIG_CONSOLE_DEV "\0" \ |
bcfc7118 FE |
132 | "fdt_high=0xffffffff\0" \ |
133 | "initrd_high=0xffffffff\0" \ | |
acbb4457 | 134 | "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ |
7fb72c79 | 135 | "mmcpart=1\0" \ |
903e779c | 136 | "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \ |
810d6df0 OS |
137 | "update_sd_firmware=" \ |
138 | "if test ${ip_dyn} = yes; then " \ | |
139 | "setenv get_cmd dhcp; " \ | |
140 | "else " \ | |
141 | "setenv get_cmd tftp; " \ | |
142 | "fi; " \ | |
143 | "if mmc dev ${mmcdev}; then " \ | |
144 | "if ${get_cmd} ${update_sd_firmware_filename}; then " \ | |
145 | "setexpr fw_sz ${filesize} / 0x200; " \ | |
146 | "setexpr fw_sz ${fw_sz} + 1; " \ | |
147 | "mmc write ${loadaddr} 0x2 ${fw_sz}; " \ | |
148 | "fi; " \ | |
149 | "fi\0" \ | |
03ce3302 | 150 | EMMC_ENV \ |
bcfc7118 FE |
151 | "mmcargs=setenv bootargs console=${console},${baudrate} " \ |
152 | "root=${mmcroot}\0" \ | |
153 | "loadbootscript=" \ | |
154 | "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ | |
155 | "bootscript=echo Running bootscript from mmc ...; " \ | |
156 | "source\0" \ | |
f2e4288a | 157 | "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \ |
bf0c2245 OS |
158 | "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ |
159 | "mmcboot=echo Booting from mmc ...; " \ | |
bcfc7118 | 160 | "run mmcargs; " \ |
bf0c2245 OS |
161 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |
162 | "if run loadfdt; then " \ | |
f2e4288a | 163 | "bootz ${loadaddr} - ${fdt_addr}; " \ |
bf0c2245 OS |
164 | "else " \ |
165 | "if test ${boot_fdt} = try; then " \ | |
f2e4288a | 166 | "bootz; " \ |
bf0c2245 OS |
167 | "else " \ |
168 | "echo WARN: Cannot load the DT; " \ | |
169 | "fi; " \ | |
170 | "fi; " \ | |
171 | "else " \ | |
f2e4288a | 172 | "bootz; " \ |
bf0c2245 | 173 | "fi;\0" \ |
bcfc7118 FE |
174 | "netargs=setenv bootargs console=${console},${baudrate} " \ |
175 | "root=/dev/nfs " \ | |
176 | "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ | |
177 | "netboot=echo Booting from net ...; " \ | |
178 | "run netargs; " \ | |
bf0c2245 OS |
179 | "if test ${ip_dyn} = yes; then " \ |
180 | "setenv get_cmd dhcp; " \ | |
181 | "else " \ | |
182 | "setenv get_cmd tftp; " \ | |
183 | "fi; " \ | |
f2e4288a | 184 | "${get_cmd} ${image}; " \ |
bf0c2245 OS |
185 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |
186 | "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \ | |
f2e4288a | 187 | "bootz ${loadaddr} - ${fdt_addr}; " \ |
bf0c2245 OS |
188 | "else " \ |
189 | "if test ${boot_fdt} = try; then " \ | |
f2e4288a | 190 | "bootz; " \ |
bf0c2245 OS |
191 | "else " \ |
192 | "echo WARN: Cannot load the DT; " \ | |
193 | "fi; " \ | |
194 | "fi; " \ | |
195 | "else " \ | |
f2e4288a | 196 | "bootz; " \ |
bf0c2245 | 197 | "fi;\0" |
bcfc7118 FE |
198 | |
199 | #define CONFIG_BOOTCOMMAND \ | |
200 | "mmc dev ${mmcdev};" \ | |
66300ac2 | 201 | "if mmc rescan; then " \ |
bcfc7118 FE |
202 | "if run loadbootscript; then " \ |
203 | "run bootscript; " \ | |
204 | "else " \ | |
f2e4288a | 205 | "if run loadimage; then " \ |
bcfc7118 FE |
206 | "run mmcboot; " \ |
207 | "else run netboot; " \ | |
208 | "fi; " \ | |
209 | "fi; " \ | |
210 | "else run netboot; fi" | |
211 | ||
212 | #define CONFIG_ARP_TIMEOUT 200UL | |
213 | ||
214 | /* Miscellaneous configurable options */ | |
215 | #define CONFIG_SYS_LONGHELP | |
216 | #define CONFIG_SYS_HUSH_PARSER | |
217 | #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " | |
bcfc7118 FE |
218 | #define CONFIG_AUTO_COMPLETE |
219 | #define CONFIG_SYS_CBSIZE 256 | |
bcfc7118 FE |
220 | #define CONFIG_SYS_MAXARGS 16 |
221 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE | |
222 | ||
223 | #define CONFIG_SYS_MEMTEST_START 0x10000000 | |
224 | #define CONFIG_SYS_MEMTEST_END 0x10010000 | |
bec0160e | 225 | #define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000 |
bcfc7118 FE |
226 | |
227 | #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR | |
bcfc7118 FE |
228 | |
229 | #define CONFIG_CMDLINE_EDITING | |
230 | #define CONFIG_STACKSIZE (128 * 1024) | |
231 | ||
232 | /* Physical Memory Map */ | |
233 | #define CONFIG_NR_DRAM_BANKS 1 | |
234 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR | |
235 | ||
236 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM | |
237 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR | |
238 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE | |
239 | ||
240 | #define CONFIG_SYS_INIT_SP_OFFSET \ | |
241 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
242 | #define CONFIG_SYS_INIT_SP_ADDR \ | |
243 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
244 | ||
245 | /* FLASH and environment organization */ | |
246 | #define CONFIG_SYS_NO_FLASH | |
247 | ||
248 | #define CONFIG_ENV_SIZE (8 * 1024) | |
249 | ||
250 | #define CONFIG_ENV_IS_IN_MMC | |
251 | ||
252 | #if defined(CONFIG_ENV_IS_IN_MMC) | |
610efbe0 | 253 | #define CONFIG_ENV_OFFSET (8 * 64 * 1024) |
bcfc7118 FE |
254 | #endif |
255 | ||
256 | #define CONFIG_OF_LIBFDT | |
257 | ||
bcfc7118 FE |
258 | #ifndef CONFIG_SYS_DCACHE_OFF |
259 | #define CONFIG_CMD_CACHE | |
260 | #endif | |
261 | ||
04451ba3 FE |
262 | /* Framebuffer */ |
263 | #define CONFIG_VIDEO | |
264 | #define CONFIG_VIDEO_IPUV3 | |
265 | #define CONFIG_CFB_CONSOLE | |
266 | #define CONFIG_VGA_AS_SINGLE_DEVICE | |
267 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV | |
268 | #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE | |
269 | #define CONFIG_VIDEO_BMP_RLE8 | |
270 | #define CONFIG_SPLASH_SCREEN | |
271 | #define CONFIG_SPLASH_SCREEN_ALIGN | |
272 | #define CONFIG_BMP_16BPP | |
273 | #define CONFIG_VIDEO_LOGO | |
274 | #define CONFIG_VIDEO_BMP_LOGO | |
275 | #define CONFIG_IPUV3_CLK 260000000 | |
276 | #define CONFIG_IMX_HDMI | |
277 | #define CONFIG_IMX_VIDEO_SKIP | |
278 | ||
bcfc7118 | 279 | #endif /* __MX6QSABRE_COMMON_CONFIG_H */ |