aspenite.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef __CONFIG_ASPENITE_H
  10. #define __CONFIG_ASPENITE_H
  11. /*
  12. * High Level Configuration Options
  13. */
  14. #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */
  15. #define CONFIG_ARMADA100 1 /* SOC Family Name */
  16. #define CONFIG_ARMADA168 1 /* SOC Used on this Board */
  17. #define CONFIG_MACH_ASPENITE /* Machine type */
  18. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  19. /*
  20. * There is no internal RAM in ARMADA100, using DRAM
  21. * TBD: dcache to be used for this
  22. */
  23. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000)
  24. #define CONFIG_NR_DRAM_BANKS_MAX 2
  25. /*
  26. * Commands configuration
  27. */
  28. #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
  29. /*
  30. * mv-common.h should be defined after CMD configs since it used them
  31. * to enable certain macros
  32. */
  33. #include "mv-common.h"
  34. #undef CONFIG_ARCH_MISC_INIT
  35. /*
  36. * Environment variables configurations
  37. */
  38. #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
  39. #define CONFIG_ENV_SIZE 0x20000 /* 64k */
  40. #endif /* __CONFIG_ASPENITE_H */