spear320.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * arch/arm/mach-spear3xx/include/mach/spear320.h
  3. *
  4. * SPEAr320 Machine specific definition
  5. *
  6. * Copyright (C) 2009 ST Microelectronics
  7. * Viresh Kumar<viresh.kumar@st.com>
  8. *
  9. * This file is licensed under the terms of the GNU General Public
  10. * License version 2. This program is licensed "as is" without any
  11. * warranty of any kind, whether express or implied.
  12. */
  13. #ifdef CONFIG_MACH_SPEAR320
  14. #ifndef __MACH_SPEAR320_H
  15. #define __MACH_SPEAR320_H
  16. #define SPEAR320_EMI_CTRL_BASE UL(0x40000000)
  17. #define SPEAR320_FSMC_BASE UL(0x4C000000)
  18. #define SPEAR320_NAND_BASE UL(0x50000000)
  19. #define SPEAR320_I2S_BASE UL(0x60000000)
  20. #define SPEAR320_SDHCI_BASE UL(0x70000000)
  21. #define SPEAR320_CLCD_BASE UL(0x90000000)
  22. #define SPEAR320_PAR_PORT_BASE UL(0xA0000000)
  23. #define SPEAR320_CAN0_BASE UL(0xA1000000)
  24. #define SPEAR320_CAN1_BASE UL(0xA2000000)
  25. #define SPEAR320_UART1_BASE UL(0xA3000000)
  26. #define SPEAR320_UART2_BASE UL(0xA4000000)
  27. #define SPEAR320_SSP0_BASE UL(0xA5000000)
  28. #define SPEAR320_SSP1_BASE UL(0xA6000000)
  29. #define SPEAR320_I2C_BASE UL(0xA7000000)
  30. #define SPEAR320_PWM_BASE UL(0xA8000000)
  31. #define SPEAR320_SMII0_BASE UL(0xAA000000)
  32. #define SPEAR320_SMII1_BASE UL(0xAB000000)
  33. #define SPEAR320_SOC_CONFIG_BASE UL(0xB3000000)
  34. /* Interrupt registers offsets and masks */
  35. #define INT_STS_MASK_REG 0x04
  36. #define INT_CLR_MASK_REG 0x04
  37. #define INT_ENB_MASK_REG 0x08
  38. #define GPIO_IRQ_MASK (1 << 0)
  39. #define I2S_PLAY_IRQ_MASK (1 << 1)
  40. #define I2S_REC_IRQ_MASK (1 << 2)
  41. #define EMI_IRQ_MASK (1 << 7)
  42. #define CLCD_IRQ_MASK (1 << 8)
  43. #define SPP_IRQ_MASK (1 << 9)
  44. #define SDHCI_IRQ_MASK (1 << 10)
  45. #define CAN_U_IRQ_MASK (1 << 11)
  46. #define CAN_L_IRQ_MASK (1 << 12)
  47. #define UART1_IRQ_MASK (1 << 13)
  48. #define UART2_IRQ_MASK (1 << 14)
  49. #define SSP1_IRQ_MASK (1 << 15)
  50. #define SSP2_IRQ_MASK (1 << 16)
  51. #define SMII0_IRQ_MASK (1 << 17)
  52. #define MII1_SMII1_IRQ_MASK (1 << 18)
  53. #define WAKEUP_SMII0_IRQ_MASK (1 << 19)
  54. #define WAKEUP_MII1_SMII1_IRQ_MASK (1 << 20)
  55. #define I2C1_IRQ_MASK (1 << 21)
  56. #define SHIRQ_RAS1_MASK 0x000380
  57. #define SHIRQ_RAS3_MASK 0x000007
  58. #define SHIRQ_INTRCOMM_RAS_MASK 0x3FF800
  59. #endif /* __MACH_SPEAR320_H */
  60. #endif /* CONFIG_MACH_SPEAR320 */