2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2010-09-30 17:23:43 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Marvell Semiconductor <www.marvell.com>
|
|
|
|
* Written-by: Prafulla Wadaskar <prafulla@marvell.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file contains Marvell Board Specific common defincations.
|
|
|
|
* This file should be included in board config header file.
|
|
|
|
*
|
|
|
|
* It supports common definations for Kirkwood platform
|
|
|
|
* TBD: support for Orion5X platforms
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MV_COMMON_H
|
|
|
|
#define _MV_COMMON_H
|
|
|
|
|
2020-05-10 17:40:09 +00:00
|
|
|
#include <linux/stringify.h>
|
|
|
|
|
2010-09-30 17:23:43 +00:00
|
|
|
/*
|
|
|
|
* High Level Configuration Options (easy to change)
|
|
|
|
*/
|
|
|
|
|
2010-12-07 15:28:35 +00:00
|
|
|
/*
|
|
|
|
* Custom CONFIG_SYS_TEXT_BASE can be done in <board>.h
|
|
|
|
*/
|
|
|
|
|
2010-09-30 17:27:02 +00:00
|
|
|
/* additions for new ARM relocation support */
|
2010-12-07 15:28:35 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x00000000
|
2010-09-30 17:27:02 +00:00
|
|
|
|
2010-09-30 17:23:43 +00:00
|
|
|
/*
|
|
|
|
* NS16550 Configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_NS16550_SERIAL
|
|
|
|
#define CONFIG_SYS_NS16550_CLK CONFIG_SYS_TCLK
|
2015-09-02 06:41:41 +00:00
|
|
|
#if !defined(CONFIG_DM_SERIAL)
|
|
|
|
#define CONFIG_SYS_NS16550_REG_SIZE (-4)
|
2010-12-07 15:28:35 +00:00
|
|
|
#define CONFIG_SYS_NS16550_COM1 MV_UART_CONSOLE_BASE
|
2015-09-02 06:41:41 +00:00
|
|
|
#endif
|
2010-09-30 17:23:43 +00:00
|
|
|
|
|
|
|
/* auto boot */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For booting Linux, the board info and command line data
|
|
|
|
* have to be in the first 8 MB of memory, since this is
|
|
|
|
* the maximum mapped by the Linux kernel during initialization.
|
|
|
|
*/
|
|
|
|
#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
|
|
|
|
#define CONFIG_INITRD_TAG 1 /* enable INITRD tag */
|
|
|
|
#define CONFIG_SETUP_MEMORY_TAGS 1 /* enable memory tag */
|
|
|
|
|
|
|
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buff Size */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size of malloc() pool
|
|
|
|
*/
|
2012-10-29 13:58:55 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (1024 * 1024 * 4) /* 4MiB for malloc() */
|
2010-09-30 17:23:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Other required minimal configurations
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x00800000 /* default load adr- 8M */
|
|
|
|
#define CONFIG_SYS_RESET_ADDRESS 0xffff0000 /* Rst Vector Adr */
|
2015-07-23 08:26:11 +00:00
|
|
|
#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
|
2010-09-30 17:23:43 +00:00
|
|
|
|
2011-05-03 15:47:34 +00:00
|
|
|
/* ====> Include platform Common Definitions */
|
|
|
|
#include <asm/arch/config.h>
|
|
|
|
|
|
|
|
/* ====> Include driver Common Definitions */
|
2010-09-30 17:23:43 +00:00
|
|
|
/*
|
2011-02-09 12:36:58 +00:00
|
|
|
* Common NAND configuration
|
2010-09-30 17:23:43 +00:00
|
|
|
*/
|
2011-02-09 12:36:58 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND
|
|
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
|
|
#endif
|
|
|
|
|
2010-09-30 17:23:43 +00:00
|
|
|
#endif /* _MV_COMMON_H */
|