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
|
|
|
|
|
2015-04-09 16:50:58 +00:00
|
|
|
/*
|
|
|
|
* This board might be of different versions so handle it
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOARD_TYPES
|
|
|
|
|
2014-02-04 08:56:19 +00:00
|
|
|
/*
|
|
|
|
* NAND Flash configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_NAND_BASE (ARC_FPGA_PERIPHERAL_BASE + 0x16000)
|
|
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* UART configuration
|
|
|
|
*/
|
2015-11-10 16:16:25 +00:00
|
|
|
#define CONFIG_DW_SERIAL
|
2014-02-04 08:56:19 +00:00
|
|
|
#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
|
|
|
|
*/
|
|
|
|
#define CONFIG_MII
|
|
|
|
|
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
|
|
|
|
*/
|
2017-06-01 14:09:38 +00:00
|
|
|
#define CONFIG_ENV_SIZE SZ_16K
|
2014-02-04 08:56:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Environment configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOOTFILE "uImage"
|
|
|
|
#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Console configuration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Misc utility configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOUNCE_BUFFER
|
|
|
|
|
2016-08-04 12:00:35 +00:00
|
|
|
#endif /* _CONFIG_AXS10X_H_ */
|