Lei Wen | ea4bc12 | 2011-02-09 18:17:47 +0530 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2011 |
| 3 | * Marvell Semiconductor <www.marvell.com> |
| 4 | * Written-by: Lei Wen <leiwen@marvell.com> |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 22 | * MA 02110-1301 USA |
| 23 | */ |
| 24 | |
| 25 | #ifndef __CONFIG_DKB_H |
| 26 | #define __CONFIG_DKB_H |
| 27 | |
| 28 | /* |
| 29 | * Version number information |
| 30 | */ |
| 31 | #define CONFIG_IDENT_STRING "\nMarvell-TTC DKB" |
| 32 | |
| 33 | /* |
| 34 | * High Level Configuration Options |
| 35 | */ |
| 36 | #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */ |
| 37 | #define CONFIG_PANTHEON 1 /* SOC Family Name */ |
| 38 | #define CONFIG_MACH_TTC_DKB 1 /* Machine type */ |
| 39 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 40 | |
| 41 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000) |
| 42 | #define CONFIG_NR_DRAM_BANKS_MAX 2 |
| 43 | |
| 44 | /* |
| 45 | * Commands configuration |
| 46 | */ |
| 47 | #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ |
| 48 | #include <config_cmd_default.h> |
Lei Wen | aa3b168 | 2011-04-13 23:48:34 +0530 | [diff] [blame] | 49 | #define CONFIG_CMD_I2C |
Lei Wen | cfeba45 | 2011-10-03 20:33:43 +0000 | [diff] [blame] | 50 | #define CONFIG_CMD_MMC |
Lei Wen | ea4bc12 | 2011-02-09 18:17:47 +0530 | [diff] [blame] | 51 | #undef CONFIG_CMD_NET |
| 52 | #undef CONFIG_CMD_NFS |
| 53 | /* |
| 54 | * mv-common.h should be defined after CMD configs since it used them |
| 55 | * to enable certain macros |
| 56 | */ |
| 57 | #include "mv-common.h" |
| 58 | |
| 59 | #undef CONFIG_ARCH_MISC_INIT |
Lei Wen | aa3b168 | 2011-04-13 23:48:34 +0530 | [diff] [blame] | 60 | |
Lei Wen | ea4bc12 | 2011-02-09 18:17:47 +0530 | [diff] [blame] | 61 | /* |
| 62 | * Environment variables configurations |
| 63 | */ |
| 64 | #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ |
| 65 | #define CONFIG_ENV_SIZE 0x20000 /* 64k */ |
| 66 | |
| 67 | #endif /* __CONFIG_DKB_H */ |