]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/iconnect.h
include/configs: Whitespace fixup
[people/ms/u-boot.git] / include / configs / iconnect.h
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 * Version number information
14 */
15 #define CONFIG_IDENT_STRING " Iomega iConnect"
16
17 /*
18 * High level configuration options
19 */
20 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
21 #define CONFIG_KW88F6281 /* SOC Name */
22 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
23
24 /*
25 * Machine type
26 */
27 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
28
29 /*
30 * Compression configuration
31 */
32 #define CONFIG_BZIP2
33 #define CONFIG_LZMA
34 #define CONFIG_LZO
35
36 /*
37 * Commands configuration
38 */
39 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */
40 #define CONFIG_SYS_MVFS
41 #define CONFIG_CMD_ENV
42 #define CONFIG_CMD_MII
43 #define CONFIG_CMD_NAND
44
45 /*
46 * mv-common.h should be defined after CMD configs since it used them
47 * to enable certain macros
48 */
49 #include "mv-common.h"
50
51 /*
52 * Environment variables configuration
53 */
54 #ifdef CONFIG_CMD_NAND
55 #define CONFIG_ENV_IS_IN_NAND
56 #define CONFIG_ENV_SECT_SIZE 0x20000
57 #else
58 #define CONFIG_ENV_IS_NOWHERE
59 #endif
60 #define CONFIG_ENV_SIZE 0x20000
61 #define CONFIG_ENV_OFFSET 0x80000
62
63 /*
64 * Default environment variables
65 */
66 #define CONFIG_BOOTCOMMAND \
67 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
68 "ubi part rootfs; " \
69 "ubifsmount ubi:rootfs; " \
70 "ubifsload 0x800000 ${kernel}; " \
71 "bootm 0x800000"
72
73 #define CONFIG_MTDPARTS \
74 "mtdparts=orion_nand:" \
75 "0x80000@0x0(uboot)," \
76 "0x20000@0x80000(uboot_env)," \
77 "-@0xa0000(rootfs)\0"
78
79 #define CONFIG_EXTRA_ENV_SETTINGS \
80 "console=console=ttyS0,115200\0" \
81 "mtdids=nand0=orion_nand\0" \
82 "mtdparts="CONFIG_MTDPARTS \
83 "kernel=/boot/uImage\0" \
84 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
85
86 /*
87 * Ethernet driver configuration
88 */
89 #ifdef CONFIG_CMD_NET
90 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
91 #define CONFIG_PHY_BASE_ADR 11
92 #undef CONFIG_RESET_PHY_R
93 #endif /* CONFIG_CMD_NET */
94
95 /*
96 * File system
97 */
98 #define CONFIG_CMD_EXT2
99 #define CONFIG_CMD_FAT
100 #define CONFIG_CMD_JFFS2
101 #define CONFIG_CMD_UBI
102 #define CONFIG_CMD_UBIFS
103 #define CONFIG_RBTREE
104 #define CONFIG_MTD_DEVICE
105 #define CONFIG_MTD_PARTITIONS
106 #define CONFIG_CMD_MTDPARTS
107
108 #endif /* _CONFIG_ICONNECT_H */