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 * High level configuration options
15 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
16 #define CONFIG_KW88F6281 /* SOC Name */
17 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
22 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
25 * Compression configuration
31 * Commands configuration
33 #define CONFIG_SYS_MVFS
34 #define CONFIG_CMD_NAND
37 * mv-common.h should be defined after CMD configs since it used them
38 * to enable certain macros
40 #include "mv-common.h"
43 * Environment variables configuration
45 #ifdef CONFIG_CMD_NAND
46 #define CONFIG_ENV_IS_IN_NAND
47 #define CONFIG_ENV_SECT_SIZE 0x20000
49 #define CONFIG_ENV_IS_NOWHERE
51 #define CONFIG_ENV_SIZE 0x20000
52 #define CONFIG_ENV_OFFSET 0x80000
55 * Default environment variables
57 #define CONFIG_BOOTCOMMAND \
58 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
60 "ubifsmount ubi:rootfs; " \
61 "ubifsload 0x800000 ${kernel}; " \
64 #define CONFIG_MTDPARTS \
65 "mtdparts=orion_nand:" \
66 "0x80000@0x0(uboot)," \
67 "0x20000@0x80000(uboot_env)," \
70 #define CONFIG_EXTRA_ENV_SETTINGS \
71 "console=console=ttyS0,115200\0" \
72 "mtdids=nand0=orion_nand\0" \
73 "mtdparts="CONFIG_MTDPARTS \
74 "kernel=/boot/uImage\0" \
75 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
78 * Ethernet driver configuration
81 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
82 #define CONFIG_PHY_BASE_ADR 11
83 #undef CONFIG_RESET_PHY_R
84 #endif /* CONFIG_CMD_NET */
89 #define CONFIG_CMD_UBIFS
91 #define CONFIG_MTD_DEVICE
92 #define CONFIG_MTD_PARTITIONS
93 #define CONFIG_CMD_MTDPARTS
95 #endif /* _CONFIG_ICONNECT_H */