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