]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/iconnect.h
configs: Migrate RBTREE, LZO, CMD_MTDPARTS, CMD_UBI and CMD_UBIFS
[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
9b914727
LP
12/*
13 * High level configuration options
14 */
15#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
9b914727
LP
16#define CONFIG_KW88F6281 /* SOC Name */
17#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
18
94ba26f2
TR
19/*
20 * Machine type
21 */
22#define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
23
9b914727
LP
24/*
25 * Compression configuration
26 */
27#define CONFIG_BZIP2
9b914727
LP
28
29/*
30 * Commands configuration
31 */
9b914727 32#define CONFIG_SYS_MVFS
9b914727 33#define CONFIG_CMD_NAND
9b914727
LP
34
35/*
36 * mv-common.h should be defined after CMD configs since it used them
37 * to enable certain macros
38 */
39#include "mv-common.h"
40
9b914727
LP
41/*
42 * Environment variables configuration
43 */
44#ifdef CONFIG_CMD_NAND
45#define CONFIG_ENV_IS_IN_NAND
46#define CONFIG_ENV_SECT_SIZE 0x20000
47#else
48#define CONFIG_ENV_IS_NOWHERE
49#endif
50#define CONFIG_ENV_SIZE 0x20000
51#define CONFIG_ENV_OFFSET 0x80000
52
53/*
54 * Default environment variables
55 */
56#define CONFIG_BOOTCOMMAND \
57 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
58 "ubi part rootfs; " \
949a7710 59 "ubifsmount ubi:rootfs; " \
9b914727
LP
60 "ubifsload 0x800000 ${kernel}; " \
61 "bootm 0x800000"
62
63#define CONFIG_MTDPARTS \
64 "mtdparts=orion_nand:" \
65 "0x80000@0x0(uboot)," \
66 "0x20000@0x80000(uboot_env)," \
67 "-@0xa0000(rootfs)\0"
68
69#define CONFIG_EXTRA_ENV_SETTINGS \
70 "console=console=ttyS0,115200\0" \
71 "mtdids=nand0=orion_nand\0" \
72 "mtdparts="CONFIG_MTDPARTS \
73 "kernel=/boot/uImage\0" \
74 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
75
76/*
77 * Ethernet driver configuration
78 */
79#ifdef CONFIG_CMD_NET
80#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
81#define CONFIG_PHY_BASE_ADR 11
82#undef CONFIG_RESET_PHY_R
83#endif /* CONFIG_CMD_NET */
84
85/*
86 * File system
87 */
9b914727
LP
88#define CONFIG_MTD_DEVICE
89#define CONFIG_MTD_PARTITIONS
9b914727
LP
90
91#endif /* _CONFIG_ICONNECT_H */