1 /* SPDX-License-Identifier: GPL-2.0+ */
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.
8 * Configuration settings for the GE MX6Q Bx50v3 boards.
11 #ifndef __GE_BX50V3_CONFIG_H
12 #define __GE_BX50V3_CONFIG_H
14 #include <asm/arch/imx-regs.h>
15 #include <asm/mach-imx/gpio.h>
17 #define CONFIG_BOARD_NAME "General Electric Bx50v3"
19 #include "mx6_common.h"
20 #include <linux/sizes.h>
22 #define CONFIG_CMDLINE_TAG
23 #define CONFIG_SETUP_MEMORY_TAGS
24 #define CONFIG_INITRD_TAG
25 #define CONFIG_REVISION_TAG
26 #define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
29 #ifdef CONFIG_CMD_SATA
30 #define CONFIG_SYS_SATA_MAX_DEVICE 1
31 #define CONFIG_DWC_AHSATA_PORT_ID 0
32 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
38 #define CONFIG_LOADADDR 0x12000000
43 "setenv ipaddr 172.16.2.10; setenv serverip 172.16.2.20; " \
44 "setenv gatewayip 172.16.2.20; setenv nfsserver 172.16.2.20; " \
45 "setenv netmask 255.255.255.0; setenv ethaddr ca:fe:de:ca:f0:11; " \
46 "setenv bootargs root=/dev/nfs nfsroot=${nfsserver}:/srv/nfs/,v3,tcp rw rootwait" \
47 "setenv bootargs $bootargs ip=${ipaddr}:${nfsserver}:${gatewayip}:${netmask}::eth0:off " \
48 "setenv bootargs $bootargs cma=128M bootcause=${bootcause} ${videoargs} " \
49 "setenv bootargs $bootargs systemd.mask=helix-network-defaults.service " \
50 "setenv bootargs $bootargs watchdog.handle_boot_enabled=1\0" \
52 "run setnetworkboot; " \
53 "nfs ${loadaddr} /srv/nfs/fitImage; " \
54 "bootm ${loadaddr}\0" \
56 #define NETWORKBOOTCOMMAND \
64 #define CONFIG_EXTRA_ENV_SETTINGS \
66 "image=/boot/fitImage\0" \
69 "rootdev=mmcblk0p\0" \
70 "quiet=quiet loglevel=0\0" \
71 "setargs=setenv bootargs root=/dev/${rootdev}${partnum} " \
72 "ro rootwait cma=128M " \
73 "bootcause=${bootcause} " \
77 "if ext2load ${dev} ${devnum}:5 0x7000A000 /boot/console; " \
78 "then setenv quiet; fi\0" \
80 "test -e ${dev} ${devnum}:${partnum} /boot/bootcause/firstboot\0" \
82 "setexpr partnum 3 - ${partnum}\0" \
86 "lcdputs \"Monitor failed to start. " \
87 "Try again, or contact GE Service for support.\"; " \
89 "while true; do sleep 1; done; \0" \
92 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
93 "run hasfirstboot || setenv partnum 0; " \
94 "if test ${partnum} != 0; then " \
95 "run swappartitions loadimage doboot; " \
99 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \
101 "echo Booting from ${dev}:${devnum}:${partnum} ...; " \
103 "bootm ${loadaddr}\0" \
105 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
106 "run loadimage || run swappartitions && run loadimage || " \
107 "setenv partnum 0 && echo MISSING IMAGE;" \
109 "run failbootcmd\0" \
111 #define MMCBOOTCOMMAND \
115 #ifdef CONFIG_CMD_NFS
116 #define CONFIG_BOOTCOMMAND NETWORKBOOTCOMMAND
118 #define CONFIG_BOOTCOMMAND MMCBOOTCOMMAND
122 /* Miscellaneous configurable options */
124 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
126 /* Physical Memory Map */
127 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
129 #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* 256M */
131 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
132 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
133 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
135 #define CONFIG_SYS_INIT_SP_OFFSET \
136 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
137 #define CONFIG_SYS_INIT_SP_ADDR \
138 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
140 /* environment organization */
142 #define CONFIG_SYS_FSL_USDHC_NUM 3
145 #define CONFIG_HIDE_LOGO_VERSION
146 #define CONFIG_IMX_HDMI
147 #define CONFIG_IMX_VIDEO_SKIP
149 #define CONFIG_IMX6_PWM_PER_CLK 66000000
151 #define CONFIG_PCI_SCAN_SHOW
152 #define CONFIG_PCIE_IMX
153 #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(1, 5)
155 #endif /* __GE_BX50V3_CONFIG_H */