2 * (C) Copyright 2009-2012
3 * Wojciech Dubowik <wojciech.dubowik@neratec.com>
4 * Luka Perkov <luka@openwrt.org>
6 * SPDX-License-Identifier: GPL-2.0+
9 #ifndef _CONFIG_ICONNECT_H
10 #define _CONFIG_ICONNECT_H
13 * Version number information
15 #define CONFIG_IDENT_STRING " Iomega iConnect"
18 * High level configuration options
20 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
21 #define CONFIG_KIRKWOOD /* SOC Family Name */
22 #define CONFIG_KW88F6281 /* SOC Name */
23 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
28 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
31 * Compression configuration
38 * Commands configuration
40 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */
41 #define CONFIG_SYS_MVFS
42 #include <config_cmd_default.h>
43 #define CONFIG_CMD_ENV
44 #define CONFIG_CMD_MII
45 #define CONFIG_CMD_NAND
46 #define CONFIG_CMD_PING
47 #define CONFIG_CMD_USB
50 * mv-common.h should be defined after CMD configs since it used them
51 * to enable certain macros
53 #include "mv-common.h"
55 #undef CONFIG_SYS_PROMPT
56 #define CONFIG_SYS_PROMPT "iconnect => "
59 * Environment variables configuration
61 #ifdef CONFIG_CMD_NAND
62 #define CONFIG_ENV_IS_IN_NAND
63 #define CONFIG_ENV_SECT_SIZE 0x20000
65 #define CONFIG_ENV_IS_NOWHERE
67 #define CONFIG_ENV_SIZE 0x20000
68 #define CONFIG_ENV_OFFSET 0x80000
71 * Default environment variables
73 #define CONFIG_BOOTCOMMAND \
74 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
76 "ubifsmount ubi:rootfs; " \
77 "ubifsload 0x800000 ${kernel}; " \
80 #define CONFIG_MTDPARTS \
81 "mtdparts=orion_nand:" \
82 "0x80000@0x0(uboot)," \
83 "0x20000@0x80000(uboot_env)," \
86 #define CONFIG_EXTRA_ENV_SETTINGS \
87 "console=console=ttyS0,115200\0" \
88 "mtdids=nand0=orion_nand\0" \
89 "mtdparts="CONFIG_MTDPARTS \
90 "kernel=/boot/uImage\0" \
91 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
94 * Ethernet driver configuration
97 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
98 #define CONFIG_PHY_BASE_ADR 11
99 #undef CONFIG_RESET_PHY_R
100 #endif /* CONFIG_CMD_NET */
105 #define CONFIG_CMD_EXT2
106 #define CONFIG_CMD_FAT
107 #define CONFIG_CMD_JFFS2
108 #define CONFIG_CMD_UBI
109 #define CONFIG_CMD_UBIFS
110 #define CONFIG_RBTREE
111 #define CONFIG_MTD_DEVICE
112 #define CONFIG_MTD_PARTITIONS
113 #define CONFIG_CMD_MTDPARTS
115 #endif /* _CONFIG_ICONNECT_H */