dkb.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. #ifndef __CONFIG_DKB_H
  25. #define __CONFIG_DKB_H
  26. /*
  27. * Version number information
  28. */
  29. #define CONFIG_IDENT_STRING "\nMarvell-TTC DKB"
  30. /*
  31. * High Level Configuration Options
  32. */
  33. #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */
  34. #define CONFIG_PANTHEON 1 /* SOC Family Name */
  35. #define CONFIG_MACH_TTC_DKB 1 /* Machine type */
  36. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  37. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000)
  38. #define CONFIG_NR_DRAM_BANKS_MAX 2
  39. /*
  40. * Commands configuration
  41. */
  42. #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
  43. #include <config_cmd_default.h>
  44. #define CONFIG_CMD_I2C
  45. #define CONFIG_CMD_MMC
  46. #undef CONFIG_CMD_NET
  47. #undef CONFIG_CMD_NFS
  48. /*
  49. * mv-common.h should be defined after CMD configs since it used them
  50. * to enable certain macros
  51. */
  52. #include "mv-common.h"
  53. #undef CONFIG_ARCH_MISC_INIT
  54. /*
  55. * Environment variables configurations
  56. */
  57. #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
  58. #define CONFIG_ENV_SIZE 0x20000 /* 64k */
  59. #endif /* __CONFIG_DKB_H */