blob: 75a2476f5ef9a3de2366e794a82b62a5c817411e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eric Coopera3f41c82010-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 Coopera3f41c82010-11-24 17:11:32 +05309 */
10
11#ifndef _CONFIG_DOCKSTAR_H
12#define _CONFIG_DOCKSTAR_H
13
14/*
Eric Coopera3f41c82010-11-24 17:11:32 +053015 * High Level Configuration Options (easy to change)
16 */
17#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
Eric Coopera3f41c82010-11-24 17:11:32 +053018#define CONFIG_KW88F6281 1 /* SOC Name */
Eric Coopera3f41c82010-11-24 17:11:32 +053019
20/*
Eric Coopera3f41c82010-11-24 17:11:32 +053021 * mv-common.h should be defined after CMD configs since it used them
22 * to enable certain macros
23 */
24#include "mv-common.h"
25
Eric Coopera3f41c82010-11-24 17:11:32 +053026/*
27 * Environment variables configurations
28 */
Eric Coopera3f41c82010-11-24 17:11:32 +053029/*
30 * max 4k env size is enough, but in case of nand
31 * it has to be rounded to sector size
32 */
Eric Coopera3f41c82010-11-24 17:11:32 +053033
34/*
35 * Default environment variables
36 */
37#define CONFIG_BOOTCOMMAND \
38 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
39 "ubi part root; " \
Joe Hershberger108458a2012-11-01 16:54:18 +000040 "ubifsmount ubi:root; " \
Eric Coopera3f41c82010-11-24 17:11:32 +053041 "ubifsload 0x800000 ${kernel}; " \
42 "ubifsload 0x1100000 ${initrd}; " \
43 "bootm 0x800000 0x1100000"
44
Eric Coopera3f41c82010-11-24 17:11:32 +053045#define CONFIG_EXTRA_ENV_SETTINGS \
46 "console=console=ttyS0,115200\0" \
47 "mtdids=nand0=orion_nand\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040048 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Eric Coopera3f41c82010-11-24 17:11:32 +053049 "kernel=/boot/uImage\0" \
50 "initrd=/boot/uInitrd\0" \
51 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
52
53/*
54 * Ethernet Driver configuration
55 */
56#ifdef CONFIG_CMD_NET
57#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
58#define CONFIG_PHY_BASE_ADR 0
59#endif /* CONFIG_CMD_NET */
60
61/*
62 * File system
63 */
Eric Coopera3f41c82010-11-24 17:11:32 +053064
65#endif /* _CONFIG_DOCKSTAR_H */