blob: 72386a671e4c263e868e5465b60cb5ba98491ea1 [file] [log] [blame]
Eric Cooper38041db2010-11-24 17:11:32 +05301/*
2 * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
3 *
4 * Based on sheevaplug.h originally written by
5 * Prafulla Wadaskar <prafulla@marvell.com>
6 * (C) Copyright 2009
7 * Marvell Semiconductor <www.marvell.com>
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Eric Cooper38041db2010-11-24 17:11:32 +053010 */
11
12#ifndef _CONFIG_DOCKSTAR_H
13#define _CONFIG_DOCKSTAR_H
14
15/*
Eric Cooper38041db2010-11-24 17:11:32 +053016 * High Level Configuration Options (easy to change)
17 */
18#define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
Eric Cooper38041db2010-11-24 17:11:32 +053019#define CONFIG_KW88F6281 1 /* SOC Name */
Eric Cooper38041db2010-11-24 17:11:32 +053020#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
21
22/*
Eric Cooper38041db2010-11-24 17:11:32 +053023 * mv-common.h should be defined after CMD configs since it used them
24 * to enable certain macros
25 */
26#include "mv-common.h"
27
Eric Cooper38041db2010-11-24 17:11:32 +053028/*
29 * Environment variables configurations
30 */
31#ifdef CONFIG_CMD_NAND
Eric Cooper38041db2010-11-24 17:11:32 +053032#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
Eric Cooper38041db2010-11-24 17:11:32 +053033#endif
34/*
35 * max 4k env size is enough, but in case of nand
36 * it has to be rounded to sector size
37 */
38#define CONFIG_ENV_SIZE 0x20000 /* 128k */
Eric Cooperd1a2f322015-10-12 19:18:52 -040039#define CONFIG_ENV_ADDR 0x80000
40#define CONFIG_ENV_OFFSET 0x80000 /* env starts here */
Eric Cooper38041db2010-11-24 17:11:32 +053041
42/*
43 * Default environment variables
44 */
45#define CONFIG_BOOTCOMMAND \
46 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
47 "ubi part root; " \
Joe Hershberger949a7712012-11-01 16:54:18 +000048 "ubifsmount ubi:root; " \
Eric Cooper38041db2010-11-24 17:11:32 +053049 "ubifsload 0x800000 ${kernel}; " \
50 "ubifsload 0x1100000 ${initrd}; " \
51 "bootm 0x800000 0x1100000"
52
Eric Cooper38041db2010-11-24 17:11:32 +053053#define CONFIG_EXTRA_ENV_SETTINGS \
54 "console=console=ttyS0,115200\0" \
55 "mtdids=nand0=orion_nand\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040056 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Eric Cooper38041db2010-11-24 17:11:32 +053057 "kernel=/boot/uImage\0" \
58 "initrd=/boot/uInitrd\0" \
59 "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
60
61/*
62 * Ethernet Driver configuration
63 */
64#ifdef CONFIG_CMD_NET
65#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
66#define CONFIG_PHY_BASE_ADR 0
67#endif /* CONFIG_CMD_NET */
68
69/*
70 * File system
71 */
Eric Cooper38041db2010-11-24 17:11:32 +053072#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
73#define CONFIG_MTD_PARTITIONS
Eric Cooper38041db2010-11-24 17:11:32 +053074
75#endif /* _CONFIG_DOCKSTAR_H */