blob: 4903b92ca3af6b5c7174aadf90586c2800caecc4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Luka Perkov9f497062012-09-05 08:01:25 +00002/*
3 * (C) Copyright 2009-2012
4 * Wojciech Dubowik <wojciech.dubowik@neratec.com>
Luka Perkove91505d2012-12-03 03:24:15 +00005 * Luka Perkov <luka@openwrt.org>
Luka Perkov9f497062012-09-05 08:01:25 +00006 */
7
8#ifndef _CONFIG_ICONNECT_H
9#define _CONFIG_ICONNECT_H
10
11/*
Luka Perkov9f497062012-09-05 08:01:25 +000012 * High level configuration options
13 */
14#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Luka Perkov9f497062012-09-05 08:01:25 +000015#define CONFIG_KW88F6281 /* SOC Name */
Luka Perkov9f497062012-09-05 08:01:25 +000016
Luka Perkov9f497062012-09-05 08:01:25 +000017#include "mv-common.h"
18
Luka Perkov9f497062012-09-05 08:01:25 +000019/*
20 * Environment variables configuration
21 */
Luka Perkov9f497062012-09-05 08:01:25 +000022
23/*
24 * Default environment variables
25 */
Luka Perkov9f497062012-09-05 08:01:25 +000026
Luka Perkov9f497062012-09-05 08:01:25 +000027#define CONFIG_EXTRA_ENV_SETTINGS \
28 "console=console=ttyS0,115200\0" \
29 "mtdids=nand0=orion_nand\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040030 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Luka Perkov9f497062012-09-05 08:01:25 +000031 "kernel=/boot/uImage\0" \
32 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
33
34/*
35 * Ethernet driver configuration
36 */
37#ifdef CONFIG_CMD_NET
38#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
39#define CONFIG_PHY_BASE_ADR 11
40#undef CONFIG_RESET_PHY_R
41#endif /* CONFIG_CMD_NET */
42
43/*
44 * File system
45 */
Luka Perkov9f497062012-09-05 08:01:25 +000046
47#endif /* _CONFIG_ICONNECT_H */