Kconfig: Drop CONFIG_CMD_ENV
[platform/kernel/u-boot.git] / include / configs / openrd.h
1 /*
2  * (C) Copyright 2009
3  * Net Insight <www.netinsight.net>
4  * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5  *
6  * Based on sheevaplug.h:
7  * (C) Copyright 2009
8  * Marvell Semiconductor <www.marvell.com>
9  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
10  *
11  * SPDX-License-Identifier:     GPL-2.0+
12  */
13
14 #ifndef _CONFIG_OPENRD_H
15 #define _CONFIG_OPENRD_H
16
17 /*
18  * High Level Configuration Options (easy to change)
19  */
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
25 /*
26  * Commands configuration
27  */
28 #define CONFIG_SYS_MVFS
29 #define CONFIG_CMD_NAND
30 #define CONFIG_CMD_IDE
31
32 /*
33  * mv-common.h should be defined after CMD configs since it used them
34  * to enable certain macros
35  */
36 #include "mv-common.h"
37
38 /*
39  *  Environment variables configurations
40  */
41 #ifdef CONFIG_CMD_NAND
42 #define CONFIG_ENV_IS_IN_NAND           1
43 #define CONFIG_ENV_SECT_SIZE            0x20000 /* 128K */
44 #else
45 #define CONFIG_ENV_IS_NOWHERE           1       /* if env in SDRAM */
46 #endif
47 /*
48  * max 4k env size is enough, but in case of nand
49  * it has to be rounded to sector size
50  */
51 #define CONFIG_ENV_SIZE                 0x20000 /* 128k */
52 #define CONFIG_ENV_ADDR                 0x60000
53 #define CONFIG_ENV_OFFSET               0x60000 /* env starts here */
54 /*
55  * Environment is right behind U-Boot in flash. Make sure U-Boot
56  * doesn't grow into the environment area.
57  */
58 #define CONFIG_BOARD_SIZE_LIMIT         CONFIG_ENV_OFFSET
59
60 /*
61  * Default environment variables
62  */
63 #define CONFIG_BOOTCOMMAND              "${x_bootcmd_kernel}; " \
64         "setenv bootargs ${x_bootargs} ${x_bootargs_root}; "    \
65         "${x_bootcmd_usb}; bootm 0x6400000;"
66
67 #define MTDIDS_DEFAULT          "nand0=nand_mtd"
68 #define MTDPARTS_DEFAULT        "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\
69         "0x400000@0x100000(uImage),"\
70         "0x1fb00000@0x500000(rootfs)"
71
72 #define CONFIG_EXTRA_ENV_SETTINGS       "x_bootargs=console"            \
73         "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0"         \
74         "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0"      \
75         "x_bootcmd_usb=usb start\0"                                     \
76         "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0"           \
77         "mtdids="MTDIDS_DEFAULT"\0"                                     \
78         "mtdparts="MTDPARTS_DEFAULT"\0"
79
80 /*
81  * Ethernet Driver configuration
82  */
83 #ifdef CONFIG_CMD_NET
84 # ifdef CONFIG_BOARD_IS_OPENRD_BASE
85 #  define CONFIG_MVGBE_PORTS    {1, 0}  /* enable port 0 only */
86 # else
87 #  define CONFIG_MVGBE_PORTS    {1, 1}  /* enable both ports */
88 # endif
89 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
90 #  define CONFIG_PHY_BASE_ADR   0x0
91 #  define PHY_NO                "88E1121"
92 # else
93 #  define CONFIG_PHY_BASE_ADR   0x8
94 #  define PHY_NO                "88E1116"
95 # endif
96 #endif /* CONFIG_CMD_NET */
97
98 /*
99  * SATA Driver configuration
100  */
101 #ifdef CONFIG_MVSATA_IDE
102 #define CONFIG_SYS_ATA_IDE0_OFFSET      MV_SATA_PORT0_OFFSET
103 #define CONFIG_SYS_ATA_IDE1_OFFSET      MV_SATA_PORT1_OFFSET
104 #endif /*CONFIG_MVSATA_IDE*/
105
106 #ifdef CONFIG_CMD_MMC
107 #define CONFIG_MVEBU_MMC
108 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
109 #endif /* CONFIG_CMD_MMC */
110
111 #endif /* _CONFIG_OPENRD_BASE_H */