Convert CONFIG_SYS_PCI_64BIT to Kconfig
[platform/kernel/u-boot.git] / include / configs / sheevaplug.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: Prafulla Wadaskar <prafulla@marvell.com>
7  */
8
9 #ifndef _CONFIG_SHEEVAPLUG_H
10 #define _CONFIG_SHEEVAPLUG_H
11
12 /*
13  * High Level Configuration Options (easy to change)
14  */
15 #define CONFIG_FEROCEON_88FR131 1       /* CPU Core subversion */
16
17 #include "mv-plug-common.h"
18
19 /*
20  *  Environment variables configurations
21  */
22 /*
23  * max 4k env size is enough, but in case of nand
24  * it has to be rounded to sector size
25  */
26 /*
27  * Environment is right behind U-Boot in flash. Make sure U-Boot
28  * doesn't grow into the environment area.
29  */
30 #define CONFIG_BOARD_SIZE_LIMIT         CONFIG_ENV_OFFSET
31
32 /*
33  * Default environment variables
34  */
35
36 #define CONFIG_EXTRA_ENV_SETTINGS       "x_bootargs=console"    \
37         "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS_DEFAULT        \
38         "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x400000\0" \
39         "x_bootcmd_usb=usb start\0" \
40         "x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0"
41
42 /*
43  * Ethernet Driver configuration
44  */
45 #ifdef CONFIG_CMD_NET
46 #define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
47 #define CONFIG_PHY_BASE_ADR     0
48 #endif /* CONFIG_CMD_NET */
49
50 /*
51  * SATA driver configuration
52  */
53 #ifdef CONFIG_SATA
54 #define CONFIG_SYS_SATA_MAX_DEVICE      2
55 #define CONFIG_LBA48
56 #endif /* CONFIG_SATA */
57
58 #endif /* _CONFIG_SHEEVAPLUG_H */