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
|
|
|
|
*/
|
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_DDR_SDRAM_BASE 0x80000000
|
|
|
|
#define CFG_SYS_SDRAM_BASE CFG_SYS_DDR_SDRAM_BASE
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_SIZE SZ_512M
|
2014-02-04 08:56:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* UART configuration
|
|
|
|
*/
|
2022-11-16 18:10:28 +00:00
|
|
|
#define CFG_SYS_NS16550_CLK 33333333
|
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
|
|
|
|
*/
|
|
|
|
|
2014-02-04 08:56:19 +00:00
|
|
|
/*
|
|
|
|
* Environment settings
|
|
|
|
*/
|
2022-12-04 15:03:50 +00:00
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
2018-06-27 12:20:48 +00:00
|
|
|
"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
|
|
|
|
|
|
|
/*
|
|
|
|
* Console configuration
|
|
|
|
*/
|
|
|
|
|
2016-08-04 12:00:35 +00:00
|
|
|
#endif /* _CONFIG_AXS10X_H_ */
|