blob: 25c5a97c69d77b8b89287036fa7c8973d025a9e2 [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 */
Chris Packham47a47822018-06-04 19:51:50 +120021/*
22 * Environment is right behind U-Boot in flash. Make sure U-Boot
23 * doesn't grow into the environment area.
24 */
25#define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
Siddarth Gore11b10b02010-03-18 20:25:40 +053026
27/*
28 * Default environment variables
29 */
Gerald Kerma4658f452014-12-19 08:13:09 +010030
Gerald Kerma4658f452014-12-19 08:13:09 +010031#define CONFIG_EXTRA_ENV_SETTINGS \
32 "console=console=ttyS0,115200\0" \
33 "mtdids=nand0=orion_nand\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040034 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Gerald Kerma4658f452014-12-19 08:13:09 +010035 "kernel=/boot/zImage\0" \
36 "fdt=/boot/guruplug-server-plus.dtb\0" \
37 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
Siddarth Gore11b10b02010-03-18 20:25:40 +053038
Siddarth Gore11b10b02010-03-18 20:25:40 +053039/*
Siddarth Gore11b10b02010-03-18 20:25:40 +053040 * Ethernet Driver configuration
41 */
42#ifdef CONFIG_CMD_NET
Albert Aribaude91d7d32010-07-12 22:24:28 +020043#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
Siddarth Gore11b10b02010-03-18 20:25:40 +053044#define CONFIG_PHY_BASE_ADR 0
Siddarth Gore11b10b02010-03-18 20:25:40 +053045#endif /* CONFIG_CMD_NET */
46
Siddarth Gore11b10b02010-03-18 20:25:40 +053047#endif /* _CONFIG_GURUPLUG_H */