Convert CONFIG_BZIP2 et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / iconnect.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009-2012
4  * Wojciech Dubowik <wojciech.dubowik@neratec.com>
5  * Luka Perkov <luka@openwrt.org>
6  */
7
8 #ifndef _CONFIG_ICONNECT_H
9 #define _CONFIG_ICONNECT_H
10
11 /*
12  * High level configuration options
13  */
14 #define CONFIG_FEROCEON_88FR131         /* CPU Core subversion */
15 #define CONFIG_KW88F6281                /* SOC Name */
16 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
17
18 /*
19  * Machine type
20  */
21 #define CONFIG_MACH_TYPE        MACH_TYPE_ICONNECT
22
23 /*
24  * Commands configuration
25  */
26
27 /*
28  * mv-common.h should be defined after CMD configs since it used them
29  * to enable certain macros
30  */
31 #include "mv-common.h"
32
33 /*
34  * Environment variables configuration
35  */
36
37 /*
38  * Default environment variables
39  */
40 #define CONFIG_BOOTCOMMAND \
41         "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "     \
42         "ubi part rootfs; "                                             \
43         "ubifsmount ubi:rootfs; "                                       \
44         "ubifsload 0x800000 ${kernel}; "                                \
45         "bootm 0x800000"
46
47 #define CONFIG_EXTRA_ENV_SETTINGS \
48         "console=console=ttyS0,115200\0"        \
49         "mtdids=nand0=orion_nand\0"             \
50         "mtdparts="CONFIG_MTDPARTS_DEFAULT      \
51         "kernel=/boot/uImage\0"                 \
52         "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
53
54 /*
55  * Ethernet driver configuration
56  */
57 #ifdef CONFIG_CMD_NET
58 #define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
59 #define CONFIG_PHY_BASE_ADR     11
60 #undef CONFIG_RESET_PHY_R
61 #endif /* CONFIG_CMD_NET */
62
63 /*
64  * File system
65  */
66
67 #endif /* _CONFIG_ICONNECT_H */