blob: cbfe30d536d0b88f002a511ae1fc00203b0848d3 [file] [log] [blame]
Akshay Bhatf9162b12016-01-29 15:16:40 -05001/*
2 * Copyright (C) 2015 Timesys Corporation
3 * Copyright (C) 2015 General Electric Company
4 * Copyright (C) 2014 Advantech
5 * Copyright (C) 2012 Freescale Semiconductor, Inc.
6 *
7 * Configuration settings for the GE MX6Q Bx50v3 boards.
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#ifndef __GE_BX50V3_CONFIG_H
13#define __GE_BX50V3_CONFIG_H
14
15#include <asm/arch/imx-regs.h>
Stefano Babic552a8482017-06-29 10:16:06 +020016#include <asm/mach-imx/gpio.h>
Akshay Bhatf9162b12016-01-29 15:16:40 -050017
Ken Lin3dddc792016-10-07 10:26:56 -040018#define BX50V3_BOOTARGS_EXTRA
Akshay Bhatf9162b12016-01-29 15:16:40 -050019#if defined(CONFIG_TARGET_GE_B450V3)
20#define CONFIG_BOARD_NAME "General Electric B450v3"
Akshay Bhatf9162b12016-01-29 15:16:40 -050021#elif defined(CONFIG_TARGET_GE_B650V3)
22#define CONFIG_BOARD_NAME "General Electric B650v3"
Akshay Bhatf9162b12016-01-29 15:16:40 -050023#elif defined(CONFIG_TARGET_GE_B850V3)
24#define CONFIG_BOARD_NAME "General Electric B850v3"
Ken Lin3dddc792016-10-07 10:26:56 -040025#undef BX50V3_BOOTARGS_EXTRA
26#define BX50V3_BOOTARGS_EXTRA "video=DP-1:1024x768@60 " \
27 "video=HDMI-A-1:1024x768@60 "
Akshay Bhatf9162b12016-01-29 15:16:40 -050028#else
29#define CONFIG_BOARD_NAME "General Electric BA16 Generic"
Akshay Bhatf9162b12016-01-29 15:16:40 -050030#endif
31
32#define CONFIG_MXC_UART_BASE UART3_BASE
Simon Glass12ca05a2016-10-17 20:12:39 -060033#define CONSOLE_DEV "ttymxc2"
Akshay Bhatf9162b12016-01-29 15:16:40 -050034
Akshay Bhatf9162b12016-01-29 15:16:40 -050035#define CONFIG_SUPPORT_EMMC_BOOT
36
Akshay Bhatf9162b12016-01-29 15:16:40 -050037
38#include "mx6_common.h"
39#include <linux/sizes.h>
40
Akshay Bhatf9162b12016-01-29 15:16:40 -050041#define CONFIG_CMDLINE_TAG
42#define CONFIG_SETUP_MEMORY_TAGS
43#define CONFIG_INITRD_TAG
44#define CONFIG_REVISION_TAG
45#define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
46
Martyn Welch6d656492018-01-10 20:31:32 +010047#define CONFIG_HW_WATCHDOG
48#define CONFIG_IMX_WATCHDOG
49#define CONFIG_WATCHDOG_TIMEOUT_MSECS 6000
50
Martyn Welchcf678b32018-01-10 20:31:30 +010051#define CONFIG_LAST_STAGE_INIT
52
Akshay Bhatf9162b12016-01-29 15:16:40 -050053#define CONFIG_MXC_UART
54
Akshay Bhatf9162b12016-01-29 15:16:40 -050055#define CONFIG_MXC_OCOTP
56
57/* SATA Configs */
Andrew Shaduraaacc10c2016-05-24 15:56:21 +020058#ifdef CONFIG_CMD_SATA
Akshay Bhatf9162b12016-01-29 15:16:40 -050059#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
Andrew Shaduraaacc10c2016-05-24 15:56:21 +020063#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -050064
65/* MMC Configs */
66#define CONFIG_FSL_ESDHC
67#define CONFIG_FSL_USDHC
68#define CONFIG_SYS_FSL_ESDHC_ADDR 0
Akshay Bhatf9162b12016-01-29 15:16:40 -050069#define CONFIG_BOUNCE_BUFFER
Akshay Bhatf9162b12016-01-29 15:16:40 -050070
71/* USB Configs */
Andrew Shadurafc449022016-05-24 15:56:19 +020072#ifdef CONFIG_USB
Akshay Bhatf9162b12016-01-29 15:16:40 -050073#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
74#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
75#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
76#define CONFIG_MXC_USB_FLAGS 0
Akshay Bhatf9162b12016-01-29 15:16:40 -050077
Akshay Bhatf9162b12016-01-29 15:16:40 -050078#define CONFIG_USBD_HS
Akshay Bhatf9162b12016-01-29 15:16:40 -050079#define CONFIG_USB_GADGET_MASS_STORAGE
Andrew Shadurafc449022016-05-24 15:56:19 +020080#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -050081
82/* Networking Configs */
Andrew Shadurac26ffd92016-05-24 15:56:20 +020083#ifdef CONFIG_NET
Akshay Bhatf9162b12016-01-29 15:16:40 -050084#define CONFIG_FEC_MXC
85#define CONFIG_MII
86#define IMX_FEC_BASE ENET_BASE_ADDR
87#define CONFIG_FEC_XCV_TYPE RGMII
88#define CONFIG_ETHPRIME "FEC"
89#define CONFIG_FEC_MXC_PHYADDR 4
Akshay Bhatf9162b12016-01-29 15:16:40 -050090#define CONFIG_PHY_ATHEROS
Andrew Shadurac26ffd92016-05-24 15:56:20 +020091#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -050092
93/* Serial Flash */
Akshay Bhatf9162b12016-01-29 15:16:40 -050094#ifdef CONFIG_CMD_SF
Akshay Bhatf9162b12016-01-29 15:16:40 -050095#define CONFIG_SF_DEFAULT_BUS 0
96#define CONFIG_SF_DEFAULT_CS 0
97#define CONFIG_SF_DEFAULT_SPEED 20000000
98#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
99#endif
100
101/* allow to overwrite serial and ethaddr */
102#define CONFIG_ENV_OVERWRITE
103#define CONFIG_CONS_INDEX 1
Akshay Bhatf9162b12016-01-29 15:16:40 -0500104
Akshay Bhatf9162b12016-01-29 15:16:40 -0500105#define CONFIG_LOADADDR 0x12000000
Akshay Bhatf9162b12016-01-29 15:16:40 -0500106
107#define CONFIG_EXTRA_ENV_SETTINGS \
Ian Ray9e41b542018-01-10 20:31:37 +0100108 "bootcause=POR\0" \
Ian Ray44395c82018-01-10 20:31:35 +0100109 "bootlimit=10\0" \
Ian Rayf07b3142018-01-10 20:31:33 +0100110 "image=/boot/fitImage\0" \
Ian Ray9e41b542018-01-10 20:31:37 +0100111 "fdt_high=0xffffffff\0" \
112 "dev=mmc\0" \
113 "devnum=1\0" \
114 "rootdev=mmcblk0p\0" \
115 "quiet=quiet loglevel=0\0" \
Simon Glass12ca05a2016-10-17 20:12:39 -0600116 "console=" CONSOLE_DEV "\0" \
Ian Ray9e41b542018-01-10 20:31:37 +0100117 "setargs=setenv bootargs root=/dev/${rootdev}${partnum} " \
118 "ro rootwait cma=128M " \
119 "bootcause=${bootcause} " \
Nandor Han886678f2018-01-10 20:31:38 +0100120 "${quiet} console=${console} ${rtc_status} " \
Ken Lin3dddc792016-10-07 10:26:56 -0400121 BX50V3_BOOTARGS_EXTRA "\0" \
Ian Ray9e41b542018-01-10 20:31:37 +0100122 "doquiet=" \
123 "if ext2load ${dev} ${devnum}:5 0x7000A000 /boot/console; " \
124 "then setenv quiet; fi\0" \
125 "hasfirstboot=" \
126 "ext2load ${dev} ${devnum}:${partnum} 0x7000A000 " \
127 "/boot/bootcause/firstboot\0" \
128 "swappartitions=" \
129 "setexpr partnum 3 - ${partnum}\0" \
130 "failbootcmd=" \
131 "msg=\"Monitor failed to start. Try again, or contact GE Service for support.\"; " \
132 "echo $msg; " \
133 "setenv stdout vga; " \
134 "echo \"\n\n\n\n \" $msg; " \
135 "setenv stdout serial; " \
136 "mw.b 0x7000A000 0xbc; " \
137 "mw.b 0x7000A001 0x00; " \
138 "ext4write ${dev} ${devnum}:5 0x7000A000 /boot/failures 2\0" \
139 "altbootcmd=" \
140 "run doquiet; " \
141 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
142 "run hasfirstboot || setenv partnum 0; " \
143 "if test ${partnum} != 0; then " \
144 "setenv bootcause REVERT; " \
145 "run swappartitions loadimage doboot; " \
146 "fi; " \
147 "run failbootcmd\0" \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500148 "loadimage=" \
149 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \
Ian Ray9e41b542018-01-10 20:31:37 +0100150 "doboot=" \
151 "echo Booting from ${dev}:${devnum}:${partnum} ...; " \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500152 "run setargs; " \
Ian Ray9e41b542018-01-10 20:31:37 +0100153 "bootm ${loadaddr}#conf@${confidx}\0" \
154 "tryboot=" \
155 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
156 "run loadimage || run swappartitions && run loadimage || " \
157 "setenv partnum 0 && echo MISSING IMAGE;" \
158 "run doboot; " \
159 "run failbootcmd\0" \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500160
Andrew Shadurafc449022016-05-24 15:56:19 +0200161#define CONFIG_MMCBOOTCOMMAND \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500162 "if mmc dev ${devnum}; then " \
Ian Ray9e41b542018-01-10 20:31:37 +0100163 "run doquiet; " \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500164 "run tryboot; " \
165 "fi; " \
Andrew Shadurafc449022016-05-24 15:56:19 +0200166
167#define CONFIG_USBBOOTCOMMAND \
Ian Rayf07b3142018-01-10 20:31:33 +0100168 "echo Unsupported; " \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500169
Andrew Shadurafc449022016-05-24 15:56:19 +0200170#ifdef CONFIG_CMD_USB
171#define CONFIG_BOOTCOMMAND CONFIG_USBBOOTCOMMAND
172#else
173#define CONFIG_BOOTCOMMAND CONFIG_MMCBOOTCOMMAND
174#endif
175
Akshay Bhatf9162b12016-01-29 15:16:40 -0500176#define CONFIG_ARP_TIMEOUT 200UL
177
178/* Miscellaneous configurable options */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500179
Akshay Bhatf9162b12016-01-29 15:16:40 -0500180#define CONFIG_SYS_MEMTEST_START 0x10000000
181#define CONFIG_SYS_MEMTEST_END 0x10010000
182#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
183
184#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
185
Akshay Bhatf9162b12016-01-29 15:16:40 -0500186/* Physical Memory Map */
187#define CONFIG_NR_DRAM_BANKS 1
188#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
189
190#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
191#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
192#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
193
194#define CONFIG_SYS_INIT_SP_OFFSET \
195 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
196#define CONFIG_SYS_INIT_SP_ADDR \
197 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
198
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900199/* environment organization */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500200#define CONFIG_ENV_SIZE (8 * 1024)
201#define CONFIG_ENV_OFFSET (768 * 1024)
202#define CONFIG_ENV_SECT_SIZE (64 * 1024)
203#define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
204#define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
205#define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
206#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
207
Akshay Bhatf9162b12016-01-29 15:16:40 -0500208#ifndef CONFIG_SYS_DCACHE_OFF
Akshay Bhatf9162b12016-01-29 15:16:40 -0500209#endif
210
211#define CONFIG_SYS_FSL_USDHC_NUM 3
212
213/* Framebuffer */
Ian Ray9e41b542018-01-10 20:31:37 +0100214#define CONFIG_VIDEO
Andrew Shadura07aa0302016-05-24 15:56:18 +0200215#ifdef CONFIG_VIDEO
Akshay Bhatf9162b12016-01-29 15:16:40 -0500216#define CONFIG_VIDEO_IPUV3
Ian Ray9e41b542018-01-10 20:31:37 +0100217#define CONFIG_CFB_CONSOLE
218#define CONFIG_VGA_AS_SINGLE_DEVICE
219#define CONFIG_SYS_CONSOLE_FG_COL 0xFF
220#define CONFIG_SYS_CONSOLE_BG_COL 0x00
221#define CONFIG_HIDE_LOGO_VERSION
Akshay Bhatf9162b12016-01-29 15:16:40 -0500222#define CONFIG_IMX_HDMI
223#define CONFIG_IMX_VIDEO_SKIP
Ian Ray9e41b542018-01-10 20:31:37 +0100224#define CONFIG_CMD_BMP
Andrew Shadura07aa0302016-05-24 15:56:18 +0200225#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -0500226
Akshay Bhat54971ac2016-04-12 18:13:59 -0400227#define CONFIG_PWM_IMX
228#define CONFIG_IMX6_PWM_PER_CLK 66000000
229
Ian Ray34149132018-01-10 20:31:29 +0100230#define CONFIG_PCI
231#define CONFIG_PCI_PNP
Akshay Bhatf9162b12016-01-29 15:16:40 -0500232#define CONFIG_PCI_SCAN_SHOW
233#define CONFIG_PCIE_IMX
234#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
235#define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(1, 5)
Akshay Bhatf9162b12016-01-29 15:16:40 -0500236
Nandor Han886678f2018-01-10 20:31:38 +0100237#define CONFIG_RTC_RX8010SJ
238#define CONFIG_SYS_RTC_BUS_NUM 2
239#define CONFIG_SYS_I2C_RTC_ADDR 0x32
240
Akshay Bhatf9162b12016-01-29 15:16:40 -0500241/* I2C Configs */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500242#define CONFIG_SYS_I2C
243#define CONFIG_SYS_I2C_MXC
244#define CONFIG_SYS_I2C_SPEED 100000
245#define CONFIG_SYS_I2C_MXC_I2C1
246#define CONFIG_SYS_I2C_MXC_I2C2
247#define CONFIG_SYS_I2C_MXC_I2C3
248
Martyn Welch87da89e2018-01-10 20:31:28 +0100249#define CONFIG_SYS_NUM_I2C_BUSES 11
Ian Raybe2808c2017-08-22 09:03:54 +0300250#define CONFIG_SYS_I2C_MAX_HOPS 1
251#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \
Martyn Welch87da89e2018-01-10 20:31:28 +0100252 {1, {I2C_NULL_HOP} }, \
253 {2, {I2C_NULL_HOP} }, \
Ian Raybe2808c2017-08-22 09:03:54 +0300254 {0, {{I2C_MUX_PCA9547, 0x70, 0} } }, \
255 {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
256 {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
257 {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
258 {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
259 {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
260 {0, {{I2C_MUX_PCA9547, 0x70, 6} } }, \
261 {0, {{I2C_MUX_PCA9547, 0x70, 7} } }, \
262 }
263
264#define CONFIG_BCH
265
Akshay Bhatf9162b12016-01-29 15:16:40 -0500266#endif /* __GE_BX50V3_CONFIG_H */