hardware.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * (C) Copyright 2009
  3. * Vipin Kumar, STMicroelectronics, <vipin.kumar@st.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #ifndef _ASM_ARCH_HARDWARE_H
  24. #define _ASM_ARCH_HARDWARE_H
  25. #define CONFIG_SYS_USBD_BASE (0xE1100000)
  26. #define CONFIG_SYS_PLUG_BASE (0xE1200000)
  27. #define CONFIG_SYS_FIFO_BASE (0xE1000800)
  28. #define CONFIG_SYS_SMI_BASE (0xFC000000)
  29. #define CONFIG_SPEAR_SYSCNTLBASE (0xFCA00000)
  30. #define CONFIG_SPEAR_TIMERBASE (0xFC800000)
  31. #define CONFIG_SPEAR_MISCBASE (0xFCA80000)
  32. #define CONFIG_SYS_NAND_CLE (1 << 16)
  33. #define CONFIG_SYS_NAND_ALE (1 << 17)
  34. #if defined(CONFIG_SPEAR600)
  35. #define CONFIG_SYS_I2C_BASE (0xD0200000)
  36. #define CONFIG_SPEAR_FSMCBASE (0xD1800000)
  37. #elif defined(CONFIG_SPEAR300)
  38. #define CONFIG_SYS_I2C_BASE (0xD0180000)
  39. #define CONFIG_SPEAR_FSMCBASE (0x94000000)
  40. #elif defined(CONFIG_SPEAR310)
  41. #define CONFIG_SYS_I2C_BASE (0xD0180000)
  42. #define CONFIG_SPEAR_FSMCBASE (0x44000000)
  43. #undef CONFIG_SYS_NAND_CLE
  44. #undef CONFIG_SYS_NAND_ALE
  45. #define CONFIG_SYS_NAND_CLE (1 << 17)
  46. #define CONFIG_SYS_NAND_ALE (1 << 16)
  47. #define CONFIG_SPEAR_EMIBASE (0x4F000000)
  48. #define CONFIG_SPEAR_RASBASE (0xB4000000)
  49. #elif defined(CONFIG_SPEAR320)
  50. #define CONFIG_SYS_I2C_BASE (0xD0180000)
  51. #define CONFIG_SPEAR_FSMCBASE (0x4C000000)
  52. #define CONFIG_SPEAR_EMIBASE (0x40000000)
  53. #define CONFIG_SPEAR_RASBASE (0xB3000000)
  54. #endif
  55. #endif /* _ASM_ARCH_HARDWARE_H */