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 */
16 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
21 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
24 * Compression configuration
29 * Commands configuration
33 * mv-common.h should be defined after CMD configs since it used them
34 * to enable certain macros
36 #include "mv-common.h"
39 * Environment variables configuration
41 #ifdef CONFIG_CMD_NAND
42 #define CONFIG_ENV_SECT_SIZE 0x20000
44 #define CONFIG_ENV_SIZE 0x20000
45 #define CONFIG_ENV_OFFSET 0x80000
48 * Default environment variables
50 #define CONFIG_BOOTCOMMAND \
51 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
53 "ubifsmount ubi:rootfs; " \
54 "ubifsload 0x800000 ${kernel}; " \
57 #define CONFIG_EXTRA_ENV_SETTINGS \
58 "console=console=ttyS0,115200\0" \
59 "mtdids=nand0=orion_nand\0" \
60 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
61 "kernel=/boot/uImage\0" \
62 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
65 * Ethernet driver configuration
68 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
69 #define CONFIG_PHY_BASE_ADR 11
70 #undef CONFIG_RESET_PHY_R
71 #endif /* CONFIG_CMD_NET */
77 #endif /* _CONFIG_ICONNECT_H */