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>
7 * SPDX-License-Identifier: GPL-2.0+
10 #ifndef _CONFIG_GURUPLUG_H
11 #define _CONFIG_GURUPLUG_H
14 * High Level Configuration Options (easy to change)
16 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
19 * Standard filesystems
21 #define CONFIG_SYS_MVFS
24 * mv-plug-common.h should be defined after CMD configs since it used them
25 * to enable certain macros
27 #include "mv-plug-common.h"
30 * Environment variables configurations
32 #ifdef CONFIG_CMD_NAND
33 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
36 * max 4k env size is enough, but in case of nand
37 * it has to be rounded to sector size
39 #define CONFIG_ENV_SIZE 0x20000 /* 128k */
40 #define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
43 * Default environment variables
45 #define CONFIG_BOOTCOMMAND \
46 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
48 "ubifsmount ubi:rootfs; " \
49 "ubifsload 0x800000 ${kernel}; " \
50 "ubifsload 0x700000 ${fdt}; " \
52 "fdt addr 0x700000; fdt resize; fdt chosen; " \
53 "bootz 0x800000 - 0x700000"
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"
64 * Ethernet Driver configuration
67 #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
68 #define CONFIG_PHY_BASE_ADR 0
69 #endif /* CONFIG_CMD_NET */
72 * SATA Driver configuration
74 #ifdef CONFIG_MVSATA_IDE
75 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
76 #endif /*CONFIG_MVSATA_IDE*/
78 #endif /* _CONFIG_GURUPLUG_H */