]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/guruplug.h
bootcount: Migrate CONFIG_SYS_BOOTCOUNT_ADDR
[people/ms/u-boot.git] / include / configs / guruplug.h
CommitLineData
16b76705 1/*
361b3d86
GK
2 * (C) Copyright 2009-2014
3 * Gerald Kerma <dreagle@doukki.net>
16b76705
SG
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Siddarth Gore <gores@marvell.com>
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
16b76705
SG
8 */
9
10#ifndef _CONFIG_GURUPLUG_H
11#define _CONFIG_GURUPLUG_H
12
16b76705
SG
13/*
14 * High Level Configuration Options (easy to change)
15 */
16b76705 16#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
16b76705 17
ea944003
QA
18/*
19 * Standard filesystems
20 */
21#define CONFIG_SYS_MVFS
22
23/*
38c0e864 24 * mv-plug-common.h should be defined after CMD configs since it used them
54e999a3 25 * to enable certain macros
16b76705 26 */
38c0e864 27#include "mv-plug-common.h"
16b76705
SG
28
29/*
30 * Environment variables configurations
31 */
32#ifdef CONFIG_CMD_NAND
16b76705 33#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
16b76705
SG
34#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 */
361b3d86 40#define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
16b76705
SG
41
42/*
43 * Default environment variables
44 */
361b3d86
GK
45#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"
54
361b3d86
GK
55#define CONFIG_EXTRA_ENV_SETTINGS \
56 "console=console=ttyS0,115200\0" \
57 "mtdids=nand0=orion_nand\0" \
43ede0bc 58 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
361b3d86
GK
59 "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
16b76705
SG
63/*
64 * Ethernet Driver configuration
65 */
66#ifdef CONFIG_CMD_NET
d44265ad 67#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
16b76705 68#define CONFIG_PHY_BASE_ADR 0
16b76705
SG
69#endif /* CONFIG_CMD_NET */
70
71/*
54e999a3 72 * SATA Driver configuration
16b76705 73 */
54e999a3
PW
74#ifdef CONFIG_MVSATA_IDE
75#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
76#endif /*CONFIG_MVSATA_IDE*/
16b76705 77
16b76705 78#endif /* _CONFIG_GURUPLUG_H */