xref: /openbmc/u-boot/include/configs/guruplug.h (revision 77c42611)
1 /*
2  * (C) Copyright 2009-2014
3  * Gerald Kerma <dreagle@doukki.net>
4  * Marvell Semiconductor <www.marvell.com>
5  * Written-by: Siddarth Gore <gores@marvell.com>
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef _CONFIG_GURUPLUG_H
11 #define _CONFIG_GURUPLUG_H
12 
13 /*
14  * High Level Configuration Options (easy to change)
15  */
16 #define CONFIG_SHEEVA_88SV131	1	/* CPU Core subversion */
17 
18 /*
19  * Standard filesystems
20  */
21 #define CONFIG_SYS_MVFS
22 
23 /*
24  * mv-plug-common.h should be defined after CMD configs since it used them
25  * to enable certain macros
26  */
27 #include "mv-plug-common.h"
28 
29 /*
30  *  Environment variables configurations
31  */
32 #ifdef CONFIG_CMD_NAND
33 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
34 #endif
35 /*
36  * max 4k env size is enough, but in case of nand
37  * it has to be rounded to sector size
38  */
39 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
40 #define CONFIG_ENV_OFFSET		0xE0000	/* env starts here */
41 
42 /*
43  * Default environment variables
44  */
45 #define CONFIG_BOOTCOMMAND \
46 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
47 	"ubi part root; "						\
48 	"ubifsmount ubi:rootfs; "					\
49 	"ubifsload 0x800000 ${kernel}; "				\
50 	"ubifsload 0x700000 ${fdt}; "					\
51 	"ubifsumount; "							\
52 	"fdt addr 0x700000; fdt resize; fdt chosen; "			\
53 	"bootz 0x800000 - 0x700000"
54 
55 #define CONFIG_EXTRA_ENV_SETTINGS \
56 	"console=console=ttyS0,115200\0"				\
57 	"mtdids=nand0=orion_nand\0"					\
58 	"mtdparts="CONFIG_MTDPARTS_DEFAULT			\
59 	"kernel=/boot/zImage\0"						\
60 	"fdt=/boot/guruplug-server-plus.dtb\0"				\
61 	"bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
62 
63 /*
64  * Ethernet Driver configuration
65  */
66 #ifdef CONFIG_CMD_NET
67 #define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
68 #define CONFIG_PHY_BASE_ADR	0
69 #endif /* CONFIG_CMD_NET */
70 
71 /*
72  * SATA Driver configuration
73  */
74 #ifdef CONFIG_MVSATA_IDE
75 #define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
76 #endif /*CONFIG_MVSATA_IDE*/
77 
78 #endif /* _CONFIG_GURUPLUG_H */
79