blob: d5655e4ada69cbccf4d5f6ba5274cc3a9ed5185d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Siddarth Gore11b10b02010-03-18 20:25:40 +05302/*
Gerald Kerma4658f452014-12-19 08:13:09 +01003 * (C) Copyright 2009-2014
4 * Gerald Kerma <dreagle@doukki.net>
Siddarth Gore11b10b02010-03-18 20:25:40 +05305 * Marvell Semiconductor <www.marvell.com>
6 * Written-by: Siddarth Gore <gores@marvell.com>
Siddarth Gore11b10b02010-03-18 20:25:40 +05307 */
8
9#ifndef _CONFIG_GURUPLUG_H
10#define _CONFIG_GURUPLUG_H
11
Tom Rinib7b337b2021-12-17 18:08:44 -050012#include "mv-common.h"
Siddarth Gore11b10b02010-03-18 20:25:40 +053013
14/*
15 * Environment variables configurations
16 */
Siddarth Gore11b10b02010-03-18 20:25:40 +053017/*
18 * max 4k env size is enough, but in case of nand
19 * it has to be rounded to sector size
20 */
Siddarth Gore11b10b02010-03-18 20:25:40 +053021
22/*
23 * Default environment variables
24 */
Gerald Kerma4658f452014-12-19 08:13:09 +010025
Gerald Kerma4658f452014-12-19 08:13:09 +010026#define CONFIG_EXTRA_ENV_SETTINGS \
27 "console=console=ttyS0,115200\0" \
28 "mtdids=nand0=orion_nand\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040029 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Gerald Kerma4658f452014-12-19 08:13:09 +010030 "kernel=/boot/zImage\0" \
31 "fdt=/boot/guruplug-server-plus.dtb\0" \
32 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
Siddarth Gore11b10b02010-03-18 20:25:40 +053033
Siddarth Gore11b10b02010-03-18 20:25:40 +053034/*
Siddarth Gore11b10b02010-03-18 20:25:40 +053035 * Ethernet Driver configuration
36 */
37#ifdef CONFIG_CMD_NET
Albert Aribaude91d7d32010-07-12 22:24:28 +020038#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
Siddarth Gore11b10b02010-03-18 20:25:40 +053039#define CONFIG_PHY_BASE_ADR 0
Siddarth Gore11b10b02010-03-18 20:25:40 +053040#endif /* CONFIG_CMD_NET */
41
Siddarth Gore11b10b02010-03-18 20:25:40 +053042#endif /* _CONFIG_GURUPLUG_H */