blob: 26dbe539437137675cd3db712aabfe288a3d5560 [file] [log] [blame]
Luka Perkov9b914722012-09-05 08:01:25 +00001/*
2 * (C) Copyright 2009-2012
3 * Wojciech Dubowik <wojciech.dubowik@neratec.com>
Luka Perkov3fdf7592012-12-03 03:24:15 +00004 * Luka Perkov <luka@openwrt.org>
Luka Perkov9b914722012-09-05 08:01:25 +00005 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Luka Perkov9b914722012-09-05 08:01:25 +00007 */
8
9#ifndef _CONFIG_ICONNECT_H
10#define _CONFIG_ICONNECT_H
11
12/*
Luka Perkov9b914722012-09-05 08:01:25 +000013 * High level configuration options
14 */
15#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Luka Perkov9b914722012-09-05 08:01:25 +000016#define CONFIG_KW88F6281 /* SOC Name */
17#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
18
19/*
Tom Rini94ba26f2017-01-25 20:42:35 -050020 * Machine type
21 */
22#define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
23
24/*
Luka Perkov9b914722012-09-05 08:01:25 +000025 * Compression configuration
26 */
27#define CONFIG_BZIP2
Luka Perkov9b914722012-09-05 08:01:25 +000028
29/*
30 * Commands configuration
31 */
Luka Perkov9b914722012-09-05 08:01:25 +000032#define CONFIG_SYS_MVFS
Luka Perkov9b914722012-09-05 08:01:25 +000033
34/*
35 * mv-common.h should be defined after CMD configs since it used them
36 * to enable certain macros
37 */
38#include "mv-common.h"
39
Luka Perkov9b914722012-09-05 08:01:25 +000040/*
41 * Environment variables configuration
42 */
43#ifdef CONFIG_CMD_NAND
Luka Perkov9b914722012-09-05 08:01:25 +000044#define CONFIG_ENV_SECT_SIZE 0x20000
Luka Perkov9b914722012-09-05 08:01:25 +000045#endif
46#define CONFIG_ENV_SIZE 0x20000
47#define CONFIG_ENV_OFFSET 0x80000
48
49/*
50 * Default environment variables
51 */
52#define CONFIG_BOOTCOMMAND \
53 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
54 "ubi part rootfs; " \
Joe Hershberger949a7712012-11-01 16:54:18 +000055 "ubifsmount ubi:rootfs; " \
Luka Perkov9b914722012-09-05 08:01:25 +000056 "ubifsload 0x800000 ${kernel}; " \
57 "bootm 0x800000"
58
59#define CONFIG_MTDPARTS \
60 "mtdparts=orion_nand:" \
61 "0x80000@0x0(uboot)," \
62 "0x20000@0x80000(uboot_env)," \
63 "-@0xa0000(rootfs)\0"
64
65#define CONFIG_EXTRA_ENV_SETTINGS \
66 "console=console=ttyS0,115200\0" \
67 "mtdids=nand0=orion_nand\0" \
68 "mtdparts="CONFIG_MTDPARTS \
69 "kernel=/boot/uImage\0" \
70 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
71
72/*
73 * Ethernet driver configuration
74 */
75#ifdef CONFIG_CMD_NET
76#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
77#define CONFIG_PHY_BASE_ADR 11
78#undef CONFIG_RESET_PHY_R
79#endif /* CONFIG_CMD_NET */
80
81/*
82 * File system
83 */
Luka Perkov9b914722012-09-05 08:01:25 +000084#define CONFIG_MTD_DEVICE
85#define CONFIG_MTD_PARTITIONS
Luka Perkov9b914722012-09-05 08:01:25 +000086
87#endif /* _CONFIG_ICONNECT_H */