LPC230x.h
上传用户:ssllxx2007
上传日期:2022-06-12
资源大小:784k
文件大小:71k
源码类别:

uCOS

开发平台:

C/C++

  1. /******************************************************************************
  2.  *   LPC230X.h:  Header file for NXP LPC230x Family Microprocessors
  3.  *   The header file is the super set of all hardware definition of the 
  4.  *   peripherals for the LPC230x family microprocessor.
  5.  *
  6.  *   Copyright(C) 2006, NXP Semiconductor
  7.  *   All rights reserved.
  8.  *
  9.  *   History
  10.  *   2005.10.01  ver 1.00    Prelimnary version, first Release
  11.  *
  12. ******************************************************************************/
  13. #ifndef __LPC230x_H
  14. #define __LPC230x_H
  15. /* Vectored Interrupt Controller (VIC) */
  16. #define VIC_BASE_ADDR 0xFFFFF000
  17. #define VICIRQStatus   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x000))
  18. #define VICFIQStatus   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x004))
  19. #define VICRawIntr     (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x008))
  20. #define VICIntSelect   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x00C))
  21. #define VICIntEnable   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x010))
  22. #define VICIntEnClr    (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x014))
  23. #define VICSoftInt     (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x018))
  24. #define VICSoftIntClr  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x01C))
  25. #define VICProtection  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x020))
  26. #define VICSWPrioMask  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x024))
  27. #define VICVectAddr0   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x100))
  28. #define VICVectAddr1   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x104))
  29. #define VICVectAddr2   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x108))
  30. #define VICVectAddr3   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x10C))
  31. #define VICVectAddr4   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x110))
  32. #define VICVectAddr5   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x114))
  33. #define VICVectAddr6   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x118))
  34. #define VICVectAddr7   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x11C))
  35. #define VICVectAddr8   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x120))
  36. #define VICVectAddr9   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x124))
  37. #define VICVectAddr10  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x128))
  38. #define VICVectAddr11  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x12C))
  39. #define VICVectAddr12  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x130))
  40. #define VICVectAddr13  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x134))
  41. #define VICVectAddr14  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x138))
  42. #define VICVectAddr15  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x13C))
  43. #define VICVectAddr16  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x140))
  44. #define VICVectAddr17  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x144))
  45. #define VICVectAddr18  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x148))
  46. #define VICVectAddr19  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x14C))
  47. #define VICVectAddr20  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x150))
  48. #define VICVectAddr21  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x154))
  49. #define VICVectAddr22  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x158))
  50. #define VICVectAddr23  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x15C))
  51. #define VICVectAddr24  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x160))
  52. #define VICVectAddr25  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x164))
  53. #define VICVectAddr26  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x168))
  54. #define VICVectAddr27  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x16C))
  55. #define VICVectAddr28  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x170))
  56. #define VICVectAddr29  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x174))
  57. #define VICVectAddr30  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x178))
  58. #define VICVectAddr31  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x17C))
  59. /* The name convention below is from previous LPC2000 family MCUs, in LPC230x,
  60. these registers are known as "VICVectPriority(x)". */
  61. #define VICVectCntl0   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x200))
  62. #define VICVectCntl1   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x204))
  63. #define VICVectCntl2   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x208))
  64. #define VICVectCntl3   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x20C))
  65. #define VICVectCntl4   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x210))
  66. #define VICVectCntl5   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x214))
  67. #define VICVectCntl6   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x218))
  68. #define VICVectCntl7   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x21C))
  69. #define VICVectCntl8   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x220))
  70. #define VICVectCntl9   (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x224))
  71. #define VICVectCntl10  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x228))
  72. #define VICVectCntl11  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x22C))
  73. #define VICVectCntl12  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x230))
  74. #define VICVectCntl13  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x234))
  75. #define VICVectCntl14  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x238))
  76. #define VICVectCntl15  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x23C))
  77. #define VICVectCntl16  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x240))
  78. #define VICVectCntl17  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x244))
  79. #define VICVectCntl18  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x248))
  80. #define VICVectCntl19  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x24C))
  81. #define VICVectCntl20  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x250))
  82. #define VICVectCntl21  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x254))
  83. #define VICVectCntl22  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x258))
  84. #define VICVectCntl23  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x25C))
  85. #define VICVectCntl24  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x260))
  86. #define VICVectCntl25  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x264))
  87. #define VICVectCntl26  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x268))
  88. #define VICVectCntl27  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x26C))
  89. #define VICVectCntl28  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x270))
  90. #define VICVectCntl29  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x274))
  91. #define VICVectCntl30  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x278))
  92. #define VICVectCntl31  (*(volatile unsigned long *)(VIC_BASE_ADDR + 0x27C))
  93. #define VICVectAddr    (*(volatile unsigned long *)(VIC_BASE_ADDR + 0xF00))
  94. /* Pin Connect Block */
  95. #define PINSEL_BASE_ADDR 0xE002C000
  96. #define PINSEL0        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x00))
  97. #define PINSEL1        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x04))
  98. #define PINSEL2        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x08))
  99. #define PINSEL3        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x0C))
  100. #define PINSEL4        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x10))
  101. #define PINSEL5        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x14))
  102. #define PINSEL6        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x18))
  103. #define PINSEL7        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x1C))
  104. #define PINSEL8        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x20))
  105. #define PINSEL9        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x24))
  106. #define PINSEL10       (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x28))
  107. #define PINMODE0        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x40))
  108. #define PINMODE1        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x44))
  109. #define PINMODE2        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x48))
  110. #define PINMODE3        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x4C))
  111. #define PINMODE4        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x50))
  112. #define PINMODE5        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x54))
  113. #define PINMODE6        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x58))
  114. #define PINMODE7        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x5C))
  115. #define PINMODE8        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x60))
  116. #define PINMODE9        (*(volatile unsigned long *)(PINSEL_BASE_ADDR + 0x64))
  117. /* General Purpose Input/Output (GPIO) */
  118. #define GPIO_BASE_ADDR 0xE0028000
  119. #define IOPIN0         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x00))
  120. #define IOSET0         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x04))
  121. #define IODIR0         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x08))
  122. #define IOCLR0         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x0C))
  123. #define IOPIN1         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x10))
  124. #define IOSET1         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x14))
  125. #define IODIR1         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x18))
  126. #define IOCLR1         (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x1C))
  127. /* GPIO Interrupt Registers */
  128. #define IO0_INT_EN_R    (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x90)) 
  129. #define IO0_INT_EN_F    (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x94))
  130. #define IO0_INT_STAT_R  (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x84))
  131. #define IO0_INT_STAT_F  (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x88))
  132. #define IO0_INT_CLR     (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x8C))
  133. #define IO2_INT_EN_R    (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0xB0)) 
  134. #define IO2_INT_EN_F    (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0xB4))
  135. #define IO2_INT_STAT_R  (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0xA4))
  136. #define IO2_INT_STAT_F  (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0xA8))
  137. #define IO2_INT_CLR     (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0xAC))
  138. #define IO_INT_STAT     (*(volatile unsigned long *)(GPIO_BASE_ADDR + 0x80))
  139. #define PARTCFG_BASE_ADDR 0x3FFF8000
  140. #define PARTCFG        (*(volatile unsigned long *)(PARTCFG_BASE_ADDR + 0x00)) 
  141. /* Fast I/O setup */
  142. #define FIO_BASE_ADDR 0x3FFFC000
  143. #define FIO0DIR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x00)) 
  144. #define FIO0MASK       (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x10))
  145. #define FIO0PIN        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x14))
  146. #define FIO0SET        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x18))
  147. #define FIO0CLR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x1C))
  148. #define FIO1DIR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x20)) 
  149. #define FIO1MASK       (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x30))
  150. #define FIO1PIN        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x34))
  151. #define FIO1SET        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x38))
  152. #define FIO1CLR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x3C))
  153. #define FIO2DIR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x40)) 
  154. #define FIO2MASK       (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x50))
  155. #define FIO2PIN        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x54))
  156. #define FIO2SET        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x58))
  157. #define FIO2CLR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x5C))
  158. #define FIO3DIR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x60)) 
  159. #define FIO3MASK       (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x70))
  160. #define FIO3PIN        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x74))
  161. #define FIO3SET        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x78))
  162. #define FIO3CLR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x7C))
  163. #define FIO4DIR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x80)) 
  164. #define FIO4MASK       (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x90))
  165. #define FIO4PIN        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x94))
  166. #define FIO4SET        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x98))
  167. #define FIO4CLR        (*(volatile unsigned long *)(FIO_BASE_ADDR + 0x9C))
  168. /* FIOs can be accessed through WORD, HALF-WORD or BYTE. */
  169. #define FIO0DIR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x01)) 
  170. #define FIO1DIR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x21)) 
  171. #define FIO2DIR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x41)) 
  172. #define FIO3DIR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x61)) 
  173. #define FIO4DIR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x81)) 
  174. #define FIO0DIR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x02)) 
  175. #define FIO1DIR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x22)) 
  176. #define FIO2DIR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x42)) 
  177. #define FIO3DIR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x62)) 
  178. #define FIO4DIR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x82)) 
  179. #define FIO0DIR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x03)) 
  180. #define FIO1DIR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x23)) 
  181. #define FIO2DIR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x43)) 
  182. #define FIO3DIR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x63)) 
  183. #define FIO4DIR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x83)) 
  184. #define FIO0DIR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x04)) 
  185. #define FIO1DIR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x24)) 
  186. #define FIO2DIR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x44)) 
  187. #define FIO3DIR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x64)) 
  188. #define FIO4DIR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x84)) 
  189. #define FIO0DIRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x00)) 
  190. #define FIO1DIRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x20)) 
  191. #define FIO2DIRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x40)) 
  192. #define FIO3DIRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x60)) 
  193. #define FIO4DIRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x80)) 
  194. #define FIO0DIRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x02)) 
  195. #define FIO1DIRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x22)) 
  196. #define FIO2DIRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x42)) 
  197. #define FIO3DIRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x62)) 
  198. #define FIO4DIRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x82)) 
  199. #define FIO0MASK0      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x10)) 
  200. #define FIO1MASK0      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x30)) 
  201. #define FIO2MASK0      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x50)) 
  202. #define FIO3MASK0      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x70)) 
  203. #define FIO4MASK0      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x90)) 
  204. #define FIO0MASK1      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x11)) 
  205. #define FIO1MASK1      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x21)) 
  206. #define FIO2MASK1      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x51)) 
  207. #define FIO3MASK1      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x71)) 
  208. #define FIO4MASK1      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x91)) 
  209. #define FIO0MASK2      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x12)) 
  210. #define FIO1MASK2      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x32)) 
  211. #define FIO2MASK2      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x52)) 
  212. #define FIO3MASK2      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x72)) 
  213. #define FIO4MASK2      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x92)) 
  214. #define FIO0MASK3      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x13)) 
  215. #define FIO1MASK3      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x33)) 
  216. #define FIO2MASK3      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x53)) 
  217. #define FIO3MASK3      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x73)) 
  218. #define FIO4MASK3      (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x93)) 
  219. #define FIO0MASKL      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x10)) 
  220. #define FIO1MASKL      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x30)) 
  221. #define FIO2MASKL      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x50)) 
  222. #define FIO3MASKL      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x70)) 
  223. #define FIO4MASKL      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x90)) 
  224. #define FIO0MASKU      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x12)) 
  225. #define FIO1MASKU      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x32)) 
  226. #define FIO2MASKU      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x52)) 
  227. #define FIO3MASKU      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x72)) 
  228. #define FIO4MASKU      (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x92)) 
  229. #define FIO0PIN0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x14)) 
  230. #define FIO1PIN0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x34)) 
  231. #define FIO2PIN0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x54)) 
  232. #define FIO3PIN0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x74)) 
  233. #define FIO4PIN0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x94)) 
  234. #define FIO0PIN1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x15)) 
  235. #define FIO1PIN1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x25)) 
  236. #define FIO2PIN1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x55)) 
  237. #define FIO3PIN1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x75)) 
  238. #define FIO4PIN1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x95)) 
  239. #define FIO0PIN2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x16)) 
  240. #define FIO1PIN2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x36)) 
  241. #define FIO2PIN2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x56)) 
  242. #define FIO3PIN2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x76)) 
  243. #define FIO4PIN2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x96)) 
  244. #define FIO0PIN3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x17)) 
  245. #define FIO1PIN3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x37)) 
  246. #define FIO2PIN3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x57)) 
  247. #define FIO3PIN3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x77)) 
  248. #define FIO4PIN3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x97)) 
  249. #define FIO0PINL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x14)) 
  250. #define FIO1PINL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x34)) 
  251. #define FIO2PINL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x54)) 
  252. #define FIO3PINL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x74)) 
  253. #define FIO4PINL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x94)) 
  254. #define FIO0PINU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x16)) 
  255. #define FIO1PINU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x36)) 
  256. #define FIO2PINU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x56)) 
  257. #define FIO3PINU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x76)) 
  258. #define FIO4PINU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x96)) 
  259. #define FIO0SET0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x18)) 
  260. #define FIO1SET0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x38)) 
  261. #define FIO2SET0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x58)) 
  262. #define FIO3SET0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x78)) 
  263. #define FIO4SET0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x98)) 
  264. #define FIO0SET1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x19)) 
  265. #define FIO1SET1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x29)) 
  266. #define FIO2SET1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x59)) 
  267. #define FIO3SET1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x79)) 
  268. #define FIO4SET1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x99)) 
  269. #define FIO0SET2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x1A)) 
  270. #define FIO1SET2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x3A)) 
  271. #define FIO2SET2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x5A)) 
  272. #define FIO3SET2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x7A)) 
  273. #define FIO4SET2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x9A)) 
  274. #define FIO0SET3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x1B)) 
  275. #define FIO1SET3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x3B)) 
  276. #define FIO2SET3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x5B)) 
  277. #define FIO3SET3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x7B)) 
  278. #define FIO4SET3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x9B)) 
  279. #define FIO0SETL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x18)) 
  280. #define FIO1SETL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x38)) 
  281. #define FIO2SETL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x58)) 
  282. #define FIO3SETL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x78)) 
  283. #define FIO4SETL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x98)) 
  284. #define FIO0SETU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x1A)) 
  285. #define FIO1SETU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x3A)) 
  286. #define FIO2SETU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x5A)) 
  287. #define FIO3SETU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x7A)) 
  288. #define FIO4SETU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x9A)) 
  289. #define FIO0CLR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x1C)) 
  290. #define FIO1CLR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x3C)) 
  291. #define FIO2CLR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x5C)) 
  292. #define FIO3CLR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x7C)) 
  293. #define FIO4CLR0       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x9C)) 
  294. #define FIO0CLR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x1D)) 
  295. #define FIO1CLR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x2D)) 
  296. #define FIO2CLR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x5D)) 
  297. #define FIO3CLR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x7D)) 
  298. #define FIO4CLR1       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x9D)) 
  299. #define FIO0CLR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x1E)) 
  300. #define FIO1CLR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x3E)) 
  301. #define FIO2CLR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x5E)) 
  302. #define FIO3CLR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x7E)) 
  303. #define FIO4CLR2       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x9E)) 
  304. #define FIO0CLR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x1F)) 
  305. #define FIO1CLR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x3F)) 
  306. #define FIO2CLR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x5F)) 
  307. #define FIO3CLR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x7F)) 
  308. #define FIO4CLR3       (*(volatile unsigned char *)(FIO_BASE_ADDR + 0x9F)) 
  309. #define FIO0CLRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x1C)) 
  310. #define FIO1CLRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x3C)) 
  311. #define FIO2CLRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x5C)) 
  312. #define FIO3CLRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x7C)) 
  313. #define FIO4CLRL       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x9C)) 
  314. #define FIO0CLRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x1E)) 
  315. #define FIO1CLRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x3E)) 
  316. #define FIO2CLRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x5E)) 
  317. #define FIO3CLRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x7E)) 
  318. #define FIO4CLRU       (*(volatile unsigned short *)(FIO_BASE_ADDR + 0x9E)) 
  319. /* System Control Block(SCB) modules include Memory Accelerator Module,
  320. Phase Locked Loop, VPB divider, Power Control, External Interrupt, 
  321. Reset, and Code Security/Debugging */
  322. #define SCB_BASE_ADDR 0xE01FC000
  323. /* Memory Accelerator Module (MAM) */
  324. #define MAMCR          (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x000))
  325. #define MAMTIM         (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x004))
  326. #define MEMMAP         (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x040))
  327. /* Phase Locked Loop (PLL) */
  328. #define PLLCON         (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x080))
  329. #define PLLCFG         (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x084))
  330. #define PLLSTAT        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x088))
  331. #define PLLFEED        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x08C))
  332. /* Power Control */
  333. #define PCON           (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x0C0))
  334. #define PCONP          (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x0C4))
  335. /* Clock Divider */
  336. // #define APBDIV         (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x100))
  337. #define CCLKCFG        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x104))
  338. #define USBCLKCFG      (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x108))
  339. #define CLKSRCSEL      (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x10C))
  340. #define PCLKSEL0       (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x1A8))
  341. #define PCLKSEL1       (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x1AC))
  342. /* External Interrupts */
  343. #define EXTINT         (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x140))
  344. #define INTWAKE        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x144))
  345. #define EXTMODE        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x148))
  346. #define EXTPOLAR       (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x14C))
  347. /* Reset, reset source identification */
  348. #define RSIR           (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x180))
  349. /* RSID, code security protection */
  350. #define CSPR           (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x184))
  351. /* AHB configuration */
  352. #define AHBCFG1        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x188))
  353. #define AHBCFG2        (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x18C))
  354. /* System Controls and Status */
  355. #define SCS            (*(volatile unsigned long *)(SCB_BASE_ADDR + 0x1A0))
  356. /* External Memory Controller (EMC) */
  357. #define EMC_BASE_ADDR 0xFFE08000
  358. #define EMC_CTRL       (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x000))
  359. #define EMC_STAT       (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x004))
  360. #define EMC_CONFIG     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x008))
  361. /* Dynamic RAM access registers */
  362. #define EMC_DYN_CTRL     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x020))
  363. #define EMC_DYN_RFSH     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x024))
  364. #define EMC_DYN_RD_CFG   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x028))
  365. #define EMC_DYN_RP       (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x030))
  366. #define EMC_DYN_RAS      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x034))
  367. #define EMC_DYN_SREX     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x038))
  368. #define EMC_DYN_APR      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x03C))
  369. #define EMC_DYN_DAL      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x040))
  370. #define EMC_DYN_WR       (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x044))
  371. #define EMC_DYN_RC       (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x048))
  372. #define EMC_DYN_RFC      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x04C))
  373. #define EMC_DYN_XSR      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x050))
  374. #define EMC_DYN_RRD      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x054))
  375. #define EMC_DYN_MRD      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x058))
  376. #define EMC_DYN_CFG0     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x100))
  377. #define EMC_DYN_RASCAS0  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x104))
  378. #define EMC_DYN_CFG1     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x140))
  379. #define EMC_DYN_RASCAS1  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x144))
  380. #define EMC_DYN_CFG2     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x160))
  381. #define EMC_DYN_RASCAS2  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x164))
  382. #define EMC_DYN_CFG3     (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x180))
  383. #define EMC_DYN_RASCAS3  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x184))
  384. /* static RAM access registers */
  385. #define EMC_STA_CFG0      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x200))
  386. #define EMC_STA_WAITWEN0  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x204))
  387. #define EMC_STA_WAITOEN0  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x208))
  388. #define EMC_STA_WAITRD0   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x20C))
  389. #define EMC_STA_WAITPAGE0 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x210))
  390. #define EMC_STA_WAITWR0   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x214))
  391. #define EMC_STA_WAITTURN0 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x218))
  392. #define EMC_STA_CFG1      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x220))
  393. #define EMC_STA_WAITWEN1  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x224))
  394. #define EMC_STA_WAITOEN1  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x228))
  395. #define EMC_STA_WAITRD1   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x22C))
  396. #define EMC_STA_WAITPAGE1 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x230))
  397. #define EMC_STA_WAITWR1   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x234))
  398. #define EMC_STA_WAITTURN1 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x238))
  399. #define EMC_STA_CFG2      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x240))
  400. #define EMC_STA_WAITWEN2  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x244))
  401. #define EMC_STA_WAITOEN2  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x248))
  402. #define EMC_STA_WAITRD2   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x24C))
  403. #define EMC_STA_WAITPAGE2 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x250))
  404. #define EMC_STA_WAITWR2   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x254))
  405. #define EMC_STA_WAITTURN2 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x258))
  406. #define EMC_STA_CFG3      (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x260))
  407. #define EMC_STA_WAITWEN3  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x264))
  408. #define EMC_STA_WAITOEN3  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x268))
  409. #define EMC_STA_WAITRD3   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x26C))
  410. #define EMC_STA_WAITPAGE3 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x270))
  411. #define EMC_STA_WAITWR3   (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x274))
  412. #define EMC_STA_WAITTURN3 (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x278))
  413. #define EMC_STA_EXT_WAIT  (*(volatile unsigned long *)(EMC_BASE_ADDR + 0x880))
  414. /* Timer 0 */
  415. #define TMR0_BASE_ADDR 0xE0004000
  416. #define T0IR           (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x00))
  417. #define T0TCR          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x04))
  418. #define T0TC           (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x08))
  419. #define T0PR           (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x0C))
  420. #define T0PC           (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x10))
  421. #define T0MCR          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x14))
  422. #define T0MR0          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x18))
  423. #define T0MR1          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x1C))
  424. #define T0MR2          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x20))
  425. #define T0MR3          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x24))
  426. #define T0CCR          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x28))
  427. #define T0CR0          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x2C))
  428. #define T0CR1          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x30))
  429. #define T0CR2          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x34))
  430. #define T0CR3          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x38))
  431. #define T0EMR          (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x3C))
  432. #define T0CTCR         (*(volatile unsigned long *)(TMR0_BASE_ADDR + 0x70))
  433. /* Timer 1 */
  434. #define TMR1_BASE_ADDR 0xE0008000
  435. #define T1IR           (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x00))
  436. #define T1TCR          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x04))
  437. #define T1TC           (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x08))
  438. #define T1PR           (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x0C))
  439. #define T1PC           (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x10))
  440. #define T1MCR          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x14))
  441. #define T1MR0          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x18))
  442. #define T1MR1          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x1C))
  443. #define T1MR2          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x20))
  444. #define T1MR3          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x24))
  445. #define T1CCR          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x28))
  446. #define T1CR0          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x2C))
  447. #define T1CR1          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x30))
  448. #define T1CR2          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x34))
  449. #define T1CR3          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x38))
  450. #define T1EMR          (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x3C))
  451. #define T1CTCR         (*(volatile unsigned long *)(TMR1_BASE_ADDR + 0x70))
  452. /* Timer 2 */
  453. #define TMR2_BASE_ADDR 0xE0070000
  454. #define T2IR           (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x00))
  455. #define T2TCR          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x04))
  456. #define T2TC           (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x08))
  457. #define T2PR           (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x0C))
  458. #define T2PC           (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x10))
  459. #define T2MCR          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x14))
  460. #define T2MR0          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x18))
  461. #define T2MR1          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x1C))
  462. #define T2MR2          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x20))
  463. #define T2MR3          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x24))
  464. #define T2CCR          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x28))
  465. #define T2CR0          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x2C))
  466. #define T2CR1          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x30))
  467. #define T2CR2          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x34))
  468. #define T2CR3          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x38))
  469. #define T2EMR          (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x3C))
  470. #define T2CTCR         (*(volatile unsigned long *)(TMR2_BASE_ADDR + 0x70))
  471. /* Timer 3 */
  472. #define TMR3_BASE_ADDR 0xE0074000
  473. #define T3IR           (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x00))
  474. #define T3TCR          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x04))
  475. #define T3TC           (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x08))
  476. #define T3PR           (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x0C))
  477. #define T3PC           (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x10))
  478. #define T3MCR          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x14))
  479. #define T3MR0          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x18))
  480. #define T3MR1          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x1C))
  481. #define T3MR2          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x20))
  482. #define T3MR3          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x24))
  483. #define T3CCR          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x28))
  484. #define T3CR0          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x2C))
  485. #define T3CR1          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x30))
  486. #define T3CR2          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x34))
  487. #define T3CR3          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x38))
  488. #define T3EMR          (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x3C))
  489. #define T3CTCR         (*(volatile unsigned long *)(TMR3_BASE_ADDR + 0x70))
  490. /* Pulse Width Modulator (PWM) */
  491. #define PWM0_BASE_ADDR 0xE0014000
  492. #define PWM0IR          (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x00))
  493. #define PWM0TCR         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x04))
  494. #define PWM0TC          (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x08))
  495. #define PWM0PR          (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x0C))
  496. #define PWM0PC          (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x10))
  497. #define PWM0MCR         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x14))
  498. #define PWM0MR0         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x18))
  499. #define PWM0MR1         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x1C))
  500. #define PWM0MR2         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x20))
  501. #define PWM0MR3         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x24))
  502. #define PWM0CCR         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x28))
  503. #define PWM0CR0         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x2C))
  504. #define PWM0CR1         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x30))
  505. #define PWM0CR2         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x34))
  506. #define PWM0CR3         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x38))
  507. #define PWM0EMR         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x3C))
  508. #define PWM0MR4         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x40))
  509. #define PWM0MR5         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x44))
  510. #define PWM0MR6         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x48))
  511. #define PWM0PCR         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x4C))
  512. #define PWM0LER         (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x50))
  513. #define PWM0CTCR        (*(volatile unsigned long *)(PWM0_BASE_ADDR + 0x70))
  514. #define PWM1_BASE_ADDR 0xE0018000
  515. #define PWM1IR          (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x00))
  516. #define PWM1TCR         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x04))
  517. #define PWM1TC          (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x08))
  518. #define PWM1PR          (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x0C))
  519. #define PWM1PC          (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x10))
  520. #define PWM1MCR         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x14))
  521. #define PWM1MR0         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x18))
  522. #define PWM1MR1         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x1C))
  523. #define PWM1MR2         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x20))
  524. #define PWM1MR3         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x24))
  525. #define PWM1CCR         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x28))
  526. #define PWM1CR0         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x2C))
  527. #define PWM1CR1         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x30))
  528. #define PWM1CR2         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x34))
  529. #define PWM1CR3         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x38))
  530. #define PWM1EMR         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x3C))
  531. #define PWM1MR4         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x40))
  532. #define PWM1MR5         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x44))
  533. #define PWM1MR6         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x48))
  534. #define PWM1PCR         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x4C))
  535. #define PWM1LER         (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x50))
  536. #define PWM1CTCR        (*(volatile unsigned long *)(PWM1_BASE_ADDR + 0x70))
  537. /* Universal Asynchronous Receiver Transmitter 0 (UART0) */
  538. #define UART0_BASE_ADDR 0xE000C000
  539. #define U0RBR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x00))
  540. #define U0THR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x00))
  541. #define U0DLL          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x00))
  542. #define U0DLM          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x04))
  543. #define U0IER          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x04))
  544. #define U0IIR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x08))
  545. #define U0FCR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x08))
  546. #define U0LCR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x0C))
  547. #define U0LSR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x14))
  548. #define U0SCR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x1C))
  549. #define U0ACR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x20))
  550. #define U0ICR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x24))
  551. #define U0FDR          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x28))
  552. #define U0TER          (*(volatile unsigned long *)(UART0_BASE_ADDR + 0x30))
  553. /* Universal Asynchronous Receiver Transmitter 1 (UART1) */
  554. #define UART1_BASE_ADDR 0xE0010000
  555. #define U1RBR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x00))
  556. #define U1THR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x00))
  557. #define U1DLL          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x00))
  558. #define U1DLM          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x04))
  559. #define U1IER          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x04))
  560. #define U1IIR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x08))
  561. #define U1FCR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x08))
  562. #define U1LCR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x0C))
  563. #define U1MCR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x10))
  564. #define U1LSR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x14))
  565. #define U1MSR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x18))
  566. #define U1SCR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x1C))
  567. #define U1ACR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x20))
  568. #define U1FDR          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x28))
  569. #define U1TER          (*(volatile unsigned long *)(UART1_BASE_ADDR + 0x30))
  570. /* Universal Asynchronous Receiver Transmitter 2 (UART2) */
  571. #define UART2_BASE_ADDR 0xE0078000
  572. #define U2RBR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x00))
  573. #define U2THR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x00))
  574. #define U2DLL          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x00))
  575. #define U2DLM          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x04))
  576. #define U2IER          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x04))
  577. #define U2IIR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x08))
  578. #define U2FCR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x08))
  579. #define U2LCR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x0C))
  580. #define U2LSR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x14))
  581. #define U2SCR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x1C))
  582. #define U2ACR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x20))
  583. #define U2ICR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x24))
  584. #define U2FDR          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x28))
  585. #define U2TER          (*(volatile unsigned long *)(UART2_BASE_ADDR + 0x30))
  586. /* Universal Asynchronous Receiver Transmitter 3 (UART3) */
  587. #define UART3_BASE_ADDR 0xE007C000
  588. #define U3RBR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x00))
  589. #define U3THR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x00))
  590. #define U3DLL          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x00))
  591. #define U3DLM          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x04))
  592. #define U3IER          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x04))
  593. #define U3IIR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x08))
  594. #define U3FCR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x08))
  595. #define U3LCR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x0C))
  596. #define U3LSR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x14))
  597. #define U3SCR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x1C))
  598. #define U3ACR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x20))
  599. #define U3ICR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x24))
  600. #define U3FDR          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x28))
  601. #define U3TER          (*(volatile unsigned long *)(UART3_BASE_ADDR + 0x30))
  602. /* I2C Interface 0 */
  603. #define I2C0_BASE_ADDR 0xE001C000
  604. #define I20CONSET      (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x00))
  605. #define I20STAT        (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x04))
  606. #define I20DAT         (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x08))
  607. #define I20ADR         (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x0C))
  608. #define I20SCLH        (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x10))
  609. #define I20SCLL        (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x14))
  610. #define I20CONCLR      (*(volatile unsigned long *)(I2C0_BASE_ADDR + 0x18))
  611. /* I2C Interface 1 */
  612. #define I2C1_BASE_ADDR 0xE005C000
  613. #define I21CONSET      (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x00))
  614. #define I21STAT        (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x04))
  615. #define I21DAT         (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x08))
  616. #define I21ADR         (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x0C))
  617. #define I21SCLH        (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x10))
  618. #define I21SCLL        (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x14))
  619. #define I21CONCLR      (*(volatile unsigned long *)(I2C1_BASE_ADDR + 0x18))
  620. /* I2C Interface 2 */
  621. #define I2C2_BASE_ADDR 0xE0080000
  622. #define I22CONSET      (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x00))
  623. #define I22STAT        (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x04))
  624. #define I22DAT         (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x08))
  625. #define I22ADR         (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x0C))
  626. #define I22SCLH        (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x10))
  627. #define I22SCLL        (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x14))
  628. #define I22CONCLR      (*(volatile unsigned long *)(I2C2_BASE_ADDR + 0x18))
  629. /* SPI0 (Serial Peripheral Interface 0) */
  630. #define SPI0_BASE_ADDR 0xE0020000
  631. #define S0SPCR         (*(volatile unsigned long *)(SPI0_BASE_ADDR + 0x00))
  632. #define S0SPSR         (*(volatile unsigned long *)(SPI0_BASE_ADDR + 0x04))
  633. #define S0SPDR         (*(volatile unsigned long *)(SPI0_BASE_ADDR + 0x08))
  634. #define S0SPCCR        (*(volatile unsigned long *)(SPI0_BASE_ADDR + 0x0C))
  635. #define S0SPINT        (*(volatile unsigned long *)(SPI0_BASE_ADDR + 0x1C))
  636. /* SSP0 Controller */
  637. #define SSP0_BASE_ADDR 0xE0068000
  638. #define SSP0CR0        (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x00))
  639. #define SSP0CR1        (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x04))
  640. #define SSP0DR         (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x08))
  641. #define SSP0SR         (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x0C))
  642. #define SSP0CPSR       (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x10))
  643. #define SSP0IMSC       (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x14))
  644. #define SSP0RIS        (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x18))
  645. #define SSP0MIS        (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x1C))
  646. #define SSP0ICR        (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x20))
  647. #define SSP0DMACR      (*(volatile unsigned long *)(SSP0_BASE_ADDR + 0x24))
  648. /* SSP1 Controller */
  649. #define SSP1_BASE_ADDR 0xE0030000
  650. #define SSP1CR0        (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x00))
  651. #define SSP1CR1        (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x04))
  652. #define SSP1DR         (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x08))
  653. #define SSP1SR         (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x0C))
  654. #define SSP1CPSR       (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x10))
  655. #define SSP1IMSC       (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x14))
  656. #define SSP1RIS        (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x18))
  657. #define SSP1MIS        (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x1C))
  658. #define SSP1ICR        (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x20))
  659. #define SSP1DMACR      (*(volatile unsigned long *)(SSP1_BASE_ADDR + 0x24))
  660. /* Real Time Clock */
  661. #define RTC_BASE_ADDR 0xE0024000
  662. #define RTC_ILR         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x00))
  663. #define RTC_CTC         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x04))
  664. #define RTC_CCR         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x08))
  665. #define RTC_CIIR        (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x0C))
  666. #define RTC_AMR         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x10))
  667. #define RTC_CTIME0      (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x14))
  668. #define RTC_CTIME1      (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x18))
  669. #define RTC_CTIME2      (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x1C))
  670. #define RTC_SEC         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x20))
  671. #define RTC_MIN         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x24))
  672. #define RTC_HOUR        (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x28))
  673. #define RTC_DOM         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x2C))
  674. #define RTC_DOW         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x30))
  675. #define RTC_DOY         (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x34))
  676. #define RTC_MONTH       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x38))
  677. #define RTC_YEAR        (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x3C))
  678. #define RTC_CISS        (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x40))
  679. #define RTC_ALSEC       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x60))
  680. #define RTC_ALMIN       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x64))
  681. #define RTC_ALHOUR      (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x68))
  682. #define RTC_ALDOM       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x6C))
  683. #define RTC_ALDOW       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x70))
  684. #define RTC_ALDOY       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x74))
  685. #define RTC_ALMON       (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x78))
  686. #define RTC_ALYEAR      (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x7C))
  687. #define RTC_PREINT      (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x80))
  688. #define RTC_PREFRAC     (*(volatile unsigned long *)(RTC_BASE_ADDR + 0x84))
  689. /* A/D Converter 0 (AD0) */
  690. #define AD0_BASE_ADDR 0xE0034000
  691. #define AD0CR          (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x00))
  692. #define AD0GDR         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x04))
  693. #define AD0INTEN       (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x0C))
  694. #define AD0DR0         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x10))
  695. #define AD0DR1         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x14))
  696. #define AD0DR2         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x18))
  697. #define AD0DR3         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x1C))
  698. #define AD0DR4         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x20))
  699. #define AD0DR5         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x24))
  700. #define AD0DR6         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x28))
  701. #define AD0DR7         (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x2C))
  702. #define AD0STAT        (*(volatile unsigned long *)(AD0_BASE_ADDR + 0x30))
  703. /* D/A Converter */
  704. #define DAC_BASE_ADDR 0xE006C000
  705. #define DACR           (*(volatile unsigned long *)(DAC_BASE_ADDR + 0x00))
  706. /* Watchdog */
  707. #define WDG_BASE_ADDR 0xE0000000
  708. #define WDMOD          (*(volatile unsigned long *)(WDG_BASE_ADDR + 0x00))
  709. #define WDTC           (*(volatile unsigned long *)(WDG_BASE_ADDR + 0x04))
  710. #define WDFEED         (*(volatile unsigned long *)(WDG_BASE_ADDR + 0x08))
  711. #define WDTV           (*(volatile unsigned long *)(WDG_BASE_ADDR + 0x0C))
  712. #define WDCLKSEL       (*(volatile unsigned long *)(WDG_BASE_ADDR + 0x10))
  713. /* CAN CONTROLLERS AND ACCEPTANCE FILTER */
  714. #define CAN_ACCEPT_BASE_ADDR 0xE003C000
  715. #define CAN_AFMR (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x00))  
  716. #define CAN_SFF_SA  (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x04))  
  717. #define CAN_SFF_GRP_SA  (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x08))
  718. #define CAN_EFF_SA  (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x0C))
  719. #define CAN_EFF_GRP_SA  (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x10))  
  720. #define CAN_EOT  (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x14))
  721. #define CAN_LUT_ERR_ADR (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x18))  
  722. #define CAN_LUT_ERR  (*(volatile unsigned long *)(CAN_ACCEPT_BASE_ADDR + 0x1C))
  723. #define CAN_CENTRAL_BASE_ADDR 0xE0040000  
  724. #define CAN_TX_SR  (*(volatile unsigned long *)(CAN_CENTRAL_BASE_ADDR + 0x00))  
  725. #define CAN_RX_SR  (*(volatile unsigned long *)(CAN_CENTRAL_BASE_ADDR + 0x04))  
  726. #define CAN_MSR  (*(volatile unsigned long *)(CAN_CENTRAL_BASE_ADDR + 0x08))
  727. #define CAN1_BASE_ADDR 0xE0044000
  728. #define CAN1MOD  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x00))  
  729. #define CAN1CMR  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x04))  
  730. #define CAN1GSR  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x08))  
  731. #define CAN1ICR  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x0C))  
  732. #define CAN1IER  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x10))
  733. #define CAN1BTR  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x14))  
  734. #define CAN1EWL  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x18))  
  735. #define CAN1SR  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x1C))  
  736. #define CAN1RFS  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x20))  
  737. #define CAN1RID  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x24))
  738. #define CAN1RDA  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x28))  
  739. #define CAN1RDB  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x2C))
  740.   
  741. #define CAN1TFI1  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x30))  
  742. #define CAN1TID1  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x34))  
  743. #define CAN1TDA1  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x38))
  744. #define CAN1TDB1  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x3C))  
  745. #define CAN1TFI2  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x40))  
  746. #define CAN1TID2  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x44))  
  747. #define CAN1TDA2  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x48))  
  748. #define CAN1TDB2  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x4C))
  749. #define CAN1TFI3  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x50))  
  750. #define CAN1TID3  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x54))  
  751. #define CAN1TDA3  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x58))  
  752. #define CAN1TDB3  (*(volatile unsigned long *)(CAN1_BASE_ADDR + 0x5C))
  753. #define CAN2_BASE_ADDR 0xE0048000
  754. #define CAN2MOD  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x00))  
  755. #define CAN2CMR  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x04))  
  756. #define CAN2GSR  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x08))  
  757. #define CAN2ICR  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x0C))  
  758. #define CAN2IER  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x10))
  759. #define CAN2BTR  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x14))  
  760. #define CAN2EWL  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x18))  
  761. #define CAN2SR  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x1C))  
  762. #define CAN2RFS  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x20))  
  763. #define CAN2RID  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x24))
  764. #define CAN2RDA  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x28))  
  765. #define CAN2RDB  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x2C))
  766.   
  767. #define CAN2TFI1  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x30))  
  768. #define CAN2TID1  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x34))  
  769. #define CAN2TDA1  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x38))
  770. #define CAN2TDB1  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x3C))  
  771. #define CAN2TFI2  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x40))  
  772. #define CAN2TID2  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x44))  
  773. #define CAN2TDA2  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x48))  
  774. #define CAN2TDB2  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x4C))
  775. #define CAN2TFI3  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x50))  
  776. #define CAN2TID3  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x54))  
  777. #define CAN2TDA3  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x58))  
  778. #define CAN2TDB3  (*(volatile unsigned long *)(CAN2_BASE_ADDR + 0x5C))
  779. /* MultiMedia Card Interface(MCI) Controller */
  780. #define MCI_BASE_ADDR 0xE008C000
  781. #define MCI_POWER      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x00))
  782. #define MCI_CLOCK      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x04))
  783. #define MCI_ARGUMENT   (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x08))
  784. #define MCI_COMMAND    (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x0C))
  785. #define MCI_RESP_CMD   (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x10))
  786. #define MCI_RESP0      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x14))
  787. #define MCI_RESP1      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x18))
  788. #define MCI_RESP2      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x1C))
  789. #define MCI_RESP3      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x20))
  790. #define MCI_DATA_TMR   (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x24))
  791. #define MCI_DATA_LEN   (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x28))
  792. #define MCI_DATA_CTRL  (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x2C))
  793. #define MCI_DATA_CNT   (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x30))
  794. #define MCI_STATUS     (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x34))
  795. #define MCI_CLEAR      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x38))
  796. #define MCI_MASK0      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x3C))
  797. #define MCI_MASK1      (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x40))
  798. #define MCI_FIFO_CNT   (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x48))
  799. #define MCI_FIFO       (*(volatile unsigned long *)(MCI_BASE_ADDR + 0x80))
  800. /* I2S Interface Controller (I2S) */
  801. #define I2S_BASE_ADDR 0xE0088000
  802. #define I2S_DAO        (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x00))
  803. #define I2S_DAI        (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x04))
  804. #define I2S_TX_FIFO    (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x08))
  805. #define I2S_RX_FIFO    (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x0C))
  806. #define I2S_STATE      (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x10))
  807. #define I2S_DMA1       (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x14))
  808. #define I2S_DMA2       (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x18))
  809. #define I2S_IRQ        (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x1C))
  810. #define I2S_TXRATE     (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x20))
  811. #define I2S_RXRATE     (*(volatile unsigned long *)(I2S_BASE_ADDR + 0x24))
  812. /* General-purpose DMA Controller */
  813. #define DMA_BASE_ADDR 0xFFE04000
  814. #define GPDMA_INT_STAT         (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x000))
  815. #define GPDMA_INT_TCSTAT       (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x004))
  816. #define GPDMA_INT_TCCLR        (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x008))
  817. #define GPDMA_INT_ERR_STAT     (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x00C))
  818. #define GPDMA_INT_ERR_CLR      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x010))
  819. #define GPDMA_RAW_INT_TCSTAT   (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x014))
  820. #define GPDMA_RAW_INT_ERR_STAT (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x018))
  821. #define GPDMA_ENABLED_CHNS     (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x01C))
  822. #define GPDMA_SOFT_BREQ        (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x020))
  823. #define GPDMA_SOFT_SREQ        (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x024))
  824. #define GPDMA_SOFT_LBREQ       (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x028))
  825. #define GPDMA_SOFT_LSREQ       (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x02C))
  826. #define GPDMA_CONFIG           (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x030))
  827. #define GPDMA_SYNC             (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x034))
  828. /* DMA channel 0 registers */
  829. #define GPDMA_CH0_SRC      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x100))
  830. #define GPDMA_CH0_DEST     (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x104))
  831. #define GPDMA_CH0_LLI      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x108))
  832. #define GPDMA_CH0_CTRL     (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x10C))
  833. #define GPDMA_CH0_CFG      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x110))
  834. /* DMA channel 1 registers */
  835. #define GPDMA_CH1_SRC      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x120))
  836. #define GPDMA_CH1_DEST     (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x124))
  837. #define GPDMA_CH1_LLI      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x128))
  838. #define GPDMA_CH1_CTRL     (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x12C))
  839. #define GPDMA_CH1_CFG      (*(volatile unsigned long *)(DMA_BASE_ADDR + 0x130))
  840. /* USB Controller */
  841. #define USB_INT_BASE_ADDR 0xE01FC1C0
  842. #define USB_BASE_ADDR 0xFFE0C200 /* USB Base Address */
  843. #define USB_INT_STAT    (*(volatile unsigned long *)(USB_INT_BASE_ADDR + 0x00))
  844. /* USB Device Interrupt Registers */
  845. #define DEV_INT_STAT    (*(volatile unsigned long *)(USB_BASE_ADDR + 0x00))
  846. #define DEV_INT_EN      (*(volatile unsigned long *)(USB_BASE_ADDR + 0x04))
  847. #define DEV_INT_CLR     (*(volatile unsigned long *)(USB_BASE_ADDR + 0x08))
  848. #define DEV_INT_SET     (*(volatile unsigned long *)(USB_BASE_ADDR + 0x0C))
  849. #define DEV_INT_PRIO    (*(volatile unsigned long *)(USB_BASE_ADDR + 0x2C))
  850. /* USB Device Endpoint Interrupt Registers */
  851. #define EP_INT_STAT     (*(volatile unsigned long *)(USB_BASE_ADDR + 0x30))
  852. #define EP_INT_EN       (*(volatile unsigned long *)(USB_BASE_ADDR + 0x34))
  853. #define EP_INT_CLR      (*(volatile unsigned long *)(USB_BASE_ADDR + 0x38))
  854. #define EP_INT_SET      (*(volatile unsigned long *)(USB_BASE_ADDR + 0x3C))
  855. #define EP_INT_PRIO     (*(volatile unsigned long *)(USB_BASE_ADDR + 0x40))
  856. /* USB Device Endpoint Realization Registers */
  857. #define REALIZE_EP      (*(volatile unsigned long *)(USB_BASE_ADDR + 0x44))
  858. #define EP_INDEX        (*(volatile unsigned long *)(USB_BASE_ADDR + 0x48))
  859. #define MAXPACKET_SIZE  (*(volatile unsigned long *)(USB_BASE_ADDR + 0x4C))
  860. /* USB Device Command Reagisters */
  861. #define CMD_CODE        (*(volatile unsigned long *)(USB_BASE_ADDR + 0x10))
  862. #define CMD_DATA        (*(volatile unsigned long *)(USB_BASE_ADDR + 0x14))
  863. /* USB Device Data Transfer Registers */
  864. #define RX_DATA         (*(volatile unsigned long *)(USB_BASE_ADDR + 0x18))
  865. #define TX_DATA         (*(volatile unsigned long *)(USB_BASE_ADDR + 0x1C))
  866. #define RX_PLENGTH      (*(volatile unsigned long *)(USB_BASE_ADDR + 0x20))
  867. #define TX_PLENGTH      (*(volatile unsigned long *)(USB_BASE_ADDR + 0x24))
  868. #define USB_CTRL        (*(volatile unsigned long *)(USB_BASE_ADDR + 0x28))
  869. /* USB Device DMA Registers */
  870. #define DMA_REQ_STAT        (*(volatile unsigned long *)(USB_BASE_ADDR + 0x50))
  871. #define DMA_REQ_CLR         (*(volatile unsigned long *)(USB_BASE_ADDR + 0x54))
  872. #define DMA_REQ_SET         (*(volatile unsigned long *)(USB_BASE_ADDR + 0x58))
  873. #define UDCA_HEAD           (*(volatile unsigned long *)(USB_BASE_ADDR + 0x80))
  874. #define EP_DMA_STAT         (*(volatile unsigned long *)(USB_BASE_ADDR + 0x84))
  875. #define EP_DMA_EN           (*(volatile unsigned long *)(USB_BASE_ADDR + 0x88))
  876. #define EP_DMA_DIS          (*(volatile unsigned long *)(USB_BASE_ADDR + 0x8C))
  877. #define DMA_INT_STAT        (*(volatile unsigned long *)(USB_BASE_ADDR + 0x90))
  878. #define DMA_INT_EN          (*(volatile unsigned long *)(USB_BASE_ADDR + 0x94))
  879. #define EOT_INT_STAT        (*(volatile unsigned long *)(USB_BASE_ADDR + 0xA0))
  880. #define EOT_INT_CLR         (*(volatile unsigned long *)(USB_BASE_ADDR + 0xA4))
  881. #define EOT_INT_SET         (*(volatile unsigned long *)(USB_BASE_ADDR + 0xA8))
  882. #define NDD_REQ_INT_STAT    (*(volatile unsigned long *)(USB_BASE_ADDR + 0xAC))
  883. #define NDD_REQ_INT_CLR     (*(volatile unsigned long *)(USB_BASE_ADDR + 0xB0))
  884. #define NDD_REQ_INT_SET     (*(volatile unsigned long *)(USB_BASE_ADDR + 0xB4))
  885. #define SYS_ERR_INT_STAT    (*(volatile unsigned long *)(USB_BASE_ADDR + 0xB8))
  886. #define SYS_ERR_INT_CLR     (*(volatile unsigned long *)(USB_BASE_ADDR + 0xBC))
  887. #define SYS_ERR_INT_SET     (*(volatile unsigned long *)(USB_BASE_ADDR + 0xC0))
  888. /* USB Host Controller */
  889. #define USBHC_BASE_ADDR 0xFFE0C000
  890. #define HC_REVISION         (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x00))
  891. #define HC_CONTROL          (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x04))
  892. #define HC_CMD_STAT         (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x08))
  893. #define HC_INT_STAT         (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x0C))
  894. #define HC_INT_EN           (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x10))
  895. #define HC_INT_DIS          (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x14))
  896. #define HC_HCCA             (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x18))
  897. #define HC_PERIOD_CUR_ED    (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x1C))
  898. #define HC_CTRL_HEAD_ED     (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x20))
  899. #define HC_CTRL_CUR_ED      (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x24))
  900. #define HC_BULK_HEAD_ED     (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x28))
  901. #define HC_BULK_CUR_ED      (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x2C))
  902. #define HC_DONE_HEAD        (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x30))
  903. #define HC_FM_INTERVAL      (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x34))
  904. #define HC_FM_REMAINING     (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x38))
  905. #define HC_FM_NUMBER        (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x3C))
  906. #define HC_PERIOD_START     (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x40))
  907. #define HC_LS_THRHLD        (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x44))
  908. #define HC_RH_DESCA         (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x48))
  909. #define HC_RH_DESCB         (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x4C))
  910. #define HC_RH_STAT          (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x50))
  911. #define HC_RH_PORT_STAT1    (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x54))
  912. #define HC_RH_PORT_STAT2    (*(volatile unsigned long *)(USBHC_BASE_ADDR + 0x58))
  913. /* USB OTG Controller */
  914. #define USBOTG_BASE_ADDR 0xFFE0C100
  915. #define OTG_INT_STAT        (*(volatile unsigned long *)(USBOTG_BASE_ADDR + 0x00))
  916. #define OTG_INT_EN          (*(volatile unsigned long *)(USBOTG_BASE_ADDR + 0x04))
  917. #define OTG_INT_SET         (*(volatile unsigned long *)(USBOTG_BASE_ADDR + 0x08))
  918. #define OTG_INT_CLR         (*(volatile unsigned long *)(USBOTG_BASE_ADDR + 0x0C))
  919. #define OTG_STAT_CTRL       (*(volatile unsigned long *)(USBOTG_BASE_ADDR + 0x10))
  920. #define OTG_TIMER           (*(volatile unsigned long *)(USBOTG_BASE_ADDR + 0x14))
  921. #define USBOTG_I2C_BASE_ADDR 0xFFE0C300
  922. #define OTG_I2C_RX          (*(volatile unsigned long *)(USBOTG_I2C_BASE_ADDR + 0x00))
  923. #define OTG_I2C_TX          (*(volatile unsigned long *)(USBOTG_I2C_BASE_ADDR + 0x00))
  924. #define OTG_I2C_STS         (*(volatile unsigned long *)(USBOTG_I2C_BASE_ADDR + 0x04))
  925. #define OTG_I2C_CTL         (*(volatile unsigned long *)(USBOTG_I2C_BASE_ADDR + 0x08))
  926. #define OTG_I2C_CLKHI       (*(volatile unsigned long *)(USBOTG_I2C_BASE_ADDR + 0x0C))
  927. #define OTG_I2C_CLKLO       (*(volatile unsigned long *)(USBOTG_I2C_BASE_ADDR + 0x10))
  928. #define USBOTG_CLK_BASE_ADDR 0xFFE0CFF0
  929. #define OTG_CLK_CTRL        (*(volatile unsigned long *)(USBOTG_CLK_BASE_ADDR + 0x04))
  930. #define OTG_CLK_STAT        (*(volatile unsigned long *)(USBOTG_CLK_BASE_ADDR + 0x08))
  931. /* Ethernet MAC (32 bit data bus) -- all registers are RW unless indicated in parentheses */
  932. #define MAC_BASE_ADDR 0xFFE00000 /* AHB Peripheral # 0 */
  933. #define MAC_MAC1            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x000)) /* MAC config reg 1 */
  934. #define MAC_MAC2            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x004)) /* MAC config reg 2 */
  935. #define MAC_IPGT            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x008)) /* b2b InterPacketGap reg */
  936. #define MAC_IPGR            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x00C)) /* non b2b InterPacketGap reg */
  937. #define MAC_CLRT            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x010)) /* CoLlision window/ReTry reg */
  938. #define MAC_MAXF            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x014)) /* MAXimum Frame reg */
  939. #define MAC_SUPP            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x018)) /* PHY SUPPort reg */
  940. #define MAC_TEST            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x01C)) /* TEST reg */
  941. #define MAC_MCFG            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x020)) /* MII Mgmt ConFiG reg */
  942. #define MAC_MCMD            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x024)) /* MII Mgmt CoMmanD reg */
  943. #define MAC_MADR            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x028)) /* MII Mgmt ADdRess reg */
  944. #define MAC_MWTD            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x02C)) /* MII Mgmt WriTe Data reg (WO) */
  945. #define MAC_MRDD            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x030)) /* MII Mgmt ReaD Data reg (RO) */
  946. #define MAC_MIND            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x034)) /* MII Mgmt INDicators reg (RO) */
  947. #define MAC_SA0             (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x040)) /* Station Address 0 reg */
  948. #define MAC_SA1             (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x044)) /* Station Address 1 reg */
  949. #define MAC_SA2             (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x048)) /* Station Address 2 reg */
  950. #define MAC_COMMAND         (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x100)) /* Command reg */
  951. #define MAC_STATUS          (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x104)) /* Status reg (RO) */
  952. #define MAC_RXDESCRIPTOR    (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x108)) /* Rx descriptor base address reg */
  953. #define MAC_RXSTATUS        (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x10C)) /* Rx status base address reg */
  954. #define MAC_RXDESCRIPTORNUM (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x110)) /* Rx number of descriptors reg */
  955. #define MAC_RXPRODUCEINDEX  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x114)) /* Rx produce index reg (RO) */
  956. #define MAC_RXCONSUMEINDEX  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x118)) /* Rx consume index reg */
  957. #define MAC_TXDESCRIPTOR    (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x11C)) /* Tx descriptor base address reg */
  958. #define MAC_TXSTATUS        (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x120)) /* Tx status base address reg */
  959. #define MAC_TXDESCRIPTORNUM (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x124)) /* Tx number of descriptors reg */
  960. #define MAC_TXPRODUCEINDEX  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x128)) /* Tx produce index reg */
  961. #define MAC_TXCONSUMEINDEX  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x12C)) /* Tx consume index reg (RO) */
  962. #define MAC_TSV0            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x158)) /* Tx status vector 0 reg (RO) */
  963. #define MAC_TSV1            (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x15C)) /* Tx status vector 1 reg (RO) */
  964. #define MAC_RSV             (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x160)) /* Rx status vector reg (RO) */
  965. #define MAC_FLOWCONTROLCNT  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x170)) /* Flow control counter reg */
  966. #define MAC_FLOWCONTROLSTS  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x174)) /* Flow control status reg */
  967. #define MAC_RXFILTERCTRL    (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x200)) /* Rx filter ctrl reg */
  968. #define MAC_RXFILTERWOLSTS  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x204)) /* Rx filter WoL status reg (RO) */
  969. #define MAC_RXFILTERWOLCLR  (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x208)) /* Rx filter WoL clear reg (WO) */
  970. #define MAC_HASHFILTERL     (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x210)) /* Hash filter LSBs reg */
  971. #define MAC_HASHFILTERH     (*(volatile unsigned long *)(MAC_BASE_ADDR + 0x214)) /* Hash filter MSBs reg */
  972. #define MAC_INTSTATUS       (*(volatile unsigned long *)(MAC_BASE_ADDR + 0xFE0)) /* Interrupt status reg (RO) */
  973. #define MAC_INTENABLE       (*(volatile unsigned long *)(MAC_BASE_ADDR + 0xFE4)) /* Interrupt enable reg  */
  974. #define MAC_INTCLEAR        (*(volatile unsigned long *)(MAC_BASE_ADDR + 0xFE8)) /* Interrupt clear reg (WO) */
  975. #define MAC_INTSET          (*(volatile unsigned long *)(MAC_BASE_ADDR + 0xFEC)) /* Interrupt set reg (WO) */
  976. #define MAC_POWERDOWN       (*(volatile unsigned long *)(MAC_BASE_ADDR + 0xFF4)) /* Power-down reg */
  977. #define MAC_MODULEID        (*(volatile unsigned long *)(MAC_BASE_ADDR + 0xFFC)) /* Module ID reg (RO) */
  978. #endif  // __LPC230x_H