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_KIRKWOOD 1 /* SOC Family Name */
22 #define CONFIG_KW88F6281 1 /* SOC Name */
23 #define CONFIG_MACH_MV88F6281GTW_GE /* Machine type */
24 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
27 * Commands configuration
29 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
30 #include <config_cmd_default.h>
31 #define CONFIG_CMD_DHCP
32 #define CONFIG_CMD_PING
33 #define CONFIG_CMD_ENV
34 #define CONFIG_CMD_FAT
35 #define CONFIG_CMD_PING
37 #define CONFIG_CMD_USB
40 * mv-common.h should be defined after CMD configs since it used them
41 * to enable certain macros
43 #include "mv-common.h"
45 /* Unwanted stuffs from mv-common.h */
46 #undef CONFIG_CMD_EXT2
47 #undef CONFIG_CMD_JFFS2
50 #undef CONFIG_CMD_UBIFS
54 * Environment variables configurations
56 #ifdef CONFIG_SPI_FLASH
57 #define CONFIG_ENV_IS_IN_SPI_FLASH 1
58 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
60 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
62 #define CONFIG_ENV_SIZE 0x1000 /* 4k */
63 #define CONFIG_ENV_ADDR 0x30000
64 #define CONFIG_ENV_OFFSET 0x30000 /* env starts here */
67 * Default environment variables
69 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
70 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
71 "${x_bootcmd_usb}; bootm 0x6400000;"
73 #define CONFIG_MTDPARTS "spi0.0:512k(uboot)," \
74 "512k@512k(psm),2m@1m(kernel),13m@3m(rootfs)\0"
76 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
77 "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS \
78 "x_bootcmd_kernel=cp.b 0xE8100000 0x6400000 0x200000\0" \
79 "x_bootcmd_usb=usb start\0" \
80 "x_bootargs_root=root=/dev/mtdblock3 ro rootfstype=squashfs\0"
83 * Ethernet Driver configuration
86 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
87 #define CONFIG_MV88E61XX_SWITCH /* Enable mv88e61xx switch driver */
88 #endif /* CONFIG_CMD_NET */
90 #endif /* _CONFIG_MV88F6281GTW_GE_H */