blob: d18c177c1183a4ad3de1e29247bd59a2cabe9ce2 [file] [log] [blame]
Eric Nelsone5b3a502013-03-11 08:44:53 +00001/*
2 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
3 *
4 * Configuration settings for the Boundary Devices Nitrogen6X
5 * and Freescale i.MX6Q Sabre Lite boards.
6 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Eric Nelsone5b3a502013-03-11 08:44:53 +00008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Eric Nelson062772c2013-11-26 17:40:30 -070013#include "mx6_common.h"
Eric Nelsone5b3a502013-03-11 08:44:53 +000014
15#define CONFIG_MACH_TYPE 3769
16
Eric Nelsone5b3a502013-03-11 08:44:53 +000017/* Size of malloc() pool */
18#define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
19
20#define CONFIG_BOARD_EARLY_INIT_F
21#define CONFIG_MISC_INIT_R
Troy Kisky760327c2013-09-25 18:41:18 -070022#define CONFIG_USBD_HS
Troy Kisky760327c2013-09-25 18:41:18 -070023#define CONFIG_USB_ETHER
24#define CONFIG_USB_ETH_CDC
25#define CONFIG_NETCONSOLE
Eric Nelsone5b3a502013-03-11 08:44:53 +000026
Eric Nelsone5b3a502013-03-11 08:44:53 +000027#define CONFIG_MXC_UART
28#define CONFIG_MXC_UART_BASE UART2_BASE
29
Eric Nelsone5b3a502013-03-11 08:44:53 +000030#ifdef CONFIG_CMD_SF
Eric Nelsone5b3a502013-03-11 08:44:53 +000031#define CONFIG_MXC_SPI
32#define CONFIG_SF_DEFAULT_BUS 0
Nikita Kiryanov00cd7382014-08-20 15:08:50 +030033#define CONFIG_SF_DEFAULT_CS 0
Eric Nelsone5b3a502013-03-11 08:44:53 +000034#define CONFIG_SF_DEFAULT_SPEED 25000000
35#define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
36#endif
37
38/* I2C Configs */
trem03997412013-09-21 18:13:36 +020039#define CONFIG_SYS_I2C
40#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)eb943872015-09-21 22:43:38 +020041#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
42#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf1a52162015-03-20 10:20:40 -070043#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Eric Nelsone5b3a502013-03-11 08:44:53 +000044#define CONFIG_SYS_I2C_SPEED 100000
Eric Nelson69691c62014-10-02 12:16:47 -070045#define CONFIG_I2C_EDID
Eric Nelsone5b3a502013-03-11 08:44:53 +000046
Eric Nelsone5b3a502013-03-11 08:44:53 +000047/* MMC Configs */
Eric Nelsone5b3a502013-03-11 08:44:53 +000048#define CONFIG_SYS_FSL_ESDHC_ADDR 0
49#define CONFIG_SYS_FSL_USDHC_NUM 2
50
Eric Nelsone5b3a502013-03-11 08:44:53 +000051#ifdef CONFIG_MX6Q
52#define CONFIG_CMD_SATA
53#endif
54
55/*
56 * SATA Configs
57 */
58#ifdef CONFIG_CMD_SATA
59#define CONFIG_DWC_AHSATA
60#define CONFIG_SYS_SATA_MAX_DEVICE 1
61#define CONFIG_DWC_AHSATA_PORT_ID 0
62#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
63#define CONFIG_LBA48
64#define CONFIG_LIBATA
65#endif
66
Eric Nelsone5b3a502013-03-11 08:44:53 +000067#define CONFIG_FEC_MXC
68#define CONFIG_MII
69#define IMX_FEC_BASE ENET_BASE_ADDR
70#define CONFIG_FEC_XCV_TYPE RGMII
71#define CONFIG_ETHPRIME "FEC"
72#define CONFIG_FEC_MXC_PHYADDR 6
73#define CONFIG_PHYLIB
74#define CONFIG_PHY_MICREL
75#define CONFIG_PHY_MICREL_KSZ9021
76
77/* USB Configs */
Eric Nelsone5b3a502013-03-11 08:44:53 +000078#define CONFIG_USB_EHCI
79#define CONFIG_USB_EHCI_MX6
Eric Nelsone5b3a502013-03-11 08:44:53 +000080#define CONFIG_USB_HOST_ETHER
81#define CONFIG_USB_ETHER_ASIX
Gerhard Sittig42436a92014-03-08 19:46:16 +010082#define CONFIG_USB_ETHER_MCS7830
Eric Nelsone5b3a502013-03-11 08:44:53 +000083#define CONFIG_USB_ETHER_SMSC95XX
Troy Kiskyed72a9e2013-10-10 15:27:59 -070084#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
85#define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
Eric Nelsone5b3a502013-03-11 08:44:53 +000086#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
87#define CONFIG_MXC_USB_FLAGS 0
Eric Nelson73f61c02014-10-02 12:16:45 -070088#define CONFIG_USB_KEYBOARD
89#define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP
Eric Nelsone5b3a502013-03-11 08:44:53 +000090
91/* Miscellaneous commands */
92#define CONFIG_CMD_BMODE
Eric Nelsone5b3a502013-03-11 08:44:53 +000093
94/* Framebuffer and LCD */
Eric Nelsone5b3a502013-03-11 08:44:53 +000095#define CONFIG_VIDEO_IPUV3
Eric Nelsone5b3a502013-03-11 08:44:53 +000096#define CONFIG_VGA_AS_SINGLE_DEVICE
Eric Nelsone5b3a502013-03-11 08:44:53 +000097#define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
98#define CONFIG_VIDEO_BMP_RLE8
99#define CONFIG_SPLASH_SCREEN
Eric Nelson89f2be52015-04-16 11:31:33 -0700100#define CONFIG_SPLASH_SCREEN_ALIGN
101#define CONFIG_VIDEO_BMP_GZIP
102#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
Eric Nelsone5b3a502013-03-11 08:44:53 +0000103#define CONFIG_BMP_16BPP
Eric Nelsone5b3a502013-03-11 08:44:53 +0000104#define CONFIG_IPUV3_CLK 260000000
105#define CONFIG_CMD_HDMIDETECT
Pardeep Kumar Singlac1fa1302013-07-25 12:12:13 -0500106#define CONFIG_IMX_HDMI
Eric Benard7f63c142014-04-04 19:05:53 +0200107#define CONFIG_IMX_VIDEO_SKIP
Eric Nelsone5b3a502013-03-11 08:44:53 +0000108
Eric Nelsone5b3a502013-03-11 08:44:53 +0000109#define CONFIG_PREBOOT ""
110
Eric Nelsone5b3a502013-03-11 08:44:53 +0000111#ifdef CONFIG_CMD_SATA
112#define CONFIG_DRIVE_SATA "sata "
113#else
114#define CONFIG_DRIVE_SATA
115#endif
116
117#ifdef CONFIG_CMD_MMC
118#define CONFIG_DRIVE_MMC "mmc "
119#else
120#define CONFIG_DRIVE_MMC
121#endif
122
Diego Rondini4e7394d2014-10-02 12:16:41 -0700123#ifdef CONFIG_USB_STORAGE
124#define CONFIG_DRIVE_USB "usb "
125#else
126#define CONFIG_DRIVE_USB
127#endif
128
129#define CONFIG_DRIVE_TYPES CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC CONFIG_DRIVE_USB
Eric Nelson4cee9852014-10-02 12:16:44 -0700130#define CONFIG_UMSDEVS CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC
Eric Nelsone5b3a502013-03-11 08:44:53 +0000131
Fabio Estevam1fd60922013-07-26 11:37:17 -0300132#if defined(CONFIG_SABRELITE)
Eric Nelsone5b3a502013-03-11 08:44:53 +0000133#define CONFIG_EXTRA_ENV_SETTINGS \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300134 "script=boot.scr\0" \
135 "uimage=uImage\0" \
136 "console=ttymxc1\0" \
137 "fdt_high=0xffffffff\0" \
138 "initrd_high=0xffffffff\0" \
139 "fdt_file=imx6q-sabrelite.dtb\0" \
Otavio Salvador2abc2ae2013-12-16 20:44:04 -0200140 "fdt_addr=0x18000000\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300141 "boot_fdt=try\0" \
142 "ip_dyn=yes\0" \
Guillaume GARDET6426ce32014-09-11 11:59:52 +0200143 "mmcdevs=0 1\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300144 "mmcpart=1\0" \
145 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
146 "mmcargs=setenv bootargs console=${console},${baudrate} " \
147 "root=${mmcroot}\0" \
148 "loadbootscript=" \
Guillaume GARDET91f86802014-08-26 12:05:31 +0200149 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300150 "bootscript=echo Running bootscript from mmc ...; " \
151 "source\0" \
Guillaume GARDET91f86802014-08-26 12:05:31 +0200152 "loaduimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
153 "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300154 "mmcboot=echo Booting from mmc ...; " \
155 "run mmcargs; " \
156 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
157 "if run loadfdt; then " \
158 "bootm ${loadaddr} - ${fdt_addr}; " \
159 "else " \
160 "if test ${boot_fdt} = try; then " \
161 "bootm; " \
162 "else " \
163 "echo WARN: Cannot load the DT; " \
164 "fi; " \
165 "fi; " \
166 "else " \
167 "bootm; " \
168 "fi;\0" \
169 "netargs=setenv bootargs console=${console},${baudrate} " \
170 "root=/dev/nfs " \
171 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
172 "netboot=echo Booting from net ...; " \
173 "run netargs; " \
174 "if test ${ip_dyn} = yes; then " \
175 "setenv get_cmd dhcp; " \
176 "else " \
177 "setenv get_cmd tftp; " \
178 "fi; " \
179 "${get_cmd} ${uimage}; " \
180 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
181 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
182 "bootm ${loadaddr} - ${fdt_addr}; " \
183 "else " \
184 "if test ${boot_fdt} = try; then " \
185 "bootm; " \
186 "else " \
187 "echo WARN: Cannot load the DT; " \
188 "fi; " \
189 "fi; " \
190 "else " \
191 "bootm; " \
192 "fi;\0"
193
194#define CONFIG_BOOTCOMMAND \
Guillaume GARDET6426ce32014-09-11 11:59:52 +0200195 "for mmcdev in ${mmcdevs}; do " \
196 "mmc dev ${mmcdev}; " \
197 "if mmc rescan; then " \
198 "if run loadbootscript; then " \
199 "run bootscript; " \
200 "else " \
201 "if run loaduimage; then " \
202 "run mmcboot; " \
203 "fi; " \
204 "fi; " \
205 "fi; " \
206 "done; " \
207 "run netboot; "
Fabio Estevam1fd60922013-07-26 11:37:17 -0300208#else
209#define CONFIG_EXTRA_ENV_SETTINGS \
Diego Rondini4e7394d2014-10-02 12:16:41 -0700210 "bootdevs=" CONFIG_DRIVE_TYPES "\0" \
Eric Nelson4cee9852014-10-02 12:16:44 -0700211 "umsdevs=" CONFIG_UMSDEVS "\0" \
Eric Nelsone5b3a502013-03-11 08:44:53 +0000212 "console=ttymxc1\0" \
213 "clearenv=if sf probe || sf probe || sf probe 1 ; then " \
214 "sf erase 0xc0000 0x2000 && " \
215 "echo restored environment to factory default ; fi\0" \
Diego Rondini4e7394d2014-10-02 12:16:41 -0700216 "bootcmd=for dtype in ${bootdevs}" \
Eric Nelsone5b3a502013-03-11 08:44:53 +0000217 "; do " \
Diego Rondini4e7394d2014-10-02 12:16:41 -0700218 "if itest.s \"xusb\" == \"x${dtype}\" ; then " \
219 "usb start ;" \
220 "fi; " \
Eric Nelsone5b3a502013-03-11 08:44:53 +0000221 "for disk in 0 1 ; do ${dtype} dev ${disk} ;" \
Kevin Mihelich851675a2014-10-02 12:16:42 -0700222 "load " \
223 "${dtype} ${disk}:1 " \
224 "10008000 " \
225 "/6x_bootscript" \
226 "&& source 10008000 ; " \
Eric Nelsone5b3a502013-03-11 08:44:53 +0000227 "done ; " \
228 "done; " \
229 "setenv stdout serial,vga ; " \
230 "echo ; echo 6x_bootscript not found ; " \
231 "echo ; echo serial console at 115200, 8N1 ; echo ; " \
232 "echo details at http://boundarydevices.com/6q_bootscript ; " \
Eric Nelson4cee9852014-10-02 12:16:44 -0700233 "setenv stdout serial;" \
234 "setenv stdin serial,usbkbd;" \
235 "for dtype in ${umsdevs} ; do " \
236 "if itest.s sata == ${dtype}; then " \
237 "initcmd='sata init' ;" \
238 "else " \
239 "initcmd='mmc rescan' ;" \
240 "fi; " \
241 "for disk in 0 1 ; do " \
242 "if $initcmd && $dtype dev $disk ; then " \
243 "setenv stdout serial,vga; " \
244 "echo expose ${dtype} ${disk} " \
245 "over USB; " \
246 "ums 0 $dtype $disk ;" \
247 "fi; " \
248 " done; " \
249 "done ;" \
250 "setenv stdout serial,vga; " \
251 "echo no block devices found;" \
252 "\0" \
Eric Nelson3253b872014-10-02 12:16:43 -0700253 "initrd_high=0xffffffff\0" \
Diego Rondini4e7394d2014-10-02 12:16:41 -0700254 "upgradeu=for dtype in ${bootdevs}" \
Eric Nelsone5b3a502013-03-11 08:44:53 +0000255 "; do " \
256 "for disk in 0 1 ; do ${dtype} dev ${disk} ;" \
Kevin Mihelich851675a2014-10-02 12:16:42 -0700257 "load ${dtype} ${disk}:1 10008000 " \
258 "/6x_upgrade " \
259 "&& source 10008000 ; " \
Eric Nelsone5b3a502013-03-11 08:44:53 +0000260 "done ; " \
261 "done\0" \
262
Fabio Estevam1fd60922013-07-26 11:37:17 -0300263#endif
Eric Nelsone5b3a502013-03-11 08:44:53 +0000264/* Miscellaneous configurable options */
Eric Nelsone5b3a502013-03-11 08:44:53 +0000265#define CONFIG_SYS_MEMTEST_START 0x10000000
266#define CONFIG_SYS_MEMTEST_END 0x10010000
267#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
268
Eric Nelsone5b3a502013-03-11 08:44:53 +0000269/* Physical Memory Map */
270#define CONFIG_NR_DRAM_BANKS 1
271#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
272
273#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
274#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
275#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
276
277#define CONFIG_SYS_INIT_SP_OFFSET \
278 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
279#define CONFIG_SYS_INIT_SP_ADDR \
280 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
281
Peter Robinson4b671502015-05-22 17:30:45 +0100282/* Environment organization */
Eric Nelsone5b3a502013-03-11 08:44:53 +0000283#define CONFIG_ENV_SIZE (8 * 1024)
284
Fabio Estevam1fd60922013-07-26 11:37:17 -0300285#if defined(CONFIG_SABRELITE)
286#define CONFIG_ENV_IS_IN_MMC
287#else
Eric Nelsone5b3a502013-03-11 08:44:53 +0000288#define CONFIG_ENV_IS_IN_SPI_FLASH
Fabio Estevam1fd60922013-07-26 11:37:17 -0300289#endif
Eric Nelsone5b3a502013-03-11 08:44:53 +0000290
291#if defined(CONFIG_ENV_IS_IN_MMC)
292#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
293#define CONFIG_SYS_MMC_ENV_DEV 0
294#elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
295#define CONFIG_ENV_OFFSET (768 * 1024)
296#define CONFIG_ENV_SECT_SIZE (8 * 1024)
297#define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
298#define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
299#define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
300#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
301#endif
302
Eric Nelsone5b3a502013-03-11 08:44:53 +0000303#define CONFIG_CMD_BMP
304
Eric Nelsone5b3a502013-03-11 08:44:53 +0000305#define CONFIG_SYS_ALT_MEMTEST
306
Marek Vasut52303852013-12-14 05:55:29 +0100307/*
308 * PCI express
309 */
Marek Vasut52303852013-12-14 05:55:29 +0100310#ifdef CONFIG_CMD_PCI
311#define CONFIG_PCI
312#define CONFIG_PCI_PNP
313#define CONFIG_PCI_SCAN_SHOW
314#define CONFIG_PCIE_IMX
315#endif
316
Paul Kocialkowski045d6052015-06-12 19:56:58 +0200317#define CONFIG_USB_FUNCTION_MASS_STORAGE
Eric Nelson07e6c6a2014-10-02 12:16:40 -0700318
Paul Kocialkowskid55acc02015-06-12 19:56:59 +0200319#define CONFIG_USB_FUNCTION_FASTBOOT
Eric Nelson76890e52014-10-02 12:16:52 -0700320#define CONFIG_CMD_FASTBOOT
321#define CONFIG_ANDROID_BOOT_IMAGE
Paul Kocialkowskif84f0912015-07-20 12:38:22 +0200322#define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
323#define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
Eric Nelson76890e52014-10-02 12:16:52 -0700324
Eric Nelsone5b3a502013-03-11 08:44:53 +0000325#endif /* __CONFIG_H */