1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2009-2014
4 * Gerald Kerma <dreagle@doukki.net>
5 * Marvell Semiconductor <www.marvell.com>
6 * Written-by: Siddarth Gore <gores@marvell.com>
9 #ifndef _CONFIG_GURUPLUG_H
10 #define _CONFIG_GURUPLUG_H
12 #include "mv-common.h"
15 * Environment variables configurations
18 * max 4k env size is enough, but in case of nand
19 * it has to be rounded to sector size
22 * Environment is right behind U-Boot in flash. Make sure U-Boot
23 * doesn't grow into the environment area.
25 #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
28 * Default environment variables
31 #define CONFIG_EXTRA_ENV_SETTINGS \
32 "console=console=ttyS0,115200\0" \
33 "mtdids=nand0=orion_nand\0" \
34 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
35 "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"
40 * Ethernet Driver configuration
43 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
44 #define CONFIG_PHY_BASE_ADR 0
45 #endif /* CONFIG_CMD_NET */
47 #endif /* _CONFIG_GURUPLUG_H */