1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2022 Tony Dinh <mibodhi@gmail.com>
4 * (C) Copyright 2011 Jason Cooper <u-boot@lakedaemon.net>
7 * Marvell Semiconductor <www.marvell.com>
8 * Written-by: Siddarth Gore <gores@marvell.com>
11 #ifndef _CONFIG_DREAMPLUG_H
12 #define _CONFIG_DREAMPLUG_H
14 #include "mv-common.h"
17 * Default environment variables
20 #define CONFIG_EXTRA_ENV_SETTINGS \
21 "x_bootcmd_ethernet=ping 192.168.2.1\0" \
22 "x_bootcmd_usb=usb start\0" \
23 "x_bootcmd_kernel=fatload usb 0 0x6400000 uImage\0" \
24 "x_bootargs=console=ttyS0,115200\0" \
25 "x_bootargs_root=root=/dev/sda2 rootdelay=10\0"
28 * Ethernet Driver configuration
30 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
31 #define CONFIG_PHY_BASE_ADR 0
34 * SATA Driver configuration
38 #endif /* _CONFIG_DREAMPLUG_H */