]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/sc_sps_1.h
net: Move the CMD_NET config to defconfigs
[karo-tx-uboot.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 MACH_TYPE_SC_SPS_1      4172
14 #define CONFIG_MACH_TYPE        MACH_TYPE_SC_SPS_1
15
16 /* U-Boot Commands */
17 #define CONFIG_SYS_NO_FLASH
18 #include <config_cmd_default.h>
19 #define CONFIG_DISPLAY_CPUINFO
20 #define CONFIG_DOS_PARTITION
21
22 #define CONFIG_CMD_CACHE
23 #define CONFIG_CMD_DHCP
24 #define CONFIG_CMD_EXT2
25 #define CONFIG_CMD_FAT
26 #define CONFIG_CMD_GPIO
27 #define CONFIG_CMD_MII
28 #define CONFIG_CMD_MMC
29 #define CONFIG_CMD_NFS
30 #define CONFIG_CMD_PING
31 #define CONFIG_CMD_USB
32
33 /* Memory configuration */
34 #define CONFIG_NR_DRAM_BANKS            1               /* 1 bank of DRAM */
35 #define PHYS_SDRAM_1                    0x40000000      /* Base address */
36 #define PHYS_SDRAM_1_SIZE               0x40000000      /* Max 1 GB RAM */
37 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
38
39 /* Environment */
40 #define CONFIG_ENV_SIZE                 (16 * 1024)
41 #define CONFIG_ENV_IS_IN_MMC
42
43 /* Environment is in MMC */
44 #if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC)
45 #define CONFIG_ENV_OFFSET               (256 * 1024)
46 #define CONFIG_SYS_MMC_ENV_DEV          0
47 #else
48 #define CONFIG_ENV_IS_NOWHERE
49 #endif
50
51 /* FEC Ethernet on SoC */
52 #ifdef CONFIG_CMD_NET
53 #define CONFIG_FEC_MXC
54 #define CONFIG_PHYLIB
55 #define CONFIG_PHY_SMSC
56 #endif
57
58 /* USB */
59 #ifdef CONFIG_CMD_USB
60 #define CONFIG_EHCI_MXS_PORT0
61 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
62 #define CONFIG_USB_STORAGE
63 #endif
64
65 /* Booting Linux */
66 #define CONFIG_BOOTDELAY        3
67 #define CONFIG_BOOTFILE         "uImage"
68 #define CONFIG_BOOTARGS         "console=ttyAMA0,115200"
69 #define CONFIG_BOOTCOMMAND      "bootm"
70 #define CONFIG_LOADADDR         0x42000000
71 #define CONFIG_SYS_LOAD_ADDR    CONFIG_LOADADDR
72
73 /* Extra Environment */
74 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
75         "update_sd_firmware_filename=u-boot.sd\0"                       \
76         "update_sd_firmware="           /* Update the SD firmware partition */ \
77                 "if mmc rescan ; then "                                 \
78                 "if tftp ${update_sd_firmware_filename} ; then "        \
79                 "setexpr fw_sz ${filesize} / 0x200 ; "  /* SD block size */ \
80                 "setexpr fw_sz ${fw_sz} + 1 ; "                         \
81                 "mmc write ${loadaddr} 0x800 ${fw_sz} ; "               \
82                 "fi ; "                                                 \
83                 "fi\0"
84
85 /* The rest of the configuration is shared */
86 #include <configs/mxs.h>
87
88 #endif /* __CONFIGS_SC_SPS_1_H__ */