xref: /openbmc/u-boot/include/configs/guruplug.h (revision c7b9686d)
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 /*
15  * Version number information
16  */
17 #define CONFIG_IDENT_STRING	"\nMarvell-GuruPlug"
18 
19 /*
20  * High Level Configuration Options (easy to change)
21  */
22 #define CONFIG_SHEEVA_88SV131	1	/* CPU Core subversion */
23 #define CONFIG_MACH_GURUPLUG	/* Machine type */
24 
25 /*
26  * Standard filesystems
27  */
28 #define CONFIG_SYS_MVFS
29 
30 /*
31  * mv-plug-common.h should be defined after CMD configs since it used them
32  * to enable certain macros
33  */
34 #include "mv-plug-common.h"
35 
36 /*
37  *  Environment variables configurations
38  */
39 #ifdef CONFIG_CMD_NAND
40 #define CONFIG_ENV_IS_IN_NAND		1
41 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
42 #else
43 #define CONFIG_ENV_IS_NOWHERE		1	/* if env in SDRAM */
44 #endif
45 /*
46  * max 4k env size is enough, but in case of nand
47  * it has to be rounded to sector size
48  */
49 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
50 #define CONFIG_ENV_OFFSET		0xE0000	/* env starts here */
51 
52 /*
53  * Default environment variables
54  */
55 #define CONFIG_BOOTCOMMAND \
56 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
57 	"ubi part root; "						\
58 	"ubifsmount ubi:rootfs; "					\
59 	"ubifsload 0x800000 ${kernel}; "				\
60 	"ubifsload 0x700000 ${fdt}; "					\
61 	"ubifsumount; "							\
62 	"fdt addr 0x700000; fdt resize; fdt chosen; "			\
63 	"bootz 0x800000 - 0x700000"
64 
65 #define CONFIG_MTDPARTS	\
66 	"mtdparts=orion_nand:"						\
67 	"896K(uboot),128K(uboot_env),"					\
68 	"-@1M(root)\0"
69 
70 #define CONFIG_EXTRA_ENV_SETTINGS \
71 	"console=console=ttyS0,115200\0"				\
72 	"mtdids=nand0=orion_nand\0"					\
73 	"mtdparts="CONFIG_MTDPARTS					\
74 	"kernel=/boot/zImage\0"						\
75 	"fdt=/boot/guruplug-server-plus.dtb\0"				\
76 	"bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
77 
78 #define MTDIDS_DEFAULT	"nand0=orion_nand"
79 
80 #define MTDPARTS_DEFAULT	\
81 	"mtdparts="CONFIG_MTDPARTS
82 
83 /*
84  * Ethernet Driver configuration
85  */
86 #ifdef CONFIG_CMD_NET
87 #define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
88 #define CONFIG_PHY_BASE_ADR	0
89 #endif /* CONFIG_CMD_NET */
90 
91 /*
92  * SATA Driver configuration
93  */
94 #ifdef CONFIG_MVSATA_IDE
95 #define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
96 #endif /*CONFIG_MVSATA_IDE*/
97 
98 #endif /* _CONFIG_GURUPLUG_H */
99