blob: cbe5022297e6b6ef7e4ac7f832925a8ef890e62e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
David Purdy1d0f5fa2012-03-27 16:01:09 +00002/*
3 * Copyright (C) 2012
4 * David Purdy <david.c.purdy@gmail.com>
5 *
6 * Based on Kirkwood support:
7 * (C) Copyright 2009
8 * Marvell Semiconductor <www.marvell.com>
9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
David Purdy1d0f5fa2012-03-27 16:01:09 +000010 */
11
12#ifndef _CONFIG_POGO_E02_H
13#define _CONFIG_POGO_E02_H
14
15/*
16 * Machine type definition and ID
17 */
David Purdy1d0f5fa2012-03-27 16:01:09 +000018#define CONFIG_MACH_TYPE MACH_TYPE_POGO_E02
David Purdy1d0f5fa2012-03-27 16:01:09 +000019
20/*
21 * High Level Configuration Options (easy to change)
22 */
23#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
David Purdy1d0f5fa2012-03-27 16:01:09 +000024#define CONFIG_KW88F6281 /* SOC Name */
25#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
26
David Purdy1d0f5fa2012-03-27 16:01:09 +000027#include "mv-common.h"
28
David Purdy1d0f5fa2012-03-27 16:01:09 +000029/*
30 * Environment variables configurations
31 */
David Purdy1d0f5fa2012-03-27 16:01:09 +000032
33/*
34 * Default environment variables
35 */
36#define CONFIG_BOOTCOMMAND \
37 "setenv bootargs $(bootargs_console); " \
38 "run bootcmd_usb; " \
39 "bootm 0x00800000 0x01100000"
40
41#define CONFIG_EXTRA_ENV_SETTINGS \
42 "mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage)," \
43 "32M(rootfs),-(data)\0"\
44 "mtdids=nand0=orion_nand\0"\
45 "bootargs_console=console=ttyS0,115200\0" \
46 "bootcmd_usb=usb start; ext2load usb 0:1 0x00800000 /uImage; " \
47 "ext2load usb 0:1 0x01100000 /uInitrd\0"
48
49/*
50 * Ethernet Driver configuration
51 */
52#ifdef CONFIG_CMD_NET
53#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
54#define CONFIG_PHY_BASE_ADR 0
55#endif /* CONFIG_CMD_NET */
56
57/*
58 * File system
59 */
David Purdy1d0f5fa2012-03-27 16:01:09 +000060
61#endif /* _CONFIG_POGO_E02_H */