]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/sc_sps_1.h
Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig
[people/ms/u-boot.git] / include / configs / sc_sps_1.h
1 /*
2 * SchulerControl GmbH, SC_SPS_1 module config
3 *
4 * Copyright (C) 2012 Marek Vasut <marex@denx.de>
5 * on behalf of DENX Software Engineering GmbH
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9 #ifndef __CONFIGS_SC_SPS_1_H__
10 #define __CONFIGS_SC_SPS_1_H__
11
12 /* System configuration */
13 #define CONFIG_MX28 /* i.MX28 SoC */
14 #define CONFIG_MACH_TYPE MACH_TYPE_SC_SPS_1
15
16 /* U-Boot Commands */
17
18 /* Memory configuration */
19 #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
20 #define PHYS_SDRAM_1 0x40000000 /* Base address */
21 #define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
22 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
23
24 /* Environment */
25 #define CONFIG_ENV_SIZE (16 * 1024)
26
27 /* Environment is in MMC */
28 #if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC)
29 #define CONFIG_ENV_OFFSET (256 * 1024)
30 #define CONFIG_SYS_MMC_ENV_DEV 0
31 #endif
32
33 /* FEC Ethernet on SoC */
34 #ifdef CONFIG_CMD_NET
35 #define CONFIG_FEC_MXC
36 #define CONFIG_PHYLIB
37 #define CONFIG_PHY_SMSC
38 #endif
39
40 /* USB */
41 #ifdef CONFIG_CMD_USB
42 #define CONFIG_EHCI_MXS_PORT0
43 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
44 #endif
45
46 /* Booting Linux */
47 #define CONFIG_BOOTFILE "uImage"
48 #define CONFIG_BOOTARGS "console=ttyAMA0,115200"
49 #define CONFIG_BOOTCOMMAND "bootm"
50 #define CONFIG_LOADADDR 0x42000000
51 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
52
53 /* Extra Environment */
54 #define CONFIG_EXTRA_ENV_SETTINGS \
55 "update_sd_firmware_filename=u-boot.sd\0" \
56 "update_sd_firmware=" /* Update the SD firmware partition */ \
57 "if mmc rescan ; then " \
58 "if tftp ${update_sd_firmware_filename} ; then " \
59 "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
60 "setexpr fw_sz ${fw_sz} + 1 ; " \
61 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
62 "fi ; " \
63 "fi\0"
64
65 /* The rest of the configuration is shared */
66 #include <configs/mxs.h>
67
68 #endif /* __CONFIGS_SC_SPS_1_H__ */