blob: 1a716dfbe91d2676c6f3d8d18f8f9af984883b3f [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 */
26#define CONFIG_BOOTCOMMAND \
27 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
28 "ubi part rootfs; " \
Joe Hershberger108458a2012-11-01 16:54:18 +000029 "ubifsmount ubi:rootfs; " \
Luka Perkov9f497062012-09-05 08:01:25 +000030 "ubifsload 0x800000 ${kernel}; " \
31 "bootm 0x800000"
32
Luka Perkov9f497062012-09-05 08:01:25 +000033#define CONFIG_EXTRA_ENV_SETTINGS \
34 "console=console=ttyS0,115200\0" \
35 "mtdids=nand0=orion_nand\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040036 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Luka Perkov9f497062012-09-05 08:01:25 +000037 "kernel=/boot/uImage\0" \
38 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
39
40/*
41 * Ethernet driver configuration
42 */
43#ifdef CONFIG_CMD_NET
44#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
45#define CONFIG_PHY_BASE_ADR 11
46#undef CONFIG_RESET_PHY_R
47#endif /* CONFIG_CMD_NET */
48
49/*
50 * File system
51 */
Luka Perkov9f497062012-09-05 08:01:25 +000052
53#endif /* _CONFIG_ICONNECT_H */