3 * Net Insight <www.netinsight.net>
6 * Based on sheevaplug.h:
8 * Marvell Semiconductor <www.marvell.com>
11 * SPDX-License-Identifier: GPL-2.0+
14 #ifndef _CONFIG_OPENRD_H
15 #define _CONFIG_OPENRD_H
18 * High Level Configuration Options (easy to change)
20 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
21 #define CONFIG_KW88F6281 1 /* SOC Name */
22 #define CONFIG_MACH_OPENRD_BASE /* Machine type */
23 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
24 #define CONFIG_SYS_THUMB_BUILD
27 * Commands configuration
29 #define CONFIG_SYS_MVFS
30 #define CONFIG_CMD_ENV
31 #define CONFIG_CMD_NAND
32 #define CONFIG_CMD_IDE
35 * mv-common.h should be defined after CMD configs since it used them
36 * to enable certain macros
38 #include "mv-common.h"
41 * Environment variables configurations
43 #ifdef CONFIG_CMD_NAND
44 #define CONFIG_ENV_IS_IN_NAND 1
45 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
47 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
50 * max 4k env size is enough, but in case of nand
51 * it has to be rounded to sector size
53 #define CONFIG_ENV_SIZE 0x20000 /* 128k */
54 #define CONFIG_ENV_ADDR 0x60000
55 #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
57 * Environment is right behind U-Boot in flash. Make sure U-Boot
58 * doesn't grow into the environment area.
60 #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
63 * Default environment variables
65 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
66 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
67 "${x_bootcmd_usb}; bootm 0x6400000;"
69 #define MTDIDS_DEFAULT "nand0=nand_mtd"
70 #define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\
71 "0x400000@0x100000(uImage),"\
72 "0x1fb00000@0x500000(rootfs)"
74 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
75 "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
76 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
77 "x_bootcmd_usb=usb start\0" \
78 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \
79 "mtdids="MTDIDS_DEFAULT"\0" \
80 "mtdparts="MTDPARTS_DEFAULT"\0"
83 * Ethernet Driver configuration
86 # ifdef CONFIG_BOARD_IS_OPENRD_BASE
87 # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
89 # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
91 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
92 # define CONFIG_PHY_BASE_ADR 0x0
93 # define PHY_NO "88E1121"
95 # define CONFIG_PHY_BASE_ADR 0x8
96 # define PHY_NO "88E1116"
98 #endif /* CONFIG_CMD_NET */
101 * SATA Driver configuration
103 #ifdef CONFIG_MVSATA_IDE
104 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
105 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
106 #endif /*CONFIG_MVSATA_IDE*/
108 #ifdef CONFIG_CMD_MMC
109 #define CONFIG_MVEBU_MMC
110 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
111 #endif /* CONFIG_CMD_MMC */
113 #endif /* _CONFIG_OPENRD_BASE_H */