Merge tag 'v2022.01-rc4' into next
[platform/kernel/u-boot.git] / include / configs / guruplug.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009-2014
4  * Gerald Kerma <dreagle@doukki.net>
5  * Marvell Semiconductor <www.marvell.com>
6  * Written-by: Siddarth Gore <gores@marvell.com>
7  */
8
9 #ifndef _CONFIG_GURUPLUG_H
10 #define _CONFIG_GURUPLUG_H
11
12 /*
13  * High Level Configuration Options (easy to change)
14  */
15 #define CONFIG_SHEEVA_88SV131   1       /* CPU Core subversion */
16
17 /*
18  * Standard filesystems
19  */
20
21 /*
22  * mv-plug-common.h should be defined after CMD configs since it used them
23  * to enable certain macros
24  */
25 #include "mv-plug-common.h"
26
27 /*
28  *  Environment variables configurations
29  */
30 /*
31  * max 4k env size is enough, but in case of nand
32  * it has to be rounded to sector size
33  */
34 /*
35  * Environment is right behind U-Boot in flash. Make sure U-Boot
36  * doesn't grow into the environment area.
37  */
38 #define CONFIG_BOARD_SIZE_LIMIT         CONFIG_ENV_OFFSET
39
40 /*
41  * Default environment variables
42  */
43
44 #define CONFIG_EXTRA_ENV_SETTINGS \
45         "console=console=ttyS0,115200\0"                                \
46         "mtdids=nand0=orion_nand\0"                                     \
47         "mtdparts="CONFIG_MTDPARTS_DEFAULT                      \
48         "kernel=/boot/zImage\0"                                         \
49         "fdt=/boot/guruplug-server-plus.dtb\0"                          \
50         "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
51
52 /*
53  * Ethernet Driver configuration
54  */
55 #ifdef CONFIG_CMD_NET
56 #define CONFIG_MVGBE_PORTS      {1, 1}  /* enable both ports */
57 #define CONFIG_PHY_BASE_ADR     0
58 #endif /* CONFIG_CMD_NET */
59
60 #endif /* _CONFIG_GURUPLUG_H */