Ajay Bhargav | 2674958 | 2011-08-04 21:26:02 +0530 | [diff] [blame] | 1 | /* |
| 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 | /* |
| 35 | * Version number information |
| 36 | */ |
| 37 | #define CONFIG_IDENT_STRING "\nMarvell-gplugD" |
| 38 | |
| 39 | /* |
| 40 | * High Level Configuration Options |
| 41 | */ |
| 42 | #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */ |
| 43 | #define CONFIG_ARMADA100 1 /* SOC Family Name */ |
| 44 | #define CONFIG_ARMADA168 1 /* SOC Used on this Board */ |
| 45 | #define CONFIG_MACH_SHEEVAD /* Machine type */ |
| 46 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 47 | |
| 48 | #define CONFIG_SYS_TEXT_BASE 0x00f00000 |
| 49 | |
| 50 | /* |
| 51 | * There is no internal RAM in ARMADA100, using DRAM |
| 52 | * TBD: dcache to be used for this |
| 53 | */ |
| 54 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000) |
| 55 | #define CONFIG_NR_DRAM_BANKS_MAX 2 |
| 56 | |
| 57 | /* |
| 58 | * Commands configuration |
| 59 | */ |
| 60 | #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ |
| 61 | #include <config_cmd_default.h> |
| 62 | #define CONFIG_CMD_I2C |
| 63 | #define CONFIG_CMD_AUTOSCRIPT |
| 64 | #undef CONFIG_CMD_FPGA |
Ajay Bhargav | aa0ecfe | 2011-09-13 22:22:04 +0530 | [diff] [blame] | 65 | |
| 66 | /* Disable DCACHE */ |
| 67 | #define CONFIG_SYS_DCACHE_OFF |
| 68 | |
| 69 | /* Network configuration */ |
| 70 | #ifdef CONFIG_CMD_NET |
| 71 | #define CONFIG_CMD_PING |
| 72 | #define CONFIG_NET_MULTI |
| 73 | #define CONFIG_ARMADA100_FEC |
| 74 | |
| 75 | /* DHCP Support */ |
| 76 | #define CONFIG_CMD_DHCP |
| 77 | #define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000 |
| 78 | #endif /* CONFIG_CMD_NET */ |
Ajay Bhargav | 2674958 | 2011-08-04 21:26:02 +0530 | [diff] [blame] | 79 | |
Ajay Bhargav | 47e75d7 | 2011-09-13 22:22:13 +0530 | [diff] [blame] | 80 | /* GPIO Support */ |
| 81 | #define CONFIG_MARVELL_GPIO |
| 82 | |
| 83 | /* PHY configuration */ |
| 84 | #define CONFIG_MII |
| 85 | #define CONFIG_CMD_MII |
| 86 | #define CONFIG_RESET_PHY_R |
| 87 | /* 88E3015 register definition */ |
| 88 | #define PHY_LED_PAR_SEL_REG 22 |
| 89 | #define PHY_LED_MAN_REG 25 |
| 90 | #define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */ |
| 91 | /* GPIO Configuration for PHY */ |
| 92 | #define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */ |
| 93 | |
Ajay Bhargav | 2674958 | 2011-08-04 21:26:02 +0530 | [diff] [blame] | 94 | /* |
| 95 | * mv-common.h should be defined after CMD configs since it used them |
| 96 | * to enable certain macros |
| 97 | */ |
| 98 | #include "mv-common.h" |
| 99 | #undef CONFIG_ARCH_MISC_INIT |
| 100 | |
| 101 | #ifdef CONFIG_SYS_NS16550_COM1 |
| 102 | #undef CONFIG_SYS_NS16550_COM1 |
| 103 | #endif /* CONFIG_SYS_NS16550_COM1 */ |
| 104 | |
| 105 | #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE |
| 106 | |
| 107 | /* |
| 108 | * Environment variables configurations |
| 109 | */ |
| 110 | #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ |
| 111 | #define CONFIG_ENV_SIZE 0x20000 /* 64k */ |
| 112 | |
| 113 | #endif /* __CONFIG_GPLUGD_H */ |