blob: 768f4ebcbb8d639d14dfc5d8ab624fc4b5ad4285 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Siddarth Gore16b76702010-03-18 20:25:40 +05302/*
Gerald Kerma361b3d82014-12-19 08:13:09 +01003 * (C) Copyright 2009-2014
4 * Gerald Kerma <dreagle@doukki.net>
Siddarth Gore16b76702010-03-18 20:25:40 +05305 * Marvell Semiconductor <www.marvell.com>
6 * Written-by: Siddarth Gore <gores@marvell.com>
Siddarth Gore16b76702010-03-18 20:25:40 +05307 */
8
9#ifndef _CONFIG_GURUPLUG_H
10#define _CONFIG_GURUPLUG_H
11
12/*
Siddarth Gore16b76702010-03-18 20:25:40 +053013 * High Level Configuration Options (easy to change)
14 */
Siddarth Gore16b76702010-03-18 20:25:40 +053015#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
Siddarth Gore16b76702010-03-18 20:25:40 +053016
17/*
Quentin Armitageea944002015-10-28 00:47:18 +000018 * Standard filesystems
19 */
Chris Packhame85f4902018-05-26 22:32:29 +120020#define CONFIG_BZIP2
Quentin Armitageea944002015-10-28 00:47:18 +000021
22/*
Quentin Armitage38c0e862015-10-28 00:47:21 +000023 * mv-plug-common.h should be defined after CMD configs since it used them
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053024 * to enable certain macros
Siddarth Gore16b76702010-03-18 20:25:40 +053025 */
Quentin Armitage38c0e862015-10-28 00:47:21 +000026#include "mv-plug-common.h"
Siddarth Gore16b76702010-03-18 20:25:40 +053027
28/*
29 * Environment variables configurations
30 */
Siddarth Gore16b76702010-03-18 20:25:40 +053031/*
32 * max 4k env size is enough, but in case of nand
33 * it has to be rounded to sector size
34 */
Chris Packhamd4899b02018-06-04 19:51:50 +120035/*
36 * Environment is right behind U-Boot in flash. Make sure U-Boot
37 * doesn't grow into the environment area.
38 */
39#define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
Siddarth Gore16b76702010-03-18 20:25:40 +053040
41/*
42 * Default environment variables
43 */
Gerald Kerma361b3d82014-12-19 08:13:09 +010044#define CONFIG_BOOTCOMMAND \
45 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
46 "ubi part root; " \
47 "ubifsmount ubi:rootfs; " \
48 "ubifsload 0x800000 ${kernel}; " \
49 "ubifsload 0x700000 ${fdt}; " \
50 "ubifsumount; " \
51 "fdt addr 0x700000; fdt resize; fdt chosen; " \
52 "bootz 0x800000 - 0x700000"
Siddarth Gore16b76702010-03-18 20:25:40 +053053
Gerald Kerma361b3d82014-12-19 08:13:09 +010054#define CONFIG_EXTRA_ENV_SETTINGS \
55 "console=console=ttyS0,115200\0" \
56 "mtdids=nand0=orion_nand\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040057 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Gerald Kerma361b3d82014-12-19 08:13:09 +010058 "kernel=/boot/zImage\0" \
59 "fdt=/boot/guruplug-server-plus.dtb\0" \
60 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
61
Siddarth Gore16b76702010-03-18 20:25:40 +053062/*
Siddarth Gore16b76702010-03-18 20:25:40 +053063 * Ethernet Driver configuration
64 */
65#ifdef CONFIG_CMD_NET
Albert Aribaudd44265a2010-07-12 22:24:28 +020066#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
Siddarth Gore16b76702010-03-18 20:25:40 +053067#define CONFIG_PHY_BASE_ADR 0
Siddarth Gore16b76702010-03-18 20:25:40 +053068#endif /* CONFIG_CMD_NET */
69
70/*
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053071 * SATA Driver configuration
Siddarth Gore16b76702010-03-18 20:25:40 +053072 */
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053073#ifdef CONFIG_MVSATA_IDE
74#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
75#endif /*CONFIG_MVSATA_IDE*/
Siddarth Gore16b76702010-03-18 20:25:40 +053076
Siddarth Gore16b76702010-03-18 20:25:40 +053077#endif /* _CONFIG_GURUPLUG_H */