Merge https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / include / configs / sc_sps_1.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * SchulerControl GmbH, SC_SPS_1 module config
4  *
5  * Copyright (C) 2012 Marek Vasut <marex@denx.de>
6  * on behalf of DENX Software Engineering GmbH
7  */
8 #ifndef __CONFIGS_SC_SPS_1_H__
9 #define __CONFIGS_SC_SPS_1_H__
10
11 /* System configuration */
12 #define CONFIG_MACH_TYPE        MACH_TYPE_SC_SPS_1
13
14 /* U-Boot Commands */
15
16 /* Memory configuration */
17 #define PHYS_SDRAM_1                    0x40000000      /* Base address */
18 #define PHYS_SDRAM_1_SIZE               0x40000000      /* Max 1 GB RAM */
19 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
20
21 /* Environment */
22
23 /* Environment is in MMC */
24
25 /* FEC Ethernet on SoC */
26 #ifdef CONFIG_CMD_NET
27 #define CONFIG_FEC_MXC
28 #endif
29
30 /* USB */
31 #ifdef CONFIG_CMD_USB
32 #define CONFIG_EHCI_MXS_PORT0
33 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
34 #endif
35
36 /* Booting Linux */
37 #define CONFIG_BOOTFILE         "uImage"
38 #define CONFIG_BOOTCOMMAND      "bootm"
39 #define CONFIG_LOADADDR         0x42000000
40 #define CONFIG_SYS_LOAD_ADDR    CONFIG_LOADADDR
41
42 /* Extra Environment */
43 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
44         "update_sd_firmware_filename=u-boot.sd\0"                       \
45         "update_sd_firmware="           /* Update the SD firmware partition */ \
46                 "if mmc rescan ; then "                                 \
47                 "if tftp ${update_sd_firmware_filename} ; then "        \
48                 "setexpr fw_sz ${filesize} / 0x200 ; "  /* SD block size */ \
49                 "setexpr fw_sz ${fw_sz} + 1 ; "                         \
50                 "mmc write ${loadaddr} 0x800 ${fw_sz} ; "               \
51                 "fi ; "                                                 \
52                 "fi\0"
53
54 /* The rest of the configuration is shared */
55 #include <configs/mxs.h>
56
57 #endif /* __CONFIGS_SC_SPS_1_H__ */