2 * Copyright (C) 2013 Marek Vasut <marex@denx.de>
4 * SPDX-License-Identifier: GPL-2.0+
6 #ifndef __CONFIGS_BG0900_H__
7 #define __CONFIGS_BG0900_H__
9 /* Memory configuration */
10 #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
11 #define PHYS_SDRAM_1 0x40000000 /* Base address */
12 #define PHYS_SDRAM_1_SIZE 0x10000000 /* Max 256 MB RAM */
13 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
16 #define CONFIG_ENV_SIZE (16 * 1024)
17 #define CONFIG_ENV_OVERWRITE
19 /* FEC Ethernet on SoC */
21 #define CONFIG_FEC_MXC
26 #define CONFIG_DEFAULT_SPI_BUS 2
27 #define CONFIG_DEFAULT_SPI_MODE SPI_MODE_0
31 #define CONFIG_SF_DEFAULT_BUS 2
32 #define CONFIG_SF_DEFAULT_CS 0
33 #define CONFIG_SF_DEFAULT_SPEED 40000000
34 #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
36 #define CONFIG_ENV_SPI_BUS 2
37 #define CONFIG_ENV_SPI_CS 0
38 #define CONFIG_ENV_SPI_MAX_HZ 40000000
39 #define CONFIG_ENV_SPI_MODE SPI_MODE_0
45 #define CONFIG_BOOTFILE "uImage"
46 #define CONFIG_BOOTCOMMAND "bootm"
47 #define CONFIG_LOADADDR 0x42000000
48 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
50 /* Extra Environment */
51 #define CONFIG_EXTRA_ENV_SETTINGS \
52 "update_spi_firmware_filename=u-boot.sb\0" \
53 "update_spi_firmware_maxsz=0x80000\0" \
54 "update_spi_firmware=" /* Update the SPI flash firmware */ \
55 "if sf probe 2:0 ; then " \
56 "if tftp ${update_spi_firmware_filename} ; then " \
57 "sf erase 0x0 +${filesize} ; " \
58 "sf write ${loadaddr} 0x0 ${filesize} ; " \
62 /* The rest of the configuration is shared */
63 #include <configs/mxs.h>
65 #endif /* __CONFIGS_BG0900_H__ */