1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Net Insight <www.netinsight.net>
5 * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7 * Based on sheevaplug.h:
9 * Marvell Semiconductor <www.marvell.com>
10 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
13 #ifndef _CONFIG_OPENRD_H
14 #define _CONFIG_OPENRD_H
16 #include "mv-common.h"
19 * Environment variables configurations
22 * max 4k env size is enough, but in case of nand
23 * it has to be rounded to sector size
27 * Default environment variables
30 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console=ttyS0,115200 " \
31 CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
32 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
33 "x_bootcmd_usb=usb start\0" \
34 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0"
37 * Ethernet Driver configuration
40 # ifdef CONFIG_BOARD_IS_OPENRD_BASE
41 # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
43 # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
45 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
46 # define CONFIG_PHY_BASE_ADR 0x0
47 # define PHY_NO "88E1121"
49 # define CONFIG_PHY_BASE_ADR 0x8
50 # define PHY_NO "88E1116"
52 #endif /* CONFIG_CMD_NET */
55 * SATA Driver configuration
58 #endif /* _CONFIG_OPENRD_BASE_H */