3 * Gerald Kerma <dreagle@doukki.net>
4 * Tony Dinh <mibodhi@gmail.com>
5 * Luka Perkov <luka.perkov@sartura.hr>
7 * SPDX-License-Identifier: GPL-2.0+
10 #ifndef _CONFIG_NSA310S_H
11 #define _CONFIG_NSA310S_H
13 /* high level configuration options */
14 #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
15 #define CONFIG_KW88F6192 1 /* SOC Name */
16 #define CONFIG_KW88F6702 1 /* SOC Name */
17 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
19 /* add target to build it automatically upon "make" */
20 #define CONFIG_BUILD_TARGET "u-boot.kwb"
22 /* compression configuration */
26 /* commands configuration */
27 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */
28 #define CONFIG_SYS_MVFS
29 #define CONFIG_CMD_BOOTZ
30 #define CONFIG_CMD_IDE
31 #define CONFIG_CMD_MII
34 * mv-common.h should be defined after CMD configs since it used them
35 * to enable certain macros
37 #include "mv-common.h"
39 /* environment variables configuration */
40 #ifdef CONFIG_CMD_NAND
41 #define CONFIG_ENV_IS_IN_NAND
42 #define CONFIG_ENV_SECT_SIZE 0x20000
44 #define CONFIG_ENV_IS_NOWHERE
46 #define CONFIG_ENV_SIZE 0x20000
47 #define CONFIG_ENV_OFFSET 0xe0000
49 /* default environment variables */
50 #define CONFIG_BOOTCOMMAND \
51 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
53 "ubifsmount ubi:rootfs; " \
54 "ubifsload 0x800000 ${kernel}; " \
55 "ubifsload 0x700000 ${fdt}; " \
57 "fdt addr 0x700000; fdt resize; fdt chosen; " \
58 "bootz 0x800000 - 0x700000"
60 #define CONFIG_MTDPARTS \
61 "mtdparts=orion_nand:" \
62 "0xe0000@0x0(uboot)," \
63 "0x20000@0xe0000(uboot_env)," \
64 "0x100000@0x100000(second_stage_uboot)," \
67 #define CONFIG_EXTRA_ENV_SETTINGS \
68 "console=console=ttyS0,115200\0" \
69 "mtdids=nand0=orion_nand\0" \
70 "mtdparts="CONFIG_MTDPARTS \
71 "kernel=/boot/zImage\0" \
72 "fdt=/boot/nsa310s.dtb\0" \
73 "bootargs_root=ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs rw\0"
75 /* Ethernet driver configuration */
77 #define CONFIG_NETCONSOLE
78 #define CONFIG_NET_MULTI
79 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
80 #define CONFIG_PHY_BASE_ADR 1
81 #define CONFIG_PHY_GIGE
82 #define CONFIG_RESET_PHY_R
83 #endif /* CONFIG_CMD_NET */
85 /* SATA driver configuration */
88 #define CONFIG_IDE_PREINIT
89 #define CONFIG_DOS_PARTITION
90 #define CONFIG_MVSATA_IDE_USE_PORT0
91 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
92 #endif /* CONFIG_CMD_IDE */
94 /* RTC driver configuration */
95 #ifdef CONFIG_CMD_DATE
97 #endif /* CONFIG_CMD_DATE */
99 #endif /* _CONFIG_NSA310S_H */