hardware.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2009, STMicroelectronics - All Rights Reserved
  4. * Author(s): Vipin Kumar, <vipin.kumar@st.com> for STMicroelectronics.
  5. */
  6. #ifndef _ASM_ARCH_HARDWARE_H
  7. #define _ASM_ARCH_HARDWARE_H
  8. #define CONFIG_SYS_USBD_BASE 0xE1100000
  9. #define CONFIG_SYS_PLUG_BASE 0xE1200000
  10. #define CONFIG_SYS_FIFO_BASE 0xE1000800
  11. #define CONFIG_SYS_UHC0_EHCI_BASE 0xE1800000
  12. #define CONFIG_SYS_UHC1_EHCI_BASE 0xE2000000
  13. #define CONFIG_SYS_SMI_BASE 0xFC000000
  14. #define CONFIG_SPEAR_SYSCNTLBASE 0xFCA00000
  15. #define CONFIG_SPEAR_TIMERBASE 0xFC800000
  16. #define CONFIG_SPEAR_MISCBASE 0xFCA80000
  17. #define CONFIG_SPEAR_ETHBASE 0xE0800000
  18. #define CONFIG_SPEAR_MPMCBASE 0xFC600000
  19. #define CONFIG_SSP1_BASE 0xD0100000
  20. #define CONFIG_SSP2_BASE 0xD0180000
  21. #define CONFIG_SSP3_BASE 0xD8180000
  22. #define CONFIG_GPIO_BASE 0xD8100000
  23. #define CONFIG_SYS_NAND_CLE (1 << 16)
  24. #define CONFIG_SYS_NAND_ALE (1 << 17)
  25. #if defined(CONFIG_SPEAR600)
  26. #define CONFIG_SYS_FSMC_BASE 0xD1800000
  27. #define CONFIG_FSMC_NAND_BASE 0xD2000000
  28. #define CONFIG_SPEAR_BOOTSTRAPCFG 0xFCA80000
  29. #define CONFIG_SPEAR_BOOTSTRAPSHFT 16
  30. #define CONFIG_SPEAR_BOOTSTRAPMASK 0xB
  31. #define CONFIG_SPEAR_ONLYSNORBOOT 0xA
  32. #define CONFIG_SPEAR_NORNANDBOOT 0xB
  33. #define CONFIG_SPEAR_NORNAND8BOOT 0x8
  34. #define CONFIG_SPEAR_NORNAND16BOOT 0x9
  35. #define CONFIG_SPEAR_USBBOOT 0x8
  36. #define CONFIG_SPEAR_MPMCREGS 100
  37. #endif
  38. #endif /* _ASM_ARCH_HARDWARE_H */