xref: /OK3568_Linux_fs/u-boot/include/configs/iconnect.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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  * Machine type
21  */
22 #define CONFIG_MACH_TYPE	MACH_TYPE_ICONNECT
23 
24 /*
25  * Compression configuration
26  */
27 #define CONFIG_BZIP2
28 
29 /*
30  * Commands configuration
31  */
32 
33 /*
34  * mv-common.h should be defined after CMD configs since it used them
35  * to enable certain macros
36  */
37 #include "mv-common.h"
38 
39 /*
40  * Environment variables configuration
41  */
42 #ifdef CONFIG_CMD_NAND
43 #define CONFIG_ENV_SECT_SIZE	0x20000
44 #endif
45 #define CONFIG_ENV_SIZE		0x20000
46 #define CONFIG_ENV_OFFSET	0x80000
47 
48 /*
49  * Default environment variables
50  */
51 #define CONFIG_BOOTCOMMAND \
52 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
53 	"ubi part rootfs; "						\
54 	"ubifsmount ubi:rootfs; "					\
55 	"ubifsload 0x800000 ${kernel}; "				\
56 	"bootm 0x800000"
57 
58 #define CONFIG_MTDPARTS \
59 	"mtdparts=orion_nand:"		\
60 	"0x80000@0x0(uboot),"		\
61 	"0x20000@0x80000(uboot_env),"	\
62 	"-@0xa0000(rootfs)\0"
63 
64 #define CONFIG_EXTRA_ENV_SETTINGS \
65 	"console=console=ttyS0,115200\0"	\
66 	"mtdids=nand0=orion_nand\0"		\
67 	"mtdparts="CONFIG_MTDPARTS		\
68 	"kernel=/boot/uImage\0"			\
69 	"bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
70 
71 /*
72  * Ethernet driver configuration
73  */
74 #ifdef CONFIG_CMD_NET
75 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
76 #define CONFIG_PHY_BASE_ADR	11
77 #undef CONFIG_RESET_PHY_R
78 #endif /* CONFIG_CMD_NET */
79 
80 /*
81  * File system
82  */
83 
84 #endif /* _CONFIG_ICONNECT_H */
85