]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/guruplug.h
ARM: atmel: boards: use default CONFIG_SYS_PBSIZE
[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
361b3d86
GK
13#define CONFIG_SYS_GENERIC_BOARD
14
16b76705
SG
15/*
16 * Version number information
17 */
18#define CONFIG_IDENT_STRING "\nMarvell-GuruPlug"
19
20/*
21 * High Level Configuration Options (easy to change)
22 */
16b76705 23#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
16b76705
SG
24#define CONFIG_KW88F6281 1 /* SOC Name */
25#define CONFIG_MACH_GURUPLUG /* Machine type */
16b76705 26#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
16b76705 27
361b3d86
GK
28/*
29 * Compression configuration
30 */
31#define CONFIG_BZIP2
32#define CONFIG_LZMA
33#define CONFIG_LZO
34
35/*
36 * Enable device tree support
37 */
38#define CONFIG_OF_LIBFDT
39
40/*
41 * Miscellaneous configurable options
42 */
43#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
44
16b76705
SG
45/*
46 * Commands configuration
47 */
48#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
361b3d86 49#define CONFIG_CMD_BOOTZ
16b76705
SG
50#define CONFIG_CMD_DHCP
51#define CONFIG_CMD_ENV
361b3d86
GK
52#define CONFIG_CMD_IDE
53#define CONFIG_CMD_MII
16b76705
SG
54#define CONFIG_CMD_NAND
55#define CONFIG_CMD_PING
56#define CONFIG_CMD_USB
361b3d86 57#define CONFIG_CMD_FAT
16b76705
SG
58
59/*
54e999a3
PW
60 * mv-common.h should be defined after CMD configs since it used them
61 * to enable certain macros
16b76705 62 */
54e999a3 63#include "mv-common.h"
16b76705
SG
64
65/*
66 * Environment variables configurations
67 */
68#ifdef CONFIG_CMD_NAND
69#define CONFIG_ENV_IS_IN_NAND 1
70#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
71#else
72#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
73#endif
74/*
75 * max 4k env size is enough, but in case of nand
76 * it has to be rounded to sector size
77 */
78#define CONFIG_ENV_SIZE 0x20000 /* 128k */
361b3d86 79#define CONFIG_ENV_OFFSET 0xE0000 /* env starts here */
16b76705
SG
80
81/*
82 * Default environment variables
83 */
361b3d86
GK
84#define CONFIG_BOOTCOMMAND \
85 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
86 "ubi part root; " \
87 "ubifsmount ubi:rootfs; " \
88 "ubifsload 0x800000 ${kernel}; " \
89 "ubifsload 0x700000 ${fdt}; " \
90 "ubifsumount; " \
91 "fdt addr 0x700000; fdt resize; fdt chosen; " \
92 "bootz 0x800000 - 0x700000"
93
94#define CONFIG_MTDPARTS \
95 "mtdparts=orion_nand:" \
96 "896K(uboot),128K(uboot_env)," \
97 "-@1M(root)\0"
98
99#define CONFIG_EXTRA_ENV_SETTINGS \
100 "console=console=ttyS0,115200\0" \
101 "mtdids=nand0=orion_nand\0" \
102 "mtdparts="CONFIG_MTDPARTS \
103 "kernel=/boot/zImage\0" \
104 "fdt=/boot/guruplug-server-plus.dtb\0" \
105 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0"
106
107#define MTDIDS_DEFAULT "nand0=orion_nand"
108
109#define MTDPARTS_DEFAULT \
110 "mtdparts="CONFIG_MTDPARTS
16b76705 111
16b76705
SG
112/*
113 * Ethernet Driver configuration
114 */
115#ifdef CONFIG_CMD_NET
d44265ad 116#define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
16b76705 117#define CONFIG_PHY_BASE_ADR 0
16b76705
SG
118#endif /* CONFIG_CMD_NET */
119
120/*
54e999a3 121 * SATA Driver configuration
16b76705 122 */
54e999a3
PW
123#ifdef CONFIG_MVSATA_IDE
124#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
125#endif /*CONFIG_MVSATA_IDE*/
16b76705 126
361b3d86
GK
127/*
128 * File system
129 */
130#define CONFIG_CMD_EXT2
131#define CONFIG_CMD_EXT4
132#define CONFIG_CMD_FAT
133#define CONFIG_CMD_JFFS2
134#define CONFIG_CMD_UBI
135#define CONFIG_CMD_UBIFS
136#define CONFIG_RBTREE
137#define CONFIG_MTD_DEVICE
138#define CONFIG_MTD_PARTITIONS
139#define CONFIG_CMD_MTDPARTS
140
16b76705
SG
141#define CONFIG_SYS_ALT_MEMTEST
142
143#endif /* _CONFIG_GURUPLUG_H */