xref: /openbmc/u-boot/include/configs/guruplug.h (revision c66f5620)
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 #define CONFIG_SYS_MVFS
21 
22 /*
23  * mv-plug-common.h should be defined after CMD configs since it used them
24  * to enable certain macros
25  */
26 #include "mv-plug-common.h"
27 
28 /*
29  *  Environment variables configurations
30  */
31 #ifdef CONFIG_CMD_NAND
32 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
33 #endif
34 /*
35  * max 4k env size is enough, but in case of nand
36  * it has to be rounded to sector size
37  */
38 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
39 #define CONFIG_ENV_OFFSET		0xE0000	/* env starts here */
40 
41 /*
42  * Default environment variables
43  */
44 #define CONFIG_BOOTCOMMAND \
45 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
46 	"ubi part root; "						\
47 	"ubifsmount ubi:rootfs; "					\
48 	"ubifsload 0x800000 ${kernel}; "				\
49 	"ubifsload 0x700000 ${fdt}; "					\
50 	"ubifsumount; "							\
51 	"fdt addr 0x700000; fdt resize; fdt chosen; "			\
52 	"bootz 0x800000 - 0x700000"
53 
54 #define CONFIG_EXTRA_ENV_SETTINGS \
55 	"console=console=ttyS0,115200\0"				\
56 	"mtdids=nand0=orion_nand\0"					\
57 	"mtdparts="CONFIG_MTDPARTS_DEFAULT			\
58 	"kernel=/boot/zImage\0"						\
59 	"fdt=/boot/guruplug-server-plus.dtb\0"				\
60 	"bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
61 
62 /*
63  * Ethernet Driver configuration
64  */
65 #ifdef CONFIG_CMD_NET
66 #define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
67 #define CONFIG_PHY_BASE_ADR	0
68 #endif /* CONFIG_CMD_NET */
69 
70 /*
71  * SATA Driver configuration
72  */
73 #ifdef CONFIG_MVSATA_IDE
74 #define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
75 #endif /*CONFIG_MVSATA_IDE*/
76 
77 #endif /* _CONFIG_GURUPLUG_H */
78