1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2013 Marek Vasut <marex@denx.de>
5 #ifndef __CONFIGS_BG0900_H__
6 #define __CONFIGS_BG0900_H__
8 /* Memory configuration */
9 #define PHYS_SDRAM_1 0x40000000 /* Base address */
10 #define PHYS_SDRAM_1_SIZE 0x10000000 /* Max 256 MB RAM */
11 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
15 /* FEC Ethernet on SoC */
17 #define CONFIG_FEC_MXC
21 #define CONFIG_BOOTFILE "uImage"
22 #define CONFIG_BOOTCOMMAND "bootm"
23 #define CONFIG_LOADADDR 0x42000000
24 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
26 /* Extra Environment */
27 #define CONFIG_EXTRA_ENV_SETTINGS \
28 "update_spi_firmware_filename=u-boot.sb\0" \
29 "update_spi_firmware_maxsz=0x80000\0" \
30 "update_spi_firmware=" /* Update the SPI flash firmware */ \
31 "if sf probe 2:0 ; then " \
32 "if tftp ${update_spi_firmware_filename} ; then " \
33 "sf erase 0x0 +${filesize} ; " \
34 "sf write ${loadaddr} 0x0 ${filesize} ; " \
38 /* The rest of the configuration is shared */
39 #include <configs/mxs.h>
41 #endif /* __CONFIGS_BG0900_H__ */