blob: dcb2a698f8703f316912a997196a340f818170bb [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
13/*
Siddarth Gore16b76702010-03-18 20:25:40 +053014 * High Level Configuration Options (easy to change)
15 */
Siddarth Gore16b76702010-03-18 20:25:40 +053016#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
Siddarth Gore16b76702010-03-18 20:25:40 +053017
18/*
Quentin Armitageea944002015-10-28 00:47:18 +000019 * Standard filesystems
20 */
21#define CONFIG_SYS_MVFS
22
23/*
Quentin Armitage38c0e862015-10-28 00:47:21 +000024 * mv-plug-common.h should be defined after CMD configs since it used them
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053025 * to enable certain macros
Siddarth Gore16b76702010-03-18 20:25:40 +053026 */
Quentin Armitage38c0e862015-10-28 00:47:21 +000027#include "mv-plug-common.h"
Siddarth Gore16b76702010-03-18 20:25:40 +053028
29/*
30 * Environment variables configurations
31 */
32#ifdef CONFIG_CMD_NAND
Siddarth Gore16b76702010-03-18 20:25:40 +053033#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
Siddarth Gore16b76702010-03-18 20:25:40 +053034#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 */
Gerald Kerma361b3d82014-12-19 08:13:09 +010040#define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
Siddarth Gore16b76702010-03-18 20:25:40 +053041
42/*
43 * Default environment variables
44 */
Gerald Kerma361b3d82014-12-19 08:13:09 +010045#define CONFIG_BOOTCOMMAND \
46 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
47 "ubi part root; " \
48 "ubifsmount ubi:rootfs; " \
49 "ubifsload 0x800000 ${kernel}; " \
50 "ubifsload 0x700000 ${fdt}; " \
51 "ubifsumount; " \
52 "fdt addr 0x700000; fdt resize; fdt chosen; " \
53 "bootz 0x800000 - 0x700000"
Siddarth Gore16b76702010-03-18 20:25:40 +053054
Gerald Kerma361b3d82014-12-19 08:13:09 +010055#define CONFIG_EXTRA_ENV_SETTINGS \
56 "console=console=ttyS0,115200\0" \
57 "mtdids=nand0=orion_nand\0" \
Tom Rini43ede0b2017-10-22 17:55:07 -040058 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
Gerald Kerma361b3d82014-12-19 08:13:09 +010059 "kernel=/boot/zImage\0" \
60 "fdt=/boot/guruplug-server-plus.dtb\0" \
61 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
62
Siddarth Gore16b76702010-03-18 20:25:40 +053063/*
Siddarth Gore16b76702010-03-18 20:25:40 +053064 * Ethernet Driver configuration
65 */
66#ifdef CONFIG_CMD_NET
Albert Aribaudd44265a2010-07-12 22:24:28 +020067#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
Siddarth Gore16b76702010-03-18 20:25:40 +053068#define CONFIG_PHY_BASE_ADR 0
Siddarth Gore16b76702010-03-18 20:25:40 +053069#endif /* CONFIG_CMD_NET */
70
71/*
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053072 * SATA Driver configuration
Siddarth Gore16b76702010-03-18 20:25:40 +053073 */
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053074#ifdef CONFIG_MVSATA_IDE
75#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
76#endif /*CONFIG_MVSATA_IDE*/
Siddarth Gore16b76702010-03-18 20:25:40 +053077
Siddarth Gore16b76702010-03-18 20:25:40 +053078#endif /* _CONFIG_GURUPLUG_H */