2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2009-07-16 15:28:00 +00:00
|
|
|
/*
|
2014-09-07 16:01:21 +00:00
|
|
|
* (C) Copyright 2009-2014
|
|
|
|
* Gerald Kerma <dreagle@doukki.net>
|
2009-07-16 15:28:00 +00:00
|
|
|
* Marvell Semiconductor <www.marvell.com>
|
|
|
|
* Written-by: Prafulla Wadaskar <prafulla@marvell.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONFIG_SHEEVAPLUG_H
|
|
|
|
#define _CONFIG_SHEEVAPLUG_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options (easy to change)
|
|
|
|
*/
|
|
|
|
#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
|
2014-12-17 14:02:48 +00:00
|
|
|
|
2009-07-16 15:28:00 +00:00
|
|
|
/*
|
|
|
|
* Commands configuration
|
|
|
|
*/
|
2014-12-17 14:02:44 +00:00
|
|
|
|
2015-10-28 00:47:18 +00:00
|
|
|
/*
|
|
|
|
* Standard filesystems
|
|
|
|
*/
|
2018-05-26 10:32:29 +00:00
|
|
|
#define CONFIG_BZIP2
|
2015-10-28 00:47:18 +00:00
|
|
|
|
|
|
|
/*
|
2015-10-28 00:47:21 +00:00
|
|
|
* mv-plug-common.h should be defined after CMD configs since it used them
|
2010-09-30 17:23:43 +00:00
|
|
|
* to enable certain macros
|
2009-07-16 15:28:00 +00:00
|
|
|
*/
|
2015-10-28 00:47:21 +00:00
|
|
|
#include "mv-plug-common.h"
|
2009-07-16 15:28:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Environment variables configurations
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* max 4k env size is enough, but in case of nand
|
|
|
|
* it has to be rounded to sector size
|
|
|
|
*/
|
2018-06-04 07:51:49 +00:00
|
|
|
/*
|
|
|
|
* Environment is right behind U-Boot in flash. Make sure U-Boot
|
|
|
|
* doesn't grow into the environment area.
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
|
2009-07-16 15:28:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Default environment variables
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
|
|
|
|
"setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
|
2016-01-17 17:23:44 +00:00
|
|
|
"bootm 0x6400000;"
|
2009-07-16 15:28:00 +00:00
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
|
2017-10-22 21:55:07 +00:00
|
|
|
"=ttyS0,115200 mtdparts="CONFIG_MTDPARTS_DEFAULT \
|
2016-01-17 17:23:45 +00:00
|
|
|
"x_bootcmd_kernel=nand read 0x6400000 0x100000 0x400000\0" \
|
2009-07-16 15:28:00 +00:00
|
|
|
"x_bootcmd_usb=usb start\0" \
|
|
|
|
"x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ethernet Driver configuration
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_CMD_NET
|
2010-07-12 20:24:28 +00:00
|
|
|
#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
|
2009-07-16 15:28:00 +00:00
|
|
|
#define CONFIG_PHY_BASE_ADR 0
|
|
|
|
#endif /* CONFIG_CMD_NET */
|
|
|
|
|
2014-07-25 19:07:30 +00:00
|
|
|
/*
|
|
|
|
* SDIO/MMC Card Configuration
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_CMD_MMC
|
|
|
|
#define CONFIG_MVEBU_MMC
|
|
|
|
#define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
|
|
|
|
#endif /* CONFIG_CMD_MMC */
|
|
|
|
|
2014-09-07 16:01:21 +00:00
|
|
|
/*
|
|
|
|
* SATA driver configuration
|
|
|
|
*/
|
2017-05-17 09:25:30 +00:00
|
|
|
#ifdef CONFIG_IDE
|
2014-09-07 16:01:21 +00:00
|
|
|
#define __io
|
|
|
|
#define CONFIG_IDE_PREINIT
|
|
|
|
#define CONFIG_MVSATA_IDE_USE_PORT0
|
|
|
|
#define CONFIG_MVSATA_IDE_USE_PORT1
|
|
|
|
#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
|
|
|
|
#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
|
2017-05-17 09:25:30 +00:00
|
|
|
#endif /* CONFIG_IDE */
|
2014-09-07 16:01:21 +00:00
|
|
|
|
2009-07-16 15:28:00 +00:00
|
|
|
#endif /* _CONFIG_SHEEVAPLUG_H */
|