blob: 061ebe65f67c7c599a2cf1c21f096df78e7bc6a6 [file] [log] [blame]
Ajay Bhargav26749582011-08-04 21:26:02 +05301/*
2 * (C) Copyright 2011
3 * eInfochips Ltd. <www.einfochips.com>
4 * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
5 *
6 * Based on Aspenite:
7 * (C) Copyright 2010
8 * Marvell Semiconductor <www.marvell.com>
9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
10 * Contributor: Mahavir Jain <mjain@marvell.com>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28 * MA 02110-1301 USA
29 */
30
31#ifndef __CONFIG_GPLUGD_H
32#define __CONFIG_GPLUGD_H
33
34/*
Ajay Bhargave0c8fa82011-10-31 17:27:46 +053035 * FIXME: fix for error caused due to recent update to mach-types.h
36 */
37#include <asm/mach-types.h>
38#ifdef MACH_TYPE_SHEEVAD
39#error "MACH_TYPE_SHEEVAD has been defined properly, please remove this."
40#else
41#define MACH_TYPE_SHEEVAD 2625
42#endif
43
44/*
Ajay Bhargav26749582011-08-04 21:26:02 +053045 * Version number information
46 */
47#define CONFIG_IDENT_STRING "\nMarvell-gplugD"
48
49/*
50 * High Level Configuration Options
51 */
52#define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */
53#define CONFIG_ARMADA100 1 /* SOC Family Name */
54#define CONFIG_ARMADA168 1 /* SOC Used on this Board */
Ajay Bhargave0c8fa82011-10-31 17:27:46 +053055#define CONFIG_MACH_TYPE MACH_TYPE_SHEEVAD /* Machine type */
Ajay Bhargav26749582011-08-04 21:26:02 +053056#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
57
58#define CONFIG_SYS_TEXT_BASE 0x00f00000
59
60/*
61 * There is no internal RAM in ARMADA100, using DRAM
62 * TBD: dcache to be used for this
63 */
64#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000)
65#define CONFIG_NR_DRAM_BANKS_MAX 2
66
67/*
68 * Commands configuration
69 */
70#define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
71#include <config_cmd_default.h>
72#define CONFIG_CMD_I2C
73#define CONFIG_CMD_AUTOSCRIPT
74#undef CONFIG_CMD_FPGA
Ajay Bhargav099cb1e2012-02-13 03:27:44 +000075#define CONFIG_CMD_USB
Ajay Bhargavaa0ecfe2011-09-13 22:22:04 +053076
77/* Disable DCACHE */
78#define CONFIG_SYS_DCACHE_OFF
79
80/* Network configuration */
81#ifdef CONFIG_CMD_NET
82#define CONFIG_CMD_PING
Ajay Bhargavaa0ecfe2011-09-13 22:22:04 +053083#define CONFIG_ARMADA100_FEC
84
85/* DHCP Support */
86#define CONFIG_CMD_DHCP
87#define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000
88#endif /* CONFIG_CMD_NET */
Ajay Bhargav26749582011-08-04 21:26:02 +053089
Ajay Bhargav47e75d72011-09-13 22:22:13 +053090/* GPIO Support */
91#define CONFIG_MARVELL_GPIO
92
93/* PHY configuration */
94#define CONFIG_MII
95#define CONFIG_CMD_MII
96#define CONFIG_RESET_PHY_R
97/* 88E3015 register definition */
98#define PHY_LED_PAR_SEL_REG 22
99#define PHY_LED_MAN_REG 25
100#define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */
101/* GPIO Configuration for PHY */
102#define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */
103
Ajay Bhargavdaa4b2f2011-10-03 14:00:57 +0530104/* SPI Support */
105#define CONFIG_ARMADA100_SPI
106#define CONFIG_ENV_SPI_CS 110
107#define CONFIG_SYS_SSP_PORT 2
108
Ajay Bhargav2f83cd52011-10-03 14:00:58 +0530109/* Flash Support */
110#define CONFIG_CMD_SF
111#define CONFIG_SPI_FLASH_ATMEL
112
Ajay Bhargav26749582011-08-04 21:26:02 +0530113/*
114 * mv-common.h should be defined after CMD configs since it used them
115 * to enable certain macros
116 */
117#include "mv-common.h"
118#undef CONFIG_ARCH_MISC_INIT
119
120#ifdef CONFIG_SYS_NS16550_COM1
121#undef CONFIG_SYS_NS16550_COM1
122#endif /* CONFIG_SYS_NS16550_COM1 */
123
124#define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE
125
126/*
127 * Environment variables configurations
128 */
Ajay Bhargavb5de0382011-10-03 14:00:58 +0530129#define CONFIG_ENV_IS_IN_SPI_FLASH
130#define CONFIG_ENV_SECT_SIZE 0x4000
131#define CONFIG_ENV_SIZE 0x4000
132#define CONFIG_ENV_OFFSET 0x07C000
133
134#define CONFIG_CMD_ASKENV
135#define CONFIG_CMD_EDITENV
136#define CONFIG_CMD_SAVEENV
Ajay Bhargav26749582011-08-04 21:26:02 +0530137
Ajay Bhargav099cb1e2012-02-13 03:27:44 +0000138#ifdef CONFIG_CMD_USB
139#define CONFIG_USB_EHCI
140#define CONFIG_USB_EHCI_ARMADA100
141#define CONFIG_EHCI_IS_TDI
142#define CONFIG_USB_STORAGE
143#endif /* CONFIG_CMD_USB */
144
145#define CONFIG_DOS_PARTITION
146#define CONFIG_ISO_PARTITION
147#define CONFIG_SUPPORT_VFAT
148
Ajay Bhargav26749582011-08-04 21:26:02 +0530149#endif /* __CONFIG_GPLUGD_H */