2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-02-04 08:56:19 +00:00
|
|
|
/*
|
2016-08-04 12:00:35 +00:00
|
|
|
* Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved.
|
2014-02-04 08:56:19 +00:00
|
|
|
*/
|
|
|
|
|
2016-08-04 12:00:35 +00:00
|
|
|
#ifndef _CONFIG_AXS10X_H_
|
|
|
|
#define _CONFIG_AXS10X_H_
|
2014-02-04 08:56:19 +00:00
|
|
|
|
2016-08-04 12:00:35 +00:00
|
|
|
#include <linux/sizes.h>
|
2014-02-04 08:56:19 +00:00
|
|
|
/*
|
|
|
|
* CPU configuration
|
|
|
|
*/
|
|
|
|
#define ARC_FPGA_PERIPHERAL_BASE 0xE0000000
|
|
|
|
#define ARC_APB_PERIPHERAL_BASE 0xF0000000
|
|
|
|
#define ARC_DWMMC_BASE (ARC_FPGA_PERIPHERAL_BASE + 0x15000)
|
|
|
|
#define ARC_DWGMAC_BASE (ARC_FPGA_PERIPHERAL_BASE + 0x18000)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Memory configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
|
|
|
|
|
|
|
|
#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
|
2016-08-04 12:00:35 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_SIZE SZ_512M
|
2014-02-04 08:56:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR \
|
|
|
|
(CONFIG_SYS_SDRAM_BASE + 0x1000 - GENERATED_GBL_DATA_SIZE)
|
|
|
|
|
2016-08-04 12:00:35 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN SZ_2M
|
2018-01-19 13:13:51 +00:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN SZ_128M
|
2014-02-04 08:56:19 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x82000000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* UART configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_NS16550_SERIAL
|
2015-11-10 16:16:25 +00:00
|
|
|
#define CONFIG_SYS_NS16550_CLK 33333333
|
2014-02-04 08:56:19 +00:00
|
|
|
#define CONFIG_SYS_NS16550_MEM32
|
2015-11-10 16:16:25 +00:00
|
|
|
|
2014-02-04 08:56:19 +00:00
|
|
|
/*
|
|
|
|
* Ethernet PHY configuration
|
|
|
|
*/
|
|
|
|
|
2015-12-10 13:56:42 +00:00
|
|
|
/*
|
|
|
|
* USB 1.1 configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_USB_OHCI_NEW
|
|
|
|
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
|
|
|
|
|
2014-02-04 08:56:19 +00:00
|
|
|
/*
|
|
|
|
* Environment settings
|
|
|
|
*/
|
2018-06-27 12:20:48 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"upgrade=if mmc rescan && " \
|
|
|
|
"fatload mmc 0:1 ${loadaddr} u-boot-update.img && " \
|
|
|
|
"iminfo ${loadaddr} && source ${loadaddr}; then; else echo " \
|
|
|
|
"\"Fail to upgrade.\n" \
|
|
|
|
"Do you have u-boot-update.img and u-boot.head on first (FAT) SD card partition?\"" \
|
|
|
|
"; fi\0"
|
2014-02-04 08:56:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Environment configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOOTFILE "uImage"
|
|
|
|
#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Console configuration
|
|
|
|
*/
|
|
|
|
|
2016-08-04 12:00:35 +00:00
|
|
|
#endif /* _CONFIG_AXS10X_H_ */
|