Convert CONFIG_RESET_PHY_R to Kconfig
[platform/kernel/u-boot.git] / include / configs / dockstar.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2022  Tony Dinh <mibodhi@gmail.com>
4  * Copyright (C) 2010  Eric C. Cooper <ecc@cmu.edu>
5  *
6  * Based on sheevaplug.h originally written by
7  * Prafulla Wadaskar <prafulla@marvell.com>
8  * (C) Copyright 2009
9  * Marvell Semiconductor <www.marvell.com>
10  */
11
12 #ifndef _CONFIG_DOCKSTAR_H
13 #define _CONFIG_DOCKSTAR_H
14
15 /*
16  * mv-common.h should be defined after CMD configs since it used them
17  * to enable certain macros
18  */
19 #include "mv-common.h"
20
21 /*
22  * Default environment variables
23  */
24
25 #define CONFIG_EXTRA_ENV_SETTINGS \
26         "console=console=ttyS0,115200\0" \
27         "mtdids=nand0=orion_nand\0" \
28         "mtdparts=" CONFIG_MTDPARTS_DEFAULT \
29         "kernel=/boot/uImage\0" \
30         "initrd=/boot/uInitrd\0" \
31         "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
32
33 /*
34  * Ethernet Driver configuration
35  */
36 #define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
37 #define CONFIG_PHY_BASE_ADR     0
38
39 #endif /* _CONFIG_DOCKSTAR_H */