xref: /openbmc/u-boot/include/configs/pogo_e02.h (revision c62db35d)
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 CONFIG_MACH_TYPE		MACH_TYPE_POGO_E02
20 
21 /*
22  * High Level Configuration Options (easy to change)
23  */
24 #define CONFIG_FEROCEON_88FR131		/* CPU Core subversion */
25 #define CONFIG_KW88F6281		/* SOC Name */
26 #define CONFIG_SKIP_LOWLEVEL_INIT	/* disable board lowlevel_init */
27 
28 /*
29  * Commands configuration
30  */
31 #define CONFIG_SYS_MVFS
32 #define CONFIG_CMD_NAND
33 
34 /*
35  * mv-common.h should be defined after CMD configs since it used them
36  * to enable certain macros
37  */
38 #include "mv-common.h"
39 
40 /*
41  *  Environment variables configurations
42  */
43 #ifdef CONFIG_CMD_NAND
44 #define CONFIG_ENV_IS_IN_NAND
45 #define CONFIG_ENV_SECT_SIZE		0x20000	/* 128K */
46 #else
47 #define CONFIG_ENV_IS_NOWHERE
48 #endif
49 
50 #define CONFIG_ENV_SIZE			0x20000	/* 128k */
51 #define CONFIG_ENV_OFFSET		0x60000	/* env starts here */
52 
53 /*
54  * Default environment variables
55  */
56 #define CONFIG_BOOTCOMMAND \
57 	"setenv bootargs $(bootargs_console); " \
58 	"run bootcmd_usb; " \
59 	"bootm 0x00800000 0x01100000"
60 
61 #define CONFIG_EXTRA_ENV_SETTINGS \
62 	"mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage)," \
63 	"32M(rootfs),-(data)\0"\
64 	"mtdids=nand0=orion_nand\0"\
65 	"bootargs_console=console=ttyS0,115200\0" \
66 	"bootcmd_usb=usb start; ext2load usb 0:1 0x00800000 /uImage; " \
67 	"ext2load usb 0:1 0x01100000 /uInitrd\0"
68 
69 /*
70  * Ethernet Driver configuration
71  */
72 #ifdef CONFIG_CMD_NET
73 #define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
74 #define CONFIG_PHY_BASE_ADR	0
75 #endif /* CONFIG_CMD_NET */
76 
77 /*
78  * File system
79  */
80 #define CONFIG_CMD_UBIFS
81 #define CONFIG_RBTREE
82 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
83 #define CONFIG_MTD_PARTITIONS
84 #define CONFIG_CMD_MTDPARTS
85 #define CONFIG_LZO
86 
87 #endif /* _CONFIG_POGO_E02_H */
88