blob: c3644422449f46d32e4d893cf58b7639c0a1d59f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eric Nelsone5b3a502013-03-11 08:44:53 +00002/*
3 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the Boundary Devices Nitrogen6X
6 * and Freescale i.MX6Q Sabre Lite boards.
Eric Nelsone5b3a502013-03-11 08:44:53 +00007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
Eric Nelson062772c2013-11-26 17:40:30 -070012#include "mx6_common.h"
Eric Nelsone5b3a502013-03-11 08:44:53 +000013
14#define CONFIG_MACH_TYPE 3769
15
Eric Nelsone5b3a502013-03-11 08:44:53 +000016/* Size of malloc() pool */
17#define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
18
Troy Kisky760327c2013-09-25 18:41:18 -070019#define CONFIG_USBD_HS
Troy Kisky760327c2013-09-25 18:41:18 -070020#define CONFIG_NETCONSOLE
Eric Nelsone5b3a502013-03-11 08:44:53 +000021
Eric Nelsone5b3a502013-03-11 08:44:53 +000022#define CONFIG_MXC_UART
23#define CONFIG_MXC_UART_BASE UART2_BASE
24
Eric Nelsone5b3a502013-03-11 08:44:53 +000025#ifdef CONFIG_CMD_SF
Eric Nelsone5b3a502013-03-11 08:44:53 +000026#define CONFIG_SF_DEFAULT_BUS 0
Nikita Kiryanov00cd7382014-08-20 15:08:50 +030027#define CONFIG_SF_DEFAULT_CS 0
Eric Nelsone5b3a502013-03-11 08:44:53 +000028#define CONFIG_SF_DEFAULT_SPEED 25000000
29#define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
30#endif
31
32/* I2C Configs */
trem03997412013-09-21 18:13:36 +020033#define CONFIG_SYS_I2C
34#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)eb943872015-09-21 22:43:38 +020035#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
36#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf1a52162015-03-20 10:20:40 -070037#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Eric Nelsone5b3a502013-03-11 08:44:53 +000038#define CONFIG_SYS_I2C_SPEED 100000
Eric Nelson69691c62014-10-02 12:16:47 -070039#define CONFIG_I2C_EDID
Eric Nelsone5b3a502013-03-11 08:44:53 +000040
Eric Nelsone5b3a502013-03-11 08:44:53 +000041/* MMC Configs */
Eric Nelsone5b3a502013-03-11 08:44:53 +000042#define CONFIG_SYS_FSL_ESDHC_ADDR 0
43#define CONFIG_SYS_FSL_USDHC_NUM 2
44
Eric Nelsone5b3a502013-03-11 08:44:53 +000045/*
46 * SATA Configs
47 */
48#ifdef CONFIG_CMD_SATA
Eric Nelsone5b3a502013-03-11 08:44:53 +000049#define CONFIG_SYS_SATA_MAX_DEVICE 1
50#define CONFIG_DWC_AHSATA_PORT_ID 0
51#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
52#define CONFIG_LBA48
Eric Nelsone5b3a502013-03-11 08:44:53 +000053#endif
54
Eric Nelsone5b3a502013-03-11 08:44:53 +000055#define CONFIG_FEC_MXC
Eric Nelsone5b3a502013-03-11 08:44:53 +000056#define IMX_FEC_BASE ENET_BASE_ADDR
57#define CONFIG_FEC_XCV_TYPE RGMII
58#define CONFIG_ETHPRIME "FEC"
59#define CONFIG_FEC_MXC_PHYADDR 6
Eric Nelsone5b3a502013-03-11 08:44:53 +000060
61/* USB Configs */
Troy Kiskyed72a9e2013-10-10 15:27:59 -070062#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
63#define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
Eric Nelsone5b3a502013-03-11 08:44:53 +000064#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
65#define CONFIG_MXC_USB_FLAGS 0
66
Eric Nelsone5b3a502013-03-11 08:44:53 +000067/* Framebuffer and LCD */
Eric Nelsone5b3a502013-03-11 08:44:53 +000068#define CONFIG_VIDEO_IPUV3
Eric Nelsone5b3a502013-03-11 08:44:53 +000069#define CONFIG_VIDEO_BMP_RLE8
70#define CONFIG_SPLASH_SCREEN
Eric Nelson89f2be52015-04-16 11:31:33 -070071#define CONFIG_SPLASH_SCREEN_ALIGN
72#define CONFIG_VIDEO_BMP_GZIP
73#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (6 * 1024 * 1024)
Eric Nelsone5b3a502013-03-11 08:44:53 +000074#define CONFIG_BMP_16BPP
Pardeep Kumar Singlac1fa1302013-07-25 12:12:13 -050075#define CONFIG_IMX_HDMI
Eric Benard7f63c142014-04-04 19:05:53 +020076#define CONFIG_IMX_VIDEO_SKIP
Eric Nelsone5b3a502013-03-11 08:44:53 +000077
Eric Nelsone5b3a502013-03-11 08:44:53 +000078#define CONFIG_PREBOOT ""
79
Guillaume GARDET2ab78982018-04-18 17:04:58 +020080#ifdef CONFIG_CMD_MMC
81#define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
Eric Nelsone5b3a502013-03-11 08:44:53 +000082#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020083#define DISTRO_BOOT_DEV_MMC(func)
Eric Nelsone5b3a502013-03-11 08:44:53 +000084#endif
85
Guillaume GARDET2ab78982018-04-18 17:04:58 +020086#ifdef CONFIG_CMD_SATA
87#define DISTRO_BOOT_DEV_SATA(func) func(SATA, sata, 0)
Eric Nelsone5b3a502013-03-11 08:44:53 +000088#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020089#define DISTRO_BOOT_DEV_SATA(func)
Eric Nelsone5b3a502013-03-11 08:44:53 +000090#endif
91
Diego Rondini4e7394d2014-10-02 12:16:41 -070092#ifdef CONFIG_USB_STORAGE
Guillaume GARDET2ab78982018-04-18 17:04:58 +020093#define DISTRO_BOOT_DEV_USB(func) func(USB, usb, 0)
Diego Rondini4e7394d2014-10-02 12:16:41 -070094#else
Guillaume GARDET2ab78982018-04-18 17:04:58 +020095#define DISTRO_BOOT_DEV_USB(func)
Diego Rondini4e7394d2014-10-02 12:16:41 -070096#endif
97
Guillaume GARDET2ab78982018-04-18 17:04:58 +020098#ifdef CONFIG_CMD_PXE
99#define DISTRO_BOOT_DEV_PXE(func) func(PXE, pxe, na)
100#else
101#define DISTRO_BOOT_DEV_PXE(func)
102#endif
103
104#ifdef CONFIG_CMD_DHCP
105#define DISTRO_BOOT_DEV_DHCP(func) func(DHCP, dhcp, na)
106#else
107#define DISTRO_BOOT_DEV_DHCP(func)
108#endif
109
Eric Nelsone5b3a502013-03-11 08:44:53 +0000110
Fabio Estevam1fd60922013-07-26 11:37:17 -0300111#if defined(CONFIG_SABRELITE)
Guillaume GARDET2ab78982018-04-18 17:04:58 +0200112#define FDTFILE "fdtfile=imx6q-sabrelite.dtb\0"
113#else
114/* FIXME: nitrogen6x covers multiple configs. Define fdtfile for each supported config. */
115#define FDTFILE
116#endif
117
118#define BOOT_TARGET_DEVICES(func) \
119 DISTRO_BOOT_DEV_MMC(func) \
120 DISTRO_BOOT_DEV_SATA(func) \
121 DISTRO_BOOT_DEV_USB(func) \
122 DISTRO_BOOT_DEV_PXE(func) \
123 DISTRO_BOOT_DEV_DHCP(func)
124
125#include <config_distro_bootcmd.h>
126
Eric Nelsone5b3a502013-03-11 08:44:53 +0000127#define CONFIG_EXTRA_ENV_SETTINGS \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300128 "console=ttymxc1\0" \
129 "fdt_high=0xffffffff\0" \
130 "initrd_high=0xffffffff\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +0200131 "fdt_addr_r=0x18000000\0" \
132 FDTFILE \
133 "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
134 "pxefile_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
135 "scriptaddr=" __stringify(CONFIG_LOADADDR) "\0" \
136 "ramdisk_addr_r=0x13000000\0" \
137 "ramdiskaddr=0x13000000\0" \
Fabio Estevam1fd60922013-07-26 11:37:17 -0300138 "ip_dyn=yes\0" \
Gary Bissond3919c02017-01-12 12:18:44 +0100139 "usb_pgood_delay=2000\0" \
Guillaume GARDET2ab78982018-04-18 17:04:58 +0200140 BOOTENV
Fabio Estevam1fd60922013-07-26 11:37:17 -0300141
Eric Nelsone5b3a502013-03-11 08:44:53 +0000142/* Miscellaneous configurable options */
Eric Nelsone5b3a502013-03-11 08:44:53 +0000143#define CONFIG_SYS_MEMTEST_START 0x10000000
144#define CONFIG_SYS_MEMTEST_END 0x10010000
145#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
146
Eric Nelsone5b3a502013-03-11 08:44:53 +0000147/* Physical Memory Map */
Eric Nelsone5b3a502013-03-11 08:44:53 +0000148#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
149
150#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
151#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
152#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
153
154#define CONFIG_SYS_INIT_SP_OFFSET \
155 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
156#define CONFIG_SYS_INIT_SP_ADDR \
157 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
158
Peter Robinson4b671502015-05-22 17:30:45 +0100159/* Environment organization */
Eric Nelsone5b3a502013-03-11 08:44:53 +0000160#define CONFIG_ENV_SIZE (8 * 1024)
161
Eric Nelsone5b3a502013-03-11 08:44:53 +0000162#if defined(CONFIG_ENV_IS_IN_MMC)
163#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
164#define CONFIG_SYS_MMC_ENV_DEV 0
165#elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
166#define CONFIG_ENV_OFFSET (768 * 1024)
167#define CONFIG_ENV_SECT_SIZE (8 * 1024)
168#define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
169#define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
170#define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
171#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
172#endif
173
Marek Vasut52303852013-12-14 05:55:29 +0100174/*
175 * PCI express
176 */
Marek Vasut52303852013-12-14 05:55:29 +0100177#ifdef CONFIG_CMD_PCI
Marek Vasut52303852013-12-14 05:55:29 +0100178#define CONFIG_PCI_SCAN_SHOW
179#define CONFIG_PCIE_IMX
180#endif
181
Eric Nelsone5b3a502013-03-11 08:44:53 +0000182#endif /* __CONFIG_H */