8a5daf48c0fedaf60c2dee52f57888bb91479bfa
[platform/kernel/u-boot.git] / include / configs / dockstar.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
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>
9  */
10
11 #ifndef _CONFIG_DOCKSTAR_H
12 #define _CONFIG_DOCKSTAR_H
13
14 /*
15  * High Level Configuration Options (easy to change)
16  */
17 #define CONFIG_FEROCEON_88FR131 1       /* CPU Core subversion */
18 #define CONFIG_KW88F6281        1       /* SOC Name */
19
20 /*
21  * 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
26 /*
27  *  Environment variables configurations
28  */
29 /*
30  * max 4k env size is enough, but in case of nand
31  * it has to be rounded to sector size
32  */
33
34 /*
35  * Default environment variables
36  */
37
38 #define CONFIG_EXTRA_ENV_SETTINGS \
39         "console=console=ttyS0,115200\0" \
40         "mtdids=nand0=orion_nand\0" \
41         "mtdparts="CONFIG_MTDPARTS_DEFAULT \
42         "kernel=/boot/uImage\0" \
43         "initrd=/boot/uInitrd\0" \
44         "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
45
46 /*
47  * Ethernet Driver configuration
48  */
49 #ifdef CONFIG_CMD_NET
50 #define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
51 #define CONFIG_PHY_BASE_ADR     0
52 #endif /* CONFIG_CMD_NET */
53
54 /*
55  * File system
56  */
57
58 #endif /* _CONFIG_DOCKSTAR_H */