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: Prafulla Wadaskar <prafulla@marvell.com> 7 */ 8 9 #ifndef _CONFIG_SHEEVAPLUG_H 10 #define _CONFIG_SHEEVAPLUG_H 11 12 /* 13 * High Level Configuration Options (easy to change) 14 */ 15 #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */ 16 17 #include "mv-plug-common.h" 18 19 /* 20 * Environment variables configurations 21 */ 22 /* 23 * max 4k env size is enough, but in case of nand 24 * it has to be rounded to sector size 25 */ 26 /* 27 * Environment is right behind U-Boot in flash. Make sure U-Boot 28 * doesn't grow into the environment area. 29 */ 30 #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET 31 32 /* 33 * Default environment variables 34 */ 35 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ 36 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ 37 "bootm 0x6400000;" 38 39 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \ 40 "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS_DEFAULT \ 41 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x400000\0" \ 42 "x_bootcmd_usb=usb start\0" \ 43 "x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0" 44 45 /* 46 * Ethernet Driver configuration 47 */ 48 #ifdef CONFIG_CMD_NET 49 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 50 #define CONFIG_PHY_BASE_ADR 0 51 #endif /* CONFIG_CMD_NET */ 52 53 /* 54 * SATA driver configuration 55 */ 56 #ifdef CONFIG_SATA 57 #define CONFIG_SYS_SATA_MAX_DEVICE 2 58 #define CONFIG_LBA48 59 #endif /* CONFIG_SATA */ 60 61 #endif /* _CONFIG_SHEEVAPLUG_H */ 62