Def.h
Upload User: yzchenlin
Upload Date: 2022-03-09
Package Size: 712k
Code Size: 35k
Development Platform:

C/C++

  1. #ifndef __DEF_H__
  2. #define __DEF_H__
  3. #define U32 unsigned int
  4. #define U16 unsigned short
  5. #define S32 int
  6. #define S16 short int
  7. #define U8  unsigned char
  8. #define S8  char
  9. #define TRUE  1   
  10. #define FALSE  0
  11. #define FCLK 202800000
  12. #define HCLK (202800000/2)
  13. #define PCLK (202800000/4)
  14. #define UCLK PCLK
  15. #define _RAM_STARTADDRESS 0x30000000
  16. #define _NONCACHE_STARTADDRESS   0x31000000
  17. #define _ISR_STARTADDRESS        0x33ffff00     
  18. #define _MMUTT_STARTADDRESS      0x33ff8000
  19. #define _STACK_BASEADDRESS       0x33ff8000
  20. #define HEAPEND                  0x33ff0000
  21. //=============================================================================
  22. //  S3C2410 Define Address Register 
  23. //=============================================================================
  24. // Memory control 
  25. #define rBWSCON    (*(volatile unsigned *)0x48000000) //Bus width & wait status
  26. #define rBANKCON0  (*(volatile unsigned *)0x48000004) //Boot ROM control
  27. #define rBANKCON1  (*(volatile unsigned *)0x48000008) //BANK1 control
  28. #define rBANKCON2  (*(volatile unsigned *)0x4800000c) //BANK2 cControl
  29. #define rBANKCON3  (*(volatile unsigned *)0x48000010) //BANK3 control
  30. #define rBANKCON4  (*(volatile unsigned *)0x48000014) //BANK4 control
  31. #define rBANKCON5  (*(volatile unsigned *)0x48000018) //BANK5 control
  32. #define rBANKCON6  (*(volatile unsigned *)0x4800001c) //BANK6 control
  33. #define rBANKCON7  (*(volatile unsigned *)0x48000020) //BANK7 control
  34. #define rREFRESH   (*(volatile unsigned *)0x48000024) //DRAM/SDRAM refresh
  35. #define rBANKSIZE  (*(volatile unsigned *)0x48000028) //Flexible Bank Size
  36. #define rMRSRB6    (*(volatile unsigned *)0x4800002c) //Mode register set for SDRAM
  37. #define rMRSRB7    (*(volatile unsigned *)0x48000030) //Mode register set for SDRAM
  38. // USB Host
  39. // INTERRUPT
  40. #define rSRCPND     (*(volatile unsigned *)0x4a000000) //Interrupt request status
  41. #define rINTMOD     (*(volatile unsigned *)0x4a000004) //Interrupt mode control
  42. #define rINTMSK     (*(volatile unsigned *)0x4a000008) //Interrupt mask control
  43. #define rPRIORITY   (*(volatile unsigned *)0x4a00000c) //IRQ priority control
  44. #define rINTPND     (*(volatile unsigned *)0x4a000010) //Interrupt request status
  45. #define rINTOFFSET  (*(volatile unsigned *)0x4a000014) //Interruot request source offset
  46. #define rSUBSRCPND  (*(volatile unsigned *)0x4a000018) //Sub source pending
  47. #define rINTSUBMSK  (*(volatile unsigned *)0x4a00001c) //Interrupt sub mask
  48. // DMA
  49. #define rDISRC0     (*(volatile unsigned *)0x4b000000) //DMA 0 Initial source
  50. #define rDISRCC0    (*(volatile unsigned *)0x4b000004) //DMA 0 Initial source control
  51. #define rDIDST0     (*(volatile unsigned *)0x4b000008) //DMA 0 Initial Destination
  52. #define rDIDSTC0    (*(volatile unsigned *)0x4b00000c) //DMA 0 Initial Destination control
  53. #define rDCON0      (*(volatile unsigned *)0x4b000010) //DMA 0 Control
  54. #define rDSTAT0     (*(volatile unsigned *)0x4b000014) //DMA 0 Status
  55. #define rDCSRC0     (*(volatile unsigned *)0x4b000018) //DMA 0 Current source
  56. #define rDCDST0     (*(volatile unsigned *)0x4b00001c) //DMA 0 Current destination
  57. #define rDMASKTRIG0 (*(volatile unsigned *)0x4b000020) //DMA 0 Mask trigger
  58. #define rDISRC1     (*(volatile unsigned *)0x4b000040) //DMA 1 Initial source
  59. #define rDISRCC1    (*(volatile unsigned *)0x4b000044) //DMA 1 Initial source control
  60. #define rDIDST1     (*(volatile unsigned *)0x4b000048) //DMA 1 Initial Destination
  61. #define rDIDSTC1    (*(volatile unsigned *)0x4b00004c) //DMA 1 Initial Destination control
  62. #define rDCON1      (*(volatile unsigned *)0x4b000050) //DMA 1 Control
  63. #define rDSTAT1     (*(volatile unsigned *)0x4b000054) //DMA 1 Status
  64. #define rDCSRC1     (*(volatile unsigned *)0x4b000058) //DMA 1 Current source
  65. #define rDCDST1     (*(volatile unsigned *)0x4b00005c) //DMA 1 Current destination
  66. #define rDMASKTRIG1 (*(volatile unsigned *)0x4b000060) //DMA 1 Mask trigger
  67. #define rDISRC2     (*(volatile unsigned *)0x4b000080) //DMA 2 Initial source
  68. #define rDISRCC2    (*(volatile unsigned *)0x4b000084) //DMA 2 Initial source control
  69. #define rDIDST2     (*(volatile unsigned *)0x4b000088) //DMA 2 Initial Destination
  70. #define rDIDSTC2    (*(volatile unsigned *)0x4b00008c) //DMA 2 Initial Destination control
  71. #define rDCON2      (*(volatile unsigned *)0x4b000090) //DMA 2 Control
  72. #define rDSTAT2     (*(volatile unsigned *)0x4b000094) //DMA 2 Status
  73. #define rDCSRC2     (*(volatile unsigned *)0x4b000098) //DMA 2 Current source
  74. #define rDCDST2     (*(volatile unsigned *)0x4b00009c) //DMA 2 Current destination
  75. #define rDMASKTRIG2 (*(volatile unsigned *)0x4b0000a0) //DMA 2 Mask trigger
  76. #define rDISRC3     (*(volatile unsigned *)0x4b0000c0) //DMA 3 Initial source
  77. #define rDISRCC3    (*(volatile unsigned *)0x4b0000c4) //DMA 3 Initial source control
  78. #define rDIDST3     (*(volatile unsigned *)0x4b0000c8) //DMA 3 Initial Destination
  79. #define rDIDSTC3    (*(volatile unsigned *)0x4b0000cc) //DMA 3 Initial Destination control
  80. #define rDCON3      (*(volatile unsigned *)0x4b0000d0) //DMA 3 Control
  81. #define rDSTAT3     (*(volatile unsigned *)0x4b0000d4) //DMA 3 Status
  82. #define rDCSRC3     (*(volatile unsigned *)0x4b0000d8) //DMA 3 Current source
  83. #define rDCDST3     (*(volatile unsigned *)0x4b0000dc) //DMA 3 Current destination
  84. #define rDMASKTRIG3 (*(volatile unsigned *)0x4b0000e0) //DMA 3 Mask trigger
  85. // CLOCK & POWER MANAGEMENT
  86. #define rLOCKTIME   (*(volatile unsigned *)0x4c000000) //PLL lock time counter
  87. #define rMPLLCON    (*(volatile unsigned *)0x4c000004) //MPLL Control
  88. #define rUPLLCON    (*(volatile unsigned *)0x4c000008) //UPLL Control
  89. #define rCLKCON     (*(volatile unsigned *)0x4c00000c) //Clock generator control
  90. #define rCLKSLOW    (*(volatile unsigned *)0x4c000010) //Slow clock control
  91. #define rCLKDIVN    (*(volatile unsigned *)0x4c000014) //Clock divider control
  92. // LCD CONTROLLER
  93. #define rLCDCON1    (*(volatile unsigned *)0x4d000000) //LCD control 1
  94. #define rLCDCON2    (*(volatile unsigned *)0x4d000004) //LCD control 2
  95. #define rLCDCON3    (*(volatile unsigned *)0x4d000008) //LCD control 3
  96. #define rLCDCON4    (*(volatile unsigned *)0x4d00000c) //LCD control 4
  97. #define rLCDCON5    (*(volatile unsigned *)0x4d000010) //LCD control 5
  98. #define rLCDSADDR1  (*(volatile unsigned *)0x4d000014) //STN/TFT Frame buffer start address 1
  99. #define rLCDSADDR2  (*(volatile unsigned *)0x4d000018) //STN/TFT Frame buffer start address 2
  100. #define rLCDSADDR3  (*(volatile unsigned *)0x4d00001c) //STN/TFT Virtual screen address set
  101. #define rREDLUT     (*(volatile unsigned *)0x4d000020) //STN Red lookup table
  102. #define rGREENLUT   (*(volatile unsigned *)0x4d000024) //STN Green lookup table 
  103. #define rBLUELUT    (*(volatile unsigned *)0x4d000028) //STN Blue lookup table
  104. #define rDITHMODE   (*(volatile unsigned *)0x4d00004c) //STN Dithering mode
  105. #define rTPAL       (*(volatile unsigned *)0x4d000050) //TFT Temporary palette
  106. #define rLCDINTPND  (*(volatile unsigned *)0x4d000054) //LCD Interrupt pending
  107. #define rLCDSRCPND  (*(volatile unsigned *)0x4d000058) //LCD Interrupt source
  108. #define rLCDINTMSK  (*(volatile unsigned *)0x4d00005c) //LCD Interrupt mask
  109. #define rLPCSEL     (*(volatile unsigned *)0x4d000060) //LPC3600 Control
  110. #define PALETTE     0x4d000400                         //Palette start address
  111. // NAND flash
  112. #define rNFCONF     (*(volatile unsigned *)0x4e000000)      //NAND Flash configuration
  113. #define rNFCMD      (*(volatile U8 *)0x4e000004)            //NADD Flash command
  114. #define rNFADDR     (*(volatile U8 *)0x4e000008)            //NAND Flash address
  115. #define rNFDATA     (*(volatile U8 *)0x4e00000c)            //NAND Flash data
  116. #define rNFSTAT     (*(volatile unsigned *)0x4e000010)      //NAND Flash operation status
  117. #define rNFECC      (*(volatile unsigned *)0x4e000014)      //NAND Flash ECC
  118. #define rNFECC0     (*(volatile U8  *)0x4e000014)
  119. #define rNFECC1     (*(volatile U8  *)0x4e000015)
  120. #define rNFECC2     (*(volatile U8  *)0x4e000016)
  121. // UART
  122. #define rULCON0     (*(volatile unsigned *)0x50000000) //UART 0 Line control
  123. #define rUCON0      (*(volatile unsigned *)0x50000004) //UART 0 Control
  124. #define rUFCON0     (*(volatile unsigned *)0x50000008) //UART 0 FIFO control
  125. #define rUMCON0     (*(volatile unsigned *)0x5000000c) //UART 0 Modem control
  126. #define rUTRSTAT0   (*(volatile unsigned *)0x50000010) //UART 0 Tx/Rx status
  127. #define rUERSTAT0   (*(volatile unsigned *)0x50000014) //UART 0 Rx error status
  128. #define rUFSTAT0    (*(volatile unsigned *)0x50000018) //UART 0 FIFO status
  129. #define rUMSTAT0    (*(volatile unsigned *)0x5000001c) //UART 0 Modem status
  130. #define rUBRDIV0    (*(volatile unsigned *)0x50000028) //UART 0 Baud rate divisor
  131. #define rULCON1     (*(volatile unsigned *)0x50004000) //UART 1 Line control
  132. #define rUCON1      (*(volatile unsigned *)0x50004004) //UART 1 Control
  133. #define rUFCON1     (*(volatile unsigned *)0x50004008) //UART 1 FIFO control
  134. #define rUMCON1     (*(volatile unsigned *)0x5000400c) //UART 1 Modem control
  135. #define rUTRSTAT1   (*(volatile unsigned *)0x50004010) //UART 1 Tx/Rx status
  136. #define rUERSTAT1   (*(volatile unsigned *)0x50004014) //UART 1 Rx error status
  137. #define rUFSTAT1    (*(volatile unsigned *)0x50004018) //UART 1 FIFO status
  138. #define rUMSTAT1    (*(volatile unsigned *)0x5000401c) //UART 1 Modem status
  139. #define rUBRDIV1    (*(volatile unsigned *)0x50004028) //UART 1 Baud rate divisor
  140. #define rULCON2     (*(volatile unsigned *)0x50008000) //UART 2 Line control
  141. #define rUCON2      (*(volatile unsigned *)0x50008004) //UART 2 Control
  142. #define rUFCON2     (*(volatile unsigned *)0x50008008) //UART 2 FIFO control
  143. #define rUMCON2     (*(volatile unsigned *)0x5000800c) //UART 2 Modem control
  144. #define rUTRSTAT2   (*(volatile unsigned *)0x50008010) //UART 2 Tx/Rx status
  145. #define rUERSTAT2   (*(volatile unsigned *)0x50008014) //UART 2 Rx error status
  146. #define rUFSTAT2    (*(volatile unsigned *)0x50008018) //UART 2 FIFO status
  147. #define rUMSTAT2    (*(volatile unsigned *)0x5000801c) //UART 2 Modem status
  148. #define rUBRDIV2    (*(volatile unsigned *)0x50008028) //UART 2 Baud rate divisor
  149. #ifdef __BIG_ENDIAN
  150. #define rUTXH0      (*(volatile unsigned char *)0x50000023) //UART 0 Transmission Hold
  151. #define rURXH0      (*(volatile unsigned char *)0x50000027) //UART 0 Receive buffer
  152. #define rUTXH1      (*(volatile unsigned char *)0x50004023) //UART 1 Transmission Hold
  153. #define rURXH1      (*(volatile unsigned char *)0x50004027) //UART 1 Receive buffer
  154. #define rUTXH2      (*(volatile unsigned char *)0x50008023) //UART 2 Transmission Hold
  155. #define rURXH2      (*(volatile unsigned char *)0x50008027) //UART 2 Receive buffer
  156. #define WrUTXH0(ch) (*(volatile unsigned char *)0x50000023)=(unsigned char)(ch)
  157. #define RdURXH0()   (*(volatile unsigned char *)0x50000027)
  158. #define WrUTXH1(ch) (*(volatile unsigned char *)0x50004023)=(unsigned char)(ch)
  159. #define RdURXH1()   (*(volatile unsigned char *)0x50004027)
  160. #define WrUTXH2(ch) (*(volatile unsigned char *)0x50008023)=(unsigned char)(ch)
  161. #define RdURXH2()   (*(volatile unsigned char *)0x50008027)
  162. #define UTXH0       (0x50000020+3)  //Byte_access address by DMA
  163. #define URXH0       (0x50000024+3)
  164. #define UTXH1       (0x50004020+3)
  165. #define URXH1       (0x50004024+3)
  166. #define UTXH2       (0x50008020+3)
  167. #define URXH2       (0x50008024+3)
  168. #else //Little Endian
  169. #define rUTXH0 (*(volatile unsigned char *)0x50000020) //UART 0 Transmission Hold
  170. #define rURXH0 (*(volatile unsigned char *)0x50000024) //UART 0 Receive buffer
  171. #define rUTXH1 (*(volatile unsigned char *)0x50004020) //UART 1 Transmission Hold
  172. #define rURXH1 (*(volatile unsigned char *)0x50004024) //UART 1 Receive buffer
  173. #define rUTXH2 (*(volatile unsigned char *)0x50008020) //UART 2 Transmission Hold
  174. #define rURXH2 (*(volatile unsigned char *)0x50008024) //UART 2 Receive buffer
  175. #define WrUTXH0(ch) (*(volatile unsigned char *)0x50000020)=(unsigned char)(ch)
  176. #define RdURXH0()   (*(volatile unsigned char *)0x50000024)
  177. #define WrUTXH1(ch) (*(volatile unsigned char *)0x50004020)=(unsigned char)(ch)
  178. #define RdURXH1()   (*(volatile unsigned char *)0x50004024)
  179. #define WrUTXH2(ch) (*(volatile unsigned char *)0x50008020)=(unsigned char)(ch)
  180. #define RdURXH2()   (*(volatile unsigned char *)0x50008024)
  181. #define UTXH0       (0x50000020)    //Byte_access address by DMA
  182. #define URXH0       (0x50000024)
  183. #define UTXH1       (0x50004020)
  184. #define URXH1       (0x50004024)
  185. #define UTXH2       (0x50008020)
  186. #define URXH2       (0x50008024)
  187. #endif
  188. // PWM TIMER
  189. #define rTCFG0  (*(volatile unsigned *)0x51000000) //Timer 0 configuration
  190. #define rTCFG1  (*(volatile unsigned *)0x51000004) //Timer 1 configuration
  191. #define rTCON   (*(volatile unsigned *)0x51000008) //Timer control
  192. #define rTCNTB0 (*(volatile unsigned *)0x5100000c) //Timer count buffer 0
  193. #define rTCMPB0 (*(volatile unsigned *)0x51000010) //Timer compare buffer 0
  194. #define rTCNTO0 (*(volatile unsigned *)0x51000014) //Timer count observation 0
  195. #define rTCNTB1 (*(volatile unsigned *)0x51000018) //Timer count buffer 1
  196. #define rTCMPB1 (*(volatile unsigned *)0x5100001c) //Timer compare buffer 1
  197. #define rTCNTO1 (*(volatile unsigned *)0x51000020) //Timer count observation 1
  198. #define rTCNTB2 (*(volatile unsigned *)0x51000024) //Timer count buffer 2
  199. #define rTCMPB2 (*(volatile unsigned *)0x51000028) //Timer compare buffer 2
  200. #define rTCNTO2 (*(volatile unsigned *)0x5100002c) //Timer count observation 2
  201. #define rTCNTB3 (*(volatile unsigned *)0x51000030) //Timer count buffer 3
  202. #define rTCMPB3 (*(volatile unsigned *)0x51000034) //Timer compare buffer 3
  203. #define rTCNTO3 (*(volatile unsigned *)0x51000038) //Timer count observation 3
  204. #define rTCNTB4 (*(volatile unsigned *)0x5100003c) //Timer count buffer 4
  205. #define rTCNTO4 (*(volatile unsigned *)0x51000040) //Timer count observation 4
  206. // USB DEVICE
  207. #ifdef __BIG_ENDIAN
  208. <ERROR IF BIG_ENDIAN>
  209. #define rFUNC_ADDR_REG     (*(volatile unsigned char *)0x52000143) //Function address
  210. #define rPWR_REG           (*(volatile unsigned char *)0x52000147) //Power management
  211. #define rEP_INT_REG        (*(volatile unsigned char *)0x5200014b) //EP Interrupt pending and clear
  212. #define rUSB_INT_REG       (*(volatile unsigned char *)0x5200015b) //USB Interrupt pending and clear
  213. #define rEP_INT_EN_REG     (*(volatile unsigned char *)0x5200015f) //Interrupt enable
  214. #define rUSB_INT_EN_REG    (*(volatile unsigned char *)0x5200016f)
  215. #define rFRAME_NUM1_REG    (*(volatile unsigned char *)0x52000173) //Frame number lower byte
  216. #define rFRAME_NUM2_REG    (*(volatile unsigned char *)0x52000177) //Frame number higher byte
  217. #define rINDEX_REG         (*(volatile unsigned char *)0x5200017b) //Register index
  218. #define rMAXP_REG          (*(volatile unsigned char *)0x52000183) //Endpoint max packet
  219. #define rEP0_CSR           (*(volatile unsigned char *)0x52000187) //Endpoint 0 status
  220. #define rIN_CSR1_REG       (*(volatile unsigned char *)0x52000187) //In endpoint control status
  221. #define rIN_CSR2_REG       (*(volatile unsigned char *)0x5200018b)
  222. #define rOUT_CSR1_REG      (*(volatile unsigned char *)0x52000193) //Out endpoint control status
  223. #define rOUT_CSR2_REG      (*(volatile unsigned char *)0x52000197)
  224. #define rOUT_FIFO_CNT1_REG (*(volatile unsigned char *)0x5200019b) //Endpoint out write count
  225. #define rOUT_FIFO_CNT2_REG (*(volatile unsigned char *)0x5200019f)
  226. #define rEP0_FIFO          (*(volatile unsigned char *)0x520001c3) //Endpoint 0 FIFO
  227. #define rEP1_FIFO          (*(volatile unsigned char *)0x520001c7) //Endpoint 1 FIFO
  228. #define rEP2_FIFO          (*(volatile unsigned char *)0x520001cb) //Endpoint 2 FIFO
  229. #define rEP3_FIFO          (*(volatile unsigned char *)0x520001cf) //Endpoint 3 FIFO
  230. #define rEP4_FIFO          (*(volatile unsigned char *)0x520001d3) //Endpoint 4 FIFO
  231. #define rEP1_DMA_CON       (*(volatile unsigned char *)0x52000203) //EP1 DMA interface control
  232. #define rEP1_DMA_UNIT      (*(volatile unsigned char *)0x52000207) //EP1 DMA Tx unit counter
  233. #define rEP1_DMA_FIFO      (*(volatile unsigned char *)0x5200020b) //EP1 DMA Tx FIFO counter
  234. #define rEP1_DMA_TTC_L     (*(volatile unsigned char *)0x5200020f) //EP1 DMA total Tx counter
  235. #define rEP1_DMA_TTC_M     (*(volatile unsigned char *)0x52000213)
  236. #define rEP1_DMA_TTC_H     (*(volatile unsigned char *)0x52000217)
  237. #define rEP2_DMA_CON       (*(volatile unsigned char *)0x5200021b) //EP2 DMA interface control
  238. #define rEP2_DMA_UNIT      (*(volatile unsigned char *)0x5200021f) //EP2 DMA Tx unit counter
  239. #define rEP2_DMA_FIFO      (*(volatile unsigned char *)0x52000223) //EP2 DMA Tx FIFO counter
  240. #define rEP2_DMA_TTC_L     (*(volatile unsigned char *)0x52000227) //EP2 DMA total Tx counter
  241. #define rEP2_DMA_TTC_M     (*(volatile unsigned char *)0x5200022b)
  242. #define rEP2_DMA_TTC_H     (*(volatile unsigned char *)0x5200022f)
  243. #define rEP3_DMA_CON       (*(volatile unsigned char *)0x52000243) //EP3 DMA interface control
  244. #define rEP3_DMA_UNIT      (*(volatile unsigned char *)0x52000247) //EP3 DMA Tx unit counter
  245. #define rEP3_DMA_FIFO      (*(volatile unsigned char *)0x5200024b) //EP3 DMA Tx FIFO counter
  246. #define rEP3_DMA_TTC_L     (*(volatile unsigned char *)0x5200024f) //EP3 DMA total Tx counter
  247. #define rEP3_DMA_TTC_M     (*(volatile unsigned char *)0x52000253)
  248. #define rEP3_DMA_TTC_H     (*(volatile unsigned char *)0x52000257)
  249. #define rEP4_DMA_CON       (*(volatile unsigned char *)0x5200025b) //EP4 DMA interface control
  250. #define rEP4_DMA_UNIT      (*(volatile unsigned char *)0x5200025f) //EP4 DMA Tx unit counter
  251. #define rEP4_DMA_FIFO      (*(volatile unsigned char *)0x52000263) //EP4 DMA Tx FIFO counter
  252. #define rEP4_DMA_TTC_L     (*(volatile unsigned char *)0x52000267) //EP4 DMA total Tx counter
  253. #define rEP4_DMA_TTC_M     (*(volatile unsigned char *)0x5200026b)
  254. #define rEP4_DMA_TTC_H     (*(volatile unsigned char *)0x5200026f)
  255. #else  // Little Endian
  256. #define rFUNC_ADDR_REG     (*(volatile unsigned char *)0x52000140) //Function address
  257. #define rPWR_REG           (*(volatile unsigned char *)0x52000144) //Power management
  258. #define rEP_INT_REG        (*(volatile unsigned char *)0x52000148) //EP Interrupt pending and clear
  259. #define rUSB_INT_REG       (*(volatile unsigned char *)0x52000158) //USB Interrupt pending and clear
  260. #define rEP_INT_EN_REG     (*(volatile unsigned char *)0x5200015c) //Interrupt enable
  261. #define rUSB_INT_EN_REG    (*(volatile unsigned char *)0x5200016c)
  262. #define rFRAME_NUM1_REG    (*(volatile unsigned char *)0x52000170) //Frame number lower byte
  263. #define rFRAME_NUM2_REG    (*(volatile unsigned char *)0x52000174) //Frame number higher byte
  264. #define rINDEX_REG         (*(volatile unsigned char *)0x52000178) //Register index
  265. #define rMAXP_REG          (*(volatile unsigned char *)0x52000180) //Endpoint max packet
  266. #define rEP0_CSR           (*(volatile unsigned char *)0x52000184) //Endpoint 0 status
  267. #define rIN_CSR1_REG       (*(volatile unsigned char *)0x52000184) //In endpoint control status
  268. #define rIN_CSR2_REG       (*(volatile unsigned char *)0x52000188)
  269. #define rOUT_CSR1_REG      (*(volatile unsigned char *)0x52000190) //Out endpoint control status
  270. #define rOUT_CSR2_REG      (*(volatile unsigned char *)0x52000194)
  271. #define rOUT_FIFO_CNT1_REG (*(volatile unsigned char *)0x52000198) //Endpoint out write count
  272. #define rOUT_FIFO_CNT2_REG (*(volatile unsigned char *)0x5200019c)
  273. #define rEP0_FIFO          (*(volatile unsigned char *)0x520001c0) //Endpoint 0 FIFO
  274. #define rEP1_FIFO          (*(volatile unsigned char *)0x520001c4) //Endpoint 1 FIFO
  275. #define rEP2_FIFO          (*(volatile unsigned char *)0x520001c8) //Endpoint 2 FIFO
  276. #define rEP3_FIFO          (*(volatile unsigned char *)0x520001cc) //Endpoint 3 FIFO
  277. #define rEP4_FIFO          (*(volatile unsigned char *)0x520001d0) //Endpoint 4 FIFO
  278. #define rEP1_DMA_CON       (*(volatile unsigned char *)0x52000200) //EP1 DMA interface control
  279. #define rEP1_DMA_UNIT      (*(volatile unsigned char *)0x52000204) //EP1 DMA Tx unit counter
  280. #define rEP1_DMA_FIFO      (*(volatile unsigned char *)0x52000208) //EP1 DMA Tx FIFO counter
  281. #define rEP1_DMA_TTC_L     (*(volatile unsigned char *)0x5200020c) //EP1 DMA total Tx counter
  282. #define rEP1_DMA_TTC_M     (*(volatile unsigned char *)0x52000210)
  283. #define rEP1_DMA_TTC_H     (*(volatile unsigned char *)0x52000214)
  284. #define rEP2_DMA_CON       (*(volatile unsigned char *)0x52000218) //EP2 DMA interface control
  285. #define rEP2_DMA_UNIT      (*(volatile unsigned char *)0x5200021c) //EP2 DMA Tx unit counter
  286. #define rEP2_DMA_FIFO      (*(volatile unsigned char *)0x52000220) //EP2 DMA Tx FIFO counter
  287. #define rEP2_DMA_TTC_L     (*(volatile unsigned char *)0x52000224) //EP2 DMA total Tx counter
  288. #define rEP2_DMA_TTC_M     (*(volatile unsigned char *)0x52000228)
  289. #define rEP2_DMA_TTC_H     (*(volatile unsigned char *)0x5200022c)
  290. #define rEP3_DMA_CON       (*(volatile unsigned char *)0x52000240) //EP3 DMA interface control
  291. #define rEP3_DMA_UNIT      (*(volatile unsigned char *)0x52000244) //EP3 DMA Tx unit counter
  292. #define rEP3_DMA_FIFO      (*(volatile unsigned char *)0x52000248) //EP3 DMA Tx FIFO counter
  293. #define rEP3_DMA_TTC_L     (*(volatile unsigned char *)0x5200024c) //EP3 DMA total Tx counter
  294. #define rEP3_DMA_TTC_M     (*(volatile unsigned char *)0x52000250)
  295. #define rEP3_DMA_TTC_H     (*(volatile unsigned char *)0x52000254)
  296. #define rEP4_DMA_CON       (*(volatile unsigned char *)0x52000258) //EP4 DMA interface control
  297. #define rEP4_DMA_UNIT      (*(volatile unsigned char *)0x5200025c) //EP4 DMA Tx unit counter
  298. #define rEP4_DMA_FIFO      (*(volatile unsigned char *)0x52000260) //EP4 DMA Tx FIFO counter
  299. #define rEP4_DMA_TTC_L     (*(volatile unsigned char *)0x52000264) //EP4 DMA total Tx counter
  300. #define rEP4_DMA_TTC_M     (*(volatile unsigned char *)0x52000268)
  301. #define rEP4_DMA_TTC_H     (*(volatile unsigned char *)0x5200026c)
  302. #endif   // __BIG_ENDIAN
  303. // WATCH DOG TIMER
  304. #define rWTCON   (*(volatile unsigned *)0x53000000) //Watch-dog timer mode
  305. #define rWTDAT   (*(volatile unsigned *)0x53000004) //Watch-dog timer data
  306. #define rWTCNT   (*(volatile unsigned *)0x53000008) //Eatch-dog timer count
  307. // IIC
  308. #define rIICCON  (*(volatile unsigned *)0x54000000) //IIC control
  309. #define rIICSTAT (*(volatile unsigned *)0x54000004) //IIC status
  310. #define rIICADD  (*(volatile unsigned *)0x54000008) //IIC address
  311. #define rIICDS   (*(volatile unsigned *)0x5400000c) //IIC data shift
  312. // IIS
  313. #define rIISCON  (*(volatile unsigned *)0x55000000) //IIS Control
  314. #define rIISMOD  (*(volatile unsigned *)0x55000004) //IIS Mode
  315. #define rIISPSR  (*(volatile unsigned *)0x55000008) //IIS Prescaler
  316. #define rIISFCON (*(volatile unsigned *)0x5500000c) //IIS FIFO control
  317. #ifdef __BIG_ENDIAN
  318. #define IISFIFO  ((volatile unsigned short *)0x55000012) //IIS FIFO entry
  319. #else //Little Endian
  320. #define IISFIFO  ((volatile unsigned short *)0x55000010) //IIS FIFO entry
  321. #endif
  322. // I/O PORT 
  323. #define rGPACON    (*(volatile unsigned *)0x56000000) //Port A control
  324. #define rGPADAT    (*(volatile unsigned *)0x56000004) //Port A data
  325.                         
  326. #define rGPBCON    (*(volatile unsigned *)0x56000010) //Port B control
  327. #define rGPBDAT    (*(volatile unsigned *)0x56000014) //Port B data
  328. #define rGPBUP     (*(volatile unsigned *)0x56000018) //Pull-up control B
  329.                         
  330. #define rGPCCON    (*(volatile unsigned *)0x56000020) //Port C control
  331. #define rGPCDAT    (*(volatile unsigned *)0x56000024) //Port C data
  332. #define rGPCUP     (*(volatile unsigned *)0x56000028) //Pull-up control C
  333.                         
  334. #define rGPDCON    (*(volatile unsigned *)0x56000030) //Port D control
  335. #define rGPDDAT    (*(volatile unsigned *)0x56000034) //Port D data
  336. #define rGPDUP     (*(volatile unsigned *)0x56000038) //Pull-up control D
  337.                         
  338. #define rGPECON    (*(volatile unsigned *)0x56000040) //Port E control
  339. #define rGPEDAT    (*(volatile unsigned *)0x56000044) //Port E data
  340. #define rGPEUP     (*(volatile unsigned *)0x56000048) //Pull-up control E
  341.                         
  342. #define rGPFCON    (*(volatile unsigned *)0x56000050) //Port F control
  343. #define rGPFDAT    (*(volatile unsigned *)0x56000054) //Port F data
  344. #define rGPFUP     (*(volatile unsigned *)0x56000058) //Pull-up control F
  345.                         
  346. #define rGPGCON    (*(volatile unsigned *)0x56000060) //Port G control
  347. #define rGPGDAT    (*(volatile unsigned *)0x56000064) //Port G data
  348. #define rGPGUP     (*(volatile unsigned *)0x56000068) //Pull-up control G
  349.                         
  350. #define rGPHCON    (*(volatile unsigned *)0x56000070) //Port H control
  351. #define rGPHDAT    (*(volatile unsigned *)0x56000074) //Port H data
  352. #define rGPHUP     (*(volatile unsigned *)0x56000078) //Pull-up control H
  353.                         
  354. #define rMISCCR    (*(volatile unsigned *)0x56000080) //Miscellaneous control
  355. #define rDCLKCON   (*(volatile unsigned *)0x56000084) //DCLK0/1 control
  356. #define rEXTINT0   (*(volatile unsigned *)0x56000088) //External interrupt control register 0
  357. #define rEXTINT1   (*(volatile unsigned *)0x5600008c) //External interrupt control register 1
  358. #define rEXTINT2   (*(volatile unsigned *)0x56000090) //External interrupt control register 2
  359. #define rEINTFLT0  (*(volatile unsigned *)0x56000094) //Reserved
  360. #define rEINTFLT1  (*(volatile unsigned *)0x56000098) //Reserved
  361. #define rEINTFLT2  (*(volatile unsigned *)0x5600009c) //External interrupt filter control register 2
  362. #define rEINTFLT3  (*(volatile unsigned *)0x560000a0) //External interrupt filter control register 3
  363. #define rEINTMASK  (*(volatile unsigned *)0x560000a4) //External interrupt mask
  364. #define rEINTPEND  (*(volatile unsigned *)0x560000a8) //External interrupt pending
  365. #define rGSTATUS0  (*(volatile unsigned *)0x560000ac) //External pin status
  366. #define rGSTATUS1  (*(volatile unsigned *)0x560000b0) //Chip ID(0x32410000)
  367. #define rGSTATUS2  (*(volatile unsigned *)0x560000b4) //Reset type
  368. #define rGSTATUS3  (*(volatile unsigned *)0x560000b8) //Saved data0(32-bit) before entering POWER_OFF mode 
  369. #define rGSTATUS4  (*(volatile unsigned *)0x560000bc) //Saved data0(32-bit) before entering POWER_OFF mode 
  370. // RTC
  371. #ifdef __BIG_ENDIAN
  372. #define rRTCCON    (*(volatile unsigned char *)0x57000043) //RTC control
  373. #define rTICNT     (*(volatile unsigned char *)0x57000047) //Tick time count
  374. #define rRTCALM    (*(volatile unsigned char *)0x57000053) //RTC alarm control
  375. #define rALMSEC    (*(volatile unsigned char *)0x57000057) //Alarm second
  376. #define rALMMIN    (*(volatile unsigned char *)0x5700005b) //Alarm minute
  377. #define rALMHOUR   (*(volatile unsigned char *)0x5700005f) //Alarm Hour
  378. #define rALMDATE   (*(volatile unsigned char *)0x57000063) //Alarm day     <-- May 06, 2002 SOP
  379. #define rALMMON    (*(volatile unsigned char *)0x57000067) //Alarm month
  380. #define rALMYEAR   (*(volatile unsigned char *)0x5700006b) //Alarm year
  381. #define rRTCRST    (*(volatile unsigned char *)0x5700006f) //RTC round reset
  382. #define rBCDSEC    (*(volatile unsigned char *)0x57000073) //BCD second
  383. #define rBCDMIN    (*(volatile unsigned char *)0x57000077) //BCD minute
  384. #define rBCDHOUR   (*(volatile unsigned char *)0x5700007b) //BCD hour
  385. #define rBCDDATE   (*(volatile unsigned char *)0x5700007f) //BCD day       <-- May 06, 2002 SOP
  386. #define rBCDDAY    (*(volatile unsigned char *)0x57000083) //BCD date      <-- May 06, 2002 SOP
  387. #define rBCDMON    (*(volatile unsigned char *)0x57000087) //BCD month
  388. #define rBCDYEAR   (*(volatile unsigned char *)0x5700008b) //BCD year
  389. #else //Little Endian
  390. #define rRTCCON    (*(volatile unsigned char *)0x57000040) //RTC control
  391. #define rTICNT     (*(volatile unsigned char *)0x57000044) //Tick time count
  392. #define rRTCALM    (*(volatile unsigned char *)0x57000050) //RTC alarm control
  393. #define rALMSEC    (*(volatile unsigned char *)0x57000054) //Alarm second
  394. #define rALMMIN    (*(volatile unsigned char *)0x57000058) //Alarm minute
  395. #define rALMHOUR   (*(volatile unsigned char *)0x5700005c) //Alarm Hour
  396. #define rALMDATE   (*(volatile unsigned char *)0x57000060) //Alarm day      <-- May 06, 2002 SOP
  397. #define rALMMON    (*(volatile unsigned char *)0x57000064) //Alarm month
  398. #define rALMYEAR   (*(volatile unsigned char *)0x57000068) //Alarm year
  399. #define rRTCRST    (*(volatile unsigned char *)0x5700006c) //RTC round reset
  400. #define rBCDSEC    (*(volatile unsigned char *)0x57000070) //BCD second
  401. #define rBCDMIN    (*(volatile unsigned char *)0x57000074) //BCD minute
  402. #define rBCDHOUR   (*(volatile unsigned char *)0x57000078) //BCD hour
  403. #define rBCDDATE   (*(volatile unsigned char *)0x5700007c) //BCD day        <-- May 06, 2002 SOP
  404. #define rBCDDAY    (*(volatile unsigned char *)0x57000080) //BCD date       <-- May 06, 2002 SOP
  405. #define rBCDMON    (*(volatile unsigned char *)0x57000084) //BCD month
  406. #define rBCDYEAR   (*(volatile unsigned char *)0x57000088) //BCD year
  407. #endif  //RTC
  408. // ADC
  409. #define rADCCON    (*(volatile unsigned *)0x58000000) //ADC control
  410. #define rADCTSC    (*(volatile unsigned *)0x58000004) //ADC touch screen control
  411. #define rADCDLY    (*(volatile unsigned *)0x58000008) //ADC start or Interval Delay
  412. #define rADCDAT0   (*(volatile unsigned *)0x5800000c) //ADC conversion data 0
  413. #define rADCDAT1   (*(volatile unsigned *)0x58000010) //ADC conversion data 1                   
  414.                         
  415. // SPI          
  416. #define rSPCON0    (*(volatile unsigned *)0x59000000) //SPI0 control
  417. #define rSPSTA0    (*(volatile unsigned *)0x59000004) //SPI0 status
  418. #define rSPPIN0    (*(volatile unsigned *)0x59000008) //SPI0 pin control
  419. #define rSPPRE0    (*(volatile unsigned *)0x5900000c) //SPI0 baud rate prescaler
  420. #define rSPTDAT0   (*(volatile unsigned *)0x59000010) //SPI0 Tx data
  421. #define rSPRDAT0   (*(volatile unsigned *)0x59000014) //SPI0 Rx data
  422. #define rSPCON1    (*(volatile unsigned *)0x59000020) //SPI1 control
  423. #define rSPSTA1    (*(volatile unsigned *)0x59000024) //SPI1 status
  424. #define rSPPIN1    (*(volatile unsigned *)0x59000028) //SPI1 pin control
  425. #define rSPPRE1    (*(volatile unsigned *)0x5900002c) //SPI1 baud rate prescaler
  426. #define rSPTDAT1   (*(volatile unsigned *)0x59000030) //SPI1 Tx data
  427. #define rSPRDAT1   (*(volatile unsigned *)0x59000034) //SPI1 Rx data
  428. // SD Interface
  429. #define rSDICON     (*(volatile unsigned *)0x5a000000) //SDI control
  430. #define rSDIPRE     (*(volatile unsigned *)0x5a000004) //SDI baud rate prescaler
  431. #define rSDICARG    (*(volatile unsigned *)0x5a000008) //SDI command argument
  432. #define rSDICCON    (*(volatile unsigned *)0x5a00000c) //SDI command control
  433. #define rSDICSTA    (*(volatile unsigned *)0x5a000010) //SDI command status
  434. #define rSDIRSP0    (*(volatile unsigned *)0x5a000014) //SDI response 0
  435. #define rSDIRSP1    (*(volatile unsigned *)0x5a000018) //SDI response 1
  436. #define rSDIRSP2    (*(volatile unsigned *)0x5a00001c) //SDI response 2
  437. #define rSDIRSP3    (*(volatile unsigned *)0x5a000020) //SDI response 3
  438. #define rSDIDTIMER  (*(volatile unsigned *)0x5a000024) //SDI data/busy timer
  439. #define rSDIBSIZE   (*(volatile unsigned *)0x5a000028) //SDI block size
  440. #define rSDIDCON    (*(volatile unsigned *)0x5a00002c) //SDI data control
  441. #define rSDIDCNT    (*(volatile unsigned *)0x5a000030) //SDI data remain counter
  442. #define rSDIDSTA    (*(volatile unsigned *)0x5a000034) //SDI data status
  443. #define rSDIFSTA    (*(volatile unsigned *)0x5a000038) //SDI FIFO status
  444. #define rSDIIMSK    (*(volatile unsigned *)0x5a000040) //SDI interrupt mask
  445. #ifdef __BIG_ENDIAN
  446. #define rSDIDAT    (*(volatile unsigned *)0x5a00003f) //SDI data
  447. #define SDIDAT     0x5a00003f
  448. #else  // Little Endian
  449. #define rSDIDAT    (*(volatile unsigned *)0x5a00003c) //SDI data
  450. #define SDIDAT     0x5a00003c
  451. #endif   //SD Interface
  452.              
  453. // ISR
  454. #define pISR_RESET     (*(unsigned *)(_ISR_STARTADDRESS+0x0))
  455. #define pISR_UNDEF     (*(unsigned *)(_ISR_STARTADDRESS+0x4))
  456. #define pISR_SWI       (*(unsigned *)(_ISR_STARTADDRESS+0x8))
  457. #define pISR_PABORT    (*(unsigned *)(_ISR_STARTADDRESS+0xc))
  458. #define pISR_DABORT    (*(unsigned *)(_ISR_STARTADDRESS+0x10))
  459. #define pISR_RESERVED  (*(unsigned *)(_ISR_STARTADDRESS+0x14))
  460. #define pISR_IRQ       (*(unsigned *)(_ISR_STARTADDRESS+0x18))
  461. #define pISR_FIQ       (*(unsigned *)(_ISR_STARTADDRESS+0x1c))
  462. #define pISR_EINT0     (*(unsigned *)(_ISR_STARTADDRESS+0x20))
  463. #define pISR_EINT1     (*(unsigned *)(_ISR_STARTADDRESS+0x24))
  464. #define pISR_EINT2     (*(unsigned *)(_ISR_STARTADDRESS+0x28))
  465. #define pISR_EINT3     (*(unsigned *)(_ISR_STARTADDRESS+0x2c))
  466. #define pISR_EINT4_7   (*(unsigned *)(_ISR_STARTADDRESS+0x30))
  467. #define pISR_EINT8_23  (*(unsigned *)(_ISR_STARTADDRESS+0x34))
  468. #define pISR_NOTUSED6  (*(unsigned *)(_ISR_STARTADDRESS+0x38))
  469. #define pISR_BAT_FLT   (*(unsigned *)(_ISR_STARTADDRESS+0x3c))
  470. #define pISR_TICK      (*(unsigned *)(_ISR_STARTADDRESS+0x40))
  471. #define pISR_WDT       (*(unsigned *)(_ISR_STARTADDRESS+0x44))
  472. #define pISR_TIMER0    (*(unsigned *)(_ISR_STARTADDRESS+0x48))
  473. #define pISR_TIMER1    (*(unsigned *)(_ISR_STARTADDRESS+0x4c))
  474. #define pISR_TIMER2    (*(unsigned *)(_ISR_STARTADDRESS+0x50))
  475. #define pISR_TIMER3    (*(unsigned *)(_ISR_STARTADDRESS+0x54))
  476. #define pISR_TIMER4    (*(unsigned *)(_ISR_STARTADDRESS+0x58))
  477. #define pISR_UART2     (*(unsigned *)(_ISR_STARTADDRESS+0x5c))
  478. #define pISR_LCD       (*(unsigned *)(_ISR_STARTADDRESS+0x60))
  479. #define pISR_DMA0      (*(unsigned *)(_ISR_STARTADDRESS+0x64))
  480. #define pISR_DMA1      (*(unsigned *)(_ISR_STARTADDRESS+0x68))
  481. #define pISR_DMA2      (*(unsigned *)(_ISR_STARTADDRESS+0x6c))
  482. #define pISR_DMA3      (*(unsigned *)(_ISR_STARTADDRESS+0x70))
  483. #define pISR_SDI       (*(unsigned *)(_ISR_STARTADDRESS+0x74))
  484. #define pISR_SPI0      (*(unsigned *)(_ISR_STARTADDRESS+0x78))
  485. #define pISR_UART1     (*(unsigned *)(_ISR_STARTADDRESS+0x7c))
  486. #define pISR_NOTUSED24 (*(unsigned *)(_ISR_STARTADDRESS+0x80))
  487. #define pISR_USBD      (*(unsigned *)(_ISR_STARTADDRESS+0x84))
  488. #define pISR_USBH      (*(unsigned *)(_ISR_STARTADDRESS+0x88))
  489. #define pISR_IIC       (*(unsigned *)(_ISR_STARTADDRESS+0x8c))
  490. #define pISR_UART0     (*(unsigned *)(_ISR_STARTADDRESS+0x90))
  491. #define pISR_SPI1      (*(unsigned *)(_ISR_STARTADDRESS+0x94))
  492. #define pISR_RTC       (*(unsigned *)(_ISR_STARTADDRESS+0x98))
  493. #define pISR_ADC       (*(unsigned *)(_ISR_STARTADDRESS+0x9c))
  494. // PENDING BIT
  495. #define BIT_EINT0      (0x1)
  496. #define BIT_EINT1      (0x1<<1)
  497. #define BIT_EINT2      (0x1<<2)
  498. #define BIT_EINT3      (0x1<<3)
  499. #define BIT_EINT4_7    (0x1<<4)
  500. #define BIT_EINT8_23   (0x1<<5)
  501. #define BIT_NOTUSED6   (0x1<<6)
  502. #define BIT_BAT_FLT    (0x1<<7)
  503. #define BIT_TICK       (0x1<<8)
  504. #define BIT_WDT        (0x1<<9)
  505. #define BIT_TIMER0     (0x1<<10)
  506. #define BIT_TIMER1     (0x1<<11)
  507. #define BIT_TIMER2     (0x1<<12)
  508. #define BIT_TIMER3     (0x1<<13)
  509. #define BIT_TIMER4     (0x1<<14)
  510. #define BIT_UART2      (0x1<<15)
  511. #define BIT_LCD        (0x1<<16)
  512. #define BIT_DMA0       (0x1<<17)
  513. #define BIT_DMA1       (0x1<<18)
  514. #define BIT_DMA2       (0x1<<19)
  515. #define BIT_DMA3       (0x1<<20)
  516. #define BIT_SDI        (0x1<<21)
  517. #define BIT_SPI0       (0x1<<22)
  518. #define BIT_UART1      (0x1<<23)
  519. #define BIT_NOTUSED24  (0x1<<24)
  520. #define BIT_USBD       (0x1<<25)
  521. #define BIT_USBH       (0x1<<26)
  522. #define BIT_IIC        (0x1<<27)
  523. #define BIT_UART0      (0x1<<28)
  524. #define BIT_SPI1       (0x1<<29)
  525. #define BIT_RTC        (0x1<<30)
  526. #define BIT_ADC        ((unsigned)0x1<<31)
  527. #define BIT_ALLMSK     (0xffffffff)
  528. #define BIT_SUB_ALLMSK (0x7ff)
  529. #define BIT_SUB_ADC    (0x1<<10)
  530. #define BIT_SUB_TC     (0x1<<9)
  531. #define BIT_SUB_ERR2   (0x1<<8)
  532. #define BIT_SUB_TXD2   (0x1<<7)
  533. #define BIT_SUB_RXD2   (0x1<<6)
  534. #define BIT_SUB_ERR1   (0x1<<5)
  535. #define BIT_SUB_TXD1   (0x1<<4)
  536. #define BIT_SUB_RXD1   (0x1<<3)
  537. #define BIT_SUB_ERR0   (0x1<<2)
  538. #define BIT_SUB_TXD0   (0x1<<1)
  539. #define BIT_SUB_RXD0   (0x1<<0)
  540. #endif /*__DEF_H__*/