]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/sheevaplug.h
ARM: sheevaplug: add HUSH parser
[people/ms/u-boot.git] / include / configs / sheevaplug.h
1 /*
2 * (C) Copyright 2009-2014
3 * Gerald Kerma <dreagle@doukki.net>
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10 #ifndef _CONFIG_SHEEVAPLUG_H
11 #define _CONFIG_SHEEVAPLUG_H
12
13 /*
14 * Version number information
15 */
16 #define CONFIG_IDENT_STRING "\nMarvell-Sheevaplug"
17
18 /*
19 * High Level Configuration Options (easy to change)
20 */
21 #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
22 #define CONFIG_KW88F6281 1 /* SOC Name */
23 #define CONFIG_MACH_SHEEVAPLUG /* Machine type */
24 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
25
26 /*
27 * Compression configuration
28 */
29 #define CONFIG_BZIP2
30 #define CONFIG_LZMA
31 #define CONFIG_LZO
32
33 /*
34 * Miscellaneous configurable options
35 */
36 #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
37
38 /*
39 * Commands configuration
40 */
41 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
42 #include <config_cmd_default.h>
43 #define CONFIG_CMD_BOOTZ
44 #define CONFIG_CMD_DHCP
45 #define CONFIG_CMD_ENV
46 #define CONFIG_CMD_IDE
47 #define CONFIG_CMD_MII
48 #define CONFIG_CMD_MMC
49 #define CONFIG_CMD_NAND
50 #define CONFIG_CMD_PING
51 #define CONFIG_CMD_USB
52 /*
53 * mv-common.h should be defined after CMD configs since it used them
54 * to enable certain macros
55 */
56 #include "mv-common.h"
57
58 /*
59 * Environment variables configurations
60 */
61 #ifdef CONFIG_CMD_NAND
62 #define CONFIG_ENV_IS_IN_NAND 1
63 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
64 #else
65 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
66 #endif
67 /*
68 * max 4k env size is enough, but in case of nand
69 * it has to be rounded to sector size
70 */
71 #define CONFIG_ENV_SIZE 0x20000 /* 128k */
72 #define CONFIG_ENV_ADDR 0x80000
73 #define CONFIG_ENV_OFFSET 0x80000 /* env starts here */
74
75 /*
76 * Default environment variables
77 */
78 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
79 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
80 "${x_bootcmd_usb}; bootm 0x6400000;"
81
82 #define CONFIG_MTDPARTS \
83 "mtdparts=orion_nand:512K(uboot)," \
84 "512K(env),1M(script),6M(kernel)," \
85 "12M(ramdisk),4M(spare),-(rootfs)"
86
87 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
88 "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS \
89 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
90 "x_bootcmd_usb=usb start\0" \
91 "x_bootargs_root=root=/dev/mtdblock3 rw rootfstype=jffs2\0"
92
93 #define MTDIDS_DEFAULT "nand0=orion_nand"
94
95 #define MTDPARTS_DEFAULT \
96 "mtdparts="CONFIG_MTDPARTS
97
98 /*
99 * Ethernet Driver configuration
100 */
101 #ifdef CONFIG_CMD_NET
102 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
103 #define CONFIG_PHY_BASE_ADR 0
104 #endif /* CONFIG_CMD_NET */
105
106 /*
107 * SDIO/MMC Card Configuration
108 */
109 #ifdef CONFIG_CMD_MMC
110 #define CONFIG_MMC
111 #define CONFIG_GENERIC_MMC
112 #define CONFIG_MVEBU_MMC
113 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE
114 #endif /* CONFIG_CMD_MMC */
115
116 /*
117 * SATA driver configuration
118 */
119 #ifdef CONFIG_CMD_IDE
120 #define __io
121 #define CONFIG_IDE_PREINIT
122 #define CONFIG_DOS_PARTITION
123 #define CONFIG_MVSATA_IDE_USE_PORT0
124 #define CONFIG_MVSATA_IDE_USE_PORT1
125 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
126 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
127 #endif /* CONFIG_CMD_IDE */
128
129 /*
130 * File system
131 */
132 #define CONFIG_CMD_EXT2
133 #define CONFIG_CMD_EXT4
134 #define CONFIG_CMD_FAT
135 #define CONFIG_CMD_JFFS2
136 #define CONFIG_CMD_UBI
137 #define CONFIG_CMD_UBIFS
138 #define CONFIG_RBTREE
139 #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
140 #define CONFIG_MTD_PARTITIONS
141 #define CONFIG_CMD_MTDPARTS
142 #define CONFIG_LZO
143
144 #endif /* _CONFIG_SHEEVAPLUG_H */