1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Net Insight <www.netinsight.net>
5 * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7 * Based on sheevaplug.h:
9 * Marvell Semiconductor <www.marvell.com>
10 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
13 #ifndef _CONFIG_OPENRD_H
14 #define _CONFIG_OPENRD_H
17 * High Level Configuration Options (easy to change)
19 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
20 #define CONFIG_KW88F6281 1 /* SOC Name */
21 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
24 * Commands configuration
26 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
27 #define CONFIG_MTD_PARTITIONS
30 * mv-common.h should be defined after CMD configs since it used them
31 * to enable certain macros
33 #include "mv-common.h"
36 * Environment variables configurations
38 #ifdef CONFIG_CMD_NAND
39 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
42 * max 4k env size is enough, but in case of nand
43 * it has to be rounded to sector size
45 #define CONFIG_ENV_SIZE 0x20000 /* 128k */
46 #define CONFIG_ENV_ADDR 0x60000
47 #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
49 * Environment is right behind U-Boot in flash. Make sure U-Boot
50 * doesn't grow into the environment area.
52 #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
55 * Default environment variables
57 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
58 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
59 "${x_bootcmd_usb}; bootm 0x6400000;"
61 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console=ttyS0,115200 " \
62 CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
63 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
64 "x_bootcmd_usb=usb start\0" \
65 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \
66 "mtdids="CONFIG_MTDIDS_DEFAULT"\0" \
67 "mtdparts="CONFIG_MTDPARTS_DEFAULT"\0"
70 * Ethernet Driver configuration
73 # ifdef CONFIG_BOARD_IS_OPENRD_BASE
74 # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
76 # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
78 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
79 # define CONFIG_PHY_BASE_ADR 0x0
80 # define PHY_NO "88E1121"
82 # define CONFIG_PHY_BASE_ADR 0x8
83 # define PHY_NO "88E1116"
85 #endif /* CONFIG_CMD_NET */
88 * SATA Driver configuration
90 #ifdef CONFIG_MVSATA_IDE
91 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
92 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
93 #endif /*CONFIG_MVSATA_IDE*/
96 #define CONFIG_MVEBU_MMC
97 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
98 #endif /* CONFIG_CMD_MMC */
100 #endif /* _CONFIG_OPENRD_BASE_H */