]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/openrd_base.h
mv-common.h: fix DRAM banks configuration
[people/ms/u-boot.git] / include / configs / openrd_base.h
CommitLineData
e92daeb5
SK
1/*
2 * (C) Copyright 2009
3 * Net Insight <www.netinsight.net>
4 * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5 *
6 * Based on sheevaplug.h:
7 * (C) Copyright 2009
8 * Marvell Semiconductor <www.marvell.com>
9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
27 * MA 02110-1301 USA
28 */
29
30#ifndef _CONFIG_OPENRD_BASE_H
31#define _CONFIG_OPENRD_BASE_H
32
33/*
34 * Version number information
35 */
36#define CONFIG_IDENT_STRING "\nOpenRD_base"
37
38/*
39 * High Level Configuration Options (easy to change)
40 */
e92daeb5
SK
41#define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
42#define CONFIG_KIRKWOOD 1 /* SOC Family Name */
43#define CONFIG_KW88F6281 1 /* SOC Name */
44#define CONFIG_MACH_OPENRD_BASE /* Machine type */
e92daeb5 45#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
e92daeb5 46
e92daeb5
SK
47/*
48 * Commands configuration
49 */
50#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
51#include <config_cmd_default.h>
52#define CONFIG_CMD_AUTOSCRIPT
53#define CONFIG_CMD_DHCP
54#define CONFIG_CMD_ENV
e92daeb5 55#define CONFIG_CMD_MII
1c9d91ac 56#define CONFIG_CMD_NAND
e92daeb5
SK
57#define CONFIG_CMD_PING
58#define CONFIG_CMD_USB
86cf2ae4 59#define CONFIG_CMD_IDE
e92daeb5
SK
60
61/*
54e999a3
PW
62 * mv-common.h should be defined after CMD configs since it used them
63 * to enable certain macros
e92daeb5 64 */
54e999a3 65#include "mv-common.h"
e92daeb5
SK
66
67/*
68 * Environment variables configurations
69 */
70#ifdef CONFIG_CMD_NAND
71#define CONFIG_ENV_IS_IN_NAND 1
72#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
73#else
74#define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
75#endif
76/*
77 * max 4k env size is enough, but in case of nand
78 * it has to be rounded to sector size
79 */
80#define CONFIG_ENV_SIZE 0x20000 /* 128k */
81#define CONFIG_ENV_ADDR 0x60000
82#define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
83
84/*
85 * Default environment variables
86 */
87#define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
88 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
89 "${x_bootcmd_usb}; bootm 0x6400000;"
90
91#define MTDIDS_DEFAULT "nand0=nand_mtd"
92#define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\
93 "0x400000@0x100000(uImage),"\
94 "0x1fb00000@0x500000(rootfs)"
95
96#define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
97 "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
98 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
99 "x_bootcmd_usb=usb start\0" \
100 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \
101 "mtdids="MTDIDS_DEFAULT"\0" \
102 "mtdparts="MTDPARTS_DEFAULT"\0"
103
e92daeb5
SK
104/*
105 * Ethernet Driver configuration
106 */
107#ifdef CONFIG_CMD_NET
d44265ad 108#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
e92daeb5 109#define CONFIG_PHY_BASE_ADR 0x8
e92daeb5
SK
110#endif /* CONFIG_CMD_NET */
111
112/*
54e999a3 113 * SATA Driver configuration
e92daeb5 114 */
54e999a3
PW
115#ifdef CONFIG_MVSATA_IDE
116#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
117#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
118#endif /*CONFIG_MVSATA_IDE*/
e92daeb5
SK
119
120#endif /* _CONFIG_OPENRD_BASE_H */