xref: /rk3399_rockchip-uboot/include/configs/sheevaplug.h (revision ea944003d57e9ac68774742b98bb15ca6a9b6d9c)
1 /*
2  * (C) Copyright 2009-2014
3  * Gerald Kerma <dreagle@doukki.net>
4  * Marvell Semiconductor <www.marvell.com>
5  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef _CONFIG_SHEEVAPLUG_H
11 #define _CONFIG_SHEEVAPLUG_H
12 
13 
14 /*
15  * Version number information
16  */
17 #define CONFIG_IDENT_STRING	"\nMarvell-Sheevaplug"
18 
19 /*
20  * High Level Configuration Options (easy to change)
21  */
22 #define CONFIG_FEROCEON_88FR131	1	/* CPU Core subversion */
23 #define CONFIG_KW88F6281	1	/* SOC Name */
24 #define CONFIG_MACH_SHEEVAPLUG	/* Machine type */
25 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
26 
27 /* Add target to build it automatically upon "make" */
28 #define CONFIG_BUILD_TARGET     "u-boot.kwb"
29 
30 /*
31  * Compression configuration
32  */
33 #define CONFIG_BZIP2
34 #define CONFIG_LZMA
35 
36 /*
37  * Enable device tree support
38  */
39 #define CONFIG_OF_LIBFDT
40 
41 /*
42  * Commands configuration
43  */
44 #define CONFIG_SYS_NO_FLASH		/* Declare no flash (NOR/SPI) */
45 #define CONFIG_CMD_BOOTZ
46 #define CONFIG_CMD_DATE
47 #define CONFIG_CMD_ENV
48 #define CONFIG_CMD_IDE
49 #define CONFIG_CMD_MII
50 #define CONFIG_CMD_MMC
51 
52 /*
53  * Standard filesystems
54  */
55 #define CONFIG_SYS_MVFS
56 
57 /*
58  * Extra file system
59  */
60 #define CONFIG_CMD_EXT4
61 
62 /*
63  * mv-common.h should be defined after CMD configs since it used them
64  * to enable certain macros
65  */
66 #include "mv-common.h"
67 
68 /*
69  *  Environment variables configurations
70  */
71 #ifdef CONFIG_CMD_NAND
72 #define CONFIG_ENV_IS_IN_NAND		1
73 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
74 #else
75 #define CONFIG_ENV_IS_NOWHERE		1	/* if env in SDRAM */
76 #endif
77 /*
78  * max 4k env size is enough, but in case of nand
79  * it has to be rounded to sector size
80  */
81 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
82 #define CONFIG_ENV_ADDR			0x80000
83 #define CONFIG_ENV_OFFSET		0x80000	/* env starts here */
84 
85 /*
86  * Default environment variables
87  */
88 #define CONFIG_BOOTCOMMAND		"${x_bootcmd_kernel}; "	\
89 	"setenv bootargs ${x_bootargs} ${x_bootargs_root}; "	\
90 	"${x_bootcmd_usb}; bootm 0x6400000;"
91 
92 #define CONFIG_MTDPARTS		\
93 	"mtdparts=orion_nand:512K(uboot),"				\
94 	"512K(env),1M(script),6M(kernel),"				\
95 	"12M(ramdisk),4M(spare),-(rootfs)"
96 
97 #define CONFIG_EXTRA_ENV_SETTINGS	"x_bootargs=console"	\
98 	"=ttyS0,115200 mtdparts="CONFIG_MTDPARTS	\
99 	"x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
100 	"x_bootcmd_usb=usb start\0" \
101 	"x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0"
102 
103 #define MTDIDS_DEFAULT	"nand0=orion_nand"
104 
105 #define MTDPARTS_DEFAULT	\
106 	"mtdparts="CONFIG_MTDPARTS
107 
108 /*
109  * Ethernet Driver configuration
110  */
111 #ifdef CONFIG_CMD_NET
112 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
113 #define CONFIG_PHY_BASE_ADR	0
114 #endif /* CONFIG_CMD_NET */
115 
116 /*
117  * SDIO/MMC Card Configuration
118  */
119 #ifdef CONFIG_CMD_MMC
120 #define CONFIG_MMC
121 #define CONFIG_GENERIC_MMC
122 #define CONFIG_MVEBU_MMC
123 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
124 #endif /* CONFIG_CMD_MMC */
125 
126 /*
127  * SATA driver configuration
128  */
129 #ifdef CONFIG_CMD_IDE
130 #define __io
131 #define CONFIG_IDE_PREINIT
132 #define CONFIG_DOS_PARTITION
133 #define CONFIG_MVSATA_IDE_USE_PORT0
134 #define CONFIG_MVSATA_IDE_USE_PORT1
135 #define CONFIG_SYS_ATA_IDE0_OFFSET	MV_SATA_PORT0_OFFSET
136 #define CONFIG_SYS_ATA_IDE1_OFFSET	MV_SATA_PORT1_OFFSET
137 #endif /* CONFIG_CMD_IDE */
138 
139 /*
140  * RTC driver configuration
141  */
142 #ifdef CONFIG_CMD_DATE
143 #define CONFIG_RTC_MV
144 #endif /* CONFIG_CMD_DATE */
145 
146 #define CONFIG_SYS_ALT_MEMTEST
147 
148 #endif /* _CONFIG_SHEEVAPLUG_H */
149