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