configs: move RTC_MV config from mv-plug-common.h to boards
[platform/kernel/u-boot.git] / include / configs / guruplug.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009-2014
4  * Gerald Kerma <dreagle@doukki.net>
5  * Marvell Semiconductor <www.marvell.com>
6  * Written-by: Siddarth Gore <gores@marvell.com>
7  */
8
9 #ifndef _CONFIG_GURUPLUG_H
10 #define _CONFIG_GURUPLUG_H
11
12 /*
13  * High Level Configuration Options (easy to change)
14  */
15 #define CONFIG_SHEEVA_88SV131   1       /* CPU Core subversion */
16
17 /*
18  * Standard filesystems
19  */
20 #define CONFIG_BZIP2
21
22 /*
23  * mv-plug-common.h should be defined after CMD configs since it used them
24  * to enable certain macros
25  */
26 #include "mv-plug-common.h"
27
28 #ifdef CONFIG_CMD_DATE
29 #define CONFIG_RTC_MV
30 #endif /* CONFIG_CMD_DATE */
31
32 /*
33  *  Environment variables configurations
34  */
35 #ifdef CONFIG_CMD_NAND
36 #define CONFIG_ENV_SECT_SIZE            0x20000 /* 128K */
37 #endif
38 /*
39  * max 4k env size is enough, but in case of nand
40  * it has to be rounded to sector size
41  */
42 #define CONFIG_ENV_SIZE                 0x20000 /* 128k */
43 #define CONFIG_ENV_OFFSET               0xE0000 /* env starts here */
44 /*
45  * Environment is right behind U-Boot in flash. Make sure U-Boot
46  * doesn't grow into the environment area.
47  */
48 #define CONFIG_BOARD_SIZE_LIMIT         CONFIG_ENV_OFFSET
49
50 /*
51  * Default environment variables
52  */
53 #define CONFIG_BOOTCOMMAND \
54         "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "     \
55         "ubi part root; "                                               \
56         "ubifsmount ubi:rootfs; "                                       \
57         "ubifsload 0x800000 ${kernel}; "                                \
58         "ubifsload 0x700000 ${fdt}; "                                   \
59         "ubifsumount; "                                                 \
60         "fdt addr 0x700000; fdt resize; fdt chosen; "                   \
61         "bootz 0x800000 - 0x700000"
62
63 #define CONFIG_EXTRA_ENV_SETTINGS \
64         "console=console=ttyS0,115200\0"                                \
65         "mtdids=nand0=orion_nand\0"                                     \
66         "mtdparts="CONFIG_MTDPARTS_DEFAULT                      \
67         "kernel=/boot/zImage\0"                                         \
68         "fdt=/boot/guruplug-server-plus.dtb\0"                          \
69         "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
70
71 /*
72  * Ethernet Driver configuration
73  */
74 #ifdef CONFIG_CMD_NET
75 #define CONFIG_MVGBE_PORTS      {1, 1}  /* enable both ports */
76 #define CONFIG_PHY_BASE_ADR     0
77 #endif /* CONFIG_CMD_NET */
78
79 /*
80  * SATA Driver configuration
81  */
82 #ifdef CONFIG_MVSATA_IDE
83 #define CONFIG_SYS_ATA_IDE0_OFFSET      MV_SATA_PORT0_OFFSET
84 #endif /*CONFIG_MVSATA_IDE*/
85
86 #endif /* _CONFIG_GURUPLUG_H */