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