2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2010-09-30 22:53:43 +05:30
|
|
|
/*
|
|
|
|
* (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 11:40:09 -06:00
|
|
|
#include <linux/stringify.h>
|
|
|
|
|
2010-09-30 22:53:43 +05:30
|
|
|
/*
|
|
|
|
* High Level Configuration Options (easy to change)
|
|
|
|
*/
|
|
|
|
|
2010-12-07 20:58:35 +05:30
|
|
|
/*
|
2022-10-20 18:22:39 -06:00
|
|
|
* Custom CONFIG_TEXT_BASE can be done in <board>.h
|
2010-12-07 20:58:35 +05:30
|
|
|
*/
|
|
|
|
|
2010-09-30 22:57:02 +05:30
|
|
|
/* additions for new ARM relocation support */
|
2022-11-16 13:10:37 -05:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x00000000
|
2010-09-30 22:57:02 +05:30
|
|
|
|
2010-09-30 22:53:43 +05:30
|
|
|
/*
|
|
|
|
* NS16550 Configuration
|
|
|
|
*/
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_NS16550_CLK CFG_SYS_TCLK
|
2022-12-04 10:14:13 -05:00
|
|
|
#if !CONFIG_IS_ENABLED(DM_SERIAL)
|
2022-11-16 13:10:28 -05:00
|
|
|
#define CFG_SYS_NS16550_COM1 MV_UART_CONSOLE_BASE
|
2015-09-02 08:41:41 +02:00
|
|
|
#endif
|
2010-09-30 22:53:43 +05:30
|
|
|
|
2022-11-16 13:10:41 -05:00
|
|
|
#if defined(CONFIG_ARMADA_38X) && !defined(CFG_SYS_BAUDRATE_TABLE)
|
|
|
|
#define CFG_SYS_BAUDRATE_TABLE { 300, 600, 1200, 1800, 2400, 4800, \
|
2021-08-11 10:08:04 +02:00
|
|
|
9600, 19200, 38400, 57600, 115200, \
|
|
|
|
230400, 460800, 500000, 576000, \
|
|
|
|
921600, 1000000, 1152000, 1500000, \
|
|
|
|
2000000, 2500000, 3125000, 4000000, \
|
2021-09-02 12:00:51 +02:00
|
|
|
5200000 }
|
2021-08-11 10:08:04 +02:00
|
|
|
#endif
|
|
|
|
|
2010-09-30 22:53:43 +05:30
|
|
|
/* auto boot */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Other required minimal configurations
|
|
|
|
*/
|
|
|
|
|
2011-05-03 21:17:34 +05:30
|
|
|
/* ====> Include platform Common Definitions */
|
|
|
|
#include <asm/arch/config.h>
|
|
|
|
|
|
|
|
/* ====> Include driver Common Definitions */
|
2010-09-30 22:53:43 +05:30
|
|
|
/*
|
2011-02-09 18:06:58 +05:30
|
|
|
* Common NAND configuration
|
2010-09-30 22:53:43 +05:30
|
|
|
*/
|
2011-02-09 18:06:58 +05:30
|
|
|
|
2010-09-30 22:53:43 +05:30
|
|
|
#endif /* _MV_COMMON_H */
|