xref: /openbmc/u-boot/include/configs/pogo_e02.h (revision dae73c4c)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2012
4  * David Purdy <david.c.purdy@gmail.com>
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_POGO_E02_H
13 #define _CONFIG_POGO_E02_H
14 
15 /*
16  * Machine type definition and ID
17  */
18 #define CONFIG_MACH_TYPE		MACH_TYPE_POGO_E02
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 /*
28  * Commands configuration
29  */
30 
31 /*
32  * mv-common.h should be defined after CMD configs since it used them
33  * to enable certain macros
34  */
35 #include "mv-common.h"
36 
37 /*
38  *  Environment variables configurations
39  */
40 #ifdef CONFIG_CMD_NAND
41 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
42 #endif
43 
44 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
45 #define CONFIG_ENV_OFFSET		0x60000	/* env starts here */
46 
47 /*
48  * Default environment variables
49  */
50 #define CONFIG_BOOTCOMMAND \
51 	"setenv bootargs $(bootargs_console); " \
52 	"run bootcmd_usb; " \
53 	"bootm 0x00800000 0x01100000"
54 
55 #define CONFIG_EXTRA_ENV_SETTINGS \
56 	"mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage)," \
57 	"32M(rootfs),-(data)\0"\
58 	"mtdids=nand0=orion_nand\0"\
59 	"bootargs_console=console=ttyS0,115200\0" \
60 	"bootcmd_usb=usb start; ext2load usb 0:1 0x00800000 /uImage; " \
61 	"ext2load usb 0:1 0x01100000 /uInitrd\0"
62 
63 /*
64  * Ethernet Driver configuration
65  */
66 #ifdef CONFIG_CMD_NET
67 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
68 #define CONFIG_PHY_BASE_ADR	0
69 #endif /* CONFIG_CMD_NET */
70 
71 /*
72  * File system
73  */
74 
75 #endif /* _CONFIG_POGO_E02_H */
76