]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/guruplug.h
Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig
[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#define CONFIG_MACH_GURUPLUG /* Machine type */
16b76705 18
ea944003
QA
19/*
20 * Standard filesystems
21 */
22#define CONFIG_SYS_MVFS
23
24/*
38c0e864 25 * mv-plug-common.h should be defined after CMD configs since it used them
54e999a3 26 * to enable certain macros
16b76705 27 */
38c0e864 28#include "mv-plug-common.h"
16b76705
SG
29
30/*
31 * Environment variables configurations
32 */
33#ifdef CONFIG_CMD_NAND
16b76705 34#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
16b76705
SG
35#endif
36/*
37 * max 4k env size is enough, but in case of nand
38 * it has to be rounded to sector size
39 */
40#define CONFIG_ENV_SIZE 0x20000 /* 128k */
361b3d86 41#define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
16b76705
SG
42
43/*
44 * Default environment variables
45 */
361b3d86
GK
46#define CONFIG_BOOTCOMMAND \
47 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
48 "ubi part root; " \
49 "ubifsmount ubi:rootfs; " \
50 "ubifsload 0x800000 ${kernel}; " \
51 "ubifsload 0x700000 ${fdt}; " \
52 "ubifsumount; " \
53 "fdt addr 0x700000; fdt resize; fdt chosen; " \
54 "bootz 0x800000 - 0x700000"
55
56#define CONFIG_MTDPARTS \
57 "mtdparts=orion_nand:" \
58 "896K(uboot),128K(uboot_env)," \
59 "-@1M(root)\0"
60
61#define CONFIG_EXTRA_ENV_SETTINGS \
62 "console=console=ttyS0,115200\0" \
63 "mtdids=nand0=orion_nand\0" \
64 "mtdparts="CONFIG_MTDPARTS \
65 "kernel=/boot/zImage\0" \
66 "fdt=/boot/guruplug-server-plus.dtb\0" \
67 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
68
69#define MTDIDS_DEFAULT "nand0=orion_nand"
70
71#define MTDPARTS_DEFAULT \
72 "mtdparts="CONFIG_MTDPARTS
16b76705 73
16b76705
SG
74/*
75 * Ethernet Driver configuration
76 */
77#ifdef CONFIG_CMD_NET
d44265ad 78#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
16b76705 79#define CONFIG_PHY_BASE_ADR 0
16b76705
SG
80#endif /* CONFIG_CMD_NET */
81
82/*
54e999a3 83 * SATA Driver configuration
16b76705 84 */
54e999a3
PW
85#ifdef CONFIG_MVSATA_IDE
86#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
87#endif /*CONFIG_MVSATA_IDE*/
16b76705 88
16b76705 89#endif /* _CONFIG_GURUPLUG_H */