]> git.sur5r.net Git - u-boot/blob - include/configs/ge_bx50v3.h
board: ge: bx50v3: Enable hardware watchdog
[u-boot] / include / configs / ge_bx50v3.h
1 /*
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>
16 #include <asm/mach-imx/gpio.h>
17
18 #define BX50V3_BOOTARGS_EXTRA
19 #if defined(CONFIG_TARGET_GE_B450V3)
20 #define CONFIG_BOARD_NAME       "General Electric B450v3"
21 #elif defined(CONFIG_TARGET_GE_B650V3)
22 #define CONFIG_BOARD_NAME       "General Electric B650v3"
23 #elif defined(CONFIG_TARGET_GE_B850V3)
24 #define CONFIG_BOARD_NAME       "General Electric B850v3"
25 #undef BX50V3_BOOTARGS_EXTRA
26 #define BX50V3_BOOTARGS_EXTRA   "video=DP-1:1024x768@60 " \
27                                 "video=HDMI-A-1:1024x768@60 "
28 #else
29 #define CONFIG_BOARD_NAME       "General Electric BA16 Generic"
30 #endif
31
32 #define CONFIG_MXC_UART_BASE    UART3_BASE
33 #define CONSOLE_DEV     "ttymxc2"
34
35 #define CONFIG_SUPPORT_EMMC_BOOT
36
37
38 #include "mx6_common.h"
39 #include <linux/sizes.h>
40
41 #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
47 #define CONFIG_HW_WATCHDOG
48 #define CONFIG_IMX_WATCHDOG
49 #define CONFIG_WATCHDOG_TIMEOUT_MSECS 6000
50
51 #define CONFIG_LAST_STAGE_INIT
52
53 #define CONFIG_MXC_GPIO
54 #define CONFIG_MXC_UART
55
56 #define CONFIG_MXC_OCOTP
57
58 /* SATA Configs */
59 #ifdef CONFIG_CMD_SATA
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 #endif
65
66 /* MMC Configs */
67 #define CONFIG_FSL_ESDHC
68 #define CONFIG_FSL_USDHC
69 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
70 #define CONFIG_BOUNCE_BUFFER
71
72 /* USB Configs */
73 #ifdef CONFIG_USB
74 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
75 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
76 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
77 #define CONFIG_MXC_USB_FLAGS    0
78
79 #define CONFIG_USBD_HS
80 #define CONFIG_USB_GADGET_MASS_STORAGE
81 #endif
82
83 /* Networking Configs */
84 #ifdef CONFIG_NET
85 #define CONFIG_FEC_MXC
86 #define CONFIG_MII
87 #define IMX_FEC_BASE                    ENET_BASE_ADDR
88 #define CONFIG_FEC_XCV_TYPE             RGMII
89 #define CONFIG_ETHPRIME         "FEC"
90 #define CONFIG_FEC_MXC_PHYADDR          4
91 #define CONFIG_PHY_ATHEROS
92 #endif
93
94 /* Serial Flash */
95 #ifdef CONFIG_CMD_SF
96 #define CONFIG_MXC_SPI
97 #define CONFIG_SF_DEFAULT_BUS           0
98 #define CONFIG_SF_DEFAULT_CS            0
99 #define CONFIG_SF_DEFAULT_SPEED 20000000
100 #define CONFIG_SF_DEFAULT_MODE          SPI_MODE_0
101 #endif
102
103 /* allow to overwrite serial and ethaddr */
104 #define CONFIG_ENV_OVERWRITE
105 #define CONFIG_CONS_INDEX       1
106
107 #define CONFIG_LOADADDR 0x12000000
108 #define CONFIG_SYS_TEXT_BASE    0x17800000
109
110 #define CONFIG_EXTRA_ENV_SETTINGS \
111         "script=boot.scr\0" \
112         "image=/boot/uImage\0" \
113         "uboot=u-boot.imx\0" \
114         "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
115         "fdt_addr=0x18000000\0" \
116         "boot_fdt=yes\0" \
117         "ip_dyn=yes\0" \
118         "console=" CONSOLE_DEV "\0" \
119         "fdt_high=0xffffffff\0"   \
120         "initrd_high=0xffffffff\0" \
121         "sddev=0\0" \
122         "emmcdev=1\0" \
123         "partnum=1\0" \
124         "update_sd_firmware=" \
125                 "if test ${ip_dyn} = yes; then " \
126                         "setenv get_cmd dhcp; " \
127                 "else " \
128                         "setenv get_cmd tftp; " \
129                 "fi; " \
130                 "if mmc dev ${mmcdev}; then "   \
131                         "if ${get_cmd} ${update_sd_firmware_filename}; then " \
132                                 "setexpr fw_sz ${filesize} / 0x200; " \
133                                 "setexpr fw_sz ${fw_sz} + 1; "  \
134                                 "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
135                         "fi; "  \
136                 "fi\0" \
137         "update_sf_uboot=" \
138                 "if tftp $loadaddr $uboot; then " \
139                         "sf probe; " \
140                         "sf erase 0 0xC0000; " \
141                         "sf write $loadaddr 0x400 $filesize; " \
142                         "echo 'U-Boot upgraded. Please reset'; " \
143                 "fi\0" \
144         "setargs=setenv bootargs console=${console},${baudrate} " \
145                 "root=/dev/${rootdev} rw rootwait cma=128M " \
146                 BX50V3_BOOTARGS_EXTRA "\0" \
147         "loadbootscript=" \
148                 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${script};\0" \
149         "bootscript=echo Running bootscript from ${dev}:${devnum}:${partnum};" \
150                 " source\0" \
151         "loadimage=" \
152                 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \
153         "loadfdt=ext2load ${dev} ${devnum}:${partnum} ${fdt_addr} ${fdt_file}\0" \
154         "tryboot=" \
155                 "if run loadbootscript; then " \
156                         "run bootscript; " \
157                 "else " \
158                         "if run loadimage; then " \
159                                 "run doboot; " \
160                         "fi; " \
161                 "fi;\0" \
162         "doboot=echo Booting from ${dev}:${devnum}:${partnum} ...; " \
163                 "run setargs; " \
164                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
165                         "if run loadfdt; then " \
166                                 "bootm ${loadaddr} - ${fdt_addr}; " \
167                         "else " \
168                                 "if test ${boot_fdt} = try; then " \
169                                         "bootm; " \
170                                 "else " \
171                                         "echo WARN: Cannot load the DT; " \
172                                 "fi; " \
173                         "fi; " \
174                 "else " \
175                         "bootm; " \
176                 "fi;\0" \
177         "netargs=setenv bootargs console=${console},${baudrate} " \
178                 "root=/dev/nfs " \
179                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
180         "netboot=echo Booting from net ...; " \
181                 "run netargs; " \
182                 "if test ${ip_dyn} = yes; then " \
183                         "setenv get_cmd dhcp; " \
184                 "else " \
185                         "setenv get_cmd tftp; " \
186                 "fi; " \
187                 "${get_cmd} ${image}; " \
188                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
189                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
190                                 "bootm ${loadaddr} - ${fdt_addr}; " \
191                         "else " \
192                                 "if test ${boot_fdt} = try; then " \
193                                         "bootm; " \
194                                 "else " \
195                                         "echo WARN: Cannot load the DT; " \
196                                 "fi; " \
197                         "fi; " \
198                 "else " \
199                         "bootm; " \
200                 "fi;\0" \
201
202 #define CONFIG_MMCBOOTCOMMAND \
203         "setenv dev mmc; " \
204         "setenv rootdev mmcblk0p${partnum}; " \
205         \
206         "setenv devnum ${sddev}; " \
207         "if mmc dev ${devnum}; then " \
208                 "run tryboot; " \
209                 "setenv rootdev mmcblk1p${partnum}; " \
210         "fi; " \
211         \
212         "setenv devnum ${emmcdev}; " \
213         "if mmc dev ${devnum}; then " \
214                 "run tryboot; " \
215         "fi; " \
216
217 #define CONFIG_USBBOOTCOMMAND \
218         "usb start; " \
219         "setenv dev usb; " \
220         "setenv devnum 0; " \
221         "setenv rootdev sda${partnum}; " \
222         "run tryboot; " \
223         \
224         CONFIG_MMCBOOTCOMMAND \
225         "bmode usb; " \
226
227 #ifdef CONFIG_CMD_USB
228 #define CONFIG_BOOTCOMMAND CONFIG_USBBOOTCOMMAND
229 #else
230 #define CONFIG_BOOTCOMMAND CONFIG_MMCBOOTCOMMAND
231 #endif
232
233 #define CONFIG_ARP_TIMEOUT     200UL
234
235 /* Miscellaneous configurable options */
236 #define CONFIG_SYS_LONGHELP
237 #define CONFIG_AUTO_COMPLETE
238
239 #define CONFIG_SYS_MEMTEST_START       0x10000000
240 #define CONFIG_SYS_MEMTEST_END         0x10010000
241 #define CONFIG_SYS_MEMTEST_SCRATCH     0x10800000
242
243 #define CONFIG_SYS_LOAD_ADDR           CONFIG_LOADADDR
244
245 #define CONFIG_CMDLINE_EDITING
246
247 /* Physical Memory Map */
248 #define CONFIG_NR_DRAM_BANKS           1
249 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
250
251 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
252 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
253 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
254
255 #define CONFIG_SYS_INIT_SP_OFFSET \
256         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
257 #define CONFIG_SYS_INIT_SP_ADDR \
258         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
259
260 /* environment organization */
261 #define CONFIG_ENV_SIZE         (8 * 1024)
262 #define CONFIG_ENV_OFFSET               (768 * 1024)
263 #define CONFIG_ENV_SECT_SIZE            (64 * 1024)
264 #define CONFIG_ENV_SPI_BUS              CONFIG_SF_DEFAULT_BUS
265 #define CONFIG_ENV_SPI_CS               CONFIG_SF_DEFAULT_CS
266 #define CONFIG_ENV_SPI_MODE             CONFIG_SF_DEFAULT_MODE
267 #define CONFIG_ENV_SPI_MAX_HZ           CONFIG_SF_DEFAULT_SPEED
268
269 #ifndef CONFIG_SYS_DCACHE_OFF
270 #endif
271
272 #define CONFIG_SYS_FSL_USDHC_NUM        3
273
274 /* Framebuffer */
275 #ifdef CONFIG_VIDEO
276 #define CONFIG_VIDEO_IPUV3
277 #define CONFIG_VIDEO_BMP_RLE8
278 #define CONFIG_SPLASH_SCREEN
279 #define CONFIG_SPLASH_SCREEN_ALIGN
280 #define CONFIG_BMP_16BPP
281 #define CONFIG_VIDEO_LOGO
282 #define CONFIG_VIDEO_BMP_LOGO
283 #define CONFIG_IMX_HDMI
284 #define CONFIG_IMX_VIDEO_SKIP
285 #endif
286
287 #define CONFIG_PWM_IMX
288 #define CONFIG_IMX6_PWM_PER_CLK 66000000
289
290 #define CONFIG_PCI
291 #define CONFIG_PCI_PNP
292 #define CONFIG_PCI_SCAN_SHOW
293 #define CONFIG_PCIE_IMX
294 #define CONFIG_PCIE_IMX_PERST_GPIO      IMX_GPIO_NR(7, 12)
295 #define CONFIG_PCIE_IMX_POWER_GPIO      IMX_GPIO_NR(1, 5)
296
297 /* I2C Configs */
298 #define CONFIG_SYS_I2C
299 #define CONFIG_SYS_I2C_MXC
300 #define CONFIG_SYS_I2C_SPEED              100000
301 #define CONFIG_SYS_I2C_MXC_I2C1
302 #define CONFIG_SYS_I2C_MXC_I2C2
303 #define CONFIG_SYS_I2C_MXC_I2C3
304
305 #define CONFIG_SYS_NUM_I2C_BUSES        11
306 #define CONFIG_SYS_I2C_MAX_HOPS         1
307 #define CONFIG_SYS_I2C_BUSES    {       {0, {I2C_NULL_HOP} }, \
308                                         {1, {I2C_NULL_HOP} }, \
309                                         {2, {I2C_NULL_HOP} }, \
310                                         {0, {{I2C_MUX_PCA9547, 0x70, 0} } }, \
311                                         {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
312                                         {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
313                                         {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
314                                         {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
315                                         {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
316                                         {0, {{I2C_MUX_PCA9547, 0x70, 6} } }, \
317                                         {0, {{I2C_MUX_PCA9547, 0x70, 7} } }, \
318                                 }
319
320 #define CONFIG_BCH
321
322 #endif  /* __GE_BX50V3_CONFIG_H */