3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 * SPDX-License-Identifier: GPL-2.0+
9 #ifndef _CONFIG_MV88F6281GTW_GE_H
10 #define _CONFIG_MV88F6281GTW_GE_H
13 * Version number information
15 #define CONFIG_IDENT_STRING "\nMarvell-MV88F6281GTW_GE"
18 * High Level Configuration Options (easy to change)
20 #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
21 #define CONFIG_KW88F6281 1 /* SOC Name */
22 #define CONFIG_MACH_MV88F6281GTW_GE /* Machine type */
23 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
26 * Commands configuration
28 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
29 #include <config_cmd_default.h>
30 #define CONFIG_CMD_DHCP
31 #define CONFIG_CMD_PING
32 #define CONFIG_CMD_ENV
33 #define CONFIG_CMD_FAT
34 #define CONFIG_CMD_PING
36 #define CONFIG_CMD_USB
39 * mv-common.h should be defined after CMD configs since it used them
40 * to enable certain macros
42 #include "mv-common.h"
44 /* Unwanted stuffs from mv-common.h */
45 #undef CONFIG_CMD_EXT2
46 #undef CONFIG_CMD_JFFS2
49 #undef CONFIG_CMD_UBIFS
53 * Environment variables configurations
55 #ifdef CONFIG_SPI_FLASH
56 #define CONFIG_ENV_IS_IN_SPI_FLASH 1
57 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
59 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
61 #define CONFIG_ENV_SIZE 0x1000 /* 4k */
62 #define CONFIG_ENV_ADDR 0x30000
63 #define CONFIG_ENV_OFFSET 0x30000 /* env starts here */
66 * Default environment variables
68 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
69 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
70 "${x_bootcmd_usb}; bootm 0x6400000;"
72 #define CONFIG_MTDPARTS "spi0.0:512k(uboot)," \
73 "512k@512k(psm),2m@1m(kernel),13m@3m(rootfs)\0"
75 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
76 "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS \
77 "x_bootcmd_kernel=cp.b 0xE8100000 0x6400000 0x200000\0" \
78 "x_bootcmd_usb=usb start\0" \
79 "x_bootargs_root=root=/dev/mtdblock3 ro rootfstype=squashfs\0"
82 * Ethernet Driver configuration
85 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
86 #define CONFIG_MV88E61XX_SWITCH /* Enable mv88e61xx switch driver */
87 #endif /* CONFIG_CMD_NET */
89 #endif /* _CONFIG_MV88F6281GTW_GE_H */