blob: cc108920dc6a97f19c1f1a6bc198ecae9e8624f0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marek Vasutebc827e2012-08-07 00:01:52 +00002/*
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
Marek Vasutebc827e2012-08-07 00:01:52 +00007 */
Marek Vasutb51f8ae2013-06-16 15:39:02 +02008#ifndef __CONFIGS_SC_SPS_1_H__
9#define __CONFIGS_SC_SPS_1_H__
Marek Vasutebc827e2012-08-07 00:01:52 +000010
Marek Vasutb51f8ae2013-06-16 15:39:02 +020011/* System configuration */
Marek Vasutebc827e2012-08-07 00:01:52 +000012#define CONFIG_MACH_TYPE MACH_TYPE_SC_SPS_1
13
Marek Vasutb51f8ae2013-06-16 15:39:02 +020014/* U-Boot Commands */
Marek Vasutebc827e2012-08-07 00:01:52 +000015
Marek Vasutb51f8ae2013-06-16 15:39:02 +020016/* Memory configuration */
Marek Vasutebc827e2012-08-07 00:01:52 +000017#define PHYS_SDRAM_1 0x40000000 /* Base address */
18#define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
Marek Vasutebc827e2012-08-07 00:01:52 +000019#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
20
Marek Vasutb51f8ae2013-06-16 15:39:02 +020021/* Environment */
Marek Vasutebc827e2012-08-07 00:01:52 +000022#define CONFIG_ENV_SIZE (16 * 1024)
Marek Vasutb51f8ae2013-06-16 15:39:02 +020023
24/* Environment is in MMC */
25#if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC)
Marek Vasutebc827e2012-08-07 00:01:52 +000026#define CONFIG_ENV_OFFSET (256 * 1024)
27#define CONFIG_SYS_MMC_ENV_DEV 0
Marek Vasutebc827e2012-08-07 00:01:52 +000028#endif
29
Marek Vasutb51f8ae2013-06-16 15:39:02 +020030/* FEC Ethernet on SoC */
Marek Vasutebc827e2012-08-07 00:01:52 +000031#ifdef CONFIG_CMD_NET
Marek Vasutebc827e2012-08-07 00:01:52 +000032#define CONFIG_FEC_MXC
Marek Vasutebc827e2012-08-07 00:01:52 +000033#define CONFIG_PHY_SMSC
34#endif
35
Marek Vasutb51f8ae2013-06-16 15:39:02 +020036/* USB */
Marek Vasutebc827e2012-08-07 00:01:52 +000037#ifdef CONFIG_CMD_USB
Marek Vasut191a2ce2013-02-23 02:43:02 +000038#define CONFIG_EHCI_MXS_PORT0
39#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
Marek Vasutebc827e2012-08-07 00:01:52 +000040#endif
41
Marek Vasutb51f8ae2013-06-16 15:39:02 +020042/* Booting Linux */
Marek Vasutebc827e2012-08-07 00:01:52 +000043#define CONFIG_BOOTFILE "uImage"
Marek Vasutb51f8ae2013-06-16 15:39:02 +020044#define CONFIG_BOOTCOMMAND "bootm"
Marek Vasutebc827e2012-08-07 00:01:52 +000045#define CONFIG_LOADADDR 0x42000000
46#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
47
Marek Vasutb51f8ae2013-06-16 15:39:02 +020048/* Extra Environment */
Marek Vasutebc827e2012-08-07 00:01:52 +000049#define CONFIG_EXTRA_ENV_SETTINGS \
50 "update_sd_firmware_filename=u-boot.sd\0" \
51 "update_sd_firmware=" /* Update the SD firmware partition */ \
52 "if mmc rescan ; then " \
53 "if tftp ${update_sd_firmware_filename} ; then " \
54 "setexpr fw_sz ${filesize} / 0x200 ; " /* SD block size */ \
55 "setexpr fw_sz ${fw_sz} + 1 ; " \
56 "mmc write ${loadaddr} 0x800 ${fw_sz} ; " \
57 "fi ; " \
58 "fi\0"
59
Marek Vasutb51f8ae2013-06-16 15:39:02 +020060/* The rest of the configuration is shared */
61#include <configs/mxs.h>
62
63#endif /* __CONFIGS_SC_SPS_1_H__ */