1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2009-2012
4 * Wojciech Dubowik <wojciech.dubowik@neratec.com>
5 * Luka Perkov <luka@openwrt.org>
8 #ifndef _CONFIG_ICONNECT_H
9 #define _CONFIG_ICONNECT_H
12 * High level configuration options
14 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
15 #define CONFIG_KW88F6281 /* SOC Name */
17 #include "mv-common.h"
20 * Environment variables configuration
24 * Default environment variables
26 #define CONFIG_BOOTCOMMAND \
27 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
29 "ubifsmount ubi:rootfs; " \
30 "ubifsload 0x800000 ${kernel}; " \
33 #define CONFIG_EXTRA_ENV_SETTINGS \
34 "console=console=ttyS0,115200\0" \
35 "mtdids=nand0=orion_nand\0" \
36 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
37 "kernel=/boot/uImage\0" \
38 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
41 * Ethernet driver configuration
44 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
45 #define CONFIG_PHY_BASE_ADR 11
46 #undef CONFIG_RESET_PHY_R
47 #endif /* CONFIG_CMD_NET */
53 #endif /* _CONFIG_ICONNECT_H */