5 * Based on Kirkwood support:
7 * Marvell Semiconductor <www.marvell.com>
10 * SPDX-License-Identifier: GPL-2.0+
13 #ifndef _CONFIG_DNS325_H
14 #define _CONFIG_DNS325_H
17 * Machine number definition
19 #define CONFIG_MACH_TYPE MACH_TYPE_DNS325
22 * High Level Configuration Options (easy to change)
24 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
25 #define CONFIG_KW88F6281 /* SOC Name */
26 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
29 * Commands configuration
31 #define CONFIG_SYS_MVFS
33 #define CONFIG_NR_DRAM_BANKS 1
36 * mv-common.h should be defined after CMD configs since it used them
37 * to enable certain macros
39 #include "mv-common.h"
41 /* Remove or override few declarations from mv-common.h */
44 * Ethernet Driver configuration
47 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
48 #define CONFIG_NETCONSOLE
52 * SATA Driver configuration
54 #ifdef CONFIG_MVSATA_IDE
55 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
56 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
60 * RTC driver configuration
62 #ifdef CONFIG_CMD_DATE
69 #define CONFIG_KIRKWOOD_GPIO
72 * Environment variables configurations
74 #ifdef CONFIG_CMD_NAND
75 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128KB */
78 #define CONFIG_ENV_SIZE 0x20000 /* 128KB */
79 #define CONFIG_ENV_ADDR 0xe0000
80 #define CONFIG_ENV_OFFSET 0xe0000 /* env starts here */
83 * Default environment variables
86 #define CONFIG_EXTRA_ENV_SETTINGS \
90 "loadaddr=0x800000\0" \
92 "console=ttyS0,115200\0" \
93 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
95 "bootenv=uEnv.txt\0" \
96 "importbootenv=echo Importing environment ...; " \
97 "env import -t ${loadaddr} ${filesize}\0" \
98 "loadbootenv=fatload usb 0 ${loadaddr} ${bootenv}\0" \
99 "setbootargs=setenv bootargs console=${console} " \
102 "root=${bootenvroot} " \
103 "rootfstype=${bootenvrootfstype}\0" \
104 "subbootcmd=run setbootargs; " \
105 "if run bootenvloadimage; then " \
106 "bootm ${loadaddr};" \
108 "nandroot=ubi0:rootfs ubi.mtd=rootfs\0" \
109 "nandrootfstype=ubifs\0" \
110 "nandloadimage=nand read ${loadaddr} kernel\0" \
111 "setnandbootenv=echo Booting from nand ...; " \
112 "setenv bootenvroot ${nandroot}; " \
113 "setenv bootenvrootfstype ${nandrootfstype}; " \
114 "setenv bootenvloadimage ${nandloadimage}\0"
116 #define CONFIG_BOOTCOMMAND \
117 "if test -n ${bootenv} && usb start; then " \
118 "if run loadbootenv; then " \
119 "echo Loaded environment ${bootenv} from usb;" \
120 "run importbootenv;" \
122 "if test -n ${bootenvcmd}; then " \
123 "echo Running bootenvcmd ...;" \
127 "run setnandbootenv subbootcmd;"
129 #endif /* _CONFIG_DNS325_H */