aspenite.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2010
  4. * Marvell Semiconductor <www.marvell.com>
  5. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  6. * Contributor: Mahavir Jain <mjain@marvell.com>
  7. */
  8. #ifndef __CONFIG_ASPENITE_H
  9. #define __CONFIG_ASPENITE_H
  10. /*
  11. * High Level Configuration Options
  12. */
  13. #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */
  14. #define CONFIG_ARMADA100 1 /* SOC Family Name */
  15. #define CONFIG_ARMADA168 1 /* SOC Used on this Board */
  16. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  17. /*
  18. * There is no internal RAM in ARMADA100, using DRAM
  19. * TBD: dcache to be used for this
  20. */
  21. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000)
  22. #define CONFIG_NR_DRAM_BANKS_MAX 2
  23. /*
  24. * Commands configuration
  25. */
  26. /*
  27. * mv-common.h should be defined after CMD configs since it used them
  28. * to enable certain macros
  29. */
  30. #include "mv-common.h"
  31. /*
  32. * Environment variables configurations
  33. */
  34. #define CONFIG_ENV_SIZE 0x20000 /* 64k */
  35. #endif /* __CONFIG_ASPENITE_H */