xref: /openbmc/u-boot/include/configs/iconnect.h (revision 17fa0326)
1 /*
2  * (C) Copyright 2009-2012
3  * Wojciech Dubowik <wojciech.dubowik@neratec.com>
4  * Luka Perkov <luka@openwrt.org>
5  *
6  * SPDX-License-Identifier:	GPL-2.0+
7  */
8 
9 #ifndef _CONFIG_ICONNECT_H
10 #define _CONFIG_ICONNECT_H
11 
12 /*
13  * High level configuration options
14  */
15 #define CONFIG_FEROCEON_88FR131		/* CPU Core subversion */
16 #define CONFIG_KW88F6281		/* SOC Name */
17 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
18 
19 /*
20  * Compression configuration
21  */
22 #define CONFIG_BZIP2
23 #define CONFIG_LZMA
24 #define CONFIG_LZO
25 
26 /*
27  * Commands configuration
28  */
29 #define CONFIG_SYS_NO_FLASH		/* declare no flash (NOR/SPI) */
30 #define CONFIG_SYS_MVFS
31 #define CONFIG_CMD_ENV
32 #define CONFIG_CMD_NAND
33 
34 /*
35  * mv-common.h should be defined after CMD configs since it used them
36  * to enable certain macros
37  */
38 #include "mv-common.h"
39 
40 /*
41  * Environment variables configuration
42  */
43 #ifdef CONFIG_CMD_NAND
44 #define CONFIG_ENV_IS_IN_NAND
45 #define CONFIG_ENV_SECT_SIZE	0x20000
46 #else
47 #define CONFIG_ENV_IS_NOWHERE
48 #endif
49 #define CONFIG_ENV_SIZE		0x20000
50 #define CONFIG_ENV_OFFSET	0x80000
51 
52 /*
53  * Default environment variables
54  */
55 #define CONFIG_BOOTCOMMAND \
56 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
57 	"ubi part rootfs; "						\
58 	"ubifsmount ubi:rootfs; "					\
59 	"ubifsload 0x800000 ${kernel}; "				\
60 	"bootm 0x800000"
61 
62 #define CONFIG_MTDPARTS \
63 	"mtdparts=orion_nand:"		\
64 	"0x80000@0x0(uboot),"		\
65 	"0x20000@0x80000(uboot_env),"	\
66 	"-@0xa0000(rootfs)\0"
67 
68 #define CONFIG_EXTRA_ENV_SETTINGS \
69 	"console=console=ttyS0,115200\0"	\
70 	"mtdids=nand0=orion_nand\0"		\
71 	"mtdparts="CONFIG_MTDPARTS		\
72 	"kernel=/boot/uImage\0"			\
73 	"bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
74 
75 /*
76  * Ethernet driver configuration
77  */
78 #ifdef CONFIG_CMD_NET
79 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
80 #define CONFIG_PHY_BASE_ADR	11
81 #undef CONFIG_RESET_PHY_R
82 #endif /* CONFIG_CMD_NET */
83 
84 /*
85  * File system
86  */
87 #define CONFIG_CMD_JFFS2
88 #define CONFIG_CMD_UBIFS
89 #define CONFIG_RBTREE
90 #define CONFIG_MTD_DEVICE
91 #define CONFIG_MTD_PARTITIONS
92 #define CONFIG_CMD_MTDPARTS
93 
94 #endif /* _CONFIG_ICONNECT_H */
95