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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Lei Wen | ea4bc12 | 2011-02-09 18:17:47 +0530 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __CONFIG_DKB_H |
| 10 | #define __CONFIG_DKB_H |
| 11 | |
| 12 | /* |
| 13 | * Version number information |
| 14 | */ |
| 15 | #define CONFIG_IDENT_STRING "\nMarvell-TTC DKB" |
| 16 | |
| 17 | /* |
| 18 | * High Level Configuration Options |
| 19 | */ |
| 20 | #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */ |
| 21 | #define CONFIG_PANTHEON 1 /* SOC Family Name */ |
| 22 | #define CONFIG_MACH_TTC_DKB 1 /* Machine type */ |
| 23 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 24 | |
| 25 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000) |
| 26 | #define CONFIG_NR_DRAM_BANKS_MAX 2 |
| 27 | |
| 28 | /* |
| 29 | * Commands configuration |
| 30 | */ |
| 31 | #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ |
| 32 | #include <config_cmd_default.h> |
Lei Wen | aa3b168 | 2011-04-13 23:48:34 +0530 | [diff] [blame] | 33 | #define CONFIG_CMD_I2C |
Lei Wen | cfeba45 | 2011-10-03 20:33:43 +0000 | [diff] [blame] | 34 | #define CONFIG_CMD_MMC |
Lei Wen | ea4bc12 | 2011-02-09 18:17:47 +0530 | [diff] [blame] | 35 | #undef CONFIG_CMD_NET |
| 36 | #undef CONFIG_CMD_NFS |
| 37 | /* |
| 38 | * mv-common.h should be defined after CMD configs since it used them |
| 39 | * to enable certain macros |
| 40 | */ |
| 41 | #include "mv-common.h" |
| 42 | |
| 43 | #undef CONFIG_ARCH_MISC_INIT |
Lei Wen | aa3b168 | 2011-04-13 23:48:34 +0530 | [diff] [blame] | 44 | |
Lei Wen | ea4bc12 | 2011-02-09 18:17:47 +0530 | [diff] [blame] | 45 | /* |
| 46 | * Environment variables configurations |
| 47 | */ |
| 48 | #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ |
| 49 | #define CONFIG_ENV_SIZE 0x20000 /* 64k */ |
| 50 | |
| 51 | #endif /* __CONFIG_DKB_H */ |