blob: e0e1f713efc4faa05ebc37fe1b8cb5da7384af12 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Akshay Bhatf9162b12016-01-29 15:16:40 -05002/*
3 * Copyright (C) 2015 Timesys Corporation
4 * Copyright (C) 2015 General Electric Company
5 * Copyright (C) 2014 Advantech
6 * Copyright (C) 2012 Freescale Semiconductor, Inc.
7 *
8 * Configuration settings for the GE MX6Q Bx50v3 boards.
Akshay Bhatf9162b12016-01-29 15:16:40 -05009 */
10
11#ifndef __GE_BX50V3_CONFIG_H
12#define __GE_BX50V3_CONFIG_H
13
14#include <asm/arch/imx-regs.h>
Stefano Babic552a8482017-06-29 10:16:06 +020015#include <asm/mach-imx/gpio.h>
Akshay Bhatf9162b12016-01-29 15:16:40 -050016
Ian Ray51a42be2018-04-25 16:57:04 +020017#define CONFIG_BOARD_NAME "General Electric Bx50v3"
Akshay Bhatf9162b12016-01-29 15:16:40 -050018
19#define CONFIG_MXC_UART_BASE UART3_BASE
Simon Glass12ca05a2016-10-17 20:12:39 -060020#define CONSOLE_DEV "ttymxc2"
Akshay Bhatf9162b12016-01-29 15:16:40 -050021
Akshay Bhatf9162b12016-01-29 15:16:40 -050022#define CONFIG_SUPPORT_EMMC_BOOT
23
Akshay Bhatf9162b12016-01-29 15:16:40 -050024
25#include "mx6_common.h"
26#include <linux/sizes.h>
27
Akshay Bhatf9162b12016-01-29 15:16:40 -050028#define CONFIG_CMDLINE_TAG
29#define CONFIG_SETUP_MEMORY_TAGS
30#define CONFIG_INITRD_TAG
31#define CONFIG_REVISION_TAG
32#define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
33
Martyn Welch6d656492018-01-10 20:31:32 +010034#define CONFIG_WATCHDOG_TIMEOUT_MSECS 6000
35
Akshay Bhatf9162b12016-01-29 15:16:40 -050036#define CONFIG_MXC_UART
37
Akshay Bhatf9162b12016-01-29 15:16:40 -050038#define CONFIG_MXC_OCOTP
39
40/* SATA Configs */
Andrew Shaduraaacc10c2016-05-24 15:56:21 +020041#ifdef CONFIG_CMD_SATA
Akshay Bhatf9162b12016-01-29 15:16:40 -050042#define CONFIG_SYS_SATA_MAX_DEVICE 1
43#define CONFIG_DWC_AHSATA_PORT_ID 0
44#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
45#define CONFIG_LBA48
Andrew Shaduraaacc10c2016-05-24 15:56:21 +020046#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -050047
48/* MMC Configs */
Akshay Bhatf9162b12016-01-29 15:16:40 -050049#define CONFIG_FSL_USDHC
50#define CONFIG_SYS_FSL_ESDHC_ADDR 0
Akshay Bhatf9162b12016-01-29 15:16:40 -050051
52/* USB Configs */
Andrew Shadurafc449022016-05-24 15:56:19 +020053#ifdef CONFIG_USB
Akshay Bhatf9162b12016-01-29 15:16:40 -050054#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
55#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
56#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
57#define CONFIG_MXC_USB_FLAGS 0
Akshay Bhatf9162b12016-01-29 15:16:40 -050058
Akshay Bhatf9162b12016-01-29 15:16:40 -050059#define CONFIG_USBD_HS
Akshay Bhatf9162b12016-01-29 15:16:40 -050060#define CONFIG_USB_GADGET_MASS_STORAGE
Andrew Shadurafc449022016-05-24 15:56:19 +020061#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -050062
63/* Networking Configs */
Andrew Shadurac26ffd92016-05-24 15:56:20 +020064#ifdef CONFIG_NET
Akshay Bhatf9162b12016-01-29 15:16:40 -050065#define CONFIG_FEC_MXC
Akshay Bhatf9162b12016-01-29 15:16:40 -050066#define IMX_FEC_BASE ENET_BASE_ADDR
67#define CONFIG_FEC_XCV_TYPE RGMII
68#define CONFIG_ETHPRIME "FEC"
69#define CONFIG_FEC_MXC_PHYADDR 4
Akshay Bhatf9162b12016-01-29 15:16:40 -050070#define CONFIG_PHY_ATHEROS
Andrew Shadurac26ffd92016-05-24 15:56:20 +020071#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -050072
73/* Serial Flash */
Akshay Bhatf9162b12016-01-29 15:16:40 -050074#ifdef CONFIG_CMD_SF
Akshay Bhatf9162b12016-01-29 15:16:40 -050075#define CONFIG_SF_DEFAULT_BUS 0
76#define CONFIG_SF_DEFAULT_CS 0
77#define CONFIG_SF_DEFAULT_SPEED 20000000
78#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
79#endif
80
81/* allow to overwrite serial and ethaddr */
82#define CONFIG_ENV_OVERWRITE
Akshay Bhatf9162b12016-01-29 15:16:40 -050083
Akshay Bhatf9162b12016-01-29 15:16:40 -050084#define CONFIG_LOADADDR 0x12000000
Akshay Bhatf9162b12016-01-29 15:16:40 -050085
86#define CONFIG_EXTRA_ENV_SETTINGS \
Ian Ray9e41b542018-01-10 20:31:37 +010087 "bootcause=POR\0" \
Ian Rayf07b3142018-01-10 20:31:33 +010088 "image=/boot/fitImage\0" \
Ian Ray9e41b542018-01-10 20:31:37 +010089 "fdt_high=0xffffffff\0" \
90 "dev=mmc\0" \
91 "devnum=1\0" \
92 "rootdev=mmcblk0p\0" \
93 "quiet=quiet loglevel=0\0" \
Simon Glass12ca05a2016-10-17 20:12:39 -060094 "console=" CONSOLE_DEV "\0" \
Ian Ray9e41b542018-01-10 20:31:37 +010095 "setargs=setenv bootargs root=/dev/${rootdev}${partnum} " \
96 "ro rootwait cma=128M " \
97 "bootcause=${bootcause} " \
Nandor Han886678f2018-01-10 20:31:38 +010098 "${quiet} console=${console} ${rtc_status} " \
Ian Ray06a3e432018-04-25 16:57:03 +020099 "${videoargs}" "\0" \
Ian Ray9e41b542018-01-10 20:31:37 +0100100 "doquiet=" \
101 "if ext2load ${dev} ${devnum}:5 0x7000A000 /boot/console; " \
102 "then setenv quiet; fi\0" \
103 "hasfirstboot=" \
104 "ext2load ${dev} ${devnum}:${partnum} 0x7000A000 " \
105 "/boot/bootcause/firstboot\0" \
106 "swappartitions=" \
107 "setexpr partnum 3 - ${partnum}\0" \
108 "failbootcmd=" \
Ian Ray6c0e6b42018-04-04 10:50:17 +0200109 "bx50_backlight_enable; " \
Ian Ray9e41b542018-01-10 20:31:37 +0100110 "msg=\"Monitor failed to start. Try again, or contact GE Service for support.\"; " \
111 "echo $msg; " \
112 "setenv stdout vga; " \
113 "echo \"\n\n\n\n \" $msg; " \
114 "setenv stdout serial; " \
115 "mw.b 0x7000A000 0xbc; " \
116 "mw.b 0x7000A001 0x00; " \
117 "ext4write ${dev} ${devnum}:5 0x7000A000 /boot/failures 2\0" \
118 "altbootcmd=" \
119 "run doquiet; " \
120 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
121 "run hasfirstboot || setenv partnum 0; " \
122 "if test ${partnum} != 0; then " \
123 "setenv bootcause REVERT; " \
124 "run swappartitions loadimage doboot; " \
125 "fi; " \
126 "run failbootcmd\0" \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500127 "loadimage=" \
128 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \
Ian Ray9e41b542018-01-10 20:31:37 +0100129 "doboot=" \
130 "echo Booting from ${dev}:${devnum}:${partnum} ...; " \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500131 "run setargs; " \
Ian Ray9e41b542018-01-10 20:31:37 +0100132 "bootm ${loadaddr}#conf@${confidx}\0" \
133 "tryboot=" \
134 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
135 "run loadimage || run swappartitions && run loadimage || " \
136 "setenv partnum 0 && echo MISSING IMAGE;" \
137 "run doboot; " \
138 "run failbootcmd\0" \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500139
Andrew Shadurafc449022016-05-24 15:56:19 +0200140#define CONFIG_MMCBOOTCOMMAND \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500141 "if mmc dev ${devnum}; then " \
Ian Ray9e41b542018-01-10 20:31:37 +0100142 "run doquiet; " \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500143 "run tryboot; " \
144 "fi; " \
Andrew Shadurafc449022016-05-24 15:56:19 +0200145
146#define CONFIG_USBBOOTCOMMAND \
Ian Rayf07b3142018-01-10 20:31:33 +0100147 "echo Unsupported; " \
Akshay Bhatf9162b12016-01-29 15:16:40 -0500148
Andrew Shadurafc449022016-05-24 15:56:19 +0200149#ifdef CONFIG_CMD_USB
150#define CONFIG_BOOTCOMMAND CONFIG_USBBOOTCOMMAND
151#else
152#define CONFIG_BOOTCOMMAND CONFIG_MMCBOOTCOMMAND
153#endif
154
Akshay Bhatf9162b12016-01-29 15:16:40 -0500155#define CONFIG_ARP_TIMEOUT 200UL
156
157/* Miscellaneous configurable options */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500158
Akshay Bhatf9162b12016-01-29 15:16:40 -0500159#define CONFIG_SYS_MEMTEST_START 0x10000000
160#define CONFIG_SYS_MEMTEST_END 0x10010000
161#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
162
163#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
164
Akshay Bhatf9162b12016-01-29 15:16:40 -0500165/* Physical Memory Map */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500166#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
167
168#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
169#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
170#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
171
172#define CONFIG_SYS_INIT_SP_OFFSET \
173 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
174#define CONFIG_SYS_INIT_SP_ADDR \
175 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
176
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900177/* environment organization */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500178#define CONFIG_ENV_SIZE (8 * 1024)
179#define CONFIG_ENV_OFFSET (768 * 1024)
180#define CONFIG_ENV_SECT_SIZE (64 * 1024)
181#define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
182#define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
183#define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
184#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
185
Akshay Bhatf9162b12016-01-29 15:16:40 -0500186#define CONFIG_SYS_FSL_USDHC_NUM 3
187
188/* Framebuffer */
Ian Ray9e41b542018-01-10 20:31:37 +0100189#define CONFIG_VIDEO
Andrew Shadura07aa0302016-05-24 15:56:18 +0200190#ifdef CONFIG_VIDEO
Akshay Bhatf9162b12016-01-29 15:16:40 -0500191#define CONFIG_VIDEO_IPUV3
Ian Ray9e41b542018-01-10 20:31:37 +0100192#define CONFIG_CFB_CONSOLE
193#define CONFIG_VGA_AS_SINGLE_DEVICE
194#define CONFIG_SYS_CONSOLE_FG_COL 0xFF
195#define CONFIG_SYS_CONSOLE_BG_COL 0x00
196#define CONFIG_HIDE_LOGO_VERSION
Akshay Bhatf9162b12016-01-29 15:16:40 -0500197#define CONFIG_IMX_HDMI
198#define CONFIG_IMX_VIDEO_SKIP
Ian Ray9e41b542018-01-10 20:31:37 +0100199#define CONFIG_CMD_BMP
Andrew Shadura07aa0302016-05-24 15:56:18 +0200200#endif
Akshay Bhatf9162b12016-01-29 15:16:40 -0500201
Akshay Bhat54971ac2016-04-12 18:13:59 -0400202#define CONFIG_PWM_IMX
203#define CONFIG_IMX6_PWM_PER_CLK 66000000
204
Ian Ray34149132018-01-10 20:31:29 +0100205#define CONFIG_PCI
206#define CONFIG_PCI_PNP
Akshay Bhatf9162b12016-01-29 15:16:40 -0500207#define CONFIG_PCI_SCAN_SHOW
208#define CONFIG_PCIE_IMX
209#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
210#define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(1, 5)
Akshay Bhatf9162b12016-01-29 15:16:40 -0500211
Nandor Han886678f2018-01-10 20:31:38 +0100212#define CONFIG_RTC_RX8010SJ
213#define CONFIG_SYS_RTC_BUS_NUM 2
214#define CONFIG_SYS_I2C_RTC_ADDR 0x32
215
Akshay Bhatf9162b12016-01-29 15:16:40 -0500216/* I2C Configs */
Akshay Bhatf9162b12016-01-29 15:16:40 -0500217#define CONFIG_SYS_I2C
218#define CONFIG_SYS_I2C_MXC
219#define CONFIG_SYS_I2C_SPEED 100000
220#define CONFIG_SYS_I2C_MXC_I2C1
221#define CONFIG_SYS_I2C_MXC_I2C2
222#define CONFIG_SYS_I2C_MXC_I2C3
223
Martyn Welch87da89e2018-01-10 20:31:28 +0100224#define CONFIG_SYS_NUM_I2C_BUSES 11
Ian Raybe2808c2017-08-22 09:03:54 +0300225#define CONFIG_SYS_I2C_MAX_HOPS 1
226#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \
Martyn Welch87da89e2018-01-10 20:31:28 +0100227 {1, {I2C_NULL_HOP} }, \
228 {2, {I2C_NULL_HOP} }, \
Ian Raybe2808c2017-08-22 09:03:54 +0300229 {0, {{I2C_MUX_PCA9547, 0x70, 0} } }, \
230 {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
231 {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
232 {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
233 {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
234 {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
235 {0, {{I2C_MUX_PCA9547, 0x70, 6} } }, \
236 {0, {{I2C_MUX_PCA9547, 0x70, 7} } }, \
237 }
238
239#define CONFIG_BCH
240
Akshay Bhatf9162b12016-01-29 15:16:40 -0500241#endif /* __GE_BX50V3_CONFIG_H */