006f06e6af5cce6b83abc9676ed112dbc50c9348
[platform/kernel/u-boot.git] / include / configs / openrd.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009
4  * Net Insight <www.netinsight.net>
5  * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
6  *
7  * Based on sheevaplug.h:
8  * (C) Copyright 2009
9  * Marvell Semiconductor <www.marvell.com>
10  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
11  */
12
13 #ifndef _CONFIG_OPENRD_H
14 #define _CONFIG_OPENRD_H
15
16 #include "mv-common.h"
17
18 /*
19  *  Environment variables configurations
20  */
21 /*
22  * max 4k env size is enough, but in case of nand
23  * it has to be rounded to sector size
24  */
25
26 /*
27  * Default environment variables
28  */
29
30 #define CONFIG_EXTRA_ENV_SETTINGS       "x_bootargs=console=ttyS0,115200 " \
31         CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
32         "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0"      \
33         "x_bootcmd_usb=usb start\0"                                     \
34         "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0"
35
36 /*
37  * Ethernet Driver configuration
38  */
39 #ifdef CONFIG_CMD_NET
40 # ifdef CONFIG_BOARD_IS_OPENRD_BASE
41 #  define CONFIG_MVGBE_PORTS    {1, 0}  /* enable port 0 only */
42 # else
43 #  define CONFIG_MVGBE_PORTS    {1, 1}  /* enable both ports */
44 # endif
45 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
46 #  define CONFIG_PHY_BASE_ADR   0x0
47 #  define PHY_NO                "88E1121"
48 # else
49 #  define CONFIG_PHY_BASE_ADR   0x8
50 #  define PHY_NO                "88E1116"
51 # endif
52 #endif /* CONFIG_CMD_NET */
53
54 /*
55  * SATA Driver configuration
56  */
57
58 #endif /* _CONFIG_OPENRD_BASE_H */