xref: /openbmc/u-boot/include/configs/pogo_e02.h (revision 47539e23)
1 /*
2  * Copyright (C) 2012
3  * David Purdy <david.c.purdy@gmail.com>
4  *
5  * Based on Kirkwood support:
6  * (C) Copyright 2009
7  * Marvell Semiconductor <www.marvell.com>
8  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #ifndef _CONFIG_POGO_E02_H
14 #define _CONFIG_POGO_E02_H
15 
16 /*
17  * Machine type definition and ID
18  */
19 #define MACH_TYPE_POGO_E02		3542
20 #define CONFIG_MACH_TYPE		MACH_TYPE_POGO_E02
21 #define CONFIG_IDENT_STRING		"\nPogo E02"
22 
23 /*
24  * High Level Configuration Options (easy to change)
25  */
26 #define CONFIG_FEROCEON_88FR131		/* CPU Core subversion */
27 #define CONFIG_KW88F6281		/* SOC Name */
28 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
29 
30 /*
31  * Commands configuration
32  */
33 #define CONFIG_SYS_NO_FLASH		/* Declare no flash (NOR/SPI) */
34 #define CONFIG_SYS_MVFS
35 #include <config_cmd_default.h>
36 #define CONFIG_CMD_DHCP
37 #define CONFIG_CMD_ENV
38 #define CONFIG_CMD_MII
39 #define CONFIG_CMD_NAND
40 #define CONFIG_CMD_PING
41 #define CONFIG_CMD_USB
42 
43 /*
44  * mv-common.h should be defined after CMD configs since it used them
45  * to enable certain macros
46  */
47 #include "mv-common.h"
48 
49 /* Remove or override few declarations from mv-common.h */
50 #undef CONFIG_SYS_PROMPT	/* previously defined in mv-common.h */
51 #define CONFIG_SYS_PROMPT	"PogoE02> "
52 
53 /*
54  *  Environment variables configurations
55  */
56 #ifdef CONFIG_CMD_NAND
57 #define CONFIG_ENV_IS_IN_NAND
58 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
59 #else
60 #define CONFIG_ENV_IS_NOWHERE
61 #endif
62 
63 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
64 #define CONFIG_ENV_OFFSET		0x60000	/* env starts here */
65 
66 /*
67  * Default environment variables
68  */
69 #define CONFIG_BOOTCOMMAND \
70 	"setenv bootargs $(bootargs_console); " \
71 	"run bootcmd_usb; " \
72 	"bootm 0x00800000 0x01100000"
73 
74 #define CONFIG_EXTRA_ENV_SETTINGS \
75 	"mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage)," \
76 	"32M(rootfs),-(data)\0"\
77 	"mtdids=nand0=orion_nand\0"\
78 	"bootargs_console=console=ttyS0,115200\0" \
79 	"bootcmd_usb=usb start; ext2load usb 0:1 0x00800000 /uImage; " \
80 	"ext2load usb 0:1 0x01100000 /uInitrd\0"
81 
82 /*
83  * Ethernet Driver configuration
84  */
85 #ifdef CONFIG_CMD_NET
86 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
87 #define CONFIG_PHY_BASE_ADR	0
88 #endif /* CONFIG_CMD_NET */
89 
90 /*
91  * File system
92  */
93 #define CONFIG_CMD_EXT2
94 #define CONFIG_CMD_FAT
95 #define CONFIG_CMD_JFFS2
96 #define CONFIG_CMD_UBI
97 #define CONFIG_CMD_UBIFS
98 #define CONFIG_RBTREE
99 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
100 #define CONFIG_MTD_PARTITIONS
101 #define CONFIG_CMD_MTDPARTS
102 #define CONFIG_LZO
103 
104 #endif /* _CONFIG_POGO_E02_H */
105