blob: 8e53af8c04bb47d3c3ced3d807ddd9fb1537f735 [file] [log] [blame]
Siddarth Gore16b76702010-03-18 20:25:40 +05301/*
Gerald Kerma361b3d82014-12-19 08:13:09 +01002 * (C) Copyright 2009-2014
3 * Gerald Kerma <dreagle@doukki.net>
Siddarth Gore16b76702010-03-18 20:25:40 +05304 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Siddarth Gore <gores@marvell.com>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Siddarth Gore16b76702010-03-18 20:25:40 +05308 */
9
10#ifndef _CONFIG_GURUPLUG_H
11#define _CONFIG_GURUPLUG_H
12
Gerald Kerma361b3d82014-12-19 08:13:09 +010013#define CONFIG_SYS_GENERIC_BOARD
14
Siddarth Gore16b76702010-03-18 20:25:40 +053015/*
16 * Version number information
17 */
18#define CONFIG_IDENT_STRING "\nMarvell-GuruPlug"
19
20/*
21 * High Level Configuration Options (easy to change)
22 */
Siddarth Gore16b76702010-03-18 20:25:40 +053023#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
Siddarth Gore16b76702010-03-18 20:25:40 +053024#define CONFIG_KW88F6281 1 /* SOC Name */
25#define CONFIG_MACH_GURUPLUG /* Machine type */
Siddarth Gore16b76702010-03-18 20:25:40 +053026#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
Siddarth Gore16b76702010-03-18 20:25:40 +053027
28/*
Gerald Kerma361b3d82014-12-19 08:13:09 +010029 * Compression configuration
30 */
31#define CONFIG_BZIP2
32#define CONFIG_LZMA
33#define CONFIG_LZO
34
35/*
36 * Enable device tree support
37 */
38#define CONFIG_OF_LIBFDT
39
40/*
41 * Miscellaneous configurable options
42 */
43#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
44
45/*
Siddarth Gore16b76702010-03-18 20:25:40 +053046 * Commands configuration
47 */
48#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
49#include <config_cmd_default.h>
Gerald Kerma361b3d82014-12-19 08:13:09 +010050#define CONFIG_CMD_BOOTZ
Siddarth Gore16b76702010-03-18 20:25:40 +053051#define CONFIG_CMD_DHCP
52#define CONFIG_CMD_ENV
Gerald Kerma361b3d82014-12-19 08:13:09 +010053#define CONFIG_CMD_IDE
54#define CONFIG_CMD_MII
Siddarth Gore16b76702010-03-18 20:25:40 +053055#define CONFIG_CMD_NAND
56#define CONFIG_CMD_PING
57#define CONFIG_CMD_USB
Gerald Kerma361b3d82014-12-19 08:13:09 +010058#define CONFIG_CMD_FAT
Siddarth Gore16b76702010-03-18 20:25:40 +053059
60/*
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053061 * mv-common.h should be defined after CMD configs since it used them
62 * to enable certain macros
Siddarth Gore16b76702010-03-18 20:25:40 +053063 */
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053064#include "mv-common.h"
Siddarth Gore16b76702010-03-18 20:25:40 +053065
66/*
67 * Environment variables configurations
68 */
69#ifdef CONFIG_CMD_NAND
70#define CONFIG_ENV_IS_IN_NAND 1
71#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
72#else
73#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
74#endif
75/*
76 * max 4k env size is enough, but in case of nand
77 * it has to be rounded to sector size
78 */
79#define CONFIG_ENV_SIZE 0x20000 /* 128k */
Gerald Kerma361b3d82014-12-19 08:13:09 +010080#define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
Siddarth Gore16b76702010-03-18 20:25:40 +053081
82/*
83 * Default environment variables
84 */
Gerald Kerma361b3d82014-12-19 08:13:09 +010085#define CONFIG_BOOTCOMMAND \
86 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
87 "ubi part root; " \
88 "ubifsmount ubi:rootfs; " \
89 "ubifsload 0x800000 ${kernel}; " \
90 "ubifsload 0x700000 ${fdt}; " \
91 "ubifsumount; " \
92 "fdt addr 0x700000; fdt resize; fdt chosen; " \
93 "bootz 0x800000 - 0x700000"
Siddarth Gore16b76702010-03-18 20:25:40 +053094
Gerald Kerma361b3d82014-12-19 08:13:09 +010095#define CONFIG_MTDPARTS \
96 "mtdparts=orion_nand:" \
97 "896K(uboot),128K(uboot_env)," \
98 "-@1M(root)\0"
99
100#define CONFIG_EXTRA_ENV_SETTINGS \
101 "console=console=ttyS0,115200\0" \
102 "mtdids=nand0=orion_nand\0" \
103 "mtdparts="CONFIG_MTDPARTS \
104 "kernel=/boot/zImage\0" \
105 "fdt=/boot/guruplug-server-plus.dtb\0" \
106 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
107
108#define MTDIDS_DEFAULT "nand0=orion_nand"
109
110#define MTDPARTS_DEFAULT \
111 "mtdparts="CONFIG_MTDPARTS
Siddarth Gore16b76702010-03-18 20:25:40 +0530112
113/*
Siddarth Gore16b76702010-03-18 20:25:40 +0530114 * Ethernet Driver configuration
115 */
116#ifdef CONFIG_CMD_NET
Albert Aribaudd44265a2010-07-12 22:24:28 +0200117#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
Siddarth Gore16b76702010-03-18 20:25:40 +0530118#define CONFIG_PHY_BASE_ADR 0
Siddarth Gore16b76702010-03-18 20:25:40 +0530119#endif /* CONFIG_CMD_NET */
120
121/*
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +0530122 * SATA Driver configuration
Siddarth Gore16b76702010-03-18 20:25:40 +0530123 */
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +0530124#ifdef CONFIG_MVSATA_IDE
125#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
126#endif /*CONFIG_MVSATA_IDE*/
Siddarth Gore16b76702010-03-18 20:25:40 +0530127
Gerald Kerma361b3d82014-12-19 08:13:09 +0100128/*
129 * File system
130 */
131#define CONFIG_CMD_EXT2
132#define CONFIG_CMD_EXT4
133#define CONFIG_CMD_FAT
134#define CONFIG_CMD_JFFS2
135#define CONFIG_CMD_UBI
136#define CONFIG_CMD_UBIFS
137#define CONFIG_RBTREE
138#define CONFIG_MTD_DEVICE
139#define CONFIG_MTD_PARTITIONS
140#define CONFIG_CMD_MTDPARTS
141
Siddarth Gore16b76702010-03-18 20:25:40 +0530142#define CONFIG_SYS_ALT_MEMTEST
143
144#endif /* _CONFIG_GURUPLUG_H */