pxa-regs.h 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167
  1. /*
  2. * linux/include/asm-arm/arch-pxa/pxa-regs.h
  3. *
  4. * Author: Nicolas Pitre
  5. * Created: Jun 15, 2001
  6. * Copyright: MontaVista Software Inc.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef PXA_REGS_H
  13. #define PXA_REGS_H 1
  14. /* FIXME hack so that SA-1111.h will work [cb] */
  15. #ifndef __ASSEMBLY__
  16. typedef unsigned short Word16 ;
  17. typedef unsigned int Word32 ;
  18. typedef Word32 Word ;
  19. typedef Word Quad [4] ;
  20. typedef void *Address ;
  21. typedef void (*ExcpHndlr) (void) ;
  22. #endif
  23. #ifndef __ASSEMBLY__
  24. #define io_p2v(PhAdd) (PhAdd)
  25. #define __REG(x) (*((volatile u32 *)io_p2v(x)))
  26. #else
  27. #define __REG(x) (x)
  28. #endif
  29. /*
  30. * PXA Chip selects
  31. */
  32. #define PXA_CS0_PHYS 0x00000000
  33. #define PXA_CS1_PHYS 0x04000000
  34. #define PXA_CS2_PHYS 0x08000000
  35. #define PXA_CS3_PHYS 0x0C000000
  36. #define PXA_CS4_PHYS 0x10000000
  37. #define PXA_CS5_PHYS 0x14000000
  38. /*
  39. * Personal Computer Memory Card International Association (PCMCIA) sockets
  40. */
  41. #define PCMCIAPrtSp 0x04000000 /* PCMCIA Partition Space [byte] */
  42. #define PCMCIASp (4*PCMCIAPrtSp) /* PCMCIA Space [byte] */
  43. #define PCMCIAIOSp PCMCIAPrtSp /* PCMCIA I/O Space [byte] */
  44. #define PCMCIAAttrSp PCMCIAPrtSp /* PCMCIA Attribute Space [byte] */
  45. #define PCMCIAMemSp PCMCIAPrtSp /* PCMCIA Memory Space [byte] */
  46. #define PCMCIA0Sp PCMCIASp /* PCMCIA 0 Space [byte] */
  47. #define PCMCIA0IOSp PCMCIAIOSp /* PCMCIA 0 I/O Space [byte] */
  48. #define PCMCIA0AttrSp PCMCIAAttrSp /* PCMCIA 0 Attribute Space [byte] */
  49. #define PCMCIA0MemSp PCMCIAMemSp /* PCMCIA 0 Memory Space [byte] */
  50. #define PCMCIA1Sp PCMCIASp /* PCMCIA 1 Space [byte] */
  51. #define PCMCIA1IOSp PCMCIAIOSp /* PCMCIA 1 I/O Space [byte] */
  52. #define PCMCIA1AttrSp PCMCIAAttrSp /* PCMCIA 1 Attribute Space [byte] */
  53. #define PCMCIA1MemSp PCMCIAMemSp /* PCMCIA 1 Memory Space [byte] */
  54. #define _PCMCIA(Nb) /* PCMCIA [0..1] */ \
  55. (0x20000000 + (Nb)*PCMCIASp)
  56. #define _PCMCIAIO(Nb) _PCMCIA (Nb) /* PCMCIA I/O [0..1] */
  57. #define _PCMCIAAttr(Nb) /* PCMCIA Attribute [0..1] */ \
  58. (_PCMCIA (Nb) + 2*PCMCIAPrtSp)
  59. #define _PCMCIAMem(Nb) /* PCMCIA Memory [0..1] */ \
  60. (_PCMCIA (Nb) + 3*PCMCIAPrtSp)
  61. #define _PCMCIA0 _PCMCIA (0) /* PCMCIA 0 */
  62. #define _PCMCIA0IO _PCMCIAIO (0) /* PCMCIA 0 I/O */
  63. #define _PCMCIA0Attr _PCMCIAAttr (0) /* PCMCIA 0 Attribute */
  64. #define _PCMCIA0Mem _PCMCIAMem (0) /* PCMCIA 0 Memory */
  65. #define _PCMCIA1 _PCMCIA (1) /* PCMCIA 1 */
  66. #define _PCMCIA1IO _PCMCIAIO (1) /* PCMCIA 1 I/O */
  67. #define _PCMCIA1Attr _PCMCIAAttr (1) /* PCMCIA 1 Attribute */
  68. #define _PCMCIA1Mem _PCMCIAMem (1) /* PCMCIA 1 Memory */
  69. /*
  70. * DMA Controller
  71. */
  72. #define DCSR0 __REG(0x40000000) /* DMA Control / Status Register for Channel 0 */
  73. #define DCSR1 __REG(0x40000004) /* DMA Control / Status Register for Channel 1 */
  74. #define DCSR2 __REG(0x40000008) /* DMA Control / Status Register for Channel 2 */
  75. #define DCSR3 __REG(0x4000000c) /* DMA Control / Status Register for Channel 3 */
  76. #define DCSR4 __REG(0x40000010) /* DMA Control / Status Register for Channel 4 */
  77. #define DCSR5 __REG(0x40000014) /* DMA Control / Status Register for Channel 5 */
  78. #define DCSR6 __REG(0x40000018) /* DMA Control / Status Register for Channel 6 */
  79. #define DCSR7 __REG(0x4000001c) /* DMA Control / Status Register for Channel 7 */
  80. #define DCSR8 __REG(0x40000020) /* DMA Control / Status Register for Channel 8 */
  81. #define DCSR9 __REG(0x40000024) /* DMA Control / Status Register for Channel 9 */
  82. #define DCSR10 __REG(0x40000028) /* DMA Control / Status Register for Channel 10 */
  83. #define DCSR11 __REG(0x4000002c) /* DMA Control / Status Register for Channel 11 */
  84. #define DCSR12 __REG(0x40000030) /* DMA Control / Status Register for Channel 12 */
  85. #define DCSR13 __REG(0x40000034) /* DMA Control / Status Register for Channel 13 */
  86. #define DCSR14 __REG(0x40000038) /* DMA Control / Status Register for Channel 14 */
  87. #define DCSR15 __REG(0x4000003c) /* DMA Control / Status Register for Channel 15 */
  88. #define DCSR(x) __REG2(0x40000000, (x) << 2)
  89. #define DCSR_RUN (1 << 31) /* Run Bit (read / write) */
  90. #define DCSR_NODESC (1 << 30) /* No-Descriptor Fetch (read / write) */
  91. #define DCSR_STOPIRQEN (1 << 29) /* Stop Interrupt Enable (read / write) */
  92. #define DCSR_REQPEND (1 << 8) /* Request Pending (read-only) */
  93. #define DCSR_STOPSTATE (1 << 3) /* Stop State (read-only) */
  94. #define DCSR_ENDINTR (1 << 2) /* End Interrupt (read / write) */
  95. #define DCSR_STARTINTR (1 << 1) /* Start Interrupt (read / write) */
  96. #define DCSR_BUSERR (1 << 0) /* Bus Error Interrupt (read / write) */
  97. #define DINT __REG(0x400000f0) /* DMA Interrupt Register */
  98. #define DRCMR0 __REG(0x40000100) /* Request to Channel Map Register for DREQ 0 */
  99. #define DRCMR1 __REG(0x40000104) /* Request to Channel Map Register for DREQ 1 */
  100. #define DRCMR2 __REG(0x40000108) /* Request to Channel Map Register for I2S receive Request */
  101. #define DRCMR3 __REG(0x4000010c) /* Request to Channel Map Register for I2S transmit Request */
  102. #define DRCMR4 __REG(0x40000110) /* Request to Channel Map Register for BTUART receive Request */
  103. #define DRCMR5 __REG(0x40000114) /* Request to Channel Map Register for BTUART transmit Request. */
  104. #define DRCMR6 __REG(0x40000118) /* Request to Channel Map Register for FFUART receive Request */
  105. #define DRCMR7 __REG(0x4000011c) /* Request to Channel Map Register for FFUART transmit Request */
  106. #define DRCMR8 __REG(0x40000120) /* Request to Channel Map Register for AC97 microphone Request */
  107. #define DRCMR9 __REG(0x40000124) /* Request to Channel Map Register for AC97 modem receive Request */
  108. #define DRCMR10 __REG(0x40000128) /* Request to Channel Map Register for AC97 modem transmit Request */
  109. #define DRCMR11 __REG(0x4000012c) /* Request to Channel Map Register for AC97 audio receive Request */
  110. #define DRCMR12 __REG(0x40000130) /* Request to Channel Map Register for AC97 audio transmit Request */
  111. #define DRCMR13 __REG(0x40000134) /* Request to Channel Map Register for SSP receive Request */
  112. #define DRCMR14 __REG(0x40000138) /* Request to Channel Map Register for SSP transmit Request */
  113. #define DRCMR15 __REG(0x4000013c) /* Reserved */
  114. #define DRCMR16 __REG(0x40000140) /* Reserved */
  115. #define DRCMR17 __REG(0x40000144) /* Request to Channel Map Register for ICP receive Request */
  116. #define DRCMR18 __REG(0x40000148) /* Request to Channel Map Register for ICP transmit Request */
  117. #define DRCMR19 __REG(0x4000014c) /* Request to Channel Map Register for STUART receive Request */
  118. #define DRCMR20 __REG(0x40000150) /* Request to Channel Map Register for STUART transmit Request */
  119. #define DRCMR21 __REG(0x40000154) /* Request to Channel Map Register for MMC receive Request */
  120. #define DRCMR22 __REG(0x40000158) /* Request to Channel Map Register for MMC transmit Request */
  121. #define DRCMR23 __REG(0x4000015c) /* Reserved */
  122. #define DRCMR24 __REG(0x40000160) /* Reserved */
  123. #define DRCMR25 __REG(0x40000164) /* Request to Channel Map Register for USB endpoint 1 Request */
  124. #define DRCMR26 __REG(0x40000168) /* Request to Channel Map Register for USB endpoint 2 Request */
  125. #define DRCMR27 __REG(0x4000016C) /* Request to Channel Map Register for USB endpoint 3 Request */
  126. #define DRCMR28 __REG(0x40000170) /* Request to Channel Map Register for USB endpoint 4 Request */
  127. #define DRCMR29 __REG(0x40000174) /* Reserved */
  128. #define DRCMR30 __REG(0x40000178) /* Request to Channel Map Register for USB endpoint 6 Request */
  129. #define DRCMR31 __REG(0x4000017C) /* Request to Channel Map Register for USB endpoint 7 Request */
  130. #define DRCMR32 __REG(0x40000180) /* Request to Channel Map Register for USB endpoint 8 Request */
  131. #define DRCMR33 __REG(0x40000184) /* Request to Channel Map Register for USB endpoint 9 Request */
  132. #define DRCMR34 __REG(0x40000188) /* Reserved */
  133. #define DRCMR35 __REG(0x4000018C) /* Request to Channel Map Register for USB endpoint 11 Request */
  134. #define DRCMR36 __REG(0x40000190) /* Request to Channel Map Register for USB endpoint 12 Request */
  135. #define DRCMR37 __REG(0x40000194) /* Request to Channel Map Register for USB endpoint 13 Request */
  136. #define DRCMR38 __REG(0x40000198) /* Request to Channel Map Register for USB endpoint 14 Request */
  137. #define DRCMR39 __REG(0x4000019C) /* Reserved */
  138. #define DRCMRRXSADR DRCMR2
  139. #define DRCMRTXSADR DRCMR3
  140. #define DRCMRRXBTRBR DRCMR4
  141. #define DRCMRTXBTTHR DRCMR5
  142. #define DRCMRRXFFRBR DRCMR6
  143. #define DRCMRTXFFTHR DRCMR7
  144. #define DRCMRRXMCDR DRCMR8
  145. #define DRCMRRXMODR DRCMR9
  146. #define DRCMRTXMODR DRCMR10
  147. #define DRCMRRXPCDR DRCMR11
  148. #define DRCMRTXPCDR DRCMR12
  149. #define DRCMRRXSSDR DRCMR13
  150. #define DRCMRTXSSDR DRCMR14
  151. #define DRCMRRXICDR DRCMR17
  152. #define DRCMRTXICDR DRCMR18
  153. #define DRCMRRXSTRBR DRCMR19
  154. #define DRCMRTXSTTHR DRCMR20
  155. #define DRCMRRXMMC DRCMR21
  156. #define DRCMRTXMMC DRCMR22
  157. #define DRCMR_MAPVLD (1 << 7) /* Map Valid (read / write) */
  158. #define DRCMR_CHLNUM 0x0f /* mask for Channel Number (read / write) */
  159. #define DDADR0 __REG(0x40000200) /* DMA Descriptor Address Register Channel 0 */
  160. #define DSADR0 __REG(0x40000204) /* DMA Source Address Register Channel 0 */
  161. #define DTADR0 __REG(0x40000208) /* DMA Target Address Register Channel 0 */
  162. #define DCMD0 __REG(0x4000020c) /* DMA Command Address Register Channel 0 */
  163. #define DDADR1 __REG(0x40000210) /* DMA Descriptor Address Register Channel 1 */
  164. #define DSADR1 __REG(0x40000214) /* DMA Source Address Register Channel 1 */
  165. #define DTADR1 __REG(0x40000218) /* DMA Target Address Register Channel 1 */
  166. #define DCMD1 __REG(0x4000021c) /* DMA Command Address Register Channel 1 */
  167. #define DDADR2 __REG(0x40000220) /* DMA Descriptor Address Register Channel 2 */
  168. #define DSADR2 __REG(0x40000224) /* DMA Source Address Register Channel 2 */
  169. #define DTADR2 __REG(0x40000228) /* DMA Target Address Register Channel 2 */
  170. #define DCMD2 __REG(0x4000022c) /* DMA Command Address Register Channel 2 */
  171. #define DDADR3 __REG(0x40000230) /* DMA Descriptor Address Register Channel 3 */
  172. #define DSADR3 __REG(0x40000234) /* DMA Source Address Register Channel 3 */
  173. #define DTADR3 __REG(0x40000238) /* DMA Target Address Register Channel 3 */
  174. #define DCMD3 __REG(0x4000023c) /* DMA Command Address Register Channel 3 */
  175. #define DDADR4 __REG(0x40000240) /* DMA Descriptor Address Register Channel 4 */
  176. #define DSADR4 __REG(0x40000244) /* DMA Source Address Register Channel 4 */
  177. #define DTADR4 __REG(0x40000248) /* DMA Target Address Register Channel 4 */
  178. #define DCMD4 __REG(0x4000024c) /* DMA Command Address Register Channel 4 */
  179. #define DDADR5 __REG(0x40000250) /* DMA Descriptor Address Register Channel 5 */
  180. #define DSADR5 __REG(0x40000254) /* DMA Source Address Register Channel 5 */
  181. #define DTADR5 __REG(0x40000258) /* DMA Target Address Register Channel 5 */
  182. #define DCMD5 __REG(0x4000025c) /* DMA Command Address Register Channel 5 */
  183. #define DDADR6 __REG(0x40000260) /* DMA Descriptor Address Register Channel 6 */
  184. #define DSADR6 __REG(0x40000264) /* DMA Source Address Register Channel 6 */
  185. #define DTADR6 __REG(0x40000268) /* DMA Target Address Register Channel 6 */
  186. #define DCMD6 __REG(0x4000026c) /* DMA Command Address Register Channel 6 */
  187. #define DDADR7 __REG(0x40000270) /* DMA Descriptor Address Register Channel 7 */
  188. #define DSADR7 __REG(0x40000274) /* DMA Source Address Register Channel 7 */
  189. #define DTADR7 __REG(0x40000278) /* DMA Target Address Register Channel 7 */
  190. #define DCMD7 __REG(0x4000027c) /* DMA Command Address Register Channel 7 */
  191. #define DDADR8 __REG(0x40000280) /* DMA Descriptor Address Register Channel 8 */
  192. #define DSADR8 __REG(0x40000284) /* DMA Source Address Register Channel 8 */
  193. #define DTADR8 __REG(0x40000288) /* DMA Target Address Register Channel 8 */
  194. #define DCMD8 __REG(0x4000028c) /* DMA Command Address Register Channel 8 */
  195. #define DDADR9 __REG(0x40000290) /* DMA Descriptor Address Register Channel 9 */
  196. #define DSADR9 __REG(0x40000294) /* DMA Source Address Register Channel 9 */
  197. #define DTADR9 __REG(0x40000298) /* DMA Target Address Register Channel 9 */
  198. #define DCMD9 __REG(0x4000029c) /* DMA Command Address Register Channel 9 */
  199. #define DDADR10 __REG(0x400002a0) /* DMA Descriptor Address Register Channel 10 */
  200. #define DSADR10 __REG(0x400002a4) /* DMA Source Address Register Channel 10 */
  201. #define DTADR10 __REG(0x400002a8) /* DMA Target Address Register Channel 10 */
  202. #define DCMD10 __REG(0x400002ac) /* DMA Command Address Register Channel 10 */
  203. #define DDADR11 __REG(0x400002b0) /* DMA Descriptor Address Register Channel 11 */
  204. #define DSADR11 __REG(0x400002b4) /* DMA Source Address Register Channel 11 */
  205. #define DTADR11 __REG(0x400002b8) /* DMA Target Address Register Channel 11 */
  206. #define DCMD11 __REG(0x400002bc) /* DMA Command Address Register Channel 11 */
  207. #define DDADR12 __REG(0x400002c0) /* DMA Descriptor Address Register Channel 12 */
  208. #define DSADR12 __REG(0x400002c4) /* DMA Source Address Register Channel 12 */
  209. #define DTADR12 __REG(0x400002c8) /* DMA Target Address Register Channel 12 */
  210. #define DCMD12 __REG(0x400002cc) /* DMA Command Address Register Channel 12 */
  211. #define DDADR13 __REG(0x400002d0) /* DMA Descriptor Address Register Channel 13 */
  212. #define DSADR13 __REG(0x400002d4) /* DMA Source Address Register Channel 13 */
  213. #define DTADR13 __REG(0x400002d8) /* DMA Target Address Register Channel 13 */
  214. #define DCMD13 __REG(0x400002dc) /* DMA Command Address Register Channel 13 */
  215. #define DDADR14 __REG(0x400002e0) /* DMA Descriptor Address Register Channel 14 */
  216. #define DSADR14 __REG(0x400002e4) /* DMA Source Address Register Channel 14 */
  217. #define DTADR14 __REG(0x400002e8) /* DMA Target Address Register Channel 14 */
  218. #define DCMD14 __REG(0x400002ec) /* DMA Command Address Register Channel 14 */
  219. #define DDADR15 __REG(0x400002f0) /* DMA Descriptor Address Register Channel 15 */
  220. #define DSADR15 __REG(0x400002f4) /* DMA Source Address Register Channel 15 */
  221. #define DTADR15 __REG(0x400002f8) /* DMA Target Address Register Channel 15 */
  222. #define DCMD15 __REG(0x400002fc) /* DMA Command Address Register Channel 15 */
  223. #define DDADR(x) __REG2(0x40000200, (x) << 4)
  224. #define DSADR(x) __REG2(0x40000204, (x) << 4)
  225. #define DTADR(x) __REG2(0x40000208, (x) << 4)
  226. #define DCMD(x) __REG2(0x4000020c, (x) << 4)
  227. #define DDADR_DESCADDR 0xfffffff0 /* Address of next descriptor (mask) */
  228. #define DDADR_STOP (1 << 0) /* Stop (read / write) */
  229. #define DCMD_INCSRCADDR (1 << 31) /* Source Address Increment Setting. */
  230. #define DCMD_INCTRGADDR (1 << 30) /* Target Address Increment Setting. */
  231. #define DCMD_FLOWSRC (1 << 29) /* Flow Control by the source. */
  232. #define DCMD_FLOWTRG (1 << 28) /* Flow Control by the target. */
  233. #define DCMD_STARTIRQEN (1 << 22) /* Start Interrupt Enable */
  234. #define DCMD_ENDIRQEN (1 << 21) /* End Interrupt Enable */
  235. #define DCMD_ENDIAN (1 << 18) /* Device Endian-ness. */
  236. #define DCMD_BURST8 (1 << 16) /* 8 byte burst */
  237. #define DCMD_BURST16 (2 << 16) /* 16 byte burst */
  238. #define DCMD_BURST32 (3 << 16) /* 32 byte burst */
  239. #define DCMD_WIDTH1 (1 << 14) /* 1 byte width */
  240. #define DCMD_WIDTH2 (2 << 14) /* 2 byte width (HalfWord) */
  241. #define DCMD_WIDTH4 (3 << 14) /* 4 byte width (Word) */
  242. #define DCMD_LENGTH 0x01fff /* length mask (max = 8K - 1) */
  243. /* default combinations */
  244. #define DCMD_RXPCDR (DCMD_INCTRGADDR|DCMD_FLOWSRC|DCMD_BURST32|DCMD_WIDTH4)
  245. #define DCMD_RXMCDR (DCMD_INCTRGADDR|DCMD_FLOWSRC|DCMD_BURST32|DCMD_WIDTH4)
  246. #define DCMD_TXPCDR (DCMD_INCSRCADDR|DCMD_FLOWTRG|DCMD_BURST32|DCMD_WIDTH4)
  247. /*
  248. * UARTs
  249. */
  250. /* Full Function UART (FFUART) */
  251. #define FFUART FFRBR
  252. #define FFRBR __REG(0x40100000) /* Receive Buffer Register (read only) */
  253. #define FFTHR __REG(0x40100000) /* Transmit Holding Register (write only) */
  254. #define FFIER __REG(0x40100004) /* Interrupt Enable Register (read/write) */
  255. #define FFIIR __REG(0x40100008) /* Interrupt ID Register (read only) */
  256. #define FFFCR __REG(0x40100008) /* FIFO Control Register (write only) */
  257. #define FFLCR __REG(0x4010000C) /* Line Control Register (read/write) */
  258. #define FFMCR __REG(0x40100010) /* Modem Control Register (read/write) */
  259. #define FFLSR __REG(0x40100014) /* Line Status Register (read only) */
  260. #define FFMSR __REG(0x40100018) /* Modem Status Register (read only) */
  261. #define FFSPR __REG(0x4010001C) /* Scratch Pad Register (read/write) */
  262. #define FFISR __REG(0x40100020) /* Infrared Selection Register (read/write) */
  263. #define FFDLL __REG(0x40100000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  264. #define FFDLH __REG(0x40100004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  265. /* Bluetooth UART (BTUART) */
  266. #define BTUART BTRBR
  267. #define BTRBR __REG(0x40200000) /* Receive Buffer Register (read only) */
  268. #define BTTHR __REG(0x40200000) /* Transmit Holding Register (write only) */
  269. #define BTIER __REG(0x40200004) /* Interrupt Enable Register (read/write) */
  270. #define BTIIR __REG(0x40200008) /* Interrupt ID Register (read only) */
  271. #define BTFCR __REG(0x40200008) /* FIFO Control Register (write only) */
  272. #define BTLCR __REG(0x4020000C) /* Line Control Register (read/write) */
  273. #define BTMCR __REG(0x40200010) /* Modem Control Register (read/write) */
  274. #define BTLSR __REG(0x40200014) /* Line Status Register (read only) */
  275. #define BTMSR __REG(0x40200018) /* Modem Status Register (read only) */
  276. #define BTSPR __REG(0x4020001C) /* Scratch Pad Register (read/write) */
  277. #define BTISR __REG(0x40200020) /* Infrared Selection Register (read/write) */
  278. #define BTDLL __REG(0x40200000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  279. #define BTDLH __REG(0x40200004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  280. /* Standard UART (STUART) */
  281. #define STUART STRBR
  282. #define STRBR __REG(0x40700000) /* Receive Buffer Register (read only) */
  283. #define STTHR __REG(0x40700000) /* Transmit Holding Register (write only) */
  284. #define STIER __REG(0x40700004) /* Interrupt Enable Register (read/write) */
  285. #define STIIR __REG(0x40700008) /* Interrupt ID Register (read only) */
  286. #define STFCR __REG(0x40700008) /* FIFO Control Register (write only) */
  287. #define STLCR __REG(0x4070000C) /* Line Control Register (read/write) */
  288. #define STMCR __REG(0x40700010) /* Modem Control Register (read/write) */
  289. #define STLSR __REG(0x40700014) /* Line Status Register (read only) */
  290. #define STMSR __REG(0x40700018) /* Reserved */
  291. #define STSPR __REG(0x4070001C) /* Scratch Pad Register (read/write) */
  292. #define STISR __REG(0x40700020) /* Infrared Selection Register (read/write) */
  293. #define STDLL __REG(0x40700000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  294. #define STDLH __REG(0x40700004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  295. #define IER_DMAE (1 << 7) /* DMA Requests Enable */
  296. #define IER_UUE (1 << 6) /* UART Unit Enable */
  297. #define IER_NRZE (1 << 5) /* NRZ coding Enable */
  298. #define IER_RTIOE (1 << 4) /* Receiver Time Out Interrupt Enable */
  299. #define IER_MIE (1 << 3) /* Modem Interrupt Enable */
  300. #define IER_RLSE (1 << 2) /* Receiver Line Status Interrupt Enable */
  301. #define IER_TIE (1 << 1) /* Transmit Data request Interrupt Enable */
  302. #define IER_RAVIE (1 << 0) /* Receiver Data Available Interrupt Enable */
  303. #define IIR_FIFOES1 (1 << 7) /* FIFO Mode Enable Status */
  304. #define IIR_FIFOES0 (1 << 6) /* FIFO Mode Enable Status */
  305. #define IIR_TOD (1 << 3) /* Time Out Detected */
  306. #define IIR_IID2 (1 << 2) /* Interrupt Source Encoded */
  307. #define IIR_IID1 (1 << 1) /* Interrupt Source Encoded */
  308. #define IIR_IP (1 << 0) /* Interrupt Pending (active low) */
  309. #define FCR_ITL2 (1 << 7) /* Interrupt Trigger Level */
  310. #define FCR_ITL1 (1 << 6) /* Interrupt Trigger Level */
  311. #define FCR_RESETTF (1 << 2) /* Reset Transmitter FIFO */
  312. #define FCR_RESETRF (1 << 1) /* Reset Receiver FIFO */
  313. #define FCR_TRFIFOE (1 << 0) /* Transmit and Receive FIFO Enable */
  314. #define FCR_ITL_1 (0)
  315. #define FCR_ITL_8 (FCR_ITL1)
  316. #define FCR_ITL_16 (FCR_ITL2)
  317. #define FCR_ITL_32 (FCR_ITL2|FCR_ITL1)
  318. #define LCR_DLAB (1 << 7) /* Divisor Latch Access Bit */
  319. #define LCR_SB (1 << 6) /* Set Break */
  320. #define LCR_STKYP (1 << 5) /* Sticky Parity */
  321. #define LCR_EPS (1 << 4) /* Even Parity Select */
  322. #define LCR_PEN (1 << 3) /* Parity Enable */
  323. #define LCR_STB (1 << 2) /* Stop Bit */
  324. #define LCR_WLS1 (1 << 1) /* Word Length Select */
  325. #define LCR_WLS0 (1 << 0) /* Word Length Select */
  326. #define LSR_FIFOE (1 << 7) /* FIFO Error Status */
  327. #define LSR_TEMT (1 << 6) /* Transmitter Empty */
  328. #define LSR_TDRQ (1 << 5) /* Transmit Data Request */
  329. #define LSR_BI (1 << 4) /* Break Interrupt */
  330. #define LSR_FE (1 << 3) /* Framing Error */
  331. #define LSR_PE (1 << 2) /* Parity Error */
  332. #define LSR_OE (1 << 1) /* Overrun Error */
  333. #define LSR_DR (1 << 0) /* Data Ready */
  334. #define MCR_LOOP (1 << 4) */
  335. #define MCR_OUT2 (1 << 3) /* force MSR_DCD in loopback mode */
  336. #define MCR_OUT1 (1 << 2) /* force MSR_RI in loopback mode */
  337. #define MCR_RTS (1 << 1) /* Request to Send */
  338. #define MCR_DTR (1 << 0) /* Data Terminal Ready */
  339. #define MSR_DCD (1 << 7) /* Data Carrier Detect */
  340. #define MSR_RI (1 << 6) /* Ring Indicator */
  341. #define MSR_DSR (1 << 5) /* Data Set Ready */
  342. #define MSR_CTS (1 << 4) /* Clear To Send */
  343. #define MSR_DDCD (1 << 3) /* Delta Data Carrier Detect */
  344. #define MSR_TERI (1 << 2) /* Trailing Edge Ring Indicator */
  345. #define MSR_DDSR (1 << 1) /* Delta Data Set Ready */
  346. #define MSR_DCTS (1 << 0) /* Delta Clear To Send */
  347. /*
  348. * IrSR (Infrared Selection Register)
  349. */
  350. #define IrSR_OFFSET 0x20
  351. #define IrSR_RXPL_NEG_IS_ZERO (1<<4)
  352. #define IrSR_RXPL_POS_IS_ZERO 0x0
  353. #define IrSR_TXPL_NEG_IS_ZERO (1<<3)
  354. #define IrSR_TXPL_POS_IS_ZERO 0x0
  355. #define IrSR_XMODE_PULSE_1_6 (1<<2)
  356. #define IrSR_XMODE_PULSE_3_16 0x0
  357. #define IrSR_RCVEIR_IR_MODE (1<<1)
  358. #define IrSR_RCVEIR_UART_MODE 0x0
  359. #define IrSR_XMITIR_IR_MODE (1<<0)
  360. #define IrSR_XMITIR_UART_MODE 0x0
  361. #define IrSR_IR_RECEIVE_ON (\
  362. IrSR_RXPL_NEG_IS_ZERO | \
  363. IrSR_TXPL_POS_IS_ZERO | \
  364. IrSR_XMODE_PULSE_3_16 | \
  365. IrSR_RCVEIR_IR_MODE | \
  366. IrSR_XMITIR_UART_MODE)
  367. #define IrSR_IR_TRANSMIT_ON (\
  368. IrSR_RXPL_NEG_IS_ZERO | \
  369. IrSR_TXPL_POS_IS_ZERO | \
  370. IrSR_XMODE_PULSE_3_16 | \
  371. IrSR_RCVEIR_UART_MODE | \
  372. IrSR_XMITIR_IR_MODE)
  373. /*
  374. * I2C registers
  375. */
  376. #define IBMR __REG(0x40301680) /* I2C Bus Monitor Register - IBMR */
  377. #define IDBR __REG(0x40301688) /* I2C Data Buffer Register - IDBR */
  378. #define ICR __REG(0x40301690) /* I2C Control Register - ICR */
  379. #define ISR __REG(0x40301698) /* I2C Status Register - ISR */
  380. #define ISAR __REG(0x403016A0) /* I2C Slave Address Register - ISAR */
  381. /* ----- Control register bits ---------------------------------------- */
  382. #define ICR_START 0x1 /* start bit */
  383. #define ICR_STOP 0x2 /* stop bit */
  384. #define ICR_ACKNAK 0x4 /* send ACK(0) or NAK(1) */
  385. #define ICR_TB 0x8 /* transfer byte bit */
  386. #define ICR_MA 0x10 /* master abort */
  387. #define ICR_SCLE 0x20 /* master clock enable */
  388. #define ICR_IUE 0x40 /* unit enable */
  389. #define ICR_GCD 0x80 /* general call disable */
  390. #define ICR_ITEIE 0x100 /* enable tx interrupts */
  391. #define ICR_IRFIE 0x200 /* enable rx interrupts */
  392. #define ICR_BEIE 0x400 /* enable bus error ints */
  393. #define ICR_SSDIE 0x800 /* slave STOP detected int enable */
  394. #define ICR_ALDIE 0x1000 /* enable arbitration interrupt */
  395. #define ICR_SADIE 0x2000 /* slave address detected int enable */
  396. #define ICR_UR 0x4000 /* unit reset */
  397. /* ----- Status register bits ----------------------------------------- */
  398. #define ISR_RWM 0x1 /* read/write mode */
  399. #define ISR_ACKNAK 0x2 /* ack/nak status */
  400. #define ISR_UB 0x4 /* unit busy */
  401. #define ISR_IBB 0x8 /* bus busy */
  402. #define ISR_SSD 0x10 /* slave stop detected */
  403. #define ISR_ALD 0x20 /* arbitration loss detected */
  404. #define ISR_ITE 0x40 /* tx buffer empty */
  405. #define ISR_IRF 0x80 /* rx buffer full */
  406. #define ISR_GCAD 0x100 /* general call address detected */
  407. #define ISR_SAD 0x200 /* slave address detected */
  408. #define ISR_BED 0x400 /* bus error no ACK/NAK */
  409. /*
  410. * Serial Audio Controller
  411. */
  412. /* FIXME the audio defines collide w/ the SA1111 defines. I don't like these
  413. * short defines because there is too much chance of namespace collision */
  414. /*#define SACR0 __REG(0x40400000) / Global Control Register */
  415. /*#define SACR1 __REG(0x40400004) / Serial Audio I 2 S/MSB-Justified Control Register */
  416. /*#define SASR0 __REG(0x4040000C) / Serial Audio I 2 S/MSB-Justified Interface and FIFO Status Register */
  417. /*#define SAIMR __REG(0x40400014) / Serial Audio Interrupt Mask Register */
  418. /*#define SAICR __REG(0x40400018) / Serial Audio Interrupt Clear Register */
  419. /*#define SADIV __REG(0x40400060) / Audio Clock Divider Register. */
  420. /*#define SADR __REG(0x40400080) / Serial Audio Data Register (TX and RX FIFO access Register). */
  421. /*
  422. * AC97 Controller registers
  423. */
  424. #define POCR __REG(0x40500000) /* PCM Out Control Register */
  425. #define POCR_FEIE (1 << 3) /* FIFO Error Interrupt Enable */
  426. #define PICR __REG(0x40500004) /* PCM In Control Register */
  427. #define PICR_FEIE (1 << 3) /* FIFO Error Interrupt Enable */
  428. #define MCCR __REG(0x40500008) /* Mic In Control Register */
  429. #define MCCR_FEIE (1 << 3) /* FIFO Error Interrupt Enable */
  430. #define GCR __REG(0x4050000C) /* Global Control Register */
  431. #define GCR_CDONE_IE (1 << 19) /* Command Done Interrupt Enable */
  432. #define GCR_SDONE_IE (1 << 18) /* Status Done Interrupt Enable */
  433. #define GCR_SECRDY_IEN (1 << 9) /* Secondary Ready Interrupt Enable */
  434. #define GCR_PRIRDY_IEN (1 << 8) /* Primary Ready Interrupt Enable */
  435. #define GCR_SECRES_IEN (1 << 5) /* Secondary Resume Interrupt Enable */
  436. #define GCR_PRIRES_IEN (1 << 4) /* Primary Resume Interrupt Enable */
  437. #define GCR_ACLINK_OFF (1 << 3) /* AC-link Shut Off */
  438. #define GCR_WARM_RST (1 << 2) /* AC97 Warm Reset */
  439. #define GCR_COLD_RST (1 << 1) /* AC'97 Cold Reset (0 = active) */
  440. #define GCR_GIE (1 << 0) /* Codec GPI Interrupt Enable */
  441. #define POSR __REG(0x40500010) /* PCM Out Status Register */
  442. #define POSR_FIFOE (1 << 4) /* FIFO error */
  443. #define PISR __REG(0x40500014) /* PCM In Status Register */
  444. #define PISR_FIFOE (1 << 4) /* FIFO error */
  445. #define MCSR __REG(0x40500018) /* Mic In Status Register */
  446. #define MCSR_FIFOE (1 << 4) /* FIFO error */
  447. #define GSR __REG(0x4050001C) /* Global Status Register */
  448. #define GSR_CDONE (1 << 19) /* Command Done */
  449. #define GSR_SDONE (1 << 18) /* Status Done */
  450. #define GSR_RDCS (1 << 15) /* Read Completion Status */
  451. #define GSR_BIT3SLT12 (1 << 14) /* Bit 3 of slot 12 */
  452. #define GSR_BIT2SLT12 (1 << 13) /* Bit 2 of slot 12 */
  453. #define GSR_BIT1SLT12 (1 << 12) /* Bit 1 of slot 12 */
  454. #define GSR_SECRES (1 << 11) /* Secondary Resume Interrupt */
  455. #define GSR_PRIRES (1 << 10) /* Primary Resume Interrupt */
  456. #define GSR_SCR (1 << 9) /* Secondary Codec Ready */
  457. #define GSR_PCR (1 << 8) /* Primary Codec Ready */
  458. #define GSR_MINT (1 << 7) /* Mic In Interrupt */
  459. #define GSR_POINT (1 << 6) /* PCM Out Interrupt */
  460. #define GSR_PIINT (1 << 5) /* PCM In Interrupt */
  461. #define GSR_MOINT (1 << 2) /* Modem Out Interrupt */
  462. #define GSR_MIINT (1 << 1) /* Modem In Interrupt */
  463. #define GSR_GSCI (1 << 0) /* Codec GPI Status Change Interrupt */
  464. #define CAR __REG(0x40500020) /* CODEC Access Register */
  465. #define CAR_CAIP (1 << 0) /* Codec Access In Progress */
  466. #define PCDR __REG(0x40500040) /* PCM FIFO Data Register */
  467. #define MCDR __REG(0x40500060) /* Mic-in FIFO Data Register */
  468. #define MOCR __REG(0x40500100) /* Modem Out Control Register */
  469. #define MOCR_FEIE (1 << 3) /* FIFO Error */
  470. #define MICR __REG(0x40500108) /* Modem In Control Register */
  471. #define MICR_FEIE (1 << 3) /* FIFO Error */
  472. #define MOSR __REG(0x40500110) /* Modem Out Status Register */
  473. #define MOSR_FIFOE (1 << 4) /* FIFO error */
  474. #define MISR __REG(0x40500118) /* Modem In Status Register */
  475. #define MISR_FIFOE (1 << 4) /* FIFO error */
  476. #define MODR __REG(0x40500140) /* Modem FIFO Data Register */
  477. #define PAC_REG_BASE __REG(0x40500200) /* Primary Audio Codec */
  478. #define SAC_REG_BASE __REG(0x40500300) /* Secondary Audio Codec */
  479. #define PMC_REG_BASE __REG(0x40500400) /* Primary Modem Codec */
  480. #define SMC_REG_BASE __REG(0x40500500) /* Secondary Modem Codec */
  481. /*
  482. * USB Device Controller
  483. */
  484. #define UDCCR __REG(0x40600000) /* UDC Control Register */
  485. #define UDCCS0 __REG(0x40600010) /* UDC Endpoint 0 Control/Status Register */
  486. #define UDCCS1 __REG(0x40600014) /* UDC Endpoint 1 (IN) Control/Status Register */
  487. #define UDCCS2 __REG(0x40600018) /* UDC Endpoint 2 (OUT) Control/Status Register */
  488. #define UDCCS3 __REG(0x4060001C) /* UDC Endpoint 3 (IN) Control/Status Register */
  489. #define UDCCS4 __REG(0x40600020) /* UDC Endpoint 4 (OUT) Control/Status Register */
  490. #define UDCCS5 __REG(0x40600024) /* UDC Endpoint 5 (Interrupt) Control/Status Register */
  491. #define UDCCS6 __REG(0x40600028) /* UDC Endpoint 6 (IN) Control/Status Register */
  492. #define UDCCS7 __REG(0x4060002C) /* UDC Endpoint 7 (OUT) Control/Status Register */
  493. #define UDCCS8 __REG(0x40600030) /* UDC Endpoint 8 (IN) Control/Status Register */
  494. #define UDCCS9 __REG(0x40600034) /* UDC Endpoint 9 (OUT) Control/Status Register */
  495. #define UDCCS10 __REG(0x40600038) /* UDC Endpoint 10 (Interrupt) Control/Status Register */
  496. #define UDCCS11 __REG(0x4060003C) /* UDC Endpoint 11 (IN) Control/Status Register */
  497. #define UDCCS12 __REG(0x40600040) /* UDC Endpoint 12 (OUT) Control/Status Register */
  498. #define UDCCS13 __REG(0x40600044) /* UDC Endpoint 13 (IN) Control/Status Register */
  499. #define UDCCS14 __REG(0x40600048) /* UDC Endpoint 14 (OUT) Control/Status Register */
  500. #define UDCCS15 __REG(0x4060004C) /* UDC Endpoint 15 (Interrupt) Control/Status Register */
  501. #define UFNRH __REG(0x40600060) /* UDC Frame Number Register High */
  502. #define UFNRL __REG(0x40600064) /* UDC Frame Number Register Low */
  503. #define UBCR2 __REG(0x40600068) /* UDC Byte Count Reg 2 */
  504. #define UBCR4 __REG(0x4060006c) /* UDC Byte Count Reg 4 */
  505. #define UBCR7 __REG(0x40600070) /* UDC Byte Count Reg 7 */
  506. #define UBCR9 __REG(0x40600074) /* UDC Byte Count Reg 9 */
  507. #define UBCR12 __REG(0x40600078) /* UDC Byte Count Reg 12 */
  508. #define UBCR14 __REG(0x4060007c) /* UDC Byte Count Reg 14 */
  509. #define UDDR0 __REG(0x40600080) /* UDC Endpoint 0 Data Register */
  510. #define UDDR1 __REG(0x40600100) /* UDC Endpoint 1 Data Register */
  511. #define UDDR2 __REG(0x40600180) /* UDC Endpoint 2 Data Register */
  512. #define UDDR3 __REG(0x40600200) /* UDC Endpoint 3 Data Register */
  513. #define UDDR4 __REG(0x40600400) /* UDC Endpoint 4 Data Register */
  514. #define UDDR5 __REG(0x406000A0) /* UDC Endpoint 5 Data Register */
  515. #define UDDR6 __REG(0x40600600) /* UDC Endpoint 6 Data Register */
  516. #define UDDR7 __REG(0x40600680) /* UDC Endpoint 7 Data Register */
  517. #define UDDR8 __REG(0x40600700) /* UDC Endpoint 8 Data Register */
  518. #define UDDR9 __REG(0x40600900) /* UDC Endpoint 9 Data Register */
  519. #define UDDR10 __REG(0x406000C0) /* UDC Endpoint 10 Data Register */
  520. #define UDDR11 __REG(0x40600B00) /* UDC Endpoint 11 Data Register */
  521. #define UDDR12 __REG(0x40600B80) /* UDC Endpoint 12 Data Register */
  522. #define UDDR13 __REG(0x40600C00) /* UDC Endpoint 13 Data Register */
  523. #define UDDR14 __REG(0x40600E00) /* UDC Endpoint 14 Data Register */
  524. #define UDDR15 __REG(0x406000E0) /* UDC Endpoint 15 Data Register */
  525. #define UICR0 __REG(0x40600050) /* UDC Interrupt Control Register 0 */
  526. #define UICR1 __REG(0x40600054) /* UDC Interrupt Control Register 1 */
  527. #define USIR0 __REG(0x40600058) /* UDC Status Interrupt Register 0 */
  528. #define USIR1 __REG(0x4060005C) /* UDC Status Interrupt Register 1 */
  529. /*
  530. * Fast Infrared Communication Port
  531. */
  532. #define ICCR0 __REG(0x40800000) /* ICP Control Register 0 */
  533. #define ICCR1 __REG(0x40800004) /* ICP Control Register 1 */
  534. #define ICCR2 __REG(0x40800008) /* ICP Control Register 2 */
  535. #define ICDR __REG(0x4080000c) /* ICP Data Register */
  536. #define ICSR0 __REG(0x40800014) /* ICP Status Register 0 */
  537. #define ICSR1 __REG(0x40800018) /* ICP Status Register 1 */
  538. /*
  539. * Real Time Clock
  540. */
  541. #define RCNR __REG(0x40900000) /* RTC Count Register */
  542. #define RTAR __REG(0x40900004) /* RTC Alarm Register */
  543. #define RTSR __REG(0x40900008) /* RTC Status Register */
  544. #define RTTR __REG(0x4090000C) /* RTC Timer Trim Register */
  545. #define RTSR_HZE (1 << 3) /* HZ interrupt enable */
  546. #define RTSR_ALE (1 << 2) /* RTC alarm interrupt enable */
  547. #define RTSR_HZ (1 << 1) /* HZ rising-edge detected */
  548. #define RTSR_AL (1 << 0) /* RTC alarm detected */
  549. /*
  550. * OS Timer & Match Registers
  551. */
  552. #define OSMR0 __REG(0x40A00000) /* */
  553. #define OSMR1 __REG(0x40A00004) /* */
  554. #define OSMR2 __REG(0x40A00008) /* */
  555. #define OSMR3 __REG(0x40A0000C) /* */
  556. #define OSCR __REG(0x40A00010) /* OS Timer Counter Register */
  557. #define OSSR __REG(0x40A00014) /* OS Timer Status Register */
  558. #define OWER __REG(0x40A00018) /* OS Timer Watchdog Enable Register */
  559. #define OIER __REG(0x40A0001C) /* OS Timer Interrupt Enable Register */
  560. #define OSSR_M3 (1 << 3) /* Match status channel 3 */
  561. #define OSSR_M2 (1 << 2) /* Match status channel 2 */
  562. #define OSSR_M1 (1 << 1) /* Match status channel 1 */
  563. #define OSSR_M0 (1 << 0) /* Match status channel 0 */
  564. #define OWER_WME (1 << 0) /* Watchdog Match Enable */
  565. #define OIER_E3 (1 << 3) /* Interrupt enable channel 3 */
  566. #define OIER_E2 (1 << 2) /* Interrupt enable channel 2 */
  567. #define OIER_E1 (1 << 1) /* Interrupt enable channel 1 */
  568. #define OIER_E0 (1 << 0) /* Interrupt enable channel 0 */
  569. /*
  570. * Pulse Width Modulator
  571. */
  572. #define PWM_CTRL0 __REG(0x40B00000) /* PWM 0 Control Register */
  573. #define PWM_PWDUTY0 __REG(0x40B00004) /* PWM 0 Duty Cycle Register */
  574. #define PWM_PERVAL0 __REG(0x40B00008) /* PWM 0 Period Control Register */
  575. #define PWM_CTRL1 __REG(0x40C00000) /* PWM 1Control Register */
  576. #define PWM_PWDUTY1 __REG(0x40C00004) /* PWM 1 Duty Cycle Register */
  577. #define PWM_PERVAL1 __REG(0x40C00008) /* PWM 1 Period Control Register */
  578. /*
  579. * Interrupt Controller
  580. */
  581. #define ICIP __REG(0x40D00000) /* Interrupt Controller IRQ Pending Register */
  582. #define ICMR __REG(0x40D00004) /* Interrupt Controller Mask Register */
  583. #define ICLR __REG(0x40D00008) /* Interrupt Controller Level Register */
  584. #define ICFP __REG(0x40D0000C) /* Interrupt Controller FIQ Pending Register */
  585. #define ICPR __REG(0x40D00010) /* Interrupt Controller Pending Register */
  586. #define ICCR __REG(0x40D00014) /* Interrupt Controller Control Register */
  587. /*
  588. * General Purpose I/O
  589. */
  590. #define GPLR0 __REG(0x40E00000) /* GPIO Pin-Level Register GPIO<31:0> */
  591. #define GPLR1 __REG(0x40E00004) /* GPIO Pin-Level Register GPIO<63:32> */
  592. #define GPLR2 __REG(0x40E00008) /* GPIO Pin-Level Register GPIO<80:64> */
  593. #define GPDR0 __REG(0x40E0000C) /* GPIO Pin Direction Register GPIO<31:0> */
  594. #define GPDR1 __REG(0x40E00010) /* GPIO Pin Direction Register GPIO<63:32> */
  595. #define GPDR2 __REG(0x40E00014) /* GPIO Pin Direction Register GPIO<80:64> */
  596. #define GPSR0 __REG(0x40E00018) /* GPIO Pin Output Set Register GPIO<31:0> */
  597. #define GPSR1 __REG(0x40E0001C) /* GPIO Pin Output Set Register GPIO<63:32> */
  598. #define GPSR2 __REG(0x40E00020) /* GPIO Pin Output Set Register GPIO<80:64> */
  599. #define GPCR0 __REG(0x40E00024) /* GPIO Pin Output Clear Register GPIO<31:0> */
  600. #define GPCR1 __REG(0x40E00028) /* GPIO Pin Output Clear Register GPIO <63:32> */
  601. #define GPCR2 __REG(0x40E0002C) /* GPIO Pin Output Clear Register GPIO <80:64> */
  602. #define GRER0 __REG(0x40E00030) /* GPIO Rising-Edge Detect Register GPIO<31:0> */
  603. #define GRER1 __REG(0x40E00034) /* GPIO Rising-Edge Detect Register GPIO<63:32> */
  604. #define GRER2 __REG(0x40E00038) /* GPIO Rising-Edge Detect Register GPIO<80:64> */
  605. #define GFER0 __REG(0x40E0003C) /* GPIO Falling-Edge Detect Register GPIO<31:0> */
  606. #define GFER1 __REG(0x40E00040) /* GPIO Falling-Edge Detect Register GPIO<63:32> */
  607. #define GFER2 __REG(0x40E00044) /* GPIO Falling-Edge Detect Register GPIO<80:64> */
  608. #define GEDR0 __REG(0x40E00048) /* GPIO Edge Detect Status Register GPIO<31:0> */
  609. #define GEDR1 __REG(0x40E0004C) /* GPIO Edge Detect Status Register GPIO<63:32> */
  610. #define GEDR2 __REG(0x40E00050) /* GPIO Edge Detect Status Register GPIO<80:64> */
  611. #define GAFR0_L __REG(0x40E00054) /* GPIO Alternate Function Select Register GPIO<15:0> */
  612. #define GAFR0_U __REG(0x40E00058) /* GPIO Alternate Function Select Register GPIO<31:16> */
  613. #define GAFR1_L __REG(0x40E0005C) /* GPIO Alternate Function Select Register GPIO<47:32> */
  614. #define GAFR1_U __REG(0x40E00060) /* GPIO Alternate Function Select Register GPIO<63:48> */
  615. #define GAFR2_L __REG(0x40E00064) /* GPIO Alternate Function Select Register GPIO<79:64> */
  616. #define GAFR2_U __REG(0x40E00068) /* GPIO Alternate Function Select Register GPIO 80 */
  617. /* More handy macros. The argument is a literal GPIO number. */
  618. #define GPIO_bit(x) (1 << ((x) & 0x1f))
  619. #define GPLR(x) __REG2(0x40E00000, ((x) & 0x60) >> 3)
  620. #define GPDR(x) __REG2(0x40E0000C, ((x) & 0x60) >> 3)
  621. #define GPSR(x) __REG2(0x40E00018, ((x) & 0x60) >> 3)
  622. #define GPCR(x) __REG2(0x40E00024, ((x) & 0x60) >> 3)
  623. #define GRER(x) __REG2(0x40E00030, ((x) & 0x60) >> 3)
  624. #define GFER(x) __REG2(0x40E0003C, ((x) & 0x60) >> 3)
  625. #define GEDR(x) __REG2(0x40E00048, ((x) & 0x60) >> 3)
  626. #define GAFR(x) __REG2(0x40E00054, ((x) & 0x70) >> 2)
  627. /* GPIO alternate function assignments */
  628. #define GPIO1_RST 1 /* reset */
  629. #define GPIO6_MMCCLK 6 /* MMC Clock */
  630. #define GPIO8_48MHz 7 /* 48 MHz clock output */
  631. #define GPIO8_MMCCS0 8 /* MMC Chip Select 0 */
  632. #define GPIO9_MMCCS1 9 /* MMC Chip Select 1 */
  633. #define GPIO10_RTCCLK 10 /* real time clock (1 Hz) */
  634. #define GPIO11_3_6MHz 11 /* 3.6 MHz oscillator out */
  635. #define GPIO12_32KHz 12 /* 32 kHz out */
  636. #define GPIO13_MBGNT 13 /* memory controller grant */
  637. #define GPIO14_MBREQ 14 /* alternate bus master request */
  638. #define GPIO15_nCS_1 15 /* chip select 1 */
  639. #define GPIO16_PWM0 16 /* PWM0 output */
  640. #define GPIO17_PWM1 17 /* PWM1 output */
  641. #define GPIO18_RDY 18 /* Ext. Bus Ready */
  642. #define GPIO19_DREQ1 19 /* External DMA Request */
  643. #define GPIO20_DREQ0 20 /* External DMA Request */
  644. #define GPIO23_SCLK 23 /* SSP clock */
  645. #define GPIO24_SFRM 24 /* SSP Frame */
  646. #define GPIO25_STXD 25 /* SSP transmit */
  647. #define GPIO26_SRXD 26 /* SSP receive */
  648. #define GPIO27_SEXTCLK 27 /* SSP ext_clk */
  649. #define GPIO28_BITCLK 28 /* AC97/I2S bit_clk */
  650. #define GPIO29_SDATA_IN 29 /* AC97 Sdata_in0 / I2S Sdata_in */
  651. #define GPIO30_SDATA_OUT 30 /* AC97/I2S Sdata_out */
  652. #define GPIO31_SYNC 31 /* AC97/I2S sync */
  653. #define GPIO32_SDATA_IN1 32 /* AC97 Sdata_in1 */
  654. #define GPIO33_nCS_5 33 /* chip select 5 */
  655. #define GPIO34_FFRXD 34 /* FFUART receive */
  656. #define GPIO34_MMCCS0 34 /* MMC Chip Select 0 */
  657. #define GPIO35_FFCTS 35 /* FFUART Clear to send */
  658. #define GPIO36_FFDCD 36 /* FFUART Data carrier detect */
  659. #define GPIO37_FFDSR 37 /* FFUART data set ready */
  660. #define GPIO38_FFRI 38 /* FFUART Ring Indicator */
  661. #define GPIO39_MMCCS1 39 /* MMC Chip Select 1 */
  662. #define GPIO39_FFTXD 39 /* FFUART transmit data */
  663. #define GPIO40_FFDTR 40 /* FFUART data terminal Ready */
  664. #define GPIO41_FFRTS 41 /* FFUART request to send */
  665. #define GPIO42_BTRXD 42 /* BTUART receive data */
  666. #define GPIO43_BTTXD 43 /* BTUART transmit data */
  667. #define GPIO44_BTCTS 44 /* BTUART clear to send */
  668. #define GPIO45_BTRTS 45 /* BTUART request to send */
  669. #define GPIO46_ICPRXD 46 /* ICP receive data */
  670. #define GPIO46_STRXD 46 /* STD_UART receive data */
  671. #define GPIO47_ICPTXD 47 /* ICP transmit data */
  672. #define GPIO47_STTXD 47 /* STD_UART transmit data */
  673. #define GPIO48_nPOE 48 /* Output Enable for Card Space */
  674. #define GPIO49_nPWE 49 /* Write Enable for Card Space */
  675. #define GPIO50_nPIOR 50 /* I/O Read for Card Space */
  676. #define GPIO51_nPIOW 51 /* I/O Write for Card Space */
  677. #define GPIO52_nPCE_1 52 /* Card Enable for Card Space */
  678. #define GPIO53_nPCE_2 53 /* Card Enable for Card Space */
  679. #define GPIO53_MMCCLK 53 /* MMC Clock */
  680. #define GPIO54_MMCCLK 54 /* MMC Clock */
  681. #define GPIO54_pSKTSEL 54 /* Socket Select for Card Space */
  682. #define GPIO55_nPREG 55 /* Card Address bit 26 */
  683. #define GPIO56_nPWAIT 56 /* Wait signal for Card Space */
  684. #define GPIO57_nIOIS16 57 /* Bus Width select for I/O Card Space */
  685. #define GPIO58_LDD_0 58 /* LCD data pin 0 */
  686. #define GPIO59_LDD_1 59 /* LCD data pin 1 */
  687. #define GPIO60_LDD_2 60 /* LCD data pin 2 */
  688. #define GPIO61_LDD_3 61 /* LCD data pin 3 */
  689. #define GPIO62_LDD_4 62 /* LCD data pin 4 */
  690. #define GPIO63_LDD_5 63 /* LCD data pin 5 */
  691. #define GPIO64_LDD_6 64 /* LCD data pin 6 */
  692. #define GPIO65_LDD_7 65 /* LCD data pin 7 */
  693. #define GPIO66_LDD_8 66 /* LCD data pin 8 */
  694. #define GPIO66_MBREQ 66 /* alternate bus master req */
  695. #define GPIO67_LDD_9 67 /* LCD data pin 9 */
  696. #define GPIO67_MMCCS0 67 /* MMC Chip Select 0 */
  697. #define GPIO68_LDD_10 68 /* LCD data pin 10 */
  698. #define GPIO68_MMCCS1 68 /* MMC Chip Select 1 */
  699. #define GPIO69_LDD_11 69 /* LCD data pin 11 */
  700. #define GPIO69_MMCCLK 69 /* MMC_CLK */
  701. #define GPIO70_LDD_12 70 /* LCD data pin 12 */
  702. #define GPIO70_RTCCLK 70 /* Real Time clock (1 Hz) */
  703. #define GPIO71_LDD_13 71 /* LCD data pin 13 */
  704. #define GPIO71_3_6MHz 71 /* 3.6 MHz Oscillator clock */
  705. #define GPIO72_LDD_14 72 /* LCD data pin 14 */
  706. #define GPIO72_32kHz 72 /* 32 kHz clock */
  707. #define GPIO73_LDD_15 73 /* LCD data pin 15 */
  708. #define GPIO73_MBGNT 73 /* Memory controller grant */
  709. #define GPIO74_LCD_FCLK 74 /* LCD Frame clock */
  710. #define GPIO75_LCD_LCLK 75 /* LCD line clock */
  711. #define GPIO76_LCD_PCLK 76 /* LCD Pixel clock */
  712. #define GPIO77_LCD_ACBIAS 77 /* LCD AC Bias */
  713. #define GPIO78_nCS_2 78 /* chip select 2 */
  714. #define GPIO79_nCS_3 79 /* chip select 3 */
  715. #define GPIO80_nCS_4 80 /* chip select 4 */
  716. /* GPIO alternate function mode & direction */
  717. #define GPIO_IN 0x000
  718. #define GPIO_OUT 0x080
  719. #define GPIO_ALT_FN_1_IN 0x100
  720. #define GPIO_ALT_FN_1_OUT 0x180
  721. #define GPIO_ALT_FN_2_IN 0x200
  722. #define GPIO_ALT_FN_2_OUT 0x280
  723. #define GPIO_ALT_FN_3_IN 0x300
  724. #define GPIO_ALT_FN_3_OUT 0x380
  725. #define GPIO_MD_MASK_NR 0x07f
  726. #define GPIO_MD_MASK_DIR 0x080
  727. #define GPIO_MD_MASK_FN 0x300
  728. #define GPIO1_RTS_MD ( 1 | GPIO_ALT_FN_1_IN)
  729. #define GPIO6_MMCCLK_MD ( 6 | GPIO_ALT_FN_1_OUT)
  730. #define GPIO8_48MHz_MD ( 8 | GPIO_ALT_FN_1_OUT)
  731. #define GPIO8_MMCCS0_MD ( 8 | GPIO_ALT_FN_1_OUT)
  732. #define GPIO9_MMCCS1_MD ( 9 | GPIO_ALT_FN_1_OUT)
  733. #define GPIO10_RTCCLK_MD (10 | GPIO_ALT_FN_1_OUT)
  734. #define GPIO11_3_6MHz_MD (11 | GPIO_ALT_FN_1_OUT)
  735. #define GPIO12_32KHz_MD (12 | GPIO_ALT_FN_1_OUT)
  736. #define GPIO13_MBGNT_MD (13 | GPIO_ALT_FN_2_OUT)
  737. #define GPIO14_MBREQ_MD (14 | GPIO_ALT_FN_1_IN)
  738. #define GPIO15_nCS_1_MD (15 | GPIO_ALT_FN_2_OUT)
  739. #define GPIO16_PWM0_MD (16 | GPIO_ALT_FN_2_OUT)
  740. #define GPIO17_PWM1_MD (17 | GPIO_ALT_FN_2_OUT)
  741. #define GPIO18_RDY_MD (18 | GPIO_ALT_FN_1_IN)
  742. #define GPIO19_DREQ1_MD (19 | GPIO_ALT_FN_1_IN)
  743. #define GPIO20_DREQ0_MD (20 | GPIO_ALT_FN_1_IN)
  744. #define GPIO23_SCLK_md (23 | GPIO_ALT_FN_2_OUT)
  745. #define GPIO24_SFRM_MD (24 | GPIO_ALT_FN_2_OUT)
  746. #define GPIO25_STXD_MD (25 | GPIO_ALT_FN_2_OUT)
  747. #define GPIO26_SRXD_MD (26 | GPIO_ALT_FN_1_IN)
  748. #define GPIO27_SEXTCLK_MD (27 | GPIO_ALT_FN_1_IN)
  749. #define GPIO28_BITCLK_AC97_MD (28 | GPIO_ALT_FN_1_IN)
  750. #define GPIO28_BITCLK_I2S_MD (28 | GPIO_ALT_FN_2_IN)
  751. #define GPIO29_SDATA_IN_AC97_MD (29 | GPIO_ALT_FN_1_IN)
  752. #define GPIO29_SDATA_IN_I2S_MD (29 | GPIO_ALT_FN_2_IN)
  753. #define GPIO30_SDATA_OUT_AC97_MD (30 | GPIO_ALT_FN_2_OUT)
  754. #define GPIO30_SDATA_OUT_I2S_MD (30 | GPIO_ALT_FN_1_OUT)
  755. #define GPIO31_SYNC_AC97_MD (31 | GPIO_ALT_FN_2_OUT)
  756. #define GPIO31_SYNC_I2S_MD (31 | GPIO_ALT_FN_1_OUT)
  757. #define GPIO32_SDATA_IN1_AC97_MD (32 | GPIO_ALT_FN_1_IN)
  758. #define GPIO33_nCS_5_MD (33 | GPIO_ALT_FN_2_OUT)
  759. #define GPIO34_FFRXD_MD (34 | GPIO_ALT_FN_1_IN)
  760. #define GPIO34_MMCCS0_MD (34 | GPIO_ALT_FN_2_OUT)
  761. #define GPIO35_FFCTS_MD (35 | GPIO_ALT_FN_1_IN)
  762. #define GPIO36_FFDCD_MD (36 | GPIO_ALT_FN_1_IN)
  763. #define GPIO37_FFDSR_MD (37 | GPIO_ALT_FN_1_IN)
  764. #define GPIO38_FFRI_MD (38 | GPIO_ALT_FN_1_IN)
  765. #define GPIO39_MMCCS1_MD (39 | GPIO_ALT_FN_1_OUT)
  766. #define GPIO39_FFTXD_MD (39 | GPIO_ALT_FN_2_OUT)
  767. #define GPIO40_FFDTR_MD (40 | GPIO_ALT_FN_2_OUT)
  768. #define GPIO41_FFRTS_MD (41 | GPIO_ALT_FN_2_OUT)
  769. #define GPIO42_BTRXD_MD (42 | GPIO_ALT_FN_1_IN)
  770. #define GPIO43_BTTXD_MD (43 | GPIO_ALT_FN_2_OUT)
  771. #define GPIO44_BTCTS_MD (44 | GPIO_ALT_FN_1_IN)
  772. #define GPIO45_BTRTS_MD (45 | GPIO_ALT_FN_2_OUT)
  773. #define GPIO46_ICPRXD_MD (46 | GPIO_ALT_FN_1_IN)
  774. #define GPIO46_STRXD_MD (46 | GPIO_ALT_FN_2_IN)
  775. #define GPIO47_ICPTXD_MD (47 | GPIO_ALT_FN_2_OUT)
  776. #define GPIO47_STTXD_MD (47 | GPIO_ALT_FN_1_OUT)
  777. #define GPIO48_nPOE_MD (48 | GPIO_ALT_FN_2_OUT)
  778. #define GPIO49_nPWE_MD (49 | GPIO_ALT_FN_2_OUT)
  779. #define GPIO50_nPIOR_MD (50 | GPIO_ALT_FN_2_OUT)
  780. #define GPIO51_nPIOW_MD (51 | GPIO_ALT_FN_2_OUT)
  781. #define GPIO52_nPCE_1_MD (52 | GPIO_ALT_FN_2_OUT)
  782. #define GPIO53_nPCE_2_MD (53 | GPIO_ALT_FN_2_OUT)
  783. #define GPIO53_MMCCLK_MD (53 | GPIO_ALT_FN_1_OUT)
  784. #define GPIO54_MMCCLK_MD (54 | GPIO_ALT_FN_1_OUT)
  785. #define GPIO54_pSKTSEL_MD (54 | GPIO_ALT_FN_2_OUT)
  786. #define GPIO55_nPREG_MD (55 | GPIO_ALT_FN_2_OUT)
  787. #define GPIO56_nPWAIT_MD (56 | GPIO_ALT_FN_1_IN)
  788. #define GPIO57_nIOIS16_MD (57 | GPIO_ALT_FN_1_IN)
  789. #define GPIO58_LDD_0_MD (58 | GPIO_ALT_FN_2_OUT)
  790. #define GPIO59_LDD_1_MD (59 | GPIO_ALT_FN_2_OUT)
  791. #define GPIO60_LDD_2_MD (60 | GPIO_ALT_FN_2_OUT)
  792. #define GPIO61_LDD_3_MD (61 | GPIO_ALT_FN_2_OUT)
  793. #define GPIO62_LDD_4_MD (62 | GPIO_ALT_FN_2_OUT)
  794. #define GPIO63_LDD_5_MD (63 | GPIO_ALT_FN_2_OUT)
  795. #define GPIO64_LDD_6_MD (64 | GPIO_ALT_FN_2_OUT)
  796. #define GPIO65_LDD_7_MD (65 | GPIO_ALT_FN_2_OUT)
  797. #define GPIO66_LDD_8_MD (66 | GPIO_ALT_FN_2_OUT)
  798. #define GPIO66_MBREQ_MD (66 | GPIO_ALT_FN_1_IN)
  799. #define GPIO67_LDD_9_MD (67 | GPIO_ALT_FN_2_OUT)
  800. #define GPIO67_MMCCS0_MD (67 | GPIO_ALT_FN_1_OUT)
  801. #define GPIO68_LDD_10_MD (68 | GPIO_ALT_FN_2_OUT)
  802. #define GPIO68_MMCCS1_MD (68 | GPIO_ALT_FN_1_OUT)
  803. #define GPIO69_LDD_11_MD (69 | GPIO_ALT_FN_2_OUT)
  804. #define GPIO69_MMCCLK_MD (69 | GPIO_ALT_FN_1_OUT)
  805. #define GPIO70_LDD_12_MD (70 | GPIO_ALT_FN_2_OUT)
  806. #define GPIO70_RTCCLK_MD (70 | GPIO_ALT_FN_1_OUT)
  807. #define GPIO71_LDD_13_MD (71 | GPIO_ALT_FN_2_OUT)
  808. #define GPIO71_3_6MHz_MD (71 | GPIO_ALT_FN_1_OUT)
  809. #define GPIO72_LDD_14_MD (72 | GPIO_ALT_FN_2_OUT)
  810. #define GPIO72_32kHz_MD (72 | GPIO_ALT_FN_1_OUT)
  811. #define GPIO73_LDD_15_MD (73 | GPIO_ALT_FN_2_OUT)
  812. #define GPIO73_MBGNT_MD (73 | GPIO_ALT_FN_1_OUT)
  813. #define GPIO74_LCD_FCLK_MD (74 | GPIO_ALT_FN_2_OUT)
  814. #define GPIO75_LCD_LCLK_MD (75 | GPIO_ALT_FN_2_OUT)
  815. #define GPIO76_LCD_PCLK_MD (76 | GPIO_ALT_FN_2_OUT)
  816. #define GPIO77_LCD_ACBIAS_MD (77 | GPIO_ALT_FN_2_OUT)
  817. #define GPIO78_nCS_2_MD (78 | GPIO_ALT_FN_2_OUT)
  818. #define GPIO79_nCS_3_MD (79 | GPIO_ALT_FN_2_OUT)
  819. #define GPIO80_nCS_4_MD (80 | GPIO_ALT_FN_2_OUT)
  820. /*
  821. * Power Manager
  822. */
  823. #define PMCR __REG(0x40F00000) /* Power Manager Control Register */
  824. #define PSSR __REG(0x40F00004) /* Power Manager Sleep Status Register */
  825. #define PSPR __REG(0x40F00008) /* Power Manager Scratch Pad Register */
  826. #define PWER __REG(0x40F0000C) /* Power Manager Wake-up Enable Register */
  827. #define PRER __REG(0x40F00010) /* Power Manager GPIO Rising-Edge Detect Enable Register */
  828. #define PFER __REG(0x40F00014) /* Power Manager GPIO Falling-Edge Detect Enable Register */
  829. #define PEDR __REG(0x40F00018) /* Power Manager GPIO Edge Detect Status Register */
  830. #define PCFR __REG(0x40F0001C) /* Power Manager General Configuration Register */
  831. #define PGSR0 __REG(0x40F00020) /* Power Manager GPIO Sleep State Register for GP[31-0] */
  832. #define PGSR1 __REG(0x40F00024) /* Power Manager GPIO Sleep State Register for GP[63-32] */
  833. #define PGSR2 __REG(0x40F00028) /* Power Manager GPIO Sleep State Register for GP[84-64] */
  834. #define RCSR __REG(0x40F00030) /* Reset Controller Status Register */
  835. /*
  836. * SSP Serial Port Registers
  837. */
  838. #define SSCR0 __REG(0x41000000) /* SSP Control Register 0 */
  839. #define SSCR1 __REG(0x41000004) /* SSP Control Register 1 */
  840. #define SSSR __REG(0x41000008) /* SSP Status Register */
  841. #define SSITR __REG(0x4100000C) /* SSP Interrupt Test Register */
  842. #define SSDR __REG(0x41000010) /* (Write / Read) SSP Data Write Register/SSP Data Read Register */
  843. /*
  844. * MultiMediaCard (MMC) controller
  845. */
  846. #define MMC_STRPCL __REG(0x41100000) /* Control to start and stop MMC clock */
  847. #define MMC_STAT __REG(0x41100004) /* MMC Status Register (read only) */
  848. #define MMC_CLKRT __REG(0x41100008) /* MMC clock rate */
  849. #define MMC_SPI __REG(0x4110000c) /* SPI mode control bits */
  850. #define MMC_CMDAT __REG(0x41100010) /* Command/response/data sequence control */
  851. #define MMC_RESTO __REG(0x41100014) /* Expected response time out */
  852. #define MMC_RDTO __REG(0x41100018) /* Expected data read time out */
  853. #define MMC_BLKLEN __REG(0x4110001c) /* Block length of data transaction */
  854. #define MMC_NOB __REG(0x41100020) /* Number of blocks, for block mode */
  855. #define MMC_PRTBUF __REG(0x41100024) /* Partial MMC_TXFIFO FIFO written */
  856. #define MMC_I_MASK __REG(0x41100028) /* Interrupt Mask */
  857. #define MMC_I_REG __REG(0x4110002c) /* Interrupt Register (read only) */
  858. #define MMC_CMD __REG(0x41100030) /* Index of current command */
  859. #define MMC_ARGH __REG(0x41100034) /* MSW part of the current command argument */
  860. #define MMC_ARGL __REG(0x41100038) /* LSW part of the current command argument */
  861. #define MMC_RES __REG(0x4110003c) /* Response FIFO (read only) */
  862. #define MMC_RXFIFO __REG(0x41100040) /* Receive FIFO (read only) */
  863. #define MMC_TXFIFO __REG(0x41100044) /* Transmit FIFO (write only) */
  864. /*
  865. * Core Clock
  866. */
  867. #define CCCR __REG(0x41300000) /* Core Clock Configuration Register */
  868. #define CKEN __REG(0x41300004) /* Clock Enable Register */
  869. #define OSCC __REG(0x41300008) /* Oscillator Configuration Register */
  870. #define CCCR_N_MASK 0x0380 /* Run Mode Frequency to Turbo Mode Frequency Multiplier */
  871. #define CCCR_M_MASK 0x0060 /* Memory Frequency to Run Mode Frequency Multiplier */
  872. #define CCCR_L_MASK 0x001f /* Crystal Frequency to Memory Frequency Multiplier */
  873. #define CKEN16_LCD (1 << 16) /* LCD Unit Clock Enable */
  874. #define CKEN14_I2C (1 << 14) /* I2C Unit Clock Enable */
  875. #define CKEN13_FICP (1 << 13) /* FICP Unit Clock Enable */
  876. #define CKEN12_MMC (1 << 12) /* MMC Unit Clock Enable */
  877. #define CKEN11_USB (1 << 11) /* USB Unit Clock Enable */
  878. #define CKEN8_I2S (1 << 8) /* I2S Unit Clock Enable */
  879. #define CKEN7_BTUART (1 << 7) /* BTUART Unit Clock Enable */
  880. #define CKEN6_FFUART (1 << 6) /* FFUART Unit Clock Enable */
  881. #define CKEN5_STUART (1 << 5) /* STUART Unit Clock Enable */
  882. #define CKEN3_SSP (1 << 3) /* SSP Unit Clock Enable */
  883. #define CKEN2_AC97 (1 << 2) /* AC97 Unit Clock Enable */
  884. #define CKEN1_PWM1 (1 << 1) /* PWM1 Clock Enable */
  885. #define CKEN0_PWM0 (1 << 0) /* PWM0 Clock Enable */
  886. #define OSCC_OON (1 << 1) /* 32.768kHz OON (write-once only bit) */
  887. #define OSCC_OOK (1 << 0) /* 32.768kHz OOK (read-only bit) */
  888. #define CCCR_L09 (0x1F)
  889. #define CCCR_L27 (0x1)
  890. #define CCCR_L32 (0x2)
  891. #define CCCR_L36 (0x3)
  892. #define CCCR_L40 (0x4)
  893. #define CCCR_L45 (0x5)
  894. #define CCCR_M1 (0x1 << 5)
  895. #define CCCR_M2 (0x2 << 5)
  896. #define CCCR_M4 (0x3 << 5)
  897. #define CCCR_N10 (0x2 << 7)
  898. #define CCCR_N15 (0x3 << 7)
  899. #define CCCR_N20 (0x4 << 7)
  900. #define CCCR_N25 (0x5 << 7)
  901. #define CCCR_N30 (0x6 << 7)
  902. /*
  903. * LCD
  904. */
  905. #define LCCR0 __REG(0x44000000) /* LCD Controller Control Register 0 */
  906. #define LCCR1 __REG(0x44000004) /* LCD Controller Control Register 1 */
  907. #define LCCR2 __REG(0x44000008) /* LCD Controller Control Register 2 */
  908. #define LCCR3 __REG(0x4400000C) /* LCD Controller Control Register 3 */
  909. #define DFBR0 __REG(0x44000020) /* DMA Channel 0 Frame Branch Register */
  910. #define DFBR1 __REG(0x44000024) /* DMA Channel 1 Frame Branch Register */
  911. #define LCSR __REG(0x44000038) /* LCD Controller Status Register */
  912. #define LIIDR __REG(0x4400003C) /* LCD Controller Interrupt ID Register */
  913. #define TMEDRGBR __REG(0x44000040) /* TMED RGB Seed Register */
  914. #define TMEDCR __REG(0x44000044) /* TMED Control Register */
  915. #define FDADR0 __REG(0x44000200) /* DMA Channel 0 Frame Descriptor Address Register */
  916. #define FSADR0 __REG(0x44000204) /* DMA Channel 0 Frame Source Address Register */
  917. #define FIDR0 __REG(0x44000208) /* DMA Channel 0 Frame ID Register */
  918. #define LDCMD0 __REG(0x4400020C) /* DMA Channel 0 Command Register */
  919. #define FDADR1 __REG(0x44000210) /* DMA Channel 1 Frame Descriptor Address Register */
  920. #define FSADR1 __REG(0x44000214) /* DMA Channel 1 Frame Source Address Register */
  921. #define FIDR1 __REG(0x44000218) /* DMA Channel 1 Frame ID Register */
  922. #define LDCMD1 __REG(0x4400021C) /* DMA Channel 1 Command Register */
  923. #define LCCR0_ENB (1 << 0) /* LCD Controller enable */
  924. #define LCCR0_CMS (1 << 1) /* Color = 0, Monochrome = 1 */
  925. #define LCCR0_SDS (1 << 2) /* Single Panel = 0, Dual Panel = 1 */
  926. #define LCCR0_LDM (1 << 3) /* LCD Disable Done Mask */
  927. #define LCCR0_SFM (1 << 4) /* Start of frame mask */
  928. #define LCCR0_IUM (1 << 5) /* Input FIFO underrun mask */
  929. #define LCCR0_EFM (1 << 6) /* End of Frame mask */
  930. #define LCCR0_PAS (1 << 7) /* Passive = 0, Active = 1 */
  931. #define LCCR0_BLE (1 << 8) /* Little Endian = 0, Big Endian = 1 */
  932. #define LCCR0_DPD (1 << 9) /* Double Pixel mode, 4 pixel value = 0, 8 pixle values = 1 */
  933. #define LCCR0_DIS (1 << 10) /* LCD Disable */
  934. #define LCCR0_QDM (1 << 11) /* LCD Quick Disable mask */
  935. #define LCCR0_PDD (0xff << 12) /* Palette DMA request delay */
  936. #define LCCR0_PDD_S 12
  937. #define LCCR0_BM (1 << 20) /* Branch mask */
  938. #define LCCR0_OUM (1 << 21) /* Output FIFO underrun mask */
  939. #define LCCR3_PCD (0xff) /* Pixel clock divisor */
  940. #define LCCR3_ACB (0xff << 8) /* AC Bias pin frequency */
  941. #define LCCR3_ACB_S 8
  942. #define LCCR3_API (0xf << 16) /* AC Bias pin trasitions per interrupt */
  943. #define LCCR3_API_S 16
  944. #define LCCR3_VSP (1 << 20) /* vertical sync polarity */
  945. #define LCCR3_HSP (1 << 21) /* horizontal sync polarity */
  946. #define LCCR3_PCP (1 << 22) /* pixel clock polarity */
  947. #define LCCR3_OEP (1 << 23) /* output enable polarity */
  948. #define LCCR3_BPP (7 << 24) /* bits per pixel */
  949. #define LCCR3_BPP_S 24
  950. #define LCCR3_DPC (1 << 27) /* double pixel clock mode */
  951. #define LCSR_LDD (1 << 0) /* LCD Disable Done */
  952. #define LCSR_SOF (1 << 1) /* Start of frame */
  953. #define LCSR_BER (1 << 2) /* Bus error */
  954. #define LCSR_ABC (1 << 3) /* AC Bias count */
  955. #define LCSR_IUL (1 << 4) /* input FIFO underrun Lower panel */
  956. #define LCSR_IUU (1 << 5) /* input FIFO underrun Upper panel */
  957. #define LCSR_OU (1 << 6) /* output FIFO underrun */
  958. #define LCSR_QD (1 << 7) /* quick disable */
  959. #define LCSR_EOF (1 << 8) /* end of frame */
  960. #define LCSR_BS (1 << 9) /* branch status */
  961. #define LCSR_SINT (1 << 10) /* subsequent interrupt */
  962. #define LDCMD_PAL (1 << 26) /* instructs DMA to load palette buffer */
  963. /*
  964. * Memory controller
  965. */
  966. #define MEMC_BASE __REG(0x48000000) /* Base of Memoriy Controller */
  967. #define MDCNFG __REG(0x48000000) /* SDRAM Configuration Register 0 */
  968. #define MDREFR __REG(0x48000004) /* SDRAM Refresh Control Register */
  969. #define MSC0 __REG(0x48000008) /* Static Memory Control Register 0 */
  970. #define MSC1 __REG(0x4800000C) /* Static Memory Control Register 1 */
  971. #define MSC2 __REG(0x48000010) /* Static Memory Control Register 2 */
  972. #define MECR __REG(0x48000014) /* Expansion Memory (PCMCIA/Compact Flash) Bus Configuration */
  973. #define SXLCR __REG(0x48000018) /* LCR value to be written to SDRAM-Timing Synchronous Flash */
  974. #define SXCNFG __REG(0x4800001C) /* Synchronous Static Memory Control Register */
  975. #define SXMRS __REG(0x48000024) /* MRS value to be written to Synchronous Flash or SMROM */
  976. #define MCMEM0 __REG(0x48000028) /* Card interface Common Memory Space Socket 0 Timing */
  977. #define MCMEM1 __REG(0x4800002C) /* Card interface Common Memory Space Socket 1 Timing */
  978. #define MCATT0 __REG(0x48000030) /* Card interface Attribute Space Socket 0 Timing Configuration */
  979. #define MCATT1 __REG(0x48000034) /* Card interface Attribute Space Socket 1 Timing Configuration */
  980. #define MCIO0 __REG(0x48000038) /* Card interface I/O Space Socket 0 Timing Configuration */
  981. #define MCIO1 __REG(0x4800003C) /* Card interface I/O Space Socket 1 Timing Configuration */
  982. #define MDMRS __REG(0x48000040) /* MRS value to be written to SDRAM */
  983. #define BOOT_DEF __REG(0x48000044) /* Read-Only Boot-Time Register. Contains BOOT_SEL and PKG_SEL */
  984. #define MDCNFG_DE0 0x00000001
  985. #define MDCNFG_DE1 0x00000002
  986. #define MDCNFG_DE2 0x00010000
  987. #define MDCNFG_DE3 0x00020000
  988. #define MDCNFG_DWID0 0x00000004
  989. #define MDREFR_E0PIN 0x00001000
  990. #define MDREFR_K0RUN 0x00002000
  991. #define MDREFR_K0DB2 0x00004000
  992. #define MDREFR_E1PIN 0x00008000
  993. #define MDREFR_K1RUN 0x00010000
  994. #define MDREFR_K1DB2 0x00020000
  995. #define MDREFR_K2RUN 0x00040000
  996. #define MDREFR_K2DB2 0x00080000
  997. #define MDREFR_APD 0x00100000
  998. #define MDREFR_SLFRSH 0x00400000
  999. #define MDREFR_K0FREE 0x00800000
  1000. #define MDREFR_K1FREE 0x01000000
  1001. #define MDREFR_K2FREE 0x02000000
  1002. #define MDCNFG_OFFSET 0x0
  1003. #define MDREFR_OFFSET 0x4
  1004. #define MSC0_OFFSET 0x8
  1005. #define MSC1_OFFSET 0xC
  1006. #define MSC2_OFFSET 0x10
  1007. #define MECR_OFFSET 0x14
  1008. #define SXLCR_OFFSET 0x18
  1009. #define SXCNFG_OFFSET 0x1C
  1010. #define FLYCNFG_OFFSET 0x20
  1011. #define SXMRS_OFFSET 0x24
  1012. #define MCMEM0_OFFSET 0x28
  1013. #define MCMEM1_OFFSET 0x2C
  1014. #define MCATT0_OFFSET 0x30
  1015. #define MCATT1_OFFSET 0x34
  1016. #define MCIO0_OFFSET 0x38
  1017. #define MCIO1_OFFSET 0x3C
  1018. #define MDMRS_OFFSET 0x40
  1019. #endif /* PXA_REGS_H */