blob: 29491327f5c4234c8536c06d1d66d1fe8bb225ec [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
17/*
Tom Rini48157342017-01-25 20:42:35 -050018 * Machine type
19 */
20#define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT
21
Luka Perkov9f497062012-09-05 08:01:25 +000022#include "mv-common.h"
23
Luka Perkov9f497062012-09-05 08:01:25 +000024/*
25 * Environment variables configuration
26 */
Luka Perkov9f497062012-09-05 08:01:25 +000027
28/*
29 * Default environment variables
30 */
31#define CONFIG_BOOTCOMMAND \
32 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
33 "ubi part rootfs; " \
Joe Hershberger108458a2012-11-01 16:54:18 +000034 "ubifsmount ubi:rootfs; " \
Luka Perkov9f497062012-09-05 08:01:25 +000035 "ubifsload 0x800000 ${kernel}; " \
36 "bootm 0x800000"
37
Luka Perkov9f497062012-09-05 08:01:25 +000038#define CONFIG_EXTRA_ENV_SETTINGS \
39 "console=console=ttyS0,115200\0" \
40 "mtdids=nand0=orion_nand\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040041 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Luka Perkov9f497062012-09-05 08:01:25 +000042 "kernel=/boot/uImage\0" \
43 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
44
45/*
46 * Ethernet driver configuration
47 */
48#ifdef CONFIG_CMD_NET
49#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
50#define CONFIG_PHY_BASE_ADR 11
51#undef CONFIG_RESET_PHY_R
52#endif /* CONFIG_CMD_NET */
53
54/*
55 * File system
56 */
Luka Perkov9f497062012-09-05 08:01:25 +000057
58#endif /* _CONFIG_ICONNECT_H */