]> Git Repo - J-u-boot.git/blame - include/configs/guruplug.h
udoo: Adjust the SD card device numbering
[J-u-boot.git] / include / configs / guruplug.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
16b76705 2/*
361b3d86
GK
3 * (C) Copyright 2009-2014
4 * Gerald Kerma <[email protected]>
16b76705
SG
5 * Marvell Semiconductor <www.marvell.com>
6 * Written-by: Siddarth Gore <[email protected]>
16b76705
SG
7 */
8
9#ifndef _CONFIG_GURUPLUG_H
10#define _CONFIG_GURUPLUG_H
11
16b76705
SG
12/*
13 * High Level Configuration Options (easy to change)
14 */
16b76705 15#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
16b76705 16
ea944003
QA
17/*
18 * Standard filesystems
19 */
ea944003
QA
20
21/*
38c0e864 22 * mv-plug-common.h should be defined after CMD configs since it used them
54e999a3 23 * to enable certain macros
16b76705 24 */
38c0e864 25#include "mv-plug-common.h"
16b76705
SG
26
27/*
28 * Environment variables configurations
29 */
16b76705
SG
30/*
31 * max 4k env size is enough, but in case of nand
32 * it has to be rounded to sector size
33 */
d4899b0f
CP
34/*
35 * Environment is right behind U-Boot in flash. Make sure U-Boot
36 * doesn't grow into the environment area.
37 */
38#define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET
16b76705
SG
39
40/*
41 * Default environment variables
42 */
361b3d86
GK
43#define CONFIG_BOOTCOMMAND \
44 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
45 "ubi part root; " \
46 "ubifsmount ubi:rootfs; " \
47 "ubifsload 0x800000 ${kernel}; " \
48 "ubifsload 0x700000 ${fdt}; " \
49 "ubifsumount; " \
50 "fdt addr 0x700000; fdt resize; fdt chosen; " \
51 "bootz 0x800000 - 0x700000"
52
361b3d86
GK
53#define CONFIG_EXTRA_ENV_SETTINGS \
54 "console=console=ttyS0,115200\0" \
55 "mtdids=nand0=orion_nand\0" \
43ede0bc 56 "mtdparts="CONFIG_MTDPARTS_DEFAULT \
361b3d86
GK
57 "kernel=/boot/zImage\0" \
58 "fdt=/boot/guruplug-server-plus.dtb\0" \
59 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
60
16b76705
SG
61/*
62 * Ethernet Driver configuration
63 */
64#ifdef CONFIG_CMD_NET
d44265ad 65#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
16b76705 66#define CONFIG_PHY_BASE_ADR 0
16b76705
SG
67#endif /* CONFIG_CMD_NET */
68
16b76705 69#endif /* _CONFIG_GURUPLUG_H */
This page took 0.840542 seconds and 4 git commands to generate.