1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2009-2014
5 * Marvell Semiconductor <www.marvell.com>
9 #ifndef _CONFIG_GURUPLUG_H
10 #define _CONFIG_GURUPLUG_H
13 * High Level Configuration Options (easy to change)
15 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
18 * Standard filesystems
21 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
22 #define CONFIG_MTD_PARTITIONS
25 * mv-plug-common.h should be defined after CMD configs since it used them
26 * to enable certain macros
28 #include "mv-plug-common.h"
31 * Environment variables configurations
33 #ifdef CONFIG_CMD_NAND
34 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
37 * max 4k env size is enough, but in case of nand
38 * it has to be rounded to sector size
40 #define CONFIG_ENV_SIZE 0x20000 /* 128k */
41 #define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
44 * Default environment variables
46 #define CONFIG_BOOTCOMMAND \
47 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
49 "ubifsmount ubi:rootfs; " \
50 "ubifsload 0x800000 ${kernel}; " \
51 "ubifsload 0x700000 ${fdt}; " \
53 "fdt addr 0x700000; fdt resize; fdt chosen; " \
54 "bootz 0x800000 - 0x700000"
56 #define CONFIG_EXTRA_ENV_SETTINGS \
57 "console=console=ttyS0,115200\0" \
58 "mtdids=nand0=orion_nand\0" \
59 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
60 "kernel=/boot/zImage\0" \
61 "fdt=/boot/guruplug-server-plus.dtb\0" \
62 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
65 * Ethernet Driver configuration
68 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
69 #define CONFIG_PHY_BASE_ADR 0
70 #endif /* CONFIG_CMD_NET */
73 * SATA Driver configuration
75 #ifdef CONFIG_MVSATA_IDE
76 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
77 #endif /*CONFIG_MVSATA_IDE*/
79 #endif /* _CONFIG_GURUPLUG_H */