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 #include "mx6_common.h"
18 #include <linux/sizes.h>
21 #ifdef CONFIG_CMD_SATA
22 #define CONFIG_DWC_AHSATA_PORT_ID 0
23 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
30 "setenv ipaddr 172.16.2.10; setenv serverip 172.16.2.20; " \
31 "setenv gatewayip 172.16.2.20; setenv nfsserver 172.16.2.20; " \
32 "setenv netmask 255.255.255.0; setenv ethaddr ca:fe:de:ca:f0:11; " \
33 "setenv bootargs root=/dev/nfs nfsroot=${nfsserver}:/srv/nfs/,v3,tcp rw rootwait" \
34 "setenv bootargs $bootargs ip=${ipaddr}:${nfsserver}:${gatewayip}:${netmask}::eth0:off " \
35 "setenv bootargs $bootargs cma=128M bootcause=${bootcause} ${videoargs} " \
36 "setenv bootargs $bootargs systemd.mask=helix-network-defaults.service " \
37 "setenv bootargs $bootargs watchdog.handle_boot_enabled=1\0" \
39 "run setnetworkboot; " \
40 "nfs ${loadaddr} /srv/nfs/fitImage; " \
41 "bootm ${loadaddr}\0" \
43 #define NETWORKBOOTCOMMAND \
51 #define CONFIG_EXTRA_ENV_SETTINGS \
53 "image=/boot/fitImage\0" \
56 "rootdev=mmcblk0p\0" \
57 "quiet=quiet loglevel=0\0" \
58 "setargs=setenv bootargs root=/dev/${rootdev}${partnum} " \
59 "ro rootwait cma=128M " \
60 "bootcause=${bootcause} " \
64 "if ext2load ${dev} ${devnum}:5 0x7000A000 /boot/console; " \
65 "then setenv quiet; fi\0" \
67 "test -e ${dev} ${devnum}:${partnum} /boot/bootcause/firstboot\0" \
69 "setexpr partnum 3 - ${partnum}\0" \
73 "lcdputs \"Monitor failed to start. " \
74 "Try again, or contact GE Service for support.\"; " \
76 "while true; do sleep 1; done; \0" \
79 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
80 "run hasfirstboot || setenv partnum 0; " \
81 "if test ${partnum} != 0; then " \
82 "run swappartitions loadimage doboot; " \
86 "ext2load ${dev} ${devnum}:${partnum} ${loadaddr} ${image}\0" \
88 "echo Booting from ${dev}:${devnum}:${partnum} ...; " \
90 "bootm ${loadaddr}\0" \
92 "setenv partnum 1; run hasfirstboot || setenv partnum 2; " \
93 "run loadimage || run swappartitions && run loadimage || " \
94 "setenv partnum 0 && echo MISSING IMAGE;" \
99 /* Physical Memory Map */
100 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
102 #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* 256M */
104 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
105 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
106 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
108 #define CONFIG_SYS_INIT_SP_OFFSET \
109 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
110 #define CONFIG_SYS_INIT_SP_ADDR \
111 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
113 /* environment organization */
115 #define CONFIG_SYS_FSL_USDHC_NUM 3
118 #define CONFIG_HIDE_LOGO_VERSION
119 #define CONFIG_IMX_HDMI
120 #define CONFIG_IMX_VIDEO_SKIP
122 #define CONFIG_IMX6_PWM_PER_CLK 66000000
124 #define CONFIG_PCI_SCAN_SHOW
125 #define CONFIG_PCIE_IMX
127 #endif /* __GE_BX50V3_CONFIG_H */