blob: 04dd0f68c370bff3882c41d896cff0c059e73853 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eric Cooper38041db2010-11-24 17:11:32 +05302/*
3 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
4 *
5 * Based on sheevaplug.h originally written by
6 * Prafulla Wadaskar <prafulla@marvell.com>
7 * (C) Copyright 2009
8 * Marvell Semiconductor <www.marvell.com>
Eric Cooper38041db2010-11-24 17:11:32 +05309 */
10
11#ifndef _CONFIG_DOCKSTAR_H
12#define _CONFIG_DOCKSTAR_H
13
14/*
Eric Cooper38041db2010-11-24 17:11:32 +053015 * High Level Configuration Options (easy to change)
16 */
17#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
Eric Cooper38041db2010-11-24 17:11:32 +053018#define CONFIG_KW88F6281 1 /* SOC Name */
Eric Cooper38041db2010-11-24 17:11:32 +053019#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
20
21/*
Eric Cooper38041db2010-11-24 17:11:32 +053022 * mv-common.h should be defined after CMD configs since it used them
23 * to enable certain macros
24 */
25#include "mv-common.h"
26
Eric Cooper38041db2010-11-24 17:11:32 +053027/*
28 * Environment variables configurations
29 */
Eric Cooper38041db2010-11-24 17:11:32 +053030/*
31 * max 4k env size is enough, but in case of nand
32 * it has to be rounded to sector size
33 */
Eric Cooper38041db2010-11-24 17:11:32 +053034
35/*
36 * Default environment variables
37 */
38#define CONFIG_BOOTCOMMAND \
39 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
40 "ubi part root; " \
Joe Hershberger949a7712012-11-01 16:54:18 +000041 "ubifsmount ubi:root; " \
Eric Cooper38041db2010-11-24 17:11:32 +053042 "ubifsload 0x800000 ${kernel}; " \
43 "ubifsload 0x1100000 ${initrd}; " \
44 "bootm 0x800000 0x1100000"
45
Eric Cooper38041db2010-11-24 17:11:32 +053046#define CONFIG_EXTRA_ENV_SETTINGS \
47 "console=console=ttyS0,115200\0" \
48 "mtdids=nand0=orion_nand\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040049 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Eric Cooper38041db2010-11-24 17:11:32 +053050 "kernel=/boot/uImage\0" \
51 "initrd=/boot/uInitrd\0" \
52 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
53
54/*
55 * Ethernet Driver configuration
56 */
57#ifdef CONFIG_CMD_NET
58#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
59#define CONFIG_PHY_BASE_ADR 0
60#endif /* CONFIG_CMD_NET */
61
62/*
63 * File system
64 */
Eric Cooper38041db2010-11-24 17:11:32 +053065
66#endif /* _CONFIG_DOCKSTAR_H */