aspenite.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * (C) Copyright 2010
  3. * Marvell Semiconductor <www.marvell.com>
  4. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  5. * Contributor: Mahavir Jain <mjain@marvell.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  23. * MA 02110-1301 USA
  24. */
  25. #ifndef __CONFIG_ASPENITE_H
  26. #define __CONFIG_ASPENITE_H
  27. /*
  28. * Version number information
  29. */
  30. #define CONFIG_IDENT_STRING "\nMarvell-Aspenite DB"
  31. /*
  32. * High Level Configuration Options
  33. */
  34. #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */
  35. #define CONFIG_ARMADA100 1 /* SOC Family Name */
  36. #define CONFIG_ARMADA168 1 /* SOC Used on this Board */
  37. #define CONFIG_MACH_ASPENITE /* Machine type */
  38. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  39. /*
  40. * There is no internal RAM in ARMADA100, using DRAM
  41. * TBD: dcache to be used for this
  42. */
  43. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000)
  44. #define CONFIG_NR_DRAM_BANKS_MAX 2
  45. /*
  46. * Commands configuration
  47. */
  48. #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
  49. #include <config_cmd_default.h>
  50. #define CONFIG_CMD_I2C
  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. #undef CONFIG_ARCH_MISC_INIT
  59. /*
  60. * Environment variables configurations
  61. */
  62. #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
  63. #define CONFIG_ENV_SIZE 0x20000 /* 64k */
  64. #endif /* __CONFIG_ASPENITE_H */