2 * (C) Copyright 2009-2014
4 * Marvell Semiconductor <www.marvell.com>
7 * SPDX-License-Identifier: GPL-2.0+
10 #ifndef _CONFIG_GURUPLUG_H
11 #define _CONFIG_GURUPLUG_H
15 * Version number information
17 #define CONFIG_IDENT_STRING "\nMarvell-GuruPlug"
20 * High Level Configuration Options (easy to change)
22 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
23 #define CONFIG_KW88F6281 1 /* SOC Name */
24 #define CONFIG_MACH_GURUPLUG /* Machine type */
25 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
27 /* Add target to build it automatically upon "make" */
28 #define CONFIG_BUILD_TARGET "u-boot.kwb"
31 * Compression configuration
38 * Enable device tree support
40 #define CONFIG_OF_LIBFDT
43 * Miscellaneous configurable options
45 #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
48 * Commands configuration
50 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
51 #define CONFIG_CMD_BOOTZ
52 #define CONFIG_CMD_DATE
53 #define CONFIG_CMD_DHCP
54 #define CONFIG_CMD_ENV
55 #define CONFIG_CMD_IDE
56 #define CONFIG_CMD_MII
57 #define CONFIG_CMD_NAND
58 #define CONFIG_CMD_PING
59 #define CONFIG_CMD_USB
62 * mv-common.h should be defined after CMD configs since it used them
63 * to enable certain macros
65 #include "mv-common.h"
68 * Environment variables configurations
70 #ifdef CONFIG_CMD_NAND
71 #define CONFIG_ENV_IS_IN_NAND 1
72 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
74 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
77 * max 4k env size is enough, but in case of nand
78 * it has to be rounded to sector size
80 #define CONFIG_ENV_SIZE 0x20000 /* 128k */
81 #define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
84 * Default environment variables
86 #define CONFIG_BOOTCOMMAND \
87 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
89 "ubifsmount ubi:rootfs; " \
90 "ubifsload 0x800000 ${kernel}; " \
91 "ubifsload 0x700000 ${fdt}; " \
93 "fdt addr 0x700000; fdt resize; fdt chosen; " \
94 "bootz 0x800000 - 0x700000"
96 #define CONFIG_MTDPARTS \
97 "mtdparts=orion_nand:" \
98 "896K(uboot),128K(uboot_env)," \
101 #define CONFIG_EXTRA_ENV_SETTINGS \
102 "console=console=ttyS0,115200\0" \
103 "mtdids=nand0=orion_nand\0" \
104 "mtdparts="CONFIG_MTDPARTS \
105 "kernel=/boot/zImage\0" \
106 "fdt=/boot/guruplug-server-plus.dtb\0" \
107 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
109 #define MTDIDS_DEFAULT "nand0=orion_nand"
111 #define MTDPARTS_DEFAULT \
112 "mtdparts="CONFIG_MTDPARTS
115 * Ethernet Driver configuration
117 #ifdef CONFIG_CMD_NET
118 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
119 #define CONFIG_PHY_BASE_ADR 0
120 #endif /* CONFIG_CMD_NET */
123 * SATA Driver configuration
125 #ifdef CONFIG_MVSATA_IDE
126 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
127 #endif /*CONFIG_MVSATA_IDE*/
130 * RTC driver configuration
132 #ifdef CONFIG_CMD_DATE
133 #define CONFIG_RTC_MV
134 #endif /* CONFIG_CMD_DATE */
139 #define CONFIG_CMD_EXT2
140 #define CONFIG_CMD_EXT4
141 #define CONFIG_CMD_FAT
142 #define CONFIG_CMD_JFFS2
143 #define CONFIG_CMD_UBI
144 #define CONFIG_CMD_UBIFS
145 #define CONFIG_RBTREE
146 #define CONFIG_MTD_DEVICE
147 #define CONFIG_MTD_PARTITIONS
148 #define CONFIG_CMD_MTDPARTS
150 #define CONFIG_SYS_ALT_MEMTEST
152 #endif /* _CONFIG_GURUPLUG_H */