xref: /openbmc/u-boot/include/configs/dockstar.h (revision 7d8e9e8e)
1 /*
2  * Copyright (C) 2010  Eric C. Cooper <ecc@cmu.edu>
3  *
4  * Based on sheevaplug.h originally written by
5  * Prafulla Wadaskar <prafulla@marvell.com>
6  * (C) Copyright 2009
7  * Marvell Semiconductor <www.marvell.com>
8  *
9  * SPDX-License-Identifier:	GPL-2.0+
10  */
11 
12 #ifndef _CONFIG_DOCKSTAR_H
13 #define _CONFIG_DOCKSTAR_H
14 
15 /*
16  * High Level Configuration Options (easy to change)
17  */
18 #define CONFIG_FEROCEON_88FR131	1	/* CPU Core subversion */
19 #define CONFIG_KW88F6281	1	/* SOC Name */
20 #define CONFIG_MACH_DOCKSTAR	/* Machine type */
21 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
22 
23 /*
24  * mv-common.h should be defined after CMD configs since it used them
25  * to enable certain macros
26  */
27 #include "mv-common.h"
28 
29 /*
30  *  Environment variables configurations
31  */
32 #ifdef CONFIG_CMD_NAND
33 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
34 #endif
35 /*
36  * max 4k env size is enough, but in case of nand
37  * it has to be rounded to sector size
38  */
39 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
40 #define CONFIG_ENV_ADDR			0x80000
41 #define CONFIG_ENV_OFFSET		0x80000	/* env starts here */
42 
43 /*
44  * Default environment variables
45  */
46 #define CONFIG_BOOTCOMMAND \
47 	"setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "	\
48 	"ubi part root; " \
49 	"ubifsmount ubi:root; " \
50 	"ubifsload 0x800000 ${kernel}; " \
51 	"ubifsload 0x1100000 ${initrd}; " \
52 	"bootm 0x800000 0x1100000"
53 
54 #define CONFIG_MTDPARTS		"mtdparts=orion_nand:1m(uboot),-(root)\0"
55 
56 #define CONFIG_EXTRA_ENV_SETTINGS \
57 	"console=console=ttyS0,115200\0" \
58 	"mtdids=nand0=orion_nand\0" \
59 	"mtdparts="CONFIG_MTDPARTS \
60 	"kernel=/boot/uImage\0" \
61 	"initrd=/boot/uInitrd\0" \
62 	"bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
63 
64 /*
65  * Ethernet Driver configuration
66  */
67 #ifdef CONFIG_CMD_NET
68 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
69 #define CONFIG_PHY_BASE_ADR	0
70 #endif /* CONFIG_CMD_NET */
71 
72 /*
73  * File system
74  */
75 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
76 #define CONFIG_MTD_PARTITIONS
77 
78 #endif /* _CONFIG_DOCKSTAR_H */
79