Merge branch '2022-02-08-Kconfig-updates'
[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  * Environment is right behind U-Boot in flash. Make sure U-Boot
27  * doesn't grow into the environment area.
28  */
29 #define CONFIG_BOARD_SIZE_LIMIT         CONFIG_ENV_OFFSET
30
31 /*
32  * Default environment variables
33  */
34
35 #define CONFIG_EXTRA_ENV_SETTINGS       "x_bootargs=console=ttyS0,115200 " \
36         CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
37         "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0"      \
38         "x_bootcmd_usb=usb start\0"                                     \
39         "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0"
40
41 /*
42  * Ethernet Driver configuration
43  */
44 #ifdef CONFIG_CMD_NET
45 # ifdef CONFIG_BOARD_IS_OPENRD_BASE
46 #  define CONFIG_MVGBE_PORTS    {1, 0}  /* enable port 0 only */
47 # else
48 #  define CONFIG_MVGBE_PORTS    {1, 1}  /* enable both ports */
49 # endif
50 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
51 #  define CONFIG_PHY_BASE_ADR   0x0
52 #  define PHY_NO                "88E1121"
53 # else
54 #  define CONFIG_PHY_BASE_ADR   0x8
55 #  define PHY_NO                "88E1116"
56 # endif
57 #endif /* CONFIG_CMD_NET */
58
59 /*
60  * SATA Driver configuration
61  */
62
63 #endif /* _CONFIG_OPENRD_BASE_H */