blob: 62107625e2567e8c5b8039d2b78281d3723f72e1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefanc98efc32011-12-23 06:35:04 +00002/*
3 * Copyright (C) 2011
Stefan Herbrechtsmeier91eafc02014-12-28 14:09:50 +01004 * Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
Stefanc98efc32011-12-23 06:35:04 +00005 *
6 * Based on Kirkwood support:
7 * (C) Copyright 2009
8 * Marvell Semiconductor <www.marvell.com>
9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
Stefanc98efc32011-12-23 06:35:04 +000010 */
11
12#ifndef _CONFIG_DNS325_H
13#define _CONFIG_DNS325_H
14
15/*
16 * Machine number definition
17 */
Stefanc98efc32011-12-23 06:35:04 +000018#define CONFIG_MACH_TYPE MACH_TYPE_DNS325
Stefanc98efc32011-12-23 06:35:04 +000019
20/*
21 * High Level Configuration Options (easy to change)
22 */
23#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Stefanc98efc32011-12-23 06:35:04 +000024#define CONFIG_KW88F6281 /* SOC Name */
25#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
26
Stefanc98efc32011-12-23 06:35:04 +000027#include "mv-common.h"
28
29/* Remove or override few declarations from mv-common.h */
Stefanc98efc32011-12-23 06:35:04 +000030
31/*
32 * Ethernet Driver configuration
33 */
34#ifdef CONFIG_CMD_NET
35#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
36#define CONFIG_NETCONSOLE
37#endif
38
39/*
40 * SATA Driver configuration
41 */
42#ifdef CONFIG_MVSATA_IDE
43#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
44#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
45#endif
46
47/*
Stefanc98efc32011-12-23 06:35:04 +000048 * Enable GPI0 support
49 */
50#define CONFIG_KIRKWOOD_GPIO
51
52/*
Stefanc98efc32011-12-23 06:35:04 +000053 * Environment variables configurations
54 */
Stefanc98efc32011-12-23 06:35:04 +000055
56/*
57 * Default environment variables
58 */
Stefanc98efc32011-12-23 06:35:04 +000059
60#define CONFIG_EXTRA_ENV_SETTINGS \
61 "stdin=serial\0" \
62 "stdout=serial\0" \
63 "stderr=serial\0" \
64 "loadaddr=0x800000\0" \
65 "autoload=no\0" \
66 "console=ttyS0,115200\0" \
Tom Rini5ad8e112017-10-22 17:55:07 -040067 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Stefanc98efc32011-12-23 06:35:04 +000068 "optargs=\0" \
69 "bootenv=uEnv.txt\0" \
70 "importbootenv=echo Importing environment ...; " \
71 "env import -t ${loadaddr} ${filesize}\0" \
72 "loadbootenv=fatload usb 0 ${loadaddr} ${bootenv}\0" \
73 "setbootargs=setenv bootargs console=${console} " \
74 "${optargs} " \
75 "${mtdparts} " \
76 "root=${bootenvroot} " \
77 "rootfstype=${bootenvrootfstype}\0" \
78 "subbootcmd=run setbootargs; " \
79 "if run bootenvloadimage; then " \
80 "bootm ${loadaddr};" \
81 "fi;\0" \
82 "nandroot=ubi0:rootfs ubi.mtd=rootfs\0" \
83 "nandrootfstype=ubifs\0" \
84 "nandloadimage=nand read ${loadaddr} kernel\0" \
85 "setnandbootenv=echo Booting from nand ...; " \
86 "setenv bootenvroot ${nandroot}; " \
87 "setenv bootenvrootfstype ${nandrootfstype}; " \
88 "setenv bootenvloadimage ${nandloadimage}\0"
89
90#define CONFIG_BOOTCOMMAND \
91 "if test -n ${bootenv} && usb start; then " \
92 "if run loadbootenv; then " \
93 "echo Loaded environment ${bootenv} from usb;" \
94 "run importbootenv;" \
95 "fi;" \
96 "if test -n ${bootenvcmd}; then " \
97 "echo Running bootenvcmd ...;" \
98 "run bootenvcmd;" \
99 "fi;" \
100 "fi;" \
101 "run setnandbootenv subbootcmd;"
102
103#endif /* _CONFIG_DNS325_H */