blob: 712bfd776a7bb6b2266c4f9ee2c51fe7a209050d [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
Siddarth Gore16b76702010-03-18 20:25:40 +053014/*
15 * Version number information
16 */
17#define CONFIG_IDENT_STRING "\nMarvell-GuruPlug"
18
19/*
20 * High Level Configuration Options (easy to change)
21 */
Siddarth Gore16b76702010-03-18 20:25:40 +053022#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
Siddarth Gore16b76702010-03-18 20:25:40 +053023#define CONFIG_MACH_GURUPLUG /* Machine type */
Siddarth Gore16b76702010-03-18 20:25:40 +053024
25/*
Quentin Armitageea944002015-10-28 00:47:18 +000026 * Standard filesystems
27 */
28#define CONFIG_SYS_MVFS
29
30/*
Quentin Armitage38c0e862015-10-28 00:47:21 +000031 * mv-plug-common.h should be defined after CMD configs since it used them
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053032 * to enable certain macros
Siddarth Gore16b76702010-03-18 20:25:40 +053033 */
Quentin Armitage38c0e862015-10-28 00:47:21 +000034#include "mv-plug-common.h"
Siddarth Gore16b76702010-03-18 20:25:40 +053035
36/*
37 * Environment variables configurations
38 */
39#ifdef CONFIG_CMD_NAND
40#define CONFIG_ENV_IS_IN_NAND 1
41#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
42#else
43#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
44#endif
45/*
46 * max 4k env size is enough, but in case of nand
47 * it has to be rounded to sector size
48 */
49#define CONFIG_ENV_SIZE 0x20000 /* 128k */
Gerald Kerma361b3d82014-12-19 08:13:09 +010050#define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
Siddarth Gore16b76702010-03-18 20:25:40 +053051
52/*
53 * Default environment variables
54 */
Gerald Kerma361b3d82014-12-19 08:13:09 +010055#define CONFIG_BOOTCOMMAND \
56 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
57 "ubi part root; " \
58 "ubifsmount ubi:rootfs; " \
59 "ubifsload 0x800000 ${kernel}; " \
60 "ubifsload 0x700000 ${fdt}; " \
61 "ubifsumount; " \
62 "fdt addr 0x700000; fdt resize; fdt chosen; " \
63 "bootz 0x800000 - 0x700000"
Siddarth Gore16b76702010-03-18 20:25:40 +053064
Gerald Kerma361b3d82014-12-19 08:13:09 +010065#define CONFIG_MTDPARTS \
66 "mtdparts=orion_nand:" \
67 "896K(uboot),128K(uboot_env)," \
68 "-@1M(root)\0"
69
70#define CONFIG_EXTRA_ENV_SETTINGS \
71 "console=console=ttyS0,115200\0" \
72 "mtdids=nand0=orion_nand\0" \
73 "mtdparts="CONFIG_MTDPARTS \
74 "kernel=/boot/zImage\0" \
75 "fdt=/boot/guruplug-server-plus.dtb\0" \
76 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
77
78#define MTDIDS_DEFAULT "nand0=orion_nand"
79
80#define MTDPARTS_DEFAULT \
81 "mtdparts="CONFIG_MTDPARTS
Siddarth Gore16b76702010-03-18 20:25:40 +053082
83/*
Siddarth Gore16b76702010-03-18 20:25:40 +053084 * Ethernet Driver configuration
85 */
86#ifdef CONFIG_CMD_NET
Albert Aribaudd44265a2010-07-12 22:24:28 +020087#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
Siddarth Gore16b76702010-03-18 20:25:40 +053088#define CONFIG_PHY_BASE_ADR 0
Siddarth Gore16b76702010-03-18 20:25:40 +053089#endif /* CONFIG_CMD_NET */
90
91/*
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053092 * SATA Driver configuration
Siddarth Gore16b76702010-03-18 20:25:40 +053093 */
Prafulla Wadaskar54e999a2010-09-30 22:53:43 +053094#ifdef CONFIG_MVSATA_IDE
95#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
96#endif /*CONFIG_MVSATA_IDE*/
Siddarth Gore16b76702010-03-18 20:25:40 +053097
Siddarth Gore16b76702010-03-18 20:25:40 +053098#endif /* _CONFIG_GURUPLUG_H */