platform.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. /*
  2. * linux/include/asm-arm/arch-realview/platform.h
  3. *
  4. * Copyright (c) ARM Limited 2003. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #ifndef __address_h
  21. #define __address_h 1
  22. /*
  23. * Memory definitions
  24. */
  25. #define REALVIEW_BOOT_ROM_LO 0x30000000 /* DoC Base (64Mb)...*/
  26. #define REALVIEW_BOOT_ROM_HI 0x30000000
  27. #define REALVIEW_BOOT_ROM_BASE REALVIEW_BOOT_ROM_HI /* Normal position */
  28. #define REALVIEW_BOOT_ROM_SIZE SZ_64M
  29. #define REALVIEW_SSRAM_BASE /* REALVIEW_SSMC_BASE ? */
  30. #define REALVIEW_SSRAM_SIZE SZ_2M
  31. #define REALVIEW_FLASH_BASE 0x40000000
  32. #define REALVIEW_FLASH_SIZE SZ_64M
  33. /*
  34. * SDRAM
  35. */
  36. #define REALVIEW_SDRAM_BASE 0x00000000
  37. /*
  38. * Logic expansion modules
  39. *
  40. */
  41. /* ------------------------------------------------------------------------
  42. * RealView Registers
  43. * ------------------------------------------------------------------------
  44. *
  45. */
  46. #define REALVIEW_SYS_ID_OFFSET 0x00
  47. #define REALVIEW_SYS_SW_OFFSET 0x04
  48. #define REALVIEW_SYS_LED_OFFSET 0x08
  49. #define REALVIEW_SYS_OSC0_OFFSET 0x0C
  50. #define REALVIEW_SYS_OSC1_OFFSET 0x10
  51. #define REALVIEW_SYS_OSC2_OFFSET 0x14
  52. #define REALVIEW_SYS_OSC3_OFFSET 0x18
  53. #define REALVIEW_SYS_OSC4_OFFSET 0x1C /* OSC1 for RealView/AB */
  54. #define REALVIEW_SYS_LOCK_OFFSET 0x20
  55. #define REALVIEW_SYS_100HZ_OFFSET 0x24
  56. #define REALVIEW_SYS_CFGDATA1_OFFSET 0x28
  57. #define REALVIEW_SYS_CFGDATA2_OFFSET 0x2C
  58. #define REALVIEW_SYS_FLAGS_OFFSET 0x30
  59. #define REALVIEW_SYS_FLAGSSET_OFFSET 0x30
  60. #define REALVIEW_SYS_FLAGSCLR_OFFSET 0x34
  61. #define REALVIEW_SYS_NVFLAGS_OFFSET 0x38
  62. #define REALVIEW_SYS_NVFLAGSSET_OFFSET 0x38
  63. #define REALVIEW_SYS_NVFLAGSCLR_OFFSET 0x3C
  64. #define REALVIEW_SYS_RESETCTL_OFFSET 0x40
  65. #define REALVIEW_SYS_PCICTL_OFFSET 0x44
  66. #define REALVIEW_SYS_MCI_OFFSET 0x48
  67. #define REALVIEW_SYS_FLASH_OFFSET 0x4C
  68. #define REALVIEW_SYS_CLCD_OFFSET 0x50
  69. #define REALVIEW_SYS_CLCDSER_OFFSET 0x54
  70. #define REALVIEW_SYS_BOOTCS_OFFSET 0x58
  71. #define REALVIEW_SYS_24MHz_OFFSET 0x5C
  72. #define REALVIEW_SYS_MISC_OFFSET 0x60
  73. #define REALVIEW_SYS_IOSEL_OFFSET 0x70
  74. #define REALVIEW_SYS_TEST_OSC0_OFFSET 0x80
  75. #define REALVIEW_SYS_TEST_OSC1_OFFSET 0x84
  76. #define REALVIEW_SYS_TEST_OSC2_OFFSET 0x88
  77. #define REALVIEW_SYS_TEST_OSC3_OFFSET 0x8C
  78. #define REALVIEW_SYS_TEST_OSC4_OFFSET 0x90
  79. #define REALVIEW_SYS_BASE 0x10000000
  80. #define REALVIEW_SYS_ID (REALVIEW_SYS_BASE + REALVIEW_SYS_ID_OFFSET)
  81. #define REALVIEW_SYS_SW (REALVIEW_SYS_BASE + REALVIEW_SYS_SW_OFFSET)
  82. #define REALVIEW_SYS_LED (REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET)
  83. #define REALVIEW_SYS_OSC0 (REALVIEW_SYS_BASE + REALVIEW_SYS_OSC0_OFFSET)
  84. #define REALVIEW_SYS_OSC1 (REALVIEW_SYS_BASE + REALVIEW_SYS_OSC1_OFFSET)
  85. #define REALVIEW_SYS_LOCK (REALVIEW_SYS_BASE + REALVIEW_SYS_LOCK_OFFSET)
  86. #define REALVIEW_SYS_100HZ (REALVIEW_SYS_BASE + REALVIEW_SYS_100HZ_OFFSET)
  87. #define REALVIEW_SYS_CFGDATA1 (REALVIEW_SYS_BASE + REALVIEW_SYS_CFGDATA1_OFFSET)
  88. #define REALVIEW_SYS_CFGDATA2 (REALVIEW_SYS_BASE + REALVIEW_SYS_CFGDATA2_OFFSET)
  89. #define REALVIEW_SYS_FLAGS (REALVIEW_SYS_BASE + REALVIEW_SYS_FLAGS_OFFSET)
  90. #define REALVIEW_SYS_FLAGSSET (REALVIEW_SYS_BASE + REALVIEW_SYS_FLAGSSET_OFFSET)
  91. #define REALVIEW_SYS_FLAGSCLR (REALVIEW_SYS_BASE + REALVIEW_SYS_FLAGSCLR_OFFSET)
  92. #define REALVIEW_SYS_NVFLAGS (REALVIEW_SYS_BASE + REALVIEW_SYS_NVFLAGS_OFFSET)
  93. #define REALVIEW_SYS_NVFLAGSSET (REALVIEW_SYS_BASE + REALVIEW_SYS_NVFLAGSSET_OFFSET)
  94. #define REALVIEW_SYS_NVFLAGSCLR (REALVIEW_SYS_BASE + REALVIEW_SYS_NVFLAGSCLR_OFFSET)
  95. #define REALVIEW_SYS_RESETCTL (REALVIEW_SYS_BASE + REALVIEW_SYS_RESETCTL_OFFSET)
  96. #define REALVIEW_SYS_PCICTL (REALVIEW_SYS_BASE + REALVIEW_SYS_PCICTL_OFFSET)
  97. #define REALVIEW_SYS_MCI (REALVIEW_SYS_BASE + REALVIEW_SYS_MCI_OFFSET)
  98. #define REALVIEW_SYS_FLASH (REALVIEW_SYS_BASE + REALVIEW_SYS_FLASH_OFFSET)
  99. #define REALVIEW_SYS_CLCD (REALVIEW_SYS_BASE + REALVIEW_SYS_CLCD_OFFSET)
  100. #define REALVIEW_SYS_CLCDSER (REALVIEW_SYS_BASE + REALVIEW_SYS_CLCDSER_OFFSET)
  101. #define REALVIEW_SYS_BOOTCS (REALVIEW_SYS_BASE + REALVIEW_SYS_BOOTCS_OFFSET)
  102. #define REALVIEW_SYS_24MHz (REALVIEW_SYS_BASE + REALVIEW_SYS_24MHz_OFFSET)
  103. #define REALVIEW_SYS_MISC (REALVIEW_SYS_BASE + REALVIEW_SYS_MISC_OFFSET)
  104. #define REALVIEW_SYS_IOSEL (REALVIEW_SYS_BASE + REALVIEW_SYS_IOSEL_OFFSET)
  105. #define REALVIEW_SYS_TEST_OSC0 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC0_OFFSET)
  106. #define REALVIEW_SYS_TEST_OSC1 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC1_OFFSET)
  107. #define REALVIEW_SYS_TEST_OSC2 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC2_OFFSET)
  108. #define REALVIEW_SYS_TEST_OSC3 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC3_OFFSET)
  109. #define REALVIEW_SYS_TEST_OSC4 (REALVIEW_SYS_BASE + REALVIEW_SYS_TEST_OSC4_OFFSET)
  110. /*
  111. * Values for REALVIEW_SYS_RESET_CTRL
  112. */
  113. #define REALVIEW_SYS_CTRL_RESET_CONFIGCLR 0x01
  114. #define REALVIEW_SYS_CTRL_RESET_CONFIGINIT 0x02
  115. #define REALVIEW_SYS_CTRL_RESET_DLLRESET 0x03
  116. #define REALVIEW_SYS_CTRL_RESET_PLLRESET 0x04
  117. #define REALVIEW_SYS_CTRL_RESET_POR 0x05
  118. #define REALVIEW_SYS_CTRL_RESET_DoC 0x06
  119. #define REALVIEW_SYS_CTRL_LED (1 << 0)
  120. /* ------------------------------------------------------------------------
  121. * RealView control registers
  122. * ------------------------------------------------------------------------
  123. */
  124. /*
  125. * REALVIEW_IDFIELD
  126. *
  127. * 31:24 = manufacturer (0x41 = ARM)
  128. * 23:16 = architecture (0x08 = AHB system bus, ASB processor bus)
  129. * 15:12 = FPGA (0x3 = XVC600 or XVC600E)
  130. * 11:4 = build value
  131. * 3:0 = revision number (0x1 = rev B (AHB))
  132. */
  133. /*
  134. * REALVIEW_SYS_LOCK
  135. * control access to SYS_OSCx, SYS_CFGDATAx, SYS_RESETCTL,
  136. * SYS_CLD, SYS_BOOTCS
  137. */
  138. #define REALVIEW_SYS_LOCK_LOCKED (1 << 16)
  139. #define REALVIEW_SYS_LOCKVAL_MASK 0xFFFF /* write 0xA05F to enable write access */
  140. /*
  141. * REALVIEW_SYS_FLASH
  142. */
  143. #define REALVIEW_FLASHPROG_FLVPPEN (1 << 0) /* Enable writing to flash */
  144. /*
  145. * REALVIEW_INTREG
  146. * - used to acknowledge and control MMCI and UART interrupts
  147. */
  148. #define REALVIEW_INTREG_WPROT 0x00 /* MMC protection status (no interrupt generated) */
  149. #define REALVIEW_INTREG_RI0 0x01 /* Ring indicator UART0 is asserted, */
  150. #define REALVIEW_INTREG_CARDIN 0x08 /* MMCI card in detect */
  151. /* write 1 to acknowledge and clear */
  152. #define REALVIEW_INTREG_RI1 0x02 /* Ring indicator UART1 is asserted, */
  153. #define REALVIEW_INTREG_CARDINSERT 0x03 /* Signal insertion of MMC card */
  154. /*
  155. * REALVIEW peripheral addresses
  156. */
  157. #define REALVIEW_SCTL_BASE 0x10001000 /* System controller */
  158. #define REALVIEW_I2C_BASE 0x10002000 /* I2C control */
  159. /* Reserved 0x10003000 */
  160. #define REALVIEW_AACI_BASE 0x10004000 /* Audio */
  161. #define REALVIEW_MMCI0_BASE 0x10005000 /* MMC interface */
  162. #define REALVIEW_KMI0_BASE 0x10006000 /* KMI interface */
  163. #define REALVIEW_KMI1_BASE 0x10007000 /* KMI 2nd interface */
  164. #define REALVIEW_CHAR_LCD_BASE 0x10008000 /* Character LCD */
  165. #define REALVIEW_UART0_BASE 0x10009000 /* UART 0 */
  166. #define REALVIEW_UART1_BASE 0x1000A000 /* UART 1 */
  167. #define REALVIEW_UART2_BASE 0x1000B000 /* UART 2 */
  168. #define REALVIEW_UART3_BASE 0x1000C000 /* UART 3 */
  169. #define REALVIEW_SSP_BASE 0x1000D000 /* Synchronous Serial Port */
  170. #define REALVIEW_SCI_BASE 0x1000E000 /* Smart card controller */
  171. /* Reserved 0x1000F000 */
  172. #define REALVIEW_WATCHDOG_BASE 0x10010000 /* watchdog interface */
  173. #define REALVIEW_TIMER0_1_BASE 0x10011000 /* Timer 0 and 1 */
  174. #define REALVIEW_TIMER2_3_BASE 0x10012000 /* Timer 2 and 3 */
  175. #define REALVIEW_GPIO0_BASE 0x10013000 /* GPIO port 0 */
  176. #define REALVIEW_GPIO1_BASE 0x10014000 /* GPIO port 1 */
  177. #define REALVIEW_GPIO2_BASE 0x10015000 /* GPIO port 2 */
  178. /* Reserved 0x10016000 */
  179. #define REALVIEW_RTC_BASE 0x10017000 /* Real Time Clock */
  180. #define REALVIEW_DMC_BASE 0x10018000 /* DMC configuration */
  181. #define REALVIEW_PCI_CORE_BASE 0x10019000 /* PCI configuration */
  182. /* Reserved 0x1001A000 - 0x1001FFFF */
  183. #define REALVIEW_CLCD_BASE 0x10020000 /* CLCD */
  184. #define REALVIEW_DMAC_BASE 0x10030000 /* DMA controller */
  185. #ifndef CONFIG_REALVIEW_MPCORE
  186. #define REALVIEW_GIC_CPU_BASE 0x10040000 /* Generic interrupt controller CPU interface */
  187. #define REALVIEW_GIC_DIST_BASE 0x10041000 /* Generic interrupt controller distributor */
  188. #else
  189. #define REALVIEW_MPCORE_SCU_BASE 0x10100000 /* SCU registers */
  190. #define REALVIEW_GIC_CPU_BASE 0x10100100 /* Generic interrupt controller CPU interface */
  191. #define REALVIEW_TWD_BASE 0x10100700
  192. #define REALVIEW_TWD_SIZE 0x00000100
  193. #define REALVIEW_GIC_DIST_BASE 0x10101000 /* Generic interrupt controller distributor */
  194. #endif
  195. #define REALVIEW_SMC_BASE 0x10080000 /* SMC */
  196. /* Reserved 0x10090000 - 0x100EFFFF */
  197. #define REALVIEW_ETH_BASE 0x4E000000 /* Ethernet */
  198. /* PCI space */
  199. #define REALVIEW_PCI_BASE 0x41000000 /* PCI Interface */
  200. #define REALVIEW_PCI_CFG_BASE 0x42000000
  201. #define REALVIEW_PCI_MEM_BASE0 0x44000000
  202. #define REALVIEW_PCI_MEM_BASE1 0x50000000
  203. #define REALVIEW_PCI_MEM_BASE2 0x60000000
  204. /* Sizes of above maps */
  205. #define REALVIEW_PCI_BASE_SIZE 0x01000000
  206. #define REALVIEW_PCI_CFG_BASE_SIZE 0x02000000
  207. #define REALVIEW_PCI_MEM_BASE0_SIZE 0x0c000000 /* 32Mb */
  208. #define REALVIEW_PCI_MEM_BASE1_SIZE 0x10000000 /* 256Mb */
  209. #define REALVIEW_PCI_MEM_BASE2_SIZE 0x10000000 /* 256Mb */
  210. #define REALVIEW_SDRAM67_BASE 0x70000000 /* SDRAM banks 6 and 7 */
  211. #define REALVIEW_LT_BASE 0x80000000 /* Logic Tile expansion */
  212. /*
  213. * Disk on Chip
  214. */
  215. #define REALVIEW_DOC_BASE 0x2C000000
  216. #define REALVIEW_DOC_SIZE (16 << 20)
  217. #define REALVIEW_DOC_PAGE_SIZE 512
  218. #define REALVIEW_DOC_TOTAL_PAGES (DOC_SIZE / PAGE_SIZE)
  219. #define ERASE_UNIT_PAGES 32
  220. #define START_PAGE 0x80
  221. /*
  222. * LED settings, bits [7:0]
  223. */
  224. #define REALVIEW_SYS_LED0 (1 << 0)
  225. #define REALVIEW_SYS_LED1 (1 << 1)
  226. #define REALVIEW_SYS_LED2 (1 << 2)
  227. #define REALVIEW_SYS_LED3 (1 << 3)
  228. #define REALVIEW_SYS_LED4 (1 << 4)
  229. #define REALVIEW_SYS_LED5 (1 << 5)
  230. #define REALVIEW_SYS_LED6 (1 << 6)
  231. #define REALVIEW_SYS_LED7 (1 << 7)
  232. #define ALL_LEDS 0xFF
  233. #define LED_BANK REALVIEW_SYS_LED
  234. /*
  235. * Control registers
  236. */
  237. #define REALVIEW_IDFIELD_OFFSET 0x0 /* RealView build information */
  238. #define REALVIEW_FLASHPROG_OFFSET 0x4 /* Flash devices */
  239. #define REALVIEW_INTREG_OFFSET 0x8 /* Interrupt control */
  240. #define REALVIEW_DECODE_OFFSET 0xC /* Fitted logic modules */
  241. /* ------------------------------------------------------------------------
  242. * Interrupts - bit assignment (primary)
  243. * ------------------------------------------------------------------------
  244. */
  245. #ifndef CONFIG_REALVIEW_MPCORE
  246. #define INT_WDOGINT 0 /* Watchdog timer */
  247. #define INT_SOFTINT 1 /* Software interrupt */
  248. #define INT_COMMRx 2 /* Debug Comm Rx interrupt */
  249. #define INT_COMMTx 3 /* Debug Comm Tx interrupt */
  250. #define INT_TIMERINT0_1 4 /* Timer 0 and 1 */
  251. #define INT_TIMERINT2_3 5 /* Timer 2 and 3 */
  252. #define INT_GPIOINT0 6 /* GPIO 0 */
  253. #define INT_GPIOINT1 7 /* GPIO 1 */
  254. #define INT_GPIOINT2 8 /* GPIO 2 */
  255. /* 9 reserved */
  256. #define INT_RTCINT 10 /* Real Time Clock */
  257. #define INT_SSPINT 11 /* Synchronous Serial Port */
  258. #define INT_UARTINT0 12 /* UART 0 on development chip */
  259. #define INT_UARTINT1 13 /* UART 1 on development chip */
  260. #define INT_UARTINT2 14 /* UART 2 on development chip */
  261. #define INT_UARTINT3 15 /* UART 3 on development chip */
  262. #define INT_SCIINT 16 /* Smart Card Interface */
  263. #define INT_MMCI0A 17 /* Multimedia Card 0A */
  264. #define INT_MMCI0B 18 /* Multimedia Card 0B */
  265. #define INT_AACI 19 /* Audio Codec */
  266. #define INT_KMI0 20 /* Keyboard/Mouse port 0 */
  267. #define INT_KMI1 21 /* Keyboard/Mouse port 1 */
  268. #define INT_CHARLCD 22 /* Character LCD */
  269. #define INT_CLCDINT 23 /* CLCD controller */
  270. #define INT_DMAINT 24 /* DMA controller */
  271. #define INT_PWRFAILINT 25 /* Power failure */
  272. #define INT_PISMO 26
  273. #define INT_DoC 27 /* Disk on Chip memory controller */
  274. #define INT_ETH 28 /* Ethernet controller */
  275. #define INT_USB 29 /* USB controller */
  276. #define INT_TSPENINT 30 /* Touchscreen pen */
  277. #define INT_TSKPADINT 31 /* Touchscreen keypad */
  278. #else
  279. #define INT_AACI 0
  280. #define INT_TIMERINT0_1 1
  281. #define INT_TIMERINT2_3 2
  282. #define INT_USB 3
  283. #define INT_UARTINT0 4
  284. #define INT_UARTINT1 5
  285. #define INT_RTCINT 6
  286. #define INT_KMI0 7
  287. #define INT_KMI1 8
  288. #define INT_ETH 9
  289. #define INT_EB_IRQ1 10 /* main GIC */
  290. #define INT_EB_IRQ2 11 /* tile GIC */
  291. #define INT_EB_FIQ1 12 /* main GIC */
  292. #define INT_EB_FIQ2 13 /* tile GIC */
  293. #define INT_MMCI0A 14
  294. #define INT_MMCI0B 15
  295. #define INT_PMU_CPU0 17
  296. #define INT_PMU_CPU1 18
  297. #define INT_PMU_CPU2 19
  298. #define INT_PMU_CPU3 20
  299. #define INT_PMU_SCU0 21
  300. #define INT_PMU_SCU1 22
  301. #define INT_PMU_SCU2 23
  302. #define INT_PMU_SCU3 24
  303. #define INT_PMU_SCU4 25
  304. #define INT_PMU_SCU5 26
  305. #define INT_PMU_SCU6 27
  306. #define INT_PMU_SCU7 28
  307. #define INT_L220_EVENT 29
  308. #define INT_L220_SLAVE 30
  309. #define INT_L220_DECODE 31
  310. #define INT_UARTINT2 -1
  311. #define INT_UARTINT3 -1
  312. #define INT_CLCDINT -1
  313. #define INT_DMAINT -1
  314. #define INT_WDOGINT -1
  315. #define INT_GPIOINT0 -1
  316. #define INT_GPIOINT1 -1
  317. #define INT_GPIOINT2 -1
  318. #define INT_SCIINT -1
  319. #define INT_SSPINT -1
  320. #endif
  321. /*
  322. * Interrupt bit positions
  323. *
  324. */
  325. #define INTMASK_WDOGINT (1 << INT_WDOGINT)
  326. #define INTMASK_SOFTINT (1 << INT_SOFTINT)
  327. #define INTMASK_COMMRx (1 << INT_COMMRx)
  328. #define INTMASK_COMMTx (1 << INT_COMMTx)
  329. #define INTMASK_TIMERINT0_1 (1 << INT_TIMERINT0_1)
  330. #define INTMASK_TIMERINT2_3 (1 << INT_TIMERINT2_3)
  331. #define INTMASK_GPIOINT0 (1 << INT_GPIOINT0)
  332. #define INTMASK_GPIOINT1 (1 << INT_GPIOINT1)
  333. #define INTMASK_GPIOINT2 (1 << INT_GPIOINT2)
  334. #define INTMASK_RTCINT (1 << INT_RTCINT)
  335. #define INTMASK_SSPINT (1 << INT_SSPINT)
  336. #define INTMASK_UARTINT0 (1 << INT_UARTINT0)
  337. #define INTMASK_UARTINT1 (1 << INT_UARTINT1)
  338. #define INTMASK_UARTINT2 (1 << INT_UARTINT2)
  339. #define INTMASK_UARTINT3 (1 << INT_UARTINT3)
  340. #define INTMASK_SCIINT (1 << INT_SCIINT)
  341. #define INTMASK_MMCI0A (1 << INT_MMCI0A)
  342. #define INTMASK_MMCI0B (1 << INT_MMCI0B)
  343. #define INTMASK_AACI (1 << INT_AACI)
  344. #define INTMASK_KMI0 (1 << INT_KMI0)
  345. #define INTMASK_KMI1 (1 << INT_KMI1)
  346. #define INTMASK_CHARLCD (1 << INT_CHARLCD)
  347. #define INTMASK_CLCDINT (1 << INT_CLCDINT)
  348. #define INTMASK_DMAINT (1 << INT_DMAINT)
  349. #define INTMASK_PWRFAILINT (1 << INT_PWRFAILINT)
  350. #define INTMASK_PISMO (1 << INT_PISMO)
  351. #define INTMASK_DoC (1 << INT_DoC)
  352. #define INTMASK_ETH (1 << INT_ETH)
  353. #define INTMASK_USB (1 << INT_USB)
  354. #define INTMASK_TSPENINT (1 << INT_TSPENINT)
  355. #define INTMASK_TSKPADINT (1 << INT_TSKPADINT)
  356. #define MAXIRQNUM 31
  357. #define MAXFIQNUM 31
  358. #define MAXSWINUM 31
  359. /*
  360. * Application Flash
  361. *
  362. */
  363. #define FLASH_BASE REALVIEW_FLASH_BASE
  364. #define FLASH_SIZE REALVIEW_FLASH_SIZE
  365. #define FLASH_END (FLASH_BASE + FLASH_SIZE - 1)
  366. #define FLASH_BLOCK_SIZE SZ_128K
  367. /*
  368. * Boot Flash
  369. *
  370. */
  371. #define EPROM_BASE REALVIEW_BOOT_ROM_HI
  372. #define EPROM_SIZE REALVIEW_BOOT_ROM_SIZE
  373. #define EPROM_END (EPROM_BASE + EPROM_SIZE - 1)
  374. /*
  375. * Clean base - dummy
  376. *
  377. */
  378. #define CLEAN_BASE EPROM_BASE
  379. /*
  380. * System controller bit assignment
  381. */
  382. #define REALVIEW_REFCLK 0
  383. #define REALVIEW_TIMCLK 1
  384. #define REALVIEW_TIMER1_EnSel 15
  385. #define REALVIEW_TIMER2_EnSel 17
  386. #define REALVIEW_TIMER3_EnSel 19
  387. #define REALVIEW_TIMER4_EnSel 21
  388. #define MAX_TIMER 2
  389. #define MAX_PERIOD 699050
  390. #define TICKS_PER_uSEC 1
  391. /*
  392. * These are useconds NOT ticks.
  393. *
  394. */
  395. #define mSEC_1 1000
  396. #define mSEC_5 (mSEC_1 * 5)
  397. #define mSEC_10 (mSEC_1 * 10)
  398. #define mSEC_25 (mSEC_1 * 25)
  399. #define SEC_1 (mSEC_1 * 1000)
  400. #define REALVIEW_CSR_BASE 0x10000000
  401. #define REALVIEW_CSR_SIZE 0x10000000
  402. #endif
  403. /* END */