1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009-2012
4  * Wojciech Dubowik <wojciech.dubowik@neratec.com>
5  * Luka Perkov <luka@openwrt.org>
6  */
7 
8 #ifndef _CONFIG_ICONNECT_H
9 #define _CONFIG_ICONNECT_H
10 
11 /*
12  * High level configuration options
13  */
14 #define CONFIG_FEROCEON_88FR131		/* CPU Core subversion */
15 #define CONFIG_KW88F6281		/* SOC Name */
16 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
17 
18 /*
19  * Machine type
20  */
21 #define CONFIG_MACH_TYPE	MACH_TYPE_ICONNECT
22 
23 #include "mv-common.h"
24 
25 /*
26  * Environment variables configuration
27  */
28 
29 /*
30  * Default environment variables
31  */
32 #define CONFIG_BOOTCOMMAND \
33 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
34 	"ubi part rootfs; "						\
35 	"ubifsmount ubi:rootfs; "					\
36 	"ubifsload 0x800000 ${kernel}; "				\
37 	"bootm 0x800000"
38 
39 #define CONFIG_EXTRA_ENV_SETTINGS \
40 	"console=console=ttyS0,115200\0"	\
41 	"mtdids=nand0=orion_nand\0"		\
42 	"mtdparts="CONFIG_MTDPARTS_DEFAULT	\
43 	"kernel=/boot/uImage\0"			\
44 	"bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
45 
46 /*
47  * Ethernet driver configuration
48  */
49 #ifdef CONFIG_CMD_NET
50 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
51 #define CONFIG_PHY_BASE_ADR	11
52 #undef CONFIG_RESET_PHY_R
53 #endif /* CONFIG_CMD_NET */
54 
55 /*
56  * File system
57  */
58 
59 #endif /* _CONFIG_ICONNECT_H */
60