blob: efa5065d9bae83cc8a14ec2fc7e4296634da0560 [file] [log] [blame]
Eric Nelsond67b0d92013-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 Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Eric Nelsond67b0d92013-03-11 08:44:53 +00008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Eric Nelson02824dc2013-11-26 17:40:30 -070013#include "mx6_common.h"
Eric Nelsond67b0d92013-03-11 08:44:53 +000014
15#define CONFIG_MACH_TYPE 3769
16
Eric Nelsond67b0d92013-03-11 08:44:53 +000017/* Size of malloc() pool */
18#define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
19
Eric Nelsond67b0d92013-03-11 08:44:53 +000020#define CONFIG_MISC_INIT_R
Troy Kiskyf3d7cff2013-09-25 18:41:18 -070021#define CONFIG_USBD_HS
Troy Kiskyf3d7cff2013-09-25 18:41:18 -070022#define CONFIG_USB_ETHER
23#define CONFIG_USB_ETH_CDC
24#define CONFIG_NETCONSOLE
Eric Nelsond67b0d92013-03-11 08:44:53 +000025
Eric Nelsond67b0d92013-03-11 08:44:53 +000026#define CONFIG_MXC_UART
27#define CONFIG_MXC_UART_BASE UART2_BASE
28
Eric Nelsond67b0d92013-03-11 08:44:53 +000029#ifdef CONFIG_CMD_SF
Eric Nelsond67b0d92013-03-11 08:44:53 +000030#define CONFIG_MXC_SPI
31#define CONFIG_SF_DEFAULT_BUS 0
Nikita Kiryanov155fa9a2014-08-20 15:08:50 +030032#define CONFIG_SF_DEFAULT_CS 0
Eric Nelsond67b0d92013-03-11 08:44:53 +000033#define CONFIG_SF_DEFAULT_SPEED 25000000
34#define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
35#endif
36
37/* I2C Configs */
tremb089d032013-09-21 18:13:36 +020038#define CONFIG_SYS_I2C
39#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)03544c62015-09-21 22:43:38 +020040#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
41#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf8cb1012015-03-20 10:20:40 -070042#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Eric Nelsond67b0d92013-03-11 08:44:53 +000043#define CONFIG_SYS_I2C_SPEED 100000
Eric Nelson5dbdc3c2014-10-02 12:16:47 -070044#define CONFIG_I2C_EDID
Eric Nelsond67b0d92013-03-11 08:44:53 +000045
Eric Nelsond67b0d92013-03-11 08:44:53 +000046/* MMC Configs */
Eric Nelsond67b0d92013-03-11 08:44:53 +000047#define CONFIG_SYS_FSL_ESDHC_ADDR 0
48#define CONFIG_SYS_FSL_USDHC_NUM 2
49
Eric Nelsond67b0d92013-03-11 08:44:53 +000050#ifdef CONFIG_MX6Q
51#define CONFIG_CMD_SATA
52#endif
53
54/*
55 * SATA Configs
56 */
57#ifdef CONFIG_CMD_SATA
58#define CONFIG_DWC_AHSATA
59#define CONFIG_SYS_SATA_MAX_DEVICE 1
60#define CONFIG_DWC_AHSATA_PORT_ID 0
61#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
62#define CONFIG_LBA48
63#define CONFIG_LIBATA
64#endif
65
Eric Nelsond67b0d92013-03-11 08:44:53 +000066#define CONFIG_FEC_MXC
67#define CONFIG_MII
68#define IMX_FEC_BASE ENET_BASE_ADDR
69#define CONFIG_FEC_XCV_TYPE RGMII
70#define CONFIG_ETHPRIME "FEC"
71#define CONFIG_FEC_MXC_PHYADDR 6
72#define CONFIG_PHYLIB
73#define CONFIG_PHY_MICREL
74#define CONFIG_PHY_MICREL_KSZ9021
75
76/* USB Configs */
Eric Nelsond67b0d92013-03-11 08:44:53 +000077#define CONFIG_USB_EHCI
78#define CONFIG_USB_EHCI_MX6
Eric Nelsond67b0d92013-03-11 08:44:53 +000079#define CONFIG_USB_HOST_ETHER
80#define CONFIG_USB_ETHER_ASIX
Gerhard Sittiga7434152014-03-08 19:46:16 +010081#define CONFIG_USB_ETHER_MCS7830
Eric Nelsond67b0d92013-03-11 08:44:53 +000082#define CONFIG_USB_ETHER_SMSC95XX
Troy Kiskyd1a52862013-10-10 15:27:59 -070083#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
84#define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
Eric Nelsond67b0d92013-03-11 08:44:53 +000085#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
86#define CONFIG_MXC_USB_FLAGS 0
Eric Nelsonc36c0002014-10-02 12:16:45 -070087#define CONFIG_SYS_USB_EVENT_POLL_VIA_CONTROL_EP
Eric Nelsond67b0d92013-03-11 08:44:53 +000088
89/* Miscellaneous commands */
90#define CONFIG_CMD_BMODE
Eric Nelsond67b0d92013-03-11 08:44:53 +000091
92/* Framebuffer and LCD */
Eric Nelsond67b0d92013-03-11 08:44:53 +000093#define CONFIG_VIDEO_IPUV3
Eric Nelsond67b0d92013-03-11 08:44:53 +000094#define CONFIG_VIDEO_BMP_RLE8
95#define CONFIG_SPLASH_SCREEN
Eric Nelson761bc192015-04-16 11:31:33 -070096#define CONFIG_SPLASH_SCREEN_ALIGN
97#define CONFIG_VIDEO_BMP_GZIP
98#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
Eric Nelsond67b0d92013-03-11 08:44:53 +000099#define CONFIG_BMP_16BPP
Eric Nelsond67b0d92013-03-11 08:44:53 +0000100#define CONFIG_IPUV3_CLK 260000000
101#define CONFIG_CMD_HDMIDETECT
Pardeep Kumar Singla5ea7f0e2013-07-25 12:12:13 -0500102#define CONFIG_IMX_HDMI
Eric Benarda47e4492014-04-04 19:05:53 +0200103#define CONFIG_IMX_VIDEO_SKIP
Eric Nelsond67b0d92013-03-11 08:44:53 +0000104
Eric Nelsond67b0d92013-03-11 08:44:53 +0000105#define CONFIG_PREBOOT ""
106
Eric Nelsond67b0d92013-03-11 08:44:53 +0000107#ifdef CONFIG_CMD_SATA
108#define CONFIG_DRIVE_SATA "sata "
109#else
110#define CONFIG_DRIVE_SATA
111#endif
112
113#ifdef CONFIG_CMD_MMC
114#define CONFIG_DRIVE_MMC "mmc "
115#else
116#define CONFIG_DRIVE_MMC
117#endif
118
Diego Rondini5b7103e2014-10-02 12:16:41 -0700119#ifdef CONFIG_USB_STORAGE
120#define CONFIG_DRIVE_USB "usb "
121#else
122#define CONFIG_DRIVE_USB
123#endif
124
125#define CONFIG_DRIVE_TYPES CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC CONFIG_DRIVE_USB
Eric Nelson8d97b3a2014-10-02 12:16:44 -0700126#define CONFIG_UMSDEVS CONFIG_DRIVE_SATA CONFIG_DRIVE_MMC
Eric Nelsond67b0d92013-03-11 08:44:53 +0000127
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300128#if defined(CONFIG_SABRELITE)
129#define CONFIG_EXTRA_ENV_SETTINGS \
130 "script=boot.scr\0" \
131 "uimage=uImage\0" \
132 "console=ttymxc1\0" \
133 "fdt_high=0xffffffff\0" \
134 "initrd_high=0xffffffff\0" \
135 "fdt_file=imx6q-sabrelite.dtb\0" \
Otavio Salvador6584a1b2013-12-16 20:44:04 -0200136 "fdt_addr=0x18000000\0" \
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300137 "boot_fdt=try\0" \
138 "ip_dyn=yes\0" \
Gary Bisson1c3e62d2017-01-12 12:18:44 +0100139 "usb_pgood_delay=2000\0" \
Guillaume GARDET05d1c242014-09-11 11:59:52 +0200140 "mmcdevs=0 1\0" \
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300141 "mmcpart=1\0" \
142 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
143 "mmcargs=setenv bootargs console=${console},${baudrate} " \
144 "root=${mmcroot}\0" \
145 "loadbootscript=" \
Guillaume GARDET3ee96c72014-08-26 12:05:31 +0200146 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300147 "bootscript=echo Running bootscript from mmc ...; " \
148 "source\0" \
Guillaume GARDET3ee96c72014-08-26 12:05:31 +0200149 "loaduimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
150 "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300151 "mmcboot=echo Booting from mmc ...; " \
152 "run mmcargs; " \
153 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
154 "if run loadfdt; then " \
155 "bootm ${loadaddr} - ${fdt_addr}; " \
156 "else " \
157 "if test ${boot_fdt} = try; then " \
158 "bootm; " \
159 "else " \
160 "echo WARN: Cannot load the DT; " \
161 "fi; " \
162 "fi; " \
163 "else " \
164 "bootm; " \
165 "fi;\0" \
166 "netargs=setenv bootargs console=${console},${baudrate} " \
167 "root=/dev/nfs " \
168 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
169 "netboot=echo Booting from net ...; " \
170 "run netargs; " \
171 "if test ${ip_dyn} = yes; then " \
172 "setenv get_cmd dhcp; " \
173 "else " \
174 "setenv get_cmd tftp; " \
175 "fi; " \
176 "${get_cmd} ${uimage}; " \
177 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
178 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
179 "bootm ${loadaddr} - ${fdt_addr}; " \
180 "else " \
181 "if test ${boot_fdt} = try; then " \
182 "bootm; " \
183 "else " \
184 "echo WARN: Cannot load the DT; " \
185 "fi; " \
186 "fi; " \
187 "else " \
188 "bootm; " \
189 "fi;\0"
190
191#define CONFIG_BOOTCOMMAND \
Guillaume GARDET05d1c242014-09-11 11:59:52 +0200192 "for mmcdev in ${mmcdevs}; do " \
193 "mmc dev ${mmcdev}; " \
194 "if mmc rescan; then " \
195 "if run loadbootscript; then " \
196 "run bootscript; " \
197 "else " \
198 "if run loaduimage; then " \
199 "run mmcboot; " \
200 "fi; " \
201 "fi; " \
202 "fi; " \
203 "done; " \
204 "run netboot; "
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300205#else
Eric Nelsond67b0d92013-03-11 08:44:53 +0000206#define CONFIG_EXTRA_ENV_SETTINGS \
Diego Rondini5b7103e2014-10-02 12:16:41 -0700207 "bootdevs=" CONFIG_DRIVE_TYPES "\0" \
Eric Nelson8d97b3a2014-10-02 12:16:44 -0700208 "umsdevs=" CONFIG_UMSDEVS "\0" \
Gary Bisson1c3e62d2017-01-12 12:18:44 +0100209 "usb_pgood_delay=2000\0" \
Eric Nelsond67b0d92013-03-11 08:44:53 +0000210 "console=ttymxc1\0" \
211 "clearenv=if sf probe || sf probe || sf probe 1 ; then " \
212 "sf erase 0xc0000 0x2000 && " \
213 "echo restored environment to factory default ; fi\0" \
Diego Rondini5b7103e2014-10-02 12:16:41 -0700214 "bootcmd=for dtype in ${bootdevs}" \
Eric Nelsond67b0d92013-03-11 08:44:53 +0000215 "; do " \
Diego Rondini5b7103e2014-10-02 12:16:41 -0700216 "if itest.s \"xusb\" == \"x${dtype}\" ; then " \
217 "usb start ;" \
218 "fi; " \
Eric Nelsond67b0d92013-03-11 08:44:53 +0000219 "for disk in 0 1 ; do ${dtype} dev ${disk} ;" \
Kevin Mihelich43a34312014-10-02 12:16:42 -0700220 "load " \
221 "${dtype} ${disk}:1 " \
222 "10008000 " \
223 "/6x_bootscript" \
224 "&& source 10008000 ; " \
Eric Nelsond67b0d92013-03-11 08:44:53 +0000225 "done ; " \
226 "done; " \
227 "setenv stdout serial,vga ; " \
228 "echo ; echo 6x_bootscript not found ; " \
229 "echo ; echo serial console at 115200, 8N1 ; echo ; " \
230 "echo details at http://boundarydevices.com/6q_bootscript ; " \
Eric Nelson8d97b3a2014-10-02 12:16:44 -0700231 "setenv stdout serial;" \
232 "setenv stdin serial,usbkbd;" \
233 "for dtype in ${umsdevs} ; do " \
234 "if itest.s sata == ${dtype}; then " \
235 "initcmd='sata init' ;" \
236 "else " \
237 "initcmd='mmc rescan' ;" \
238 "fi; " \
239 "for disk in 0 1 ; do " \
240 "if $initcmd && $dtype dev $disk ; then " \
241 "setenv stdout serial,vga; " \
242 "echo expose ${dtype} ${disk} " \
243 "over USB; " \
244 "ums 0 $dtype $disk ;" \
245 "fi; " \
246 " done; " \
247 "done ;" \
248 "setenv stdout serial,vga; " \
249 "echo no block devices found;" \
250 "\0" \
Eric Nelson8145ccc2014-10-02 12:16:43 -0700251 "initrd_high=0xffffffff\0" \
Diego Rondini5b7103e2014-10-02 12:16:41 -0700252 "upgradeu=for dtype in ${bootdevs}" \
Eric Nelsond67b0d92013-03-11 08:44:53 +0000253 "; do " \
254 "for disk in 0 1 ; do ${dtype} dev ${disk} ;" \
Kevin Mihelich43a34312014-10-02 12:16:42 -0700255 "load ${dtype} ${disk}:1 10008000 " \
256 "/6x_upgrade " \
257 "&& source 10008000 ; " \
Eric Nelsond67b0d92013-03-11 08:44:53 +0000258 "done ; " \
259 "done\0" \
260
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300261#endif
Eric Nelsond67b0d92013-03-11 08:44:53 +0000262/* Miscellaneous configurable options */
Eric Nelsond67b0d92013-03-11 08:44:53 +0000263#define CONFIG_SYS_MEMTEST_START 0x10000000
264#define CONFIG_SYS_MEMTEST_END 0x10010000
265#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
266
Eric Nelsond67b0d92013-03-11 08:44:53 +0000267/* Physical Memory Map */
268#define CONFIG_NR_DRAM_BANKS 1
269#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
270
271#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
272#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
273#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
274
275#define CONFIG_SYS_INIT_SP_OFFSET \
276 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
277#define CONFIG_SYS_INIT_SP_ADDR \
278 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
279
Peter Robinson056845c2015-05-22 17:30:45 +0100280/* Environment organization */
Eric Nelsond67b0d92013-03-11 08:44:53 +0000281#define CONFIG_ENV_SIZE (8 * 1024)
282
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300283#if defined(CONFIG_SABRELITE)
284#define CONFIG_ENV_IS_IN_MMC
285#else
Eric Nelsond67b0d92013-03-11 08:44:53 +0000286#define CONFIG_ENV_IS_IN_SPI_FLASH
Fabio Estevamf8b1e862013-07-26 11:37:17 -0300287#endif
Eric Nelsond67b0d92013-03-11 08:44:53 +0000288
289#if defined(CONFIG_ENV_IS_IN_MMC)
290#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
291#define CONFIG_SYS_MMC_ENV_DEV 0
292#elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
293#define CONFIG_ENV_OFFSET (768 * 1024)
294#define CONFIG_ENV_SECT_SIZE (8 * 1024)
295#define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
296#define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
297#define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
298#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
299#endif
300
Eric Nelsond67b0d92013-03-11 08:44:53 +0000301#define CONFIG_CMD_BMP
302
Eric Nelsond67b0d92013-03-11 08:44:53 +0000303#define CONFIG_SYS_ALT_MEMTEST
304
Marek Vasut147f8fa2013-12-14 05:55:29 +0100305/*
306 * PCI express
307 */
Marek Vasut147f8fa2013-12-14 05:55:29 +0100308#ifdef CONFIG_CMD_PCI
Marek Vasut147f8fa2013-12-14 05:55:29 +0100309#define CONFIG_PCI_SCAN_SHOW
310#define CONFIG_PCIE_IMX
311#endif
312
Paul Kocialkowski01acd6a2015-06-12 19:56:58 +0200313#define CONFIG_USB_FUNCTION_MASS_STORAGE
Eric Nelson84e2dc02014-10-02 12:16:40 -0700314
Paul Kocialkowski17da3c02015-06-12 19:56:59 +0200315#define CONFIG_USB_FUNCTION_FASTBOOT
Eric Nelsone9feee62014-10-02 12:16:52 -0700316#define CONFIG_CMD_FASTBOOT
317#define CONFIG_ANDROID_BOOT_IMAGE
Paul Kocialkowskia588d992015-07-20 12:38:22 +0200318#define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
319#define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
Eric Nelsone9feee62014-10-02 12:16:52 -0700320
Eric Nelsond67b0d92013-03-11 08:44:53 +0000321#endif /* __CONFIG_H */