pxa-regs.h 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367
  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
  14. /*
  15. * PXA Chip selects
  16. */
  17. #define PXA_CS0_PHYS 0x00000000
  18. #define PXA_CS1_PHYS 0x04000000
  19. #define PXA_CS2_PHYS 0x08000000
  20. #define PXA_CS3_PHYS 0x0C000000
  21. #define PXA_CS4_PHYS 0x10000000
  22. #define PXA_CS5_PHYS 0x14000000
  23. /*
  24. * Personal Computer Memory Card International Association (PCMCIA) sockets
  25. */
  26. #define PCMCIAPrtSp 0x04000000 /* PCMCIA Partition Space [byte] */
  27. #define PCMCIASp (4*PCMCIAPrtSp) /* PCMCIA Space [byte] */
  28. #define PCMCIAIOSp PCMCIAPrtSp /* PCMCIA I/O Space [byte] */
  29. #define PCMCIAAttrSp PCMCIAPrtSp /* PCMCIA Attribute Space [byte] */
  30. #define PCMCIAMemSp PCMCIAPrtSp /* PCMCIA Memory Space [byte] */
  31. #define PCMCIA0Sp PCMCIASp /* PCMCIA 0 Space [byte] */
  32. #define PCMCIA0IOSp PCMCIAIOSp /* PCMCIA 0 I/O Space [byte] */
  33. #define PCMCIA0AttrSp PCMCIAAttrSp /* PCMCIA 0 Attribute Space [byte] */
  34. #define PCMCIA0MemSp PCMCIAMemSp /* PCMCIA 0 Memory Space [byte] */
  35. #define PCMCIA1Sp PCMCIASp /* PCMCIA 1 Space [byte] */
  36. #define PCMCIA1IOSp PCMCIAIOSp /* PCMCIA 1 I/O Space [byte] */
  37. #define PCMCIA1AttrSp PCMCIAAttrSp /* PCMCIA 1 Attribute Space [byte] */
  38. #define PCMCIA1MemSp PCMCIAMemSp /* PCMCIA 1 Memory Space [byte] */
  39. #define _PCMCIA(Nb) /* PCMCIA [0..1] */ \
  40. (0x20000000 + (Nb)*PCMCIASp)
  41. #define _PCMCIAIO(Nb) _PCMCIA (Nb) /* PCMCIA I/O [0..1] */
  42. #define _PCMCIAAttr(Nb) /* PCMCIA Attribute [0..1] */ \
  43. (_PCMCIA (Nb) + 2*PCMCIAPrtSp)
  44. #define _PCMCIAMem(Nb) /* PCMCIA Memory [0..1] */ \
  45. (_PCMCIA (Nb) + 3*PCMCIAPrtSp)
  46. #define _PCMCIA0 _PCMCIA (0) /* PCMCIA 0 */
  47. #define _PCMCIA0IO _PCMCIAIO (0) /* PCMCIA 0 I/O */
  48. #define _PCMCIA0Attr _PCMCIAAttr (0) /* PCMCIA 0 Attribute */
  49. #define _PCMCIA0Mem _PCMCIAMem (0) /* PCMCIA 0 Memory */
  50. #define _PCMCIA1 _PCMCIA (1) /* PCMCIA 1 */
  51. #define _PCMCIA1IO _PCMCIAIO (1) /* PCMCIA 1 I/O */
  52. #define _PCMCIA1Attr _PCMCIAAttr (1) /* PCMCIA 1 Attribute */
  53. #define _PCMCIA1Mem _PCMCIAMem (1) /* PCMCIA 1 Memory */
  54. /*
  55. * DMA Controller
  56. */
  57. #define DCSR0 __REG(0x40000000) /* DMA Control / Status Register for Channel 0 */
  58. #define DCSR1 __REG(0x40000004) /* DMA Control / Status Register for Channel 1 */
  59. #define DCSR2 __REG(0x40000008) /* DMA Control / Status Register for Channel 2 */
  60. #define DCSR3 __REG(0x4000000c) /* DMA Control / Status Register for Channel 3 */
  61. #define DCSR4 __REG(0x40000010) /* DMA Control / Status Register for Channel 4 */
  62. #define DCSR5 __REG(0x40000014) /* DMA Control / Status Register for Channel 5 */
  63. #define DCSR6 __REG(0x40000018) /* DMA Control / Status Register for Channel 6 */
  64. #define DCSR7 __REG(0x4000001c) /* DMA Control / Status Register for Channel 7 */
  65. #define DCSR8 __REG(0x40000020) /* DMA Control / Status Register for Channel 8 */
  66. #define DCSR9 __REG(0x40000024) /* DMA Control / Status Register for Channel 9 */
  67. #define DCSR10 __REG(0x40000028) /* DMA Control / Status Register for Channel 10 */
  68. #define DCSR11 __REG(0x4000002c) /* DMA Control / Status Register for Channel 11 */
  69. #define DCSR12 __REG(0x40000030) /* DMA Control / Status Register for Channel 12 */
  70. #define DCSR13 __REG(0x40000034) /* DMA Control / Status Register for Channel 13 */
  71. #define DCSR14 __REG(0x40000038) /* DMA Control / Status Register for Channel 14 */
  72. #define DCSR15 __REG(0x4000003c) /* DMA Control / Status Register for Channel 15 */
  73. #define DCSR(x) __REG2(0x40000000, (x) << 2)
  74. #define DCSR_RUN (1 << 31) /* Run Bit (read / write) */
  75. #define DCSR_NODESC (1 << 30) /* No-Descriptor Fetch (read / write) */
  76. #define DCSR_STOPIRQEN (1 << 29) /* Stop Interrupt Enable (read / write) */
  77. #ifdef CONFIG_PXA27x
  78. #define DCSR_EORIRQEN (1 << 28) /* End of Receive Interrupt Enable (R/W) */
  79. #define DCSR_EORJMPEN (1 << 27) /* Jump to next descriptor on EOR */
  80. #define DCSR_EORSTOPEN (1 << 26) /* STOP on an EOR */
  81. #define DCSR_SETCMPST (1 << 25) /* Set Descriptor Compare Status */
  82. #define DCSR_CLRCMPST (1 << 24) /* Clear Descriptor Compare Status */
  83. #define DCSR_CMPST (1 << 10) /* The Descriptor Compare Status */
  84. #define DCSR_ENRINTR (1 << 9) /* The end of Receive */
  85. #endif
  86. #define DCSR_REQPEND (1 << 8) /* Request Pending (read-only) */
  87. #define DCSR_STOPSTATE (1 << 3) /* Stop State (read-only) */
  88. #define DCSR_ENDINTR (1 << 2) /* End Interrupt (read / write) */
  89. #define DCSR_STARTINTR (1 << 1) /* Start Interrupt (read / write) */
  90. #define DCSR_BUSERR (1 << 0) /* Bus Error Interrupt (read / write) */
  91. #define DALGN __REG(0x400000a0) /* DMA Alignment Register */
  92. #define DINT __REG(0x400000f0) /* DMA Interrupt Register */
  93. #define DRCMR(n) __REG2(0x40000100, (n)<<2)
  94. #define DRCMR0 __REG(0x40000100) /* Request to Channel Map Register for DREQ 0 */
  95. #define DRCMR1 __REG(0x40000104) /* Request to Channel Map Register for DREQ 1 */
  96. #define DRCMR2 __REG(0x40000108) /* Request to Channel Map Register for I2S receive Request */
  97. #define DRCMR3 __REG(0x4000010c) /* Request to Channel Map Register for I2S transmit Request */
  98. #define DRCMR4 __REG(0x40000110) /* Request to Channel Map Register for BTUART receive Request */
  99. #define DRCMR5 __REG(0x40000114) /* Request to Channel Map Register for BTUART transmit Request. */
  100. #define DRCMR6 __REG(0x40000118) /* Request to Channel Map Register for FFUART receive Request */
  101. #define DRCMR7 __REG(0x4000011c) /* Request to Channel Map Register for FFUART transmit Request */
  102. #define DRCMR8 __REG(0x40000120) /* Request to Channel Map Register for AC97 microphone Request */
  103. #define DRCMR9 __REG(0x40000124) /* Request to Channel Map Register for AC97 modem receive Request */
  104. #define DRCMR10 __REG(0x40000128) /* Request to Channel Map Register for AC97 modem transmit Request */
  105. #define DRCMR11 __REG(0x4000012c) /* Request to Channel Map Register for AC97 audio receive Request */
  106. #define DRCMR12 __REG(0x40000130) /* Request to Channel Map Register for AC97 audio transmit Request */
  107. #define DRCMR13 __REG(0x40000134) /* Request to Channel Map Register for SSP receive Request */
  108. #define DRCMR14 __REG(0x40000138) /* Request to Channel Map Register for SSP transmit Request */
  109. #define DRCMR15 __REG(0x4000013c) /* Request to Channel Map Register for SSP2 receive Request */
  110. #define DRCMR16 __REG(0x40000140) /* Request to Channel Map Register for SSP2 transmit Request */
  111. #define DRCMR17 __REG(0x40000144) /* Request to Channel Map Register for ICP receive Request */
  112. #define DRCMR18 __REG(0x40000148) /* Request to Channel Map Register for ICP transmit Request */
  113. #define DRCMR19 __REG(0x4000014c) /* Request to Channel Map Register for STUART receive Request */
  114. #define DRCMR20 __REG(0x40000150) /* Request to Channel Map Register for STUART transmit Request */
  115. #define DRCMR21 __REG(0x40000154) /* Request to Channel Map Register for MMC receive Request */
  116. #define DRCMR22 __REG(0x40000158) /* Request to Channel Map Register for MMC transmit Request */
  117. #define DRCMR23 __REG(0x4000015c) /* Reserved */
  118. #define DRCMR24 __REG(0x40000160) /* Reserved */
  119. #define DRCMR25 __REG(0x40000164) /* Request to Channel Map Register for USB endpoint 1 Request */
  120. #define DRCMR26 __REG(0x40000168) /* Request to Channel Map Register for USB endpoint 2 Request */
  121. #define DRCMR27 __REG(0x4000016C) /* Request to Channel Map Register for USB endpoint 3 Request */
  122. #define DRCMR28 __REG(0x40000170) /* Request to Channel Map Register for USB endpoint 4 Request */
  123. #define DRCMR29 __REG(0x40000174) /* Reserved */
  124. #define DRCMR30 __REG(0x40000178) /* Request to Channel Map Register for USB endpoint 6 Request */
  125. #define DRCMR31 __REG(0x4000017C) /* Request to Channel Map Register for USB endpoint 7 Request */
  126. #define DRCMR32 __REG(0x40000180) /* Request to Channel Map Register for USB endpoint 8 Request */
  127. #define DRCMR33 __REG(0x40000184) /* Request to Channel Map Register for USB endpoint 9 Request */
  128. #define DRCMR34 __REG(0x40000188) /* Reserved */
  129. #define DRCMR35 __REG(0x4000018C) /* Request to Channel Map Register for USB endpoint 11 Request */
  130. #define DRCMR36 __REG(0x40000190) /* Request to Channel Map Register for USB endpoint 12 Request */
  131. #define DRCMR37 __REG(0x40000194) /* Request to Channel Map Register for USB endpoint 13 Request */
  132. #define DRCMR38 __REG(0x40000198) /* Request to Channel Map Register for USB endpoint 14 Request */
  133. #define DRCMR39 __REG(0x4000019C) /* Reserved */
  134. #define DRCMR66 __REG(0x40001108) /* Request to Channel Map Register for SSP3 receive Request */
  135. #define DRCMR67 __REG(0x4000110C) /* Request to Channel Map Register for SSP3 transmit Request */
  136. #define DRCMR68 __REG(0x40001110) /* Request to Channel Map Register for Camera FIFO 0 Request */
  137. #define DRCMR69 __REG(0x40001114) /* Request to Channel Map Register for Camera FIFO 1 Request */
  138. #define DRCMR70 __REG(0x40001118) /* Request to Channel Map Register for Camera FIFO 2 Request */
  139. #define DRCMRRXSADR DRCMR2
  140. #define DRCMRTXSADR DRCMR3
  141. #define DRCMRRXBTRBR DRCMR4
  142. #define DRCMRTXBTTHR DRCMR5
  143. #define DRCMRRXFFRBR DRCMR6
  144. #define DRCMRTXFFTHR DRCMR7
  145. #define DRCMRRXMCDR DRCMR8
  146. #define DRCMRRXMODR DRCMR9
  147. #define DRCMRTXMODR DRCMR10
  148. #define DRCMRRXPCDR DRCMR11
  149. #define DRCMRTXPCDR DRCMR12
  150. #define DRCMRRXSSDR DRCMR13
  151. #define DRCMRTXSSDR DRCMR14
  152. #define DRCMRRXSS2DR DRCMR15
  153. #define DRCMRTXSS2DR DRCMR16
  154. #define DRCMRRXICDR DRCMR17
  155. #define DRCMRTXICDR DRCMR18
  156. #define DRCMRRXSTRBR DRCMR19
  157. #define DRCMRTXSTTHR DRCMR20
  158. #define DRCMRRXMMC DRCMR21
  159. #define DRCMRTXMMC DRCMR22
  160. #define DRCMRRXSS3DR DRCMR66
  161. #define DRCMRTXSS3DR DRCMR67
  162. #define DRCMRUDC(x) DRCMR((x) + 24)
  163. #define DRCMR_MAPVLD (1 << 7) /* Map Valid (read / write) */
  164. #define DRCMR_CHLNUM 0x1f /* mask for Channel Number (read / write) */
  165. #define DDADR0 __REG(0x40000200) /* DMA Descriptor Address Register Channel 0 */
  166. #define DSADR0 __REG(0x40000204) /* DMA Source Address Register Channel 0 */
  167. #define DTADR0 __REG(0x40000208) /* DMA Target Address Register Channel 0 */
  168. #define DCMD0 __REG(0x4000020c) /* DMA Command Address Register Channel 0 */
  169. #define DDADR1 __REG(0x40000210) /* DMA Descriptor Address Register Channel 1 */
  170. #define DSADR1 __REG(0x40000214) /* DMA Source Address Register Channel 1 */
  171. #define DTADR1 __REG(0x40000218) /* DMA Target Address Register Channel 1 */
  172. #define DCMD1 __REG(0x4000021c) /* DMA Command Address Register Channel 1 */
  173. #define DDADR2 __REG(0x40000220) /* DMA Descriptor Address Register Channel 2 */
  174. #define DSADR2 __REG(0x40000224) /* DMA Source Address Register Channel 2 */
  175. #define DTADR2 __REG(0x40000228) /* DMA Target Address Register Channel 2 */
  176. #define DCMD2 __REG(0x4000022c) /* DMA Command Address Register Channel 2 */
  177. #define DDADR3 __REG(0x40000230) /* DMA Descriptor Address Register Channel 3 */
  178. #define DSADR3 __REG(0x40000234) /* DMA Source Address Register Channel 3 */
  179. #define DTADR3 __REG(0x40000238) /* DMA Target Address Register Channel 3 */
  180. #define DCMD3 __REG(0x4000023c) /* DMA Command Address Register Channel 3 */
  181. #define DDADR4 __REG(0x40000240) /* DMA Descriptor Address Register Channel 4 */
  182. #define DSADR4 __REG(0x40000244) /* DMA Source Address Register Channel 4 */
  183. #define DTADR4 __REG(0x40000248) /* DMA Target Address Register Channel 4 */
  184. #define DCMD4 __REG(0x4000024c) /* DMA Command Address Register Channel 4 */
  185. #define DDADR5 __REG(0x40000250) /* DMA Descriptor Address Register Channel 5 */
  186. #define DSADR5 __REG(0x40000254) /* DMA Source Address Register Channel 5 */
  187. #define DTADR5 __REG(0x40000258) /* DMA Target Address Register Channel 5 */
  188. #define DCMD5 __REG(0x4000025c) /* DMA Command Address Register Channel 5 */
  189. #define DDADR6 __REG(0x40000260) /* DMA Descriptor Address Register Channel 6 */
  190. #define DSADR6 __REG(0x40000264) /* DMA Source Address Register Channel 6 */
  191. #define DTADR6 __REG(0x40000268) /* DMA Target Address Register Channel 6 */
  192. #define DCMD6 __REG(0x4000026c) /* DMA Command Address Register Channel 6 */
  193. #define DDADR7 __REG(0x40000270) /* DMA Descriptor Address Register Channel 7 */
  194. #define DSADR7 __REG(0x40000274) /* DMA Source Address Register Channel 7 */
  195. #define DTADR7 __REG(0x40000278) /* DMA Target Address Register Channel 7 */
  196. #define DCMD7 __REG(0x4000027c) /* DMA Command Address Register Channel 7 */
  197. #define DDADR8 __REG(0x40000280) /* DMA Descriptor Address Register Channel 8 */
  198. #define DSADR8 __REG(0x40000284) /* DMA Source Address Register Channel 8 */
  199. #define DTADR8 __REG(0x40000288) /* DMA Target Address Register Channel 8 */
  200. #define DCMD8 __REG(0x4000028c) /* DMA Command Address Register Channel 8 */
  201. #define DDADR9 __REG(0x40000290) /* DMA Descriptor Address Register Channel 9 */
  202. #define DSADR9 __REG(0x40000294) /* DMA Source Address Register Channel 9 */
  203. #define DTADR9 __REG(0x40000298) /* DMA Target Address Register Channel 9 */
  204. #define DCMD9 __REG(0x4000029c) /* DMA Command Address Register Channel 9 */
  205. #define DDADR10 __REG(0x400002a0) /* DMA Descriptor Address Register Channel 10 */
  206. #define DSADR10 __REG(0x400002a4) /* DMA Source Address Register Channel 10 */
  207. #define DTADR10 __REG(0x400002a8) /* DMA Target Address Register Channel 10 */
  208. #define DCMD10 __REG(0x400002ac) /* DMA Command Address Register Channel 10 */
  209. #define DDADR11 __REG(0x400002b0) /* DMA Descriptor Address Register Channel 11 */
  210. #define DSADR11 __REG(0x400002b4) /* DMA Source Address Register Channel 11 */
  211. #define DTADR11 __REG(0x400002b8) /* DMA Target Address Register Channel 11 */
  212. #define DCMD11 __REG(0x400002bc) /* DMA Command Address Register Channel 11 */
  213. #define DDADR12 __REG(0x400002c0) /* DMA Descriptor Address Register Channel 12 */
  214. #define DSADR12 __REG(0x400002c4) /* DMA Source Address Register Channel 12 */
  215. #define DTADR12 __REG(0x400002c8) /* DMA Target Address Register Channel 12 */
  216. #define DCMD12 __REG(0x400002cc) /* DMA Command Address Register Channel 12 */
  217. #define DDADR13 __REG(0x400002d0) /* DMA Descriptor Address Register Channel 13 */
  218. #define DSADR13 __REG(0x400002d4) /* DMA Source Address Register Channel 13 */
  219. #define DTADR13 __REG(0x400002d8) /* DMA Target Address Register Channel 13 */
  220. #define DCMD13 __REG(0x400002dc) /* DMA Command Address Register Channel 13 */
  221. #define DDADR14 __REG(0x400002e0) /* DMA Descriptor Address Register Channel 14 */
  222. #define DSADR14 __REG(0x400002e4) /* DMA Source Address Register Channel 14 */
  223. #define DTADR14 __REG(0x400002e8) /* DMA Target Address Register Channel 14 */
  224. #define DCMD14 __REG(0x400002ec) /* DMA Command Address Register Channel 14 */
  225. #define DDADR15 __REG(0x400002f0) /* DMA Descriptor Address Register Channel 15 */
  226. #define DSADR15 __REG(0x400002f4) /* DMA Source Address Register Channel 15 */
  227. #define DTADR15 __REG(0x400002f8) /* DMA Target Address Register Channel 15 */
  228. #define DCMD15 __REG(0x400002fc) /* DMA Command Address Register Channel 15 */
  229. #define DDADR(x) __REG2(0x40000200, (x) << 4)
  230. #define DSADR(x) __REG2(0x40000204, (x) << 4)
  231. #define DTADR(x) __REG2(0x40000208, (x) << 4)
  232. #define DCMD(x) __REG2(0x4000020c, (x) << 4)
  233. #define DDADR_DESCADDR 0xfffffff0 /* Address of next descriptor (mask) */
  234. #define DDADR_STOP (1 << 0) /* Stop (read / write) */
  235. #define DCMD_INCSRCADDR (1 << 31) /* Source Address Increment Setting. */
  236. #define DCMD_INCTRGADDR (1 << 30) /* Target Address Increment Setting. */
  237. #define DCMD_FLOWSRC (1 << 29) /* Flow Control by the source. */
  238. #define DCMD_FLOWTRG (1 << 28) /* Flow Control by the target. */
  239. #define DCMD_STARTIRQEN (1 << 22) /* Start Interrupt Enable */
  240. #define DCMD_ENDIRQEN (1 << 21) /* End Interrupt Enable */
  241. #define DCMD_ENDIAN (1 << 18) /* Device Endian-ness. */
  242. #define DCMD_BURST8 (1 << 16) /* 8 byte burst */
  243. #define DCMD_BURST16 (2 << 16) /* 16 byte burst */
  244. #define DCMD_BURST32 (3 << 16) /* 32 byte burst */
  245. #define DCMD_WIDTH1 (1 << 14) /* 1 byte width */
  246. #define DCMD_WIDTH2 (2 << 14) /* 2 byte width (HalfWord) */
  247. #define DCMD_WIDTH4 (3 << 14) /* 4 byte width (Word) */
  248. #define DCMD_LENGTH 0x01fff /* length mask (max = 8K - 1) */
  249. /*
  250. * UARTs
  251. */
  252. /* Full Function UART (FFUART) */
  253. #define FFUART FFRBR
  254. #define FFRBR __REG(0x40100000) /* Receive Buffer Register (read only) */
  255. #define FFTHR __REG(0x40100000) /* Transmit Holding Register (write only) */
  256. #define FFIER __REG(0x40100004) /* Interrupt Enable Register (read/write) */
  257. #define FFIIR __REG(0x40100008) /* Interrupt ID Register (read only) */
  258. #define FFFCR __REG(0x40100008) /* FIFO Control Register (write only) */
  259. #define FFLCR __REG(0x4010000C) /* Line Control Register (read/write) */
  260. #define FFMCR __REG(0x40100010) /* Modem Control Register (read/write) */
  261. #define FFLSR __REG(0x40100014) /* Line Status Register (read only) */
  262. #define FFMSR __REG(0x40100018) /* Modem Status Register (read only) */
  263. #define FFSPR __REG(0x4010001C) /* Scratch Pad Register (read/write) */
  264. #define FFISR __REG(0x40100020) /* Infrared Selection Register (read/write) */
  265. #define FFDLL __REG(0x40100000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  266. #define FFDLH __REG(0x40100004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  267. /* Bluetooth UART (BTUART) */
  268. #define BTUART BTRBR
  269. #define BTRBR __REG(0x40200000) /* Receive Buffer Register (read only) */
  270. #define BTTHR __REG(0x40200000) /* Transmit Holding Register (write only) */
  271. #define BTIER __REG(0x40200004) /* Interrupt Enable Register (read/write) */
  272. #define BTIIR __REG(0x40200008) /* Interrupt ID Register (read only) */
  273. #define BTFCR __REG(0x40200008) /* FIFO Control Register (write only) */
  274. #define BTLCR __REG(0x4020000C) /* Line Control Register (read/write) */
  275. #define BTMCR __REG(0x40200010) /* Modem Control Register (read/write) */
  276. #define BTLSR __REG(0x40200014) /* Line Status Register (read only) */
  277. #define BTMSR __REG(0x40200018) /* Modem Status Register (read only) */
  278. #define BTSPR __REG(0x4020001C) /* Scratch Pad Register (read/write) */
  279. #define BTISR __REG(0x40200020) /* Infrared Selection Register (read/write) */
  280. #define BTDLL __REG(0x40200000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  281. #define BTDLH __REG(0x40200004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  282. /* Standard UART (STUART) */
  283. #define STUART STRBR
  284. #define STRBR __REG(0x40700000) /* Receive Buffer Register (read only) */
  285. #define STTHR __REG(0x40700000) /* Transmit Holding Register (write only) */
  286. #define STIER __REG(0x40700004) /* Interrupt Enable Register (read/write) */
  287. #define STIIR __REG(0x40700008) /* Interrupt ID Register (read only) */
  288. #define STFCR __REG(0x40700008) /* FIFO Control Register (write only) */
  289. #define STLCR __REG(0x4070000C) /* Line Control Register (read/write) */
  290. #define STMCR __REG(0x40700010) /* Modem Control Register (read/write) */
  291. #define STLSR __REG(0x40700014) /* Line Status Register (read only) */
  292. #define STMSR __REG(0x40700018) /* Reserved */
  293. #define STSPR __REG(0x4070001C) /* Scratch Pad Register (read/write) */
  294. #define STISR __REG(0x40700020) /* Infrared Selection Register (read/write) */
  295. #define STDLL __REG(0x40700000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  296. #define STDLH __REG(0x40700004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  297. /* Hardware UART (HWUART) */
  298. #define HWUART HWRBR
  299. #define HWRBR __REG(0x41600000) /* Receive Buffer Register (read only) */
  300. #define HWTHR __REG(0x41600000) /* Transmit Holding Register (write only) */
  301. #define HWIER __REG(0x41600004) /* Interrupt Enable Register (read/write) */
  302. #define HWIIR __REG(0x41600008) /* Interrupt ID Register (read only) */
  303. #define HWFCR __REG(0x41600008) /* FIFO Control Register (write only) */
  304. #define HWLCR __REG(0x4160000C) /* Line Control Register (read/write) */
  305. #define HWMCR __REG(0x41600010) /* Modem Control Register (read/write) */
  306. #define HWLSR __REG(0x41600014) /* Line Status Register (read only) */
  307. #define HWMSR __REG(0x41600018) /* Modem Status Register (read only) */
  308. #define HWSPR __REG(0x4160001C) /* Scratch Pad Register (read/write) */
  309. #define HWISR __REG(0x41600020) /* Infrared Selection Register (read/write) */
  310. #define HWFOR __REG(0x41600024) /* Receive FIFO Occupancy Register (read only) */
  311. #define HWABR __REG(0x41600028) /* Auto-Baud Control Register (read/write) */
  312. #define HWACR __REG(0x4160002C) /* Auto-Baud Count Register (read only) */
  313. #define HWDLL __REG(0x41600000) /* Divisor Latch Low Register (DLAB = 1) (read/write) */
  314. #define HWDLH __REG(0x41600004) /* Divisor Latch High Register (DLAB = 1) (read/write) */
  315. #define IER_DMAE (1 << 7) /* DMA Requests Enable */
  316. #define IER_UUE (1 << 6) /* UART Unit Enable */
  317. #define IER_NRZE (1 << 5) /* NRZ coding Enable */
  318. #define IER_RTIOE (1 << 4) /* Receiver Time Out Interrupt Enable */
  319. #define IER_MIE (1 << 3) /* Modem Interrupt Enable */
  320. #define IER_RLSE (1 << 2) /* Receiver Line Status Interrupt Enable */
  321. #define IER_TIE (1 << 1) /* Transmit Data request Interrupt Enable */
  322. #define IER_RAVIE (1 << 0) /* Receiver Data Available Interrupt Enable */
  323. #define IIR_FIFOES1 (1 << 7) /* FIFO Mode Enable Status */
  324. #define IIR_FIFOES0 (1 << 6) /* FIFO Mode Enable Status */
  325. #define IIR_TOD (1 << 3) /* Time Out Detected */
  326. #define IIR_IID2 (1 << 2) /* Interrupt Source Encoded */
  327. #define IIR_IID1 (1 << 1) /* Interrupt Source Encoded */
  328. #define IIR_IP (1 << 0) /* Interrupt Pending (active low) */
  329. #define FCR_ITL2 (1 << 7) /* Interrupt Trigger Level */
  330. #define FCR_ITL1 (1 << 6) /* Interrupt Trigger Level */
  331. #define FCR_RESETTF (1 << 2) /* Reset Transmitter FIFO */
  332. #define FCR_RESETRF (1 << 1) /* Reset Receiver FIFO */
  333. #define FCR_TRFIFOE (1 << 0) /* Transmit and Receive FIFO Enable */
  334. #define FCR_ITL_1 (0)
  335. #define FCR_ITL_8 (FCR_ITL1)
  336. #define FCR_ITL_16 (FCR_ITL2)
  337. #define FCR_ITL_32 (FCR_ITL2|FCR_ITL1)
  338. #define LCR_DLAB (1 << 7) /* Divisor Latch Access Bit */
  339. #define LCR_SB (1 << 6) /* Set Break */
  340. #define LCR_STKYP (1 << 5) /* Sticky Parity */
  341. #define LCR_EPS (1 << 4) /* Even Parity Select */
  342. #define LCR_PEN (1 << 3) /* Parity Enable */
  343. #define LCR_STB (1 << 2) /* Stop Bit */
  344. #define LCR_WLS1 (1 << 1) /* Word Length Select */
  345. #define LCR_WLS0 (1 << 0) /* Word Length Select */
  346. #define LSR_FIFOE (1 << 7) /* FIFO Error Status */
  347. #define LSR_TEMT (1 << 6) /* Transmitter Empty */
  348. #define LSR_TDRQ (1 << 5) /* Transmit Data Request */
  349. #define LSR_BI (1 << 4) /* Break Interrupt */
  350. #define LSR_FE (1 << 3) /* Framing Error */
  351. #define LSR_PE (1 << 2) /* Parity Error */
  352. #define LSR_OE (1 << 1) /* Overrun Error */
  353. #define LSR_DR (1 << 0) /* Data Ready */
  354. #define MCR_LOOP (1 << 4)
  355. #define MCR_OUT2 (1 << 3) /* force MSR_DCD in loopback mode */
  356. #define MCR_OUT1 (1 << 2) /* force MSR_RI in loopback mode */
  357. #define MCR_RTS (1 << 1) /* Request to Send */
  358. #define MCR_DTR (1 << 0) /* Data Terminal Ready */
  359. #define MSR_DCD (1 << 7) /* Data Carrier Detect */
  360. #define MSR_RI (1 << 6) /* Ring Indicator */
  361. #define MSR_DSR (1 << 5) /* Data Set Ready */
  362. #define MSR_CTS (1 << 4) /* Clear To Send */
  363. #define MSR_DDCD (1 << 3) /* Delta Data Carrier Detect */
  364. #define MSR_TERI (1 << 2) /* Trailing Edge Ring Indicator */
  365. #define MSR_DDSR (1 << 1) /* Delta Data Set Ready */
  366. #define MSR_DCTS (1 << 0) /* Delta Clear To Send */
  367. /*
  368. * IrSR (Infrared Selection Register)
  369. */
  370. #define STISR_RXPL (1 << 4) /* Receive Data Polarity */
  371. #define STISR_TXPL (1 << 3) /* Transmit Data Polarity */
  372. #define STISR_XMODE (1 << 2) /* Transmit Pulse Width Select */
  373. #define STISR_RCVEIR (1 << 1) /* Receiver SIR Enable */
  374. #define STISR_XMITIR (1 << 0) /* Transmitter SIR Enable */
  375. /*
  376. * I2C registers
  377. */
  378. #define IBMR __REG(0x40301680) /* I2C Bus Monitor Register - IBMR */
  379. #define IDBR __REG(0x40301688) /* I2C Data Buffer Register - IDBR */
  380. #define ICR __REG(0x40301690) /* I2C Control Register - ICR */
  381. #define ISR __REG(0x40301698) /* I2C Status Register - ISR */
  382. #define ISAR __REG(0x403016A0) /* I2C Slave Address Register - ISAR */
  383. #define PWRIBMR __REG(0x40f00180) /* Power I2C Bus Monitor Register-IBMR */
  384. #define PWRIDBR __REG(0x40f00188) /* Power I2C Data Buffer Register-IDBR */
  385. #define PWRICR __REG(0x40f00190) /* Power I2C Control Register - ICR */
  386. #define PWRISR __REG(0x40f00198) /* Power I2C Status Register - ISR */
  387. #define PWRISAR __REG(0x40f001A0) /*Power I2C Slave Address Register-ISAR */
  388. #define ICR_START (1 << 0) /* start bit */
  389. #define ICR_STOP (1 << 1) /* stop bit */
  390. #define ICR_ACKNAK (1 << 2) /* send ACK(0) or NAK(1) */
  391. #define ICR_TB (1 << 3) /* transfer byte bit */
  392. #define ICR_MA (1 << 4) /* master abort */
  393. #define ICR_SCLE (1 << 5) /* master clock enable */
  394. #define ICR_IUE (1 << 6) /* unit enable */
  395. #define ICR_GCD (1 << 7) /* general call disable */
  396. #define ICR_ITEIE (1 << 8) /* enable tx interrupts */
  397. #define ICR_IRFIE (1 << 9) /* enable rx interrupts */
  398. #define ICR_BEIE (1 << 10) /* enable bus error ints */
  399. #define ICR_SSDIE (1 << 11) /* slave STOP detected int enable */
  400. #define ICR_ALDIE (1 << 12) /* enable arbitration interrupt */
  401. #define ICR_SADIE (1 << 13) /* slave address detected int enable */
  402. #define ICR_UR (1 << 14) /* unit reset */
  403. #define ISR_RWM (1 << 0) /* read/write mode */
  404. #define ISR_ACKNAK (1 << 1) /* ack/nak status */
  405. #define ISR_UB (1 << 2) /* unit busy */
  406. #define ISR_IBB (1 << 3) /* bus busy */
  407. #define ISR_SSD (1 << 4) /* slave stop detected */
  408. #define ISR_ALD (1 << 5) /* arbitration loss detected */
  409. #define ISR_ITE (1 << 6) /* tx buffer empty */
  410. #define ISR_IRF (1 << 7) /* rx buffer full */
  411. #define ISR_GCAD (1 << 8) /* general call address detected */
  412. #define ISR_SAD (1 << 9) /* slave address detected */
  413. #define ISR_BED (1 << 10) /* bus error no ACK/NAK */
  414. /*
  415. * Serial Audio Controller
  416. */
  417. /* FIXME: This clash with SA1111 defines */
  418. #ifndef _ASM_ARCH_SA1111
  419. #define SACR0 __REG(0x40400000) /* Global Control Register */
  420. #define SACR1 __REG(0x40400004) /* Serial Audio I 2 S/MSB-Justified Control Register */
  421. #define SASR0 __REG(0x4040000C) /* Serial Audio I 2 S/MSB-Justified Interface and FIFO Status Register */
  422. #define SAIMR __REG(0x40400014) /* Serial Audio Interrupt Mask Register */
  423. #define SAICR __REG(0x40400018) /* Serial Audio Interrupt Clear Register */
  424. #define SADIV __REG(0x40400060) /* Audio Clock Divider Register. */
  425. #define SADR __REG(0x40400080) /* Serial Audio Data Register (TX and RX FIFO access Register). */
  426. #define SACR0_RFTH(x) (x << 12) /* Rx FIFO Interrupt or DMA Trigger Threshold */
  427. #define SACR0_TFTH(x) (x << 8) /* Tx FIFO Interrupt or DMA Trigger Threshold */
  428. #define SACR0_STRF (1 << 5) /* FIFO Select for EFWR Special Function */
  429. #define SACR0_EFWR (1 << 4) /* Enable EFWR Function */
  430. #define SACR0_RST (1 << 3) /* FIFO, i2s Register Reset */
  431. #define SACR0_BCKD (1 << 2) /* Bit Clock Direction */
  432. #define SACR0_ENB (1 << 0) /* Enable I2S Link */
  433. #define SACR1_ENLBF (1 << 5) /* Enable Loopback */
  434. #define SACR1_DRPL (1 << 4) /* Disable Replaying Function */
  435. #define SACR1_DREC (1 << 3) /* Disable Recording Function */
  436. #define SACR1_AMSL (1 << 0) /* Specify Alternate Mode */
  437. #define SASR0_I2SOFF (1 << 7) /* Controller Status */
  438. #define SASR0_ROR (1 << 6) /* Rx FIFO Overrun */
  439. #define SASR0_TUR (1 << 5) /* Tx FIFO Underrun */
  440. #define SASR0_RFS (1 << 4) /* Rx FIFO Service Request */
  441. #define SASR0_TFS (1 << 3) /* Tx FIFO Service Request */
  442. #define SASR0_BSY (1 << 2) /* I2S Busy */
  443. #define SASR0_RNE (1 << 1) /* Rx FIFO Not Empty */
  444. #define SASR0_TNF (1 << 0) /* Tx FIFO Not Empty */
  445. #define SAICR_ROR (1 << 6) /* Clear Rx FIFO Overrun Interrupt */
  446. #define SAICR_TUR (1 << 5) /* Clear Tx FIFO Underrun Interrupt */
  447. #define SAIMR_ROR (1 << 6) /* Enable Rx FIFO Overrun Condition Interrupt */
  448. #define SAIMR_TUR (1 << 5) /* Enable Tx FIFO Underrun Condition Interrupt */
  449. #define SAIMR_RFS (1 << 4) /* Enable Rx FIFO Service Interrupt */
  450. #define SAIMR_TFS (1 << 3) /* Enable Tx FIFO Service Interrupt */
  451. #endif
  452. /*
  453. * AC97 Controller registers
  454. */
  455. #define POCR __REG(0x40500000) /* PCM Out Control Register */
  456. #define POCR_FEIE (1 << 3) /* FIFO Error Interrupt Enable */
  457. #define POCR_FSRIE (1 << 1) /* FIFO Service Request Interrupt Enable */
  458. #define PICR __REG(0x40500004) /* PCM In Control Register */
  459. #define PICR_FEIE (1 << 3) /* FIFO Error Interrupt Enable */
  460. #define PICR_FSRIE (1 << 1) /* FIFO Service Request Interrupt Enable */
  461. #define MCCR __REG(0x40500008) /* Mic In Control Register */
  462. #define MCCR_FEIE (1 << 3) /* FIFO Error Interrupt Enable */
  463. #define MCCR_FSRIE (1 << 1) /* FIFO Service Request Interrupt Enable */
  464. #define GCR __REG(0x4050000C) /* Global Control Register */
  465. #define GCR_nDMAEN (1 << 24) /* non DMA Enable */
  466. #define GCR_CDONE_IE (1 << 19) /* Command Done Interrupt Enable */
  467. #define GCR_SDONE_IE (1 << 18) /* Status Done Interrupt Enable */
  468. #define GCR_SECRDY_IEN (1 << 9) /* Secondary Ready Interrupt Enable */
  469. #define GCR_PRIRDY_IEN (1 << 8) /* Primary Ready Interrupt Enable */
  470. #define GCR_SECRES_IEN (1 << 5) /* Secondary Resume Interrupt Enable */
  471. #define GCR_PRIRES_IEN (1 << 4) /* Primary Resume Interrupt Enable */
  472. #define GCR_ACLINK_OFF (1 << 3) /* AC-link Shut Off */
  473. #define GCR_WARM_RST (1 << 2) /* AC97 Warm Reset */
  474. #define GCR_COLD_RST (1 << 1) /* AC'97 Cold Reset (0 = active) */
  475. #define GCR_GIE (1 << 0) /* Codec GPI Interrupt Enable */
  476. #define POSR __REG(0x40500010) /* PCM Out Status Register */
  477. #define POSR_FIFOE (1 << 4) /* FIFO error */
  478. #define POSR_FSR (1 << 2) /* FIFO Service Request */
  479. #define PISR __REG(0x40500014) /* PCM In Status Register */
  480. #define PISR_FIFOE (1 << 4) /* FIFO error */
  481. #define PISR_EOC (1 << 3) /* DMA End-of-Chain (exclusive clear) */
  482. #define PISR_FSR (1 << 2) /* FIFO Service Request */
  483. #define MCSR __REG(0x40500018) /* Mic In Status Register */
  484. #define MCSR_FIFOE (1 << 4) /* FIFO error */
  485. #define MCSR_EOC (1 << 3) /* DMA End-of-Chain (exclusive clear) */
  486. #define MCSR_FSR (1 << 2) /* FIFO Service Request */
  487. #define GSR __REG(0x4050001C) /* Global Status Register */
  488. #define GSR_CDONE (1 << 19) /* Command Done */
  489. #define GSR_SDONE (1 << 18) /* Status Done */
  490. #define GSR_RDCS (1 << 15) /* Read Completion Status */
  491. #define GSR_BIT3SLT12 (1 << 14) /* Bit 3 of slot 12 */
  492. #define GSR_BIT2SLT12 (1 << 13) /* Bit 2 of slot 12 */
  493. #define GSR_BIT1SLT12 (1 << 12) /* Bit 1 of slot 12 */
  494. #define GSR_SECRES (1 << 11) /* Secondary Resume Interrupt */
  495. #define GSR_PRIRES (1 << 10) /* Primary Resume Interrupt */
  496. #define GSR_SCR (1 << 9) /* Secondary Codec Ready */
  497. #define GSR_PCR (1 << 8) /* Primary Codec Ready */
  498. #define GSR_MCINT (1 << 7) /* Mic In Interrupt */
  499. #define GSR_POINT (1 << 6) /* PCM Out Interrupt */
  500. #define GSR_PIINT (1 << 5) /* PCM In Interrupt */
  501. #define GSR_ACOFFD (1 << 3) /* AC-link Shut Off Done */
  502. #define GSR_MOINT (1 << 2) /* Modem Out Interrupt */
  503. #define GSR_MIINT (1 << 1) /* Modem In Interrupt */
  504. #define GSR_GSCI (1 << 0) /* Codec GPI Status Change Interrupt */
  505. #define CAR __REG(0x40500020) /* CODEC Access Register */
  506. #define CAR_CAIP (1 << 0) /* Codec Access In Progress */
  507. #define PCDR __REG(0x40500040) /* PCM FIFO Data Register */
  508. #define MCDR __REG(0x40500060) /* Mic-in FIFO Data Register */
  509. #define MOCR __REG(0x40500100) /* Modem Out Control Register */
  510. #define MOCR_FEIE (1 << 3) /* FIFO Error */
  511. #define MOCR_FSRIE (1 << 1) /* FIFO Service Request Interrupt Enable */
  512. #define MICR __REG(0x40500108) /* Modem In Control Register */
  513. #define MICR_FEIE (1 << 3) /* FIFO Error */
  514. #define MICR_FSRIE (1 << 1) /* FIFO Service Request Interrupt Enable */
  515. #define MOSR __REG(0x40500110) /* Modem Out Status Register */
  516. #define MOSR_FIFOE (1 << 4) /* FIFO error */
  517. #define MOSR_FSR (1 << 2) /* FIFO Service Request */
  518. #define MISR __REG(0x40500118) /* Modem In Status Register */
  519. #define MISR_FIFOE (1 << 4) /* FIFO error */
  520. #define MISR_EOC (1 << 3) /* DMA End-of-Chain (exclusive clear) */
  521. #define MISR_FSR (1 << 2) /* FIFO Service Request */
  522. #define MODR __REG(0x40500140) /* Modem FIFO Data Register */
  523. #define PAC_REG_BASE __REG(0x40500200) /* Primary Audio Codec */
  524. #define SAC_REG_BASE __REG(0x40500300) /* Secondary Audio Codec */
  525. #define PMC_REG_BASE __REG(0x40500400) /* Primary Modem Codec */
  526. #define SMC_REG_BASE __REG(0x40500500) /* Secondary Modem Codec */
  527. /*
  528. * USB Device Controller
  529. * PXA25x and PXA27x USB device controller registers are different.
  530. */
  531. #if defined(CONFIG_PXA25x)
  532. #define UDC_RES1 __REG(0x40600004) /* UDC Undocumented - Reserved1 */
  533. #define UDC_RES2 __REG(0x40600008) /* UDC Undocumented - Reserved2 */
  534. #define UDC_RES3 __REG(0x4060000C) /* UDC Undocumented - Reserved3 */
  535. #define UDCCR __REG(0x40600000) /* UDC Control Register */
  536. #define UDCCR_UDE (1 << 0) /* UDC enable */
  537. #define UDCCR_UDA (1 << 1) /* UDC active */
  538. #define UDCCR_RSM (1 << 2) /* Device resume */
  539. #define UDCCR_RESIR (1 << 3) /* Resume interrupt request */
  540. #define UDCCR_SUSIR (1 << 4) /* Suspend interrupt request */
  541. #define UDCCR_SRM (1 << 5) /* Suspend/resume interrupt mask */
  542. #define UDCCR_RSTIR (1 << 6) /* Reset interrupt request */
  543. #define UDCCR_REM (1 << 7) /* Reset interrupt mask */
  544. #define UDCCS0 __REG(0x40600010) /* UDC Endpoint 0 Control/Status Register */
  545. #define UDCCS0_OPR (1 << 0) /* OUT packet ready */
  546. #define UDCCS0_IPR (1 << 1) /* IN packet ready */
  547. #define UDCCS0_FTF (1 << 2) /* Flush Tx FIFO */
  548. #define UDCCS0_DRWF (1 << 3) /* Device remote wakeup feature */
  549. #define UDCCS0_SST (1 << 4) /* Sent stall */
  550. #define UDCCS0_FST (1 << 5) /* Force stall */
  551. #define UDCCS0_RNE (1 << 6) /* Receive FIFO no empty */
  552. #define UDCCS0_SA (1 << 7) /* Setup active */
  553. /* Bulk IN - Endpoint 1,6,11 */
  554. #define UDCCS1 __REG(0x40600014) /* UDC Endpoint 1 (IN) Control/Status Register */
  555. #define UDCCS6 __REG(0x40600028) /* UDC Endpoint 6 (IN) Control/Status Register */
  556. #define UDCCS11 __REG(0x4060003C) /* UDC Endpoint 11 (IN) Control/Status Register */
  557. #define UDCCS_BI_TFS (1 << 0) /* Transmit FIFO service */
  558. #define UDCCS_BI_TPC (1 << 1) /* Transmit packet complete */
  559. #define UDCCS_BI_FTF (1 << 2) /* Flush Tx FIFO */
  560. #define UDCCS_BI_TUR (1 << 3) /* Transmit FIFO underrun */
  561. #define UDCCS_BI_SST (1 << 4) /* Sent stall */
  562. #define UDCCS_BI_FST (1 << 5) /* Force stall */
  563. #define UDCCS_BI_TSP (1 << 7) /* Transmit short packet */
  564. /* Bulk OUT - Endpoint 2,7,12 */
  565. #define UDCCS2 __REG(0x40600018) /* UDC Endpoint 2 (OUT) Control/Status Register */
  566. #define UDCCS7 __REG(0x4060002C) /* UDC Endpoint 7 (OUT) Control/Status Register */
  567. #define UDCCS12 __REG(0x40600040) /* UDC Endpoint 12 (OUT) Control/Status Register */
  568. #define UDCCS_BO_RFS (1 << 0) /* Receive FIFO service */
  569. #define UDCCS_BO_RPC (1 << 1) /* Receive packet complete */
  570. #define UDCCS_BO_DME (1 << 3) /* DMA enable */
  571. #define UDCCS_BO_SST (1 << 4) /* Sent stall */
  572. #define UDCCS_BO_FST (1 << 5) /* Force stall */
  573. #define UDCCS_BO_RNE (1 << 6) /* Receive FIFO not empty */
  574. #define UDCCS_BO_RSP (1 << 7) /* Receive short packet */
  575. /* Isochronous IN - Endpoint 3,8,13 */
  576. #define UDCCS3 __REG(0x4060001C) /* UDC Endpoint 3 (IN) Control/Status Register */
  577. #define UDCCS8 __REG(0x40600030) /* UDC Endpoint 8 (IN) Control/Status Register */
  578. #define UDCCS13 __REG(0x40600044) /* UDC Endpoint 13 (IN) Control/Status Register */
  579. #define UDCCS_II_TFS (1 << 0) /* Transmit FIFO service */
  580. #define UDCCS_II_TPC (1 << 1) /* Transmit packet complete */
  581. #define UDCCS_II_FTF (1 << 2) /* Flush Tx FIFO */
  582. #define UDCCS_II_TUR (1 << 3) /* Transmit FIFO underrun */
  583. #define UDCCS_II_TSP (1 << 7) /* Transmit short packet */
  584. /* Isochronous OUT - Endpoint 4,9,14 */
  585. #define UDCCS4 __REG(0x40600020) /* UDC Endpoint 4 (OUT) Control/Status Register */
  586. #define UDCCS9 __REG(0x40600034) /* UDC Endpoint 9 (OUT) Control/Status Register */
  587. #define UDCCS14 __REG(0x40600048) /* UDC Endpoint 14 (OUT) Control/Status Register */
  588. #define UDCCS_IO_RFS (1 << 0) /* Receive FIFO service */
  589. #define UDCCS_IO_RPC (1 << 1) /* Receive packet complete */
  590. #define UDCCS_IO_ROF (1 << 2) /* Receive overflow */
  591. #define UDCCS_IO_DME (1 << 3) /* DMA enable */
  592. #define UDCCS_IO_RNE (1 << 6) /* Receive FIFO not empty */
  593. #define UDCCS_IO_RSP (1 << 7) /* Receive short packet */
  594. /* Interrupt IN - Endpoint 5,10,15 */
  595. #define UDCCS5 __REG(0x40600024) /* UDC Endpoint 5 (Interrupt) Control/Status Register */
  596. #define UDCCS10 __REG(0x40600038) /* UDC Endpoint 10 (Interrupt) Control/Status Register */
  597. #define UDCCS15 __REG(0x4060004C) /* UDC Endpoint 15 (Interrupt) Control/Status Register */
  598. #define UDCCS_INT_TFS (1 << 0) /* Transmit FIFO service */
  599. #define UDCCS_INT_TPC (1 << 1) /* Transmit packet complete */
  600. #define UDCCS_INT_FTF (1 << 2) /* Flush Tx FIFO */
  601. #define UDCCS_INT_TUR (1 << 3) /* Transmit FIFO underrun */
  602. #define UDCCS_INT_SST (1 << 4) /* Sent stall */
  603. #define UDCCS_INT_FST (1 << 5) /* Force stall */
  604. #define UDCCS_INT_TSP (1 << 7) /* Transmit short packet */
  605. #define UFNRH __REG(0x40600060) /* UDC Frame Number Register High */
  606. #define UFNRL __REG(0x40600064) /* UDC Frame Number Register Low */
  607. #define UBCR2 __REG(0x40600068) /* UDC Byte Count Reg 2 */
  608. #define UBCR4 __REG(0x4060006c) /* UDC Byte Count Reg 4 */
  609. #define UBCR7 __REG(0x40600070) /* UDC Byte Count Reg 7 */
  610. #define UBCR9 __REG(0x40600074) /* UDC Byte Count Reg 9 */
  611. #define UBCR12 __REG(0x40600078) /* UDC Byte Count Reg 12 */
  612. #define UBCR14 __REG(0x4060007c) /* UDC Byte Count Reg 14 */
  613. #define UDDR0 __REG(0x40600080) /* UDC Endpoint 0 Data Register */
  614. #define UDDR1 __REG(0x40600100) /* UDC Endpoint 1 Data Register */
  615. #define UDDR2 __REG(0x40600180) /* UDC Endpoint 2 Data Register */
  616. #define UDDR3 __REG(0x40600200) /* UDC Endpoint 3 Data Register */
  617. #define UDDR4 __REG(0x40600400) /* UDC Endpoint 4 Data Register */
  618. #define UDDR5 __REG(0x406000A0) /* UDC Endpoint 5 Data Register */
  619. #define UDDR6 __REG(0x40600600) /* UDC Endpoint 6 Data Register */
  620. #define UDDR7 __REG(0x40600680) /* UDC Endpoint 7 Data Register */
  621. #define UDDR8 __REG(0x40600700) /* UDC Endpoint 8 Data Register */
  622. #define UDDR9 __REG(0x40600900) /* UDC Endpoint 9 Data Register */
  623. #define UDDR10 __REG(0x406000C0) /* UDC Endpoint 10 Data Register */
  624. #define UDDR11 __REG(0x40600B00) /* UDC Endpoint 11 Data Register */
  625. #define UDDR12 __REG(0x40600B80) /* UDC Endpoint 12 Data Register */
  626. #define UDDR13 __REG(0x40600C00) /* UDC Endpoint 13 Data Register */
  627. #define UDDR14 __REG(0x40600E00) /* UDC Endpoint 14 Data Register */
  628. #define UDDR15 __REG(0x406000E0) /* UDC Endpoint 15 Data Register */
  629. #define UICR0 __REG(0x40600050) /* UDC Interrupt Control Register 0 */
  630. #define UICR0_IM0 (1 << 0) /* Interrupt mask ep 0 */
  631. #define UICR0_IM1 (1 << 1) /* Interrupt mask ep 1 */
  632. #define UICR0_IM2 (1 << 2) /* Interrupt mask ep 2 */
  633. #define UICR0_IM3 (1 << 3) /* Interrupt mask ep 3 */
  634. #define UICR0_IM4 (1 << 4) /* Interrupt mask ep 4 */
  635. #define UICR0_IM5 (1 << 5) /* Interrupt mask ep 5 */
  636. #define UICR0_IM6 (1 << 6) /* Interrupt mask ep 6 */
  637. #define UICR0_IM7 (1 << 7) /* Interrupt mask ep 7 */
  638. #define UICR1 __REG(0x40600054) /* UDC Interrupt Control Register 1 */
  639. #define UICR1_IM8 (1 << 0) /* Interrupt mask ep 8 */
  640. #define UICR1_IM9 (1 << 1) /* Interrupt mask ep 9 */
  641. #define UICR1_IM10 (1 << 2) /* Interrupt mask ep 10 */
  642. #define UICR1_IM11 (1 << 3) /* Interrupt mask ep 11 */
  643. #define UICR1_IM12 (1 << 4) /* Interrupt mask ep 12 */
  644. #define UICR1_IM13 (1 << 5) /* Interrupt mask ep 13 */
  645. #define UICR1_IM14 (1 << 6) /* Interrupt mask ep 14 */
  646. #define UICR1_IM15 (1 << 7) /* Interrupt mask ep 15 */
  647. #define USIR0 __REG(0x40600058) /* UDC Status Interrupt Register 0 */
  648. #define USIR0_IR0 (1 << 0) /* Interrup request ep 0 */
  649. #define USIR0_IR1 (1 << 1) /* Interrup request ep 1 */
  650. #define USIR0_IR2 (1 << 2) /* Interrup request ep 2 */
  651. #define USIR0_IR3 (1 << 3) /* Interrup request ep 3 */
  652. #define USIR0_IR4 (1 << 4) /* Interrup request ep 4 */
  653. #define USIR0_IR5 (1 << 5) /* Interrup request ep 5 */
  654. #define USIR0_IR6 (1 << 6) /* Interrup request ep 6 */
  655. #define USIR0_IR7 (1 << 7) /* Interrup request ep 7 */
  656. #define USIR1 __REG(0x4060005C) /* UDC Status Interrupt Register 1 */
  657. #define USIR1_IR8 (1 << 0) /* Interrup request ep 8 */
  658. #define USIR1_IR9 (1 << 1) /* Interrup request ep 9 */
  659. #define USIR1_IR10 (1 << 2) /* Interrup request ep 10 */
  660. #define USIR1_IR11 (1 << 3) /* Interrup request ep 11 */
  661. #define USIR1_IR12 (1 << 4) /* Interrup request ep 12 */
  662. #define USIR1_IR13 (1 << 5) /* Interrup request ep 13 */
  663. #define USIR1_IR14 (1 << 6) /* Interrup request ep 14 */
  664. #define USIR1_IR15 (1 << 7) /* Interrup request ep 15 */
  665. #elif defined(CONFIG_PXA27x)
  666. #define UDCCR __REG(0x40600000) /* UDC Control Register */
  667. #define UDCCR_OEN (1 << 31) /* On-the-Go Enable */
  668. #define UDCCR_AALTHNP (1 << 30) /* A-device Alternate Host Negotiation
  669. Protocol Port Support */
  670. #define UDCCR_AHNP (1 << 29) /* A-device Host Negotiation Protocol
  671. Support */
  672. #define UDCCR_BHNP (1 << 28) /* B-device Host Negotiation Protocol
  673. Enable */
  674. #define UDCCR_DWRE (1 << 16) /* Device Remote Wake-up Enable */
  675. #define UDCCR_ACN (0x03 << 11) /* Active UDC configuration Number */
  676. #define UDCCR_ACN_S 11
  677. #define UDCCR_AIN (0x07 << 8) /* Active UDC interface Number */
  678. #define UDCCR_AIN_S 8
  679. #define UDCCR_AAISN (0x07 << 5) /* Active UDC Alternate Interface
  680. Setting Number */
  681. #define UDCCR_AAISN_S 5
  682. #define UDCCR_SMAC (1 << 4) /* Switch Endpoint Memory to Active
  683. Configuration */
  684. #define UDCCR_EMCE (1 << 3) /* Endpoint Memory Configuration
  685. Error */
  686. #define UDCCR_UDR (1 << 2) /* UDC Resume */
  687. #define UDCCR_UDA (1 << 1) /* UDC Active */
  688. #define UDCCR_UDE (1 << 0) /* UDC Enable */
  689. #define UDCICR0 __REG(0x40600004) /* UDC Interrupt Control Register0 */
  690. #define UDCICR1 __REG(0x40600008) /* UDC Interrupt Control Register1 */
  691. #define UDCICR_FIFOERR (1 << 1) /* FIFO Error interrupt for EP */
  692. #define UDCICR_PKTCOMPL (1 << 0) /* Packet Complete interrupt for EP */
  693. #define UDC_INT_FIFOERROR (0x2)
  694. #define UDC_INT_PACKETCMP (0x1)
  695. #define UDCICR_INT(n,intr) (((intr) & 0x03) << (((n) & 0x0F) * 2))
  696. #define UDCICR1_IECC (1 << 31) /* IntEn - Configuration Change */
  697. #define UDCICR1_IESOF (1 << 30) /* IntEn - Start of Frame */
  698. #define UDCICR1_IERU (1 << 29) /* IntEn - Resume */
  699. #define UDCICR1_IESU (1 << 28) /* IntEn - Suspend */
  700. #define UDCICR1_IERS (1 << 27) /* IntEn - Reset */
  701. #define UDCISR0 __REG(0x4060000C) /* UDC Interrupt Status Register 0 */
  702. #define UDCISR1 __REG(0x40600010) /* UDC Interrupt Status Register 1 */
  703. #define UDCISR_INT(n,intr) (((intr) & 0x03) << (((n) & 0x0F) * 2))
  704. #define UDCISR1_IECC (1 << 31) /* IntEn - Configuration Change */
  705. #define UDCISR1_IESOF (1 << 30) /* IntEn - Start of Frame */
  706. #define UDCISR1_IERU (1 << 29) /* IntEn - Resume */
  707. #define UDCISR1_IESU (1 << 28) /* IntEn - Suspend */
  708. #define UDCISR1_IERS (1 << 27) /* IntEn - Reset */
  709. #define UDCFNR __REG(0x40600014) /* UDC Frame Number Register */
  710. #define UDCOTGICR __REG(0x40600018) /* UDC On-The-Go interrupt control */
  711. #define UDCOTGICR_IESF (1 << 24) /* OTG SET_FEATURE command recvd */
  712. #define UDCOTGICR_IEXR (1 << 17) /* Extra Transciever Interrupt
  713. Rising Edge Interrupt Enable */
  714. #define UDCOTGICR_IEXF (1 << 16) /* Extra Transciever Interrupt
  715. Falling Edge Interrupt Enable */
  716. #define UDCOTGICR_IEVV40R (1 << 9) /* OTG Vbus Valid 4.0V Rising Edge
  717. Interrupt Enable */
  718. #define UDCOTGICR_IEVV40F (1 << 8) /* OTG Vbus Valid 4.0V Falling Edge
  719. Interrupt Enable */
  720. #define UDCOTGICR_IEVV44R (1 << 7) /* OTG Vbus Valid 4.4V Rising Edge
  721. Interrupt Enable */
  722. #define UDCOTGICR_IEVV44F (1 << 6) /* OTG Vbus Valid 4.4V Falling Edge
  723. Interrupt Enable */
  724. #define UDCOTGICR_IESVR (1 << 5) /* OTG Session Valid Rising Edge
  725. Interrupt Enable */
  726. #define UDCOTGICR_IESVF (1 << 4) /* OTG Session Valid Falling Edge
  727. Interrupt Enable */
  728. #define UDCOTGICR_IESDR (1 << 3) /* OTG A-Device SRP Detect Rising
  729. Edge Interrupt Enable */
  730. #define UDCOTGICR_IESDF (1 << 2) /* OTG A-Device SRP Detect Falling
  731. Edge Interrupt Enable */
  732. #define UDCOTGICR_IEIDR (1 << 1) /* OTG ID Change Rising Edge
  733. Interrupt Enable */
  734. #define UDCOTGICR_IEIDF (1 << 0) /* OTG ID Change Falling Edge
  735. Interrupt Enable */
  736. #define UP2OCR __REG(0x40600020) /* USB Port 2 Output Control register */
  737. #define UP2OCR_CPVEN (1 << 0) /* Charge Pump Vbus Enable */
  738. #define UP2OCR_CPVPE (1 << 1) /* Charge Pump Vbus Pulse Enable */
  739. #define UP2OCR_DPPDE (1 << 2) /* Host Port 2 Transceiver D+ Pull Down Enable */
  740. #define UP2OCR_DMPDE (1 << 3) /* Host Port 2 Transceiver D- Pull Down Enable */
  741. #define UP2OCR_DPPUE (1 << 4) /* Host Port 2 Transceiver D+ Pull Up Enable */
  742. #define UP2OCR_DMPUE (1 << 5) /* Host Port 2 Transceiver D- Pull Up Enable */
  743. #define UP2OCR_DPPUBE (1 << 6) /* Host Port 2 Transceiver D+ Pull Up Bypass Enable */
  744. #define UP2OCR_DMPUBE (1 << 7) /* Host Port 2 Transceiver D- Pull Up Bypass Enable */
  745. #define UP2OCR_EXSP (1 << 8) /* External Transceiver Speed Control */
  746. #define UP2OCR_EXSUS (1 << 9) /* External Transceiver Speed Enable */
  747. #define UP2OCR_IDON (1 << 10) /* OTG ID Read Enable */
  748. #define UP2OCR_HXS (1 << 16) /* Host Port 2 Transceiver Output Select */
  749. #define UP2OCR_HXOE (1 << 17) /* Host Port 2 Transceiver Output Enable */
  750. #define UP2OCR_SEOS (1 << 24) /* Single-Ended Output Select */
  751. #define UDCCSN(x) __REG2(0x40600100, (x) << 2)
  752. #define UDCCSR0 __REG(0x40600100) /* UDC Control/Status register - Endpoint 0 */
  753. #define UDCCSR0_SA (1 << 7) /* Setup Active */
  754. #define UDCCSR0_RNE (1 << 6) /* Receive FIFO Not Empty */
  755. #define UDCCSR0_FST (1 << 5) /* Force Stall */
  756. #define UDCCSR0_SST (1 << 4) /* Sent Stall */
  757. #define UDCCSR0_DME (1 << 3) /* DMA Enable */
  758. #define UDCCSR0_FTF (1 << 2) /* Flush Transmit FIFO */
  759. #define UDCCSR0_IPR (1 << 1) /* IN Packet Ready */
  760. #define UDCCSR0_OPC (1 << 0) /* OUT Packet Complete */
  761. #define UDCCSRA __REG(0x40600104) /* UDC Control/Status register - Endpoint A */
  762. #define UDCCSRB __REG(0x40600108) /* UDC Control/Status register - Endpoint B */
  763. #define UDCCSRC __REG(0x4060010C) /* UDC Control/Status register - Endpoint C */
  764. #define UDCCSRD __REG(0x40600110) /* UDC Control/Status register - Endpoint D */
  765. #define UDCCSRE __REG(0x40600114) /* UDC Control/Status register - Endpoint E */
  766. #define UDCCSRF __REG(0x40600118) /* UDC Control/Status register - Endpoint F */
  767. #define UDCCSRG __REG(0x4060011C) /* UDC Control/Status register - Endpoint G */
  768. #define UDCCSRH __REG(0x40600120) /* UDC Control/Status register - Endpoint H */
  769. #define UDCCSRI __REG(0x40600124) /* UDC Control/Status register - Endpoint I */
  770. #define UDCCSRJ __REG(0x40600128) /* UDC Control/Status register - Endpoint J */
  771. #define UDCCSRK __REG(0x4060012C) /* UDC Control/Status register - Endpoint K */
  772. #define UDCCSRL __REG(0x40600130) /* UDC Control/Status register - Endpoint L */
  773. #define UDCCSRM __REG(0x40600134) /* UDC Control/Status register - Endpoint M */
  774. #define UDCCSRN __REG(0x40600138) /* UDC Control/Status register - Endpoint N */
  775. #define UDCCSRP __REG(0x4060013C) /* UDC Control/Status register - Endpoint P */
  776. #define UDCCSRQ __REG(0x40600140) /* UDC Control/Status register - Endpoint Q */
  777. #define UDCCSRR __REG(0x40600144) /* UDC Control/Status register - Endpoint R */
  778. #define UDCCSRS __REG(0x40600148) /* UDC Control/Status register - Endpoint S */
  779. #define UDCCSRT __REG(0x4060014C) /* UDC Control/Status register - Endpoint T */
  780. #define UDCCSRU __REG(0x40600150) /* UDC Control/Status register - Endpoint U */
  781. #define UDCCSRV __REG(0x40600154) /* UDC Control/Status register - Endpoint V */
  782. #define UDCCSRW __REG(0x40600158) /* UDC Control/Status register - Endpoint W */
  783. #define UDCCSRX __REG(0x4060015C) /* UDC Control/Status register - Endpoint X */
  784. #define UDCCSR_DPE (1 << 9) /* Data Packet Error */
  785. #define UDCCSR_FEF (1 << 8) /* Flush Endpoint FIFO */
  786. #define UDCCSR_SP (1 << 7) /* Short Packet Control/Status */
  787. #define UDCCSR_BNE (1 << 6) /* Buffer Not Empty (IN endpoints) */
  788. #define UDCCSR_BNF (1 << 6) /* Buffer Not Full (OUT endpoints) */
  789. #define UDCCSR_FST (1 << 5) /* Force STALL */
  790. #define UDCCSR_SST (1 << 4) /* Sent STALL */
  791. #define UDCCSR_DME (1 << 3) /* DMA Enable */
  792. #define UDCCSR_TRN (1 << 2) /* Tx/Rx NAK */
  793. #define UDCCSR_PC (1 << 1) /* Packet Complete */
  794. #define UDCCSR_FS (1 << 0) /* FIFO needs service */
  795. #define UDCBCN(x) __REG2(0x40600200, (x)<<2)
  796. #define UDCBCR0 __REG(0x40600200) /* Byte Count Register - EP0 */
  797. #define UDCBCRA __REG(0x40600204) /* Byte Count Register - EPA */
  798. #define UDCBCRB __REG(0x40600208) /* Byte Count Register - EPB */
  799. #define UDCBCRC __REG(0x4060020C) /* Byte Count Register - EPC */
  800. #define UDCBCRD __REG(0x40600210) /* Byte Count Register - EPD */
  801. #define UDCBCRE __REG(0x40600214) /* Byte Count Register - EPE */
  802. #define UDCBCRF __REG(0x40600218) /* Byte Count Register - EPF */
  803. #define UDCBCRG __REG(0x4060021C) /* Byte Count Register - EPG */
  804. #define UDCBCRH __REG(0x40600220) /* Byte Count Register - EPH */
  805. #define UDCBCRI __REG(0x40600224) /* Byte Count Register - EPI */
  806. #define UDCBCRJ __REG(0x40600228) /* Byte Count Register - EPJ */
  807. #define UDCBCRK __REG(0x4060022C) /* Byte Count Register - EPK */
  808. #define UDCBCRL __REG(0x40600230) /* Byte Count Register - EPL */
  809. #define UDCBCRM __REG(0x40600234) /* Byte Count Register - EPM */
  810. #define UDCBCRN __REG(0x40600238) /* Byte Count Register - EPN */
  811. #define UDCBCRP __REG(0x4060023C) /* Byte Count Register - EPP */
  812. #define UDCBCRQ __REG(0x40600240) /* Byte Count Register - EPQ */
  813. #define UDCBCRR __REG(0x40600244) /* Byte Count Register - EPR */
  814. #define UDCBCRS __REG(0x40600248) /* Byte Count Register - EPS */
  815. #define UDCBCRT __REG(0x4060024C) /* Byte Count Register - EPT */
  816. #define UDCBCRU __REG(0x40600250) /* Byte Count Register - EPU */
  817. #define UDCBCRV __REG(0x40600254) /* Byte Count Register - EPV */
  818. #define UDCBCRW __REG(0x40600258) /* Byte Count Register - EPW */
  819. #define UDCBCRX __REG(0x4060025C) /* Byte Count Register - EPX */
  820. #define UDCDN(x) __REG2(0x40600300, (x)<<2)
  821. #define PHYS_UDCDN(x) (0x40600300 + ((x)<<2))
  822. #define PUDCDN(x) (volatile u32 *)(io_p2v(PHYS_UDCDN((x))))
  823. #define UDCDR0 __REG(0x40600300) /* Data Register - EP0 */
  824. #define UDCDRA __REG(0x40600304) /* Data Register - EPA */
  825. #define UDCDRB __REG(0x40600308) /* Data Register - EPB */
  826. #define UDCDRC __REG(0x4060030C) /* Data Register - EPC */
  827. #define UDCDRD __REG(0x40600310) /* Data Register - EPD */
  828. #define UDCDRE __REG(0x40600314) /* Data Register - EPE */
  829. #define UDCDRF __REG(0x40600318) /* Data Register - EPF */
  830. #define UDCDRG __REG(0x4060031C) /* Data Register - EPG */
  831. #define UDCDRH __REG(0x40600320) /* Data Register - EPH */
  832. #define UDCDRI __REG(0x40600324) /* Data Register - EPI */
  833. #define UDCDRJ __REG(0x40600328) /* Data Register - EPJ */
  834. #define UDCDRK __REG(0x4060032C) /* Data Register - EPK */
  835. #define UDCDRL __REG(0x40600330) /* Data Register - EPL */
  836. #define UDCDRM __REG(0x40600334) /* Data Register - EPM */
  837. #define UDCDRN __REG(0x40600338) /* Data Register - EPN */
  838. #define UDCDRP __REG(0x4060033C) /* Data Register - EPP */
  839. #define UDCDRQ __REG(0x40600340) /* Data Register - EPQ */
  840. #define UDCDRR __REG(0x40600344) /* Data Register - EPR */
  841. #define UDCDRS __REG(0x40600348) /* Data Register - EPS */
  842. #define UDCDRT __REG(0x4060034C) /* Data Register - EPT */
  843. #define UDCDRU __REG(0x40600350) /* Data Register - EPU */
  844. #define UDCDRV __REG(0x40600354) /* Data Register - EPV */
  845. #define UDCDRW __REG(0x40600358) /* Data Register - EPW */
  846. #define UDCDRX __REG(0x4060035C) /* Data Register - EPX */
  847. #define UDCCN(x) __REG2(0x40600400, (x)<<2)
  848. #define UDCCRA __REG(0x40600404) /* Configuration register EPA */
  849. #define UDCCRB __REG(0x40600408) /* Configuration register EPB */
  850. #define UDCCRC __REG(0x4060040C) /* Configuration register EPC */
  851. #define UDCCRD __REG(0x40600410) /* Configuration register EPD */
  852. #define UDCCRE __REG(0x40600414) /* Configuration register EPE */
  853. #define UDCCRF __REG(0x40600418) /* Configuration register EPF */
  854. #define UDCCRG __REG(0x4060041C) /* Configuration register EPG */
  855. #define UDCCRH __REG(0x40600420) /* Configuration register EPH */
  856. #define UDCCRI __REG(0x40600424) /* Configuration register EPI */
  857. #define UDCCRJ __REG(0x40600428) /* Configuration register EPJ */
  858. #define UDCCRK __REG(0x4060042C) /* Configuration register EPK */
  859. #define UDCCRL __REG(0x40600430) /* Configuration register EPL */
  860. #define UDCCRM __REG(0x40600434) /* Configuration register EPM */
  861. #define UDCCRN __REG(0x40600438) /* Configuration register EPN */
  862. #define UDCCRP __REG(0x4060043C) /* Configuration register EPP */
  863. #define UDCCRQ __REG(0x40600440) /* Configuration register EPQ */
  864. #define UDCCRR __REG(0x40600444) /* Configuration register EPR */
  865. #define UDCCRS __REG(0x40600448) /* Configuration register EPS */
  866. #define UDCCRT __REG(0x4060044C) /* Configuration register EPT */
  867. #define UDCCRU __REG(0x40600450) /* Configuration register EPU */
  868. #define UDCCRV __REG(0x40600454) /* Configuration register EPV */
  869. #define UDCCRW __REG(0x40600458) /* Configuration register EPW */
  870. #define UDCCRX __REG(0x4060045C) /* Configuration register EPX */
  871. #define UDCCONR_CN (0x03 << 25) /* Configuration Number */
  872. #define UDCCONR_CN_S (25)
  873. #define UDCCONR_IN (0x07 << 22) /* Interface Number */
  874. #define UDCCONR_IN_S (22)
  875. #define UDCCONR_AISN (0x07 << 19) /* Alternate Interface Number */
  876. #define UDCCONR_AISN_S (19)
  877. #define UDCCONR_EN (0x0f << 15) /* Endpoint Number */
  878. #define UDCCONR_EN_S (15)
  879. #define UDCCONR_ET (0x03 << 13) /* Endpoint Type: */
  880. #define UDCCONR_ET_S (13)
  881. #define UDCCONR_ET_INT (0x03 << 13) /* Interrupt */
  882. #define UDCCONR_ET_BULK (0x02 << 13) /* Bulk */
  883. #define UDCCONR_ET_ISO (0x01 << 13) /* Isochronous */
  884. #define UDCCONR_ET_NU (0x00 << 13) /* Not used */
  885. #define UDCCONR_ED (1 << 12) /* Endpoint Direction */
  886. #define UDCCONR_MPS (0x3ff << 2) /* Maximum Packet Size */
  887. #define UDCCONR_MPS_S (2)
  888. #define UDCCONR_DE (1 << 1) /* Double Buffering Enable */
  889. #define UDCCONR_EE (1 << 0) /* Endpoint Enable */
  890. #define UDC_INT_FIFOERROR (0x2)
  891. #define UDC_INT_PACKETCMP (0x1)
  892. #define UDC_FNR_MASK (0x7ff)
  893. #define UDCCSR_WR_MASK (UDCCSR_DME|UDCCSR_FST)
  894. #define UDC_BCR_MASK (0x3ff)
  895. #endif
  896. /*
  897. * Fast Infrared Communication Port
  898. */
  899. #define FICP __REG(0x40800000) /* Start of FICP area */
  900. #define ICCR0 __REG(0x40800000) /* ICP Control Register 0 */
  901. #define ICCR1 __REG(0x40800004) /* ICP Control Register 1 */
  902. #define ICCR2 __REG(0x40800008) /* ICP Control Register 2 */
  903. #define ICDR __REG(0x4080000c) /* ICP Data Register */
  904. #define ICSR0 __REG(0x40800014) /* ICP Status Register 0 */
  905. #define ICSR1 __REG(0x40800018) /* ICP Status Register 1 */
  906. #define ICCR0_AME (1 << 7) /* Adress match enable */
  907. #define ICCR0_TIE (1 << 6) /* Transmit FIFO interrupt enable */
  908. #define ICCR0_RIE (1 << 5) /* Recieve FIFO interrupt enable */
  909. #define ICCR0_RXE (1 << 4) /* Receive enable */
  910. #define ICCR0_TXE (1 << 3) /* Transmit enable */
  911. #define ICCR0_TUS (1 << 2) /* Transmit FIFO underrun select */
  912. #define ICCR0_LBM (1 << 1) /* Loopback mode */
  913. #define ICCR0_ITR (1 << 0) /* IrDA transmission */
  914. #define ICCR2_RXP (1 << 3) /* Receive Pin Polarity select */
  915. #define ICCR2_TXP (1 << 2) /* Transmit Pin Polarity select */
  916. #define ICCR2_TRIG (3 << 0) /* Receive FIFO Trigger threshold */
  917. #define ICCR2_TRIG_8 (0 << 0) /* >= 8 bytes */
  918. #define ICCR2_TRIG_16 (1 << 0) /* >= 16 bytes */
  919. #define ICCR2_TRIG_32 (2 << 0) /* >= 32 bytes */
  920. #ifdef CONFIG_PXA27x
  921. #define ICSR0_EOC (1 << 6) /* DMA End of Descriptor Chain */
  922. #endif
  923. #define ICSR0_FRE (1 << 5) /* Framing error */
  924. #define ICSR0_RFS (1 << 4) /* Receive FIFO service request */
  925. #define ICSR0_TFS (1 << 3) /* Transnit FIFO service request */
  926. #define ICSR0_RAB (1 << 2) /* Receiver abort */
  927. #define ICSR0_TUR (1 << 1) /* Trunsmit FIFO underun */
  928. #define ICSR0_EIF (1 << 0) /* End/Error in FIFO */
  929. #define ICSR1_ROR (1 << 6) /* Receiver FIFO underrun */
  930. #define ICSR1_CRE (1 << 5) /* CRC error */
  931. #define ICSR1_EOF (1 << 4) /* End of frame */
  932. #define ICSR1_TNF (1 << 3) /* Transmit FIFO not full */
  933. #define ICSR1_RNE (1 << 2) /* Receive FIFO not empty */
  934. #define ICSR1_TBY (1 << 1) /* Tramsmiter busy flag */
  935. #define ICSR1_RSY (1 << 0) /* Recevier synchronized flag */
  936. /*
  937. * Real Time Clock
  938. */
  939. #define RCNR __REG(0x40900000) /* RTC Count Register */
  940. #define RTAR __REG(0x40900004) /* RTC Alarm Register */
  941. #define RTSR __REG(0x40900008) /* RTC Status Register */
  942. #define RTTR __REG(0x4090000C) /* RTC Timer Trim Register */
  943. #define PIAR __REG(0x40900038) /* Periodic Interrupt Alarm Register */
  944. #define RTSR_PICE (1 << 15) /* Periodic interrupt count enable */
  945. #define RTSR_PIALE (1 << 14) /* Periodic interrupt Alarm enable */
  946. #define RTSR_HZE (1 << 3) /* HZ interrupt enable */
  947. #define RTSR_ALE (1 << 2) /* RTC alarm interrupt enable */
  948. #define RTSR_HZ (1 << 1) /* HZ rising-edge detected */
  949. #define RTSR_AL (1 << 0) /* RTC alarm detected */
  950. /*
  951. * OS Timer & Match Registers
  952. */
  953. #define OSMR0 __REG(0x40A00000) /* */
  954. #define OSMR1 __REG(0x40A00004) /* */
  955. #define OSMR2 __REG(0x40A00008) /* */
  956. #define OSMR3 __REG(0x40A0000C) /* */
  957. #define OSMR4 __REG(0x40A00080) /* */
  958. #define OSCR __REG(0x40A00010) /* OS Timer Counter Register */
  959. #define OSCR4 __REG(0x40A00040) /* OS Timer Counter Register */
  960. #define OMCR4 __REG(0x40A000C0) /* */
  961. #define OSSR __REG(0x40A00014) /* OS Timer Status Register */
  962. #define OWER __REG(0x40A00018) /* OS Timer Watchdog Enable Register */
  963. #define OIER __REG(0x40A0001C) /* OS Timer Interrupt Enable Register */
  964. #define OSSR_M3 (1 << 3) /* Match status channel 3 */
  965. #define OSSR_M2 (1 << 2) /* Match status channel 2 */
  966. #define OSSR_M1 (1 << 1) /* Match status channel 1 */
  967. #define OSSR_M0 (1 << 0) /* Match status channel 0 */
  968. #define OWER_WME (1 << 0) /* Watchdog Match Enable */
  969. #define OIER_E3 (1 << 3) /* Interrupt enable channel 3 */
  970. #define OIER_E2 (1 << 2) /* Interrupt enable channel 2 */
  971. #define OIER_E1 (1 << 1) /* Interrupt enable channel 1 */
  972. #define OIER_E0 (1 << 0) /* Interrupt enable channel 0 */
  973. /*
  974. * Pulse Width Modulator
  975. */
  976. #define PWM_CTRL0 __REG(0x40B00000) /* PWM 0 Control Register */
  977. #define PWM_PWDUTY0 __REG(0x40B00004) /* PWM 0 Duty Cycle Register */
  978. #define PWM_PERVAL0 __REG(0x40B00008) /* PWM 0 Period Control Register */
  979. #define PWM_CTRL1 __REG(0x40C00000) /* PWM 1Control Register */
  980. #define PWM_PWDUTY1 __REG(0x40C00004) /* PWM 1 Duty Cycle Register */
  981. #define PWM_PERVAL1 __REG(0x40C00008) /* PWM 1 Period Control Register */
  982. /*
  983. * Interrupt Controller
  984. */
  985. #define ICIP __REG(0x40D00000) /* Interrupt Controller IRQ Pending Register */
  986. #define ICMR __REG(0x40D00004) /* Interrupt Controller Mask Register */
  987. #define ICLR __REG(0x40D00008) /* Interrupt Controller Level Register */
  988. #define ICFP __REG(0x40D0000C) /* Interrupt Controller FIQ Pending Register */
  989. #define ICPR __REG(0x40D00010) /* Interrupt Controller Pending Register */
  990. #define ICCR __REG(0x40D00014) /* Interrupt Controller Control Register */
  991. /*
  992. * General Purpose I/O
  993. */
  994. #define GPLR0 __REG(0x40E00000) /* GPIO Pin-Level Register GPIO<31:0> */
  995. #define GPLR1 __REG(0x40E00004) /* GPIO Pin-Level Register GPIO<63:32> */
  996. #define GPLR2 __REG(0x40E00008) /* GPIO Pin-Level Register GPIO<80:64> */
  997. #define GPDR0 __REG(0x40E0000C) /* GPIO Pin Direction Register GPIO<31:0> */
  998. #define GPDR1 __REG(0x40E00010) /* GPIO Pin Direction Register GPIO<63:32> */
  999. #define GPDR2 __REG(0x40E00014) /* GPIO Pin Direction Register GPIO<80:64> */
  1000. #define GPSR0 __REG(0x40E00018) /* GPIO Pin Output Set Register GPIO<31:0> */
  1001. #define GPSR1 __REG(0x40E0001C) /* GPIO Pin Output Set Register GPIO<63:32> */
  1002. #define GPSR2 __REG(0x40E00020) /* GPIO Pin Output Set Register GPIO<80:64> */
  1003. #define GPCR0 __REG(0x40E00024) /* GPIO Pin Output Clear Register GPIO<31:0> */
  1004. #define GPCR1 __REG(0x40E00028) /* GPIO Pin Output Clear Register GPIO <63:32> */
  1005. #define GPCR2 __REG(0x40E0002C) /* GPIO Pin Output Clear Register GPIO <80:64> */
  1006. #define GRER0 __REG(0x40E00030) /* GPIO Rising-Edge Detect Register GPIO<31:0> */
  1007. #define GRER1 __REG(0x40E00034) /* GPIO Rising-Edge Detect Register GPIO<63:32> */
  1008. #define GRER2 __REG(0x40E00038) /* GPIO Rising-Edge Detect Register GPIO<80:64> */
  1009. #define GFER0 __REG(0x40E0003C) /* GPIO Falling-Edge Detect Register GPIO<31:0> */
  1010. #define GFER1 __REG(0x40E00040) /* GPIO Falling-Edge Detect Register GPIO<63:32> */
  1011. #define GFER2 __REG(0x40E00044) /* GPIO Falling-Edge Detect Register GPIO<80:64> */
  1012. #define GEDR0 __REG(0x40E00048) /* GPIO Edge Detect Status Register GPIO<31:0> */
  1013. #define GEDR1 __REG(0x40E0004C) /* GPIO Edge Detect Status Register GPIO<63:32> */
  1014. #define GEDR2 __REG(0x40E00050) /* GPIO Edge Detect Status Register GPIO<80:64> */
  1015. #define GAFR0_L __REG(0x40E00054) /* GPIO Alternate Function Select Register GPIO<15:0> */
  1016. #define GAFR0_U __REG(0x40E00058) /* GPIO Alternate Function Select Register GPIO<31:16> */
  1017. #define GAFR1_L __REG(0x40E0005C) /* GPIO Alternate Function Select Register GPIO<47:32> */
  1018. #define GAFR1_U __REG(0x40E00060) /* GPIO Alternate Function Select Register GPIO<63:48> */
  1019. #define GAFR2_L __REG(0x40E00064) /* GPIO Alternate Function Select Register GPIO<79:64> */
  1020. #define GAFR2_U __REG(0x40E00068) /* GPIO Alternate Function Select Register GPIO<95-80> */
  1021. #define GAFR3_L __REG(0x40E0006C) /* GPIO Alternate Function Select Register GPIO<111:96> */
  1022. #define GAFR3_U __REG(0x40E00070) /* GPIO Alternate Function Select Register GPIO<127:112> */
  1023. #define GPLR3 __REG(0x40E00100) /* GPIO Pin-Level Register GPIO<127:96> */
  1024. #define GPDR3 __REG(0x40E0010C) /* GPIO Pin Direction Register GPIO<127:96> */
  1025. #define GPSR3 __REG(0x40E00118) /* GPIO Pin Output Set Register GPIO<127:96> */
  1026. #define GPCR3 __REG(0x40E00124) /* GPIO Pin Output Clear Register GPIO<127:96> */
  1027. #define GRER3 __REG(0x40E00130) /* GPIO Rising-Edge Detect Register GPIO<127:96> */
  1028. #define GFER3 __REG(0x40E0013C) /* GPIO Falling-Edge Detect Register GPIO<127:96> */
  1029. #define GEDR3 __REG(0x40E00148) /* GPIO Edge Detect Status Register GPIO<127:96> */
  1030. /* More handy macros. The argument is a literal GPIO number. */
  1031. #define GPIO_bit(x) (1 << ((x) & 0x1f))
  1032. #ifdef CONFIG_PXA27x
  1033. /* Interrupt Controller */
  1034. #define ICIP2 __REG(0x40D0009C) /* Interrupt Controller IRQ Pending Register 2 */
  1035. #define ICMR2 __REG(0x40D000A0) /* Interrupt Controller Mask Register 2 */
  1036. #define ICLR2 __REG(0x40D000A4) /* Interrupt Controller Level Register 2 */
  1037. #define ICFP2 __REG(0x40D000A8) /* Interrupt Controller FIQ Pending Register 2 */
  1038. #define ICPR2 __REG(0x40D000AC) /* Interrupt Controller Pending Register 2 */
  1039. #define _GPLR(x) __REG2(0x40E00000, ((x) & 0x60) >> 3)
  1040. #define _GPDR(x) __REG2(0x40E0000C, ((x) & 0x60) >> 3)
  1041. #define _GPSR(x) __REG2(0x40E00018, ((x) & 0x60) >> 3)
  1042. #define _GPCR(x) __REG2(0x40E00024, ((x) & 0x60) >> 3)
  1043. #define _GRER(x) __REG2(0x40E00030, ((x) & 0x60) >> 3)
  1044. #define _GFER(x) __REG2(0x40E0003C, ((x) & 0x60) >> 3)
  1045. #define _GEDR(x) __REG2(0x40E00048, ((x) & 0x60) >> 3)
  1046. #define _GAFR(x) __REG2(0x40E00054, ((x) & 0x70) >> 2)
  1047. #define GPLR(x) (*((((x) & 0x7f) < 96) ? &_GPLR(x) : &GPLR3))
  1048. #define GPDR(x) (*((((x) & 0x7f) < 96) ? &_GPDR(x) : &GPDR3))
  1049. #define GPSR(x) (*((((x) & 0x7f) < 96) ? &_GPSR(x) : &GPSR3))
  1050. #define GPCR(x) (*((((x) & 0x7f) < 96) ? &_GPCR(x) : &GPCR3))
  1051. #define GRER(x) (*((((x) & 0x7f) < 96) ? &_GRER(x) : &GRER3))
  1052. #define GFER(x) (*((((x) & 0x7f) < 96) ? &_GFER(x) : &GFER3))
  1053. #define GEDR(x) (*((((x) & 0x7f) < 96) ? &_GEDR(x) : &GEDR3))
  1054. #define GAFR(x) (*((((x) & 0x7f) < 96) ? &_GAFR(x) : \
  1055. ((((x) & 0x7f) < 112) ? &GAFR3_L : &GAFR3_U)))
  1056. #else
  1057. #define GPLR(x) __REG2(0x40E00000, ((x) & 0x60) >> 3)
  1058. #define GPDR(x) __REG2(0x40E0000C, ((x) & 0x60) >> 3)
  1059. #define GPSR(x) __REG2(0x40E00018, ((x) & 0x60) >> 3)
  1060. #define GPCR(x) __REG2(0x40E00024, ((x) & 0x60) >> 3)
  1061. #define GRER(x) __REG2(0x40E00030, ((x) & 0x60) >> 3)
  1062. #define GFER(x) __REG2(0x40E0003C, ((x) & 0x60) >> 3)
  1063. #define GEDR(x) __REG2(0x40E00048, ((x) & 0x60) >> 3)
  1064. #define GAFR(x) __REG2(0x40E00054, ((x) & 0x70) >> 2)
  1065. #endif
  1066. /* GPIO alternate function assignments */
  1067. #define GPIO1_RST 1 /* reset */
  1068. #define GPIO6_MMCCLK 6 /* MMC Clock */
  1069. #define GPIO7_48MHz 7 /* 48 MHz clock output */
  1070. #define GPIO8_MMCCS0 8 /* MMC Chip Select 0 */
  1071. #define GPIO9_MMCCS1 9 /* MMC Chip Select 1 */
  1072. #define GPIO10_RTCCLK 10 /* real time clock (1 Hz) */
  1073. #define GPIO11_3_6MHz 11 /* 3.6 MHz oscillator out */
  1074. #define GPIO12_32KHz 12 /* 32 kHz out */
  1075. #define GPIO13_MBGNT 13 /* memory controller grant */
  1076. #define GPIO14_MBREQ 14 /* alternate bus master request */
  1077. #define GPIO15_nCS_1 15 /* chip select 1 */
  1078. #define GPIO16_PWM0 16 /* PWM0 output */
  1079. #define GPIO17_PWM1 17 /* PWM1 output */
  1080. #define GPIO18_RDY 18 /* Ext. Bus Ready */
  1081. #define GPIO19_DREQ1 19 /* External DMA Request */
  1082. #define GPIO20_DREQ0 20 /* External DMA Request */
  1083. #define GPIO23_SCLK 23 /* SSP clock */
  1084. #define GPIO24_SFRM 24 /* SSP Frame */
  1085. #define GPIO25_STXD 25 /* SSP transmit */
  1086. #define GPIO26_SRXD 26 /* SSP receive */
  1087. #define GPIO27_SEXTCLK 27 /* SSP ext_clk */
  1088. #define GPIO28_BITCLK 28 /* AC97/I2S bit_clk */
  1089. #define GPIO29_SDATA_IN 29 /* AC97 Sdata_in0 / I2S Sdata_in */
  1090. #define GPIO30_SDATA_OUT 30 /* AC97/I2S Sdata_out */
  1091. #define GPIO31_SYNC 31 /* AC97/I2S sync */
  1092. #define GPIO32_SDATA_IN1 32 /* AC97 Sdata_in1 */
  1093. #define GPIO32_SYSCLK 32 /* I2S System Clock */
  1094. #define GPIO32_MMCCLK 32 /* MMC Clock (PXA270) */
  1095. #define GPIO33_nCS_5 33 /* chip select 5 */
  1096. #define GPIO34_FFRXD 34 /* FFUART receive */
  1097. #define GPIO34_MMCCS0 34 /* MMC Chip Select 0 */
  1098. #define GPIO35_FFCTS 35 /* FFUART Clear to send */
  1099. #define GPIO36_FFDCD 36 /* FFUART Data carrier detect */
  1100. #define GPIO37_FFDSR 37 /* FFUART data set ready */
  1101. #define GPIO38_FFRI 38 /* FFUART Ring Indicator */
  1102. #define GPIO39_MMCCS1 39 /* MMC Chip Select 1 */
  1103. #define GPIO39_FFTXD 39 /* FFUART transmit data */
  1104. #define GPIO40_FFDTR 40 /* FFUART data terminal Ready */
  1105. #define GPIO41_FFRTS 41 /* FFUART request to send */
  1106. #define GPIO42_BTRXD 42 /* BTUART receive data */
  1107. #define GPIO42_HWRXD 42 /* HWUART receive data */
  1108. #define GPIO43_BTTXD 43 /* BTUART transmit data */
  1109. #define GPIO43_HWTXD 43 /* HWUART transmit data */
  1110. #define GPIO44_BTCTS 44 /* BTUART clear to send */
  1111. #define GPIO44_HWCTS 44 /* HWUART clear to send */
  1112. #define GPIO45_BTRTS 45 /* BTUART request to send */
  1113. #define GPIO45_HWRTS 45 /* HWUART request to send */
  1114. #define GPIO45_AC97_SYSCLK 45 /* AC97 System Clock */
  1115. #define GPIO46_ICPRXD 46 /* ICP receive data */
  1116. #define GPIO46_STRXD 46 /* STD_UART receive data */
  1117. #define GPIO47_ICPTXD 47 /* ICP transmit data */
  1118. #define GPIO47_STTXD 47 /* STD_UART transmit data */
  1119. #define GPIO48_nPOE 48 /* Output Enable for Card Space */
  1120. #define GPIO49_nPWE 49 /* Write Enable for Card Space */
  1121. #define GPIO50_nPIOR 50 /* I/O Read for Card Space */
  1122. #define GPIO51_nPIOW 51 /* I/O Write for Card Space */
  1123. #define GPIO52_nPCE_1 52 /* Card Enable for Card Space */
  1124. #define GPIO53_nPCE_2 53 /* Card Enable for Card Space */
  1125. #define GPIO53_MMCCLK 53 /* MMC Clock */
  1126. #define GPIO54_MMCCLK 54 /* MMC Clock */
  1127. #define GPIO54_pSKTSEL 54 /* Socket Select for Card Space */
  1128. #define GPIO54_nPCE_2 54 /* Card Enable for Card Space (PXA27x) */
  1129. #define GPIO55_nPREG 55 /* Card Address bit 26 */
  1130. #define GPIO56_nPWAIT 56 /* Wait signal for Card Space */
  1131. #define GPIO57_nIOIS16 57 /* Bus Width select for I/O Card Space */
  1132. #define GPIO58_LDD_0 58 /* LCD data pin 0 */
  1133. #define GPIO59_LDD_1 59 /* LCD data pin 1 */
  1134. #define GPIO60_LDD_2 60 /* LCD data pin 2 */
  1135. #define GPIO61_LDD_3 61 /* LCD data pin 3 */
  1136. #define GPIO62_LDD_4 62 /* LCD data pin 4 */
  1137. #define GPIO63_LDD_5 63 /* LCD data pin 5 */
  1138. #define GPIO64_LDD_6 64 /* LCD data pin 6 */
  1139. #define GPIO65_LDD_7 65 /* LCD data pin 7 */
  1140. #define GPIO66_LDD_8 66 /* LCD data pin 8 */
  1141. #define GPIO66_MBREQ 66 /* alternate bus master req */
  1142. #define GPIO67_LDD_9 67 /* LCD data pin 9 */
  1143. #define GPIO67_MMCCS0 67 /* MMC Chip Select 0 */
  1144. #define GPIO68_LDD_10 68 /* LCD data pin 10 */
  1145. #define GPIO68_MMCCS1 68 /* MMC Chip Select 1 */
  1146. #define GPIO69_LDD_11 69 /* LCD data pin 11 */
  1147. #define GPIO69_MMCCLK 69 /* MMC_CLK */
  1148. #define GPIO70_LDD_12 70 /* LCD data pin 12 */
  1149. #define GPIO70_RTCCLK 70 /* Real Time clock (1 Hz) */
  1150. #define GPIO71_LDD_13 71 /* LCD data pin 13 */
  1151. #define GPIO71_3_6MHz 71 /* 3.6 MHz Oscillator clock */
  1152. #define GPIO72_LDD_14 72 /* LCD data pin 14 */
  1153. #define GPIO72_32kHz 72 /* 32 kHz clock */
  1154. #define GPIO73_LDD_15 73 /* LCD data pin 15 */
  1155. #define GPIO73_MBGNT 73 /* Memory controller grant */
  1156. #define GPIO74_LCD_FCLK 74 /* LCD Frame clock */
  1157. #define GPIO75_LCD_LCLK 75 /* LCD line clock */
  1158. #define GPIO76_LCD_PCLK 76 /* LCD Pixel clock */
  1159. #define GPIO77_LCD_ACBIAS 77 /* LCD AC Bias */
  1160. #define GPIO78_nCS_2 78 /* chip select 2 */
  1161. #define GPIO79_nCS_3 79 /* chip select 3 */
  1162. #define GPIO80_nCS_4 80 /* chip select 4 */
  1163. #define GPIO81_NSCLK 81 /* NSSP clock */
  1164. #define GPIO82_NSFRM 82 /* NSSP Frame */
  1165. #define GPIO83_NSTXD 83 /* NSSP transmit */
  1166. #define GPIO84_NSRXD 84 /* NSSP receive */
  1167. #define GPIO85_nPCE_1 85 /* Card Enable for Card Space (PXA27x) */
  1168. #define GPIO92_MMCDAT0 92 /* MMC DAT0 (PXA27x) */
  1169. #define GPIO102_nPCE_1 102 /* PCMCIA (PXA27x) */
  1170. #define GPIO109_MMCDAT1 109 /* MMC DAT1 (PXA27x) */
  1171. #define GPIO110_MMCDAT2 110 /* MMC DAT2 (PXA27x) */
  1172. #define GPIO110_MMCCS0 110 /* MMC Chip Select 0 (PXA27x) */
  1173. #define GPIO111_MMCDAT3 111 /* MMC DAT3 (PXA27x) */
  1174. #define GPIO111_MMCCS1 111 /* MMC Chip Select 1 (PXA27x) */
  1175. #define GPIO112_MMCCMD 112 /* MMC CMD (PXA27x) */
  1176. #define GPIO113_I2S_SYSCLK 113 /* I2S System Clock (PXA27x) */
  1177. #define GPIO113_AC97_RESET_N 113 /* AC97 NRESET on (PXA27x) */
  1178. /* GPIO alternate function mode & direction */
  1179. #define GPIO_IN 0x000
  1180. #define GPIO_OUT 0x080
  1181. #define GPIO_ALT_FN_1_IN 0x100
  1182. #define GPIO_ALT_FN_1_OUT 0x180
  1183. #define GPIO_ALT_FN_2_IN 0x200
  1184. #define GPIO_ALT_FN_2_OUT 0x280
  1185. #define GPIO_ALT_FN_3_IN 0x300
  1186. #define GPIO_ALT_FN_3_OUT 0x380
  1187. #define GPIO_MD_MASK_NR 0x07f
  1188. #define GPIO_MD_MASK_DIR 0x080
  1189. #define GPIO_MD_MASK_FN 0x300
  1190. #define GPIO_DFLT_LOW 0x400
  1191. #define GPIO_DFLT_HIGH 0x800
  1192. #define GPIO1_RTS_MD ( 1 | GPIO_ALT_FN_1_IN)
  1193. #define GPIO6_MMCCLK_MD ( 6 | GPIO_ALT_FN_1_OUT)
  1194. #define GPIO7_48MHz_MD ( 7 | GPIO_ALT_FN_1_OUT)
  1195. #define GPIO8_MMCCS0_MD ( 8 | GPIO_ALT_FN_1_OUT)
  1196. #define GPIO9_MMCCS1_MD ( 9 | GPIO_ALT_FN_1_OUT)
  1197. #define GPIO10_RTCCLK_MD (10 | GPIO_ALT_FN_1_OUT)
  1198. #define GPIO11_3_6MHz_MD (11 | GPIO_ALT_FN_1_OUT)
  1199. #define GPIO12_32KHz_MD (12 | GPIO_ALT_FN_1_OUT)
  1200. #define GPIO13_MBGNT_MD (13 | GPIO_ALT_FN_2_OUT)
  1201. #define GPIO14_MBREQ_MD (14 | GPIO_ALT_FN_1_IN)
  1202. #define GPIO15_nCS_1_MD (15 | GPIO_ALT_FN_2_OUT)
  1203. #define GPIO16_PWM0_MD (16 | GPIO_ALT_FN_2_OUT)
  1204. #define GPIO17_PWM1_MD (17 | GPIO_ALT_FN_2_OUT)
  1205. #define GPIO18_RDY_MD (18 | GPIO_ALT_FN_1_IN)
  1206. #define GPIO19_DREQ1_MD (19 | GPIO_ALT_FN_1_IN)
  1207. #define GPIO20_DREQ0_MD (20 | GPIO_ALT_FN_1_IN)
  1208. #define GPIO23_SCLK_MD (23 | GPIO_ALT_FN_2_OUT)
  1209. #define GPIO24_SFRM_MD (24 | GPIO_ALT_FN_2_OUT)
  1210. #define GPIO25_STXD_MD (25 | GPIO_ALT_FN_2_OUT)
  1211. #define GPIO26_SRXD_MD (26 | GPIO_ALT_FN_1_IN)
  1212. #define GPIO27_SEXTCLK_MD (27 | GPIO_ALT_FN_1_IN)
  1213. #define GPIO28_BITCLK_AC97_MD (28 | GPIO_ALT_FN_1_IN)
  1214. #define GPIO28_BITCLK_IN_I2S_MD (28 | GPIO_ALT_FN_2_IN)
  1215. #define GPIO28_BITCLK_OUT_I2S_MD (28 | GPIO_ALT_FN_1_OUT)
  1216. #define GPIO29_SDATA_IN_AC97_MD (29 | GPIO_ALT_FN_1_IN)
  1217. #define GPIO29_SDATA_IN_I2S_MD (29 | GPIO_ALT_FN_2_IN)
  1218. #define GPIO30_SDATA_OUT_AC97_MD (30 | GPIO_ALT_FN_2_OUT)
  1219. #define GPIO30_SDATA_OUT_I2S_MD (30 | GPIO_ALT_FN_1_OUT)
  1220. #define GPIO31_SYNC_I2S_MD (31 | GPIO_ALT_FN_1_OUT)
  1221. #define GPIO31_SYNC_AC97_MD (31 | GPIO_ALT_FN_2_OUT)
  1222. #define GPIO32_SDATA_IN1_AC97_MD (32 | GPIO_ALT_FN_1_IN)
  1223. #define GPIO32_SYSCLK_I2S_MD (32 | GPIO_ALT_FN_1_OUT)
  1224. #define GPIO32_MMCCLK_MD ( 32 | GPIO_ALT_FN_2_OUT)
  1225. #define GPIO33_nCS_5_MD (33 | GPIO_ALT_FN_2_OUT)
  1226. #define GPIO34_FFRXD_MD (34 | GPIO_ALT_FN_1_IN)
  1227. #define GPIO34_MMCCS0_MD (34 | GPIO_ALT_FN_2_OUT)
  1228. #define GPIO35_FFCTS_MD (35 | GPIO_ALT_FN_1_IN)
  1229. #define GPIO36_FFDCD_MD (36 | GPIO_ALT_FN_1_IN)
  1230. #define GPIO37_FFDSR_MD (37 | GPIO_ALT_FN_1_IN)
  1231. #define GPIO38_FFRI_MD (38 | GPIO_ALT_FN_1_IN)
  1232. #define GPIO39_MMCCS1_MD (39 | GPIO_ALT_FN_1_OUT)
  1233. #define GPIO39_FFTXD_MD (39 | GPIO_ALT_FN_2_OUT)
  1234. #define GPIO40_FFDTR_MD (40 | GPIO_ALT_FN_2_OUT)
  1235. #define GPIO41_FFRTS_MD (41 | GPIO_ALT_FN_2_OUT)
  1236. #define GPIO42_BTRXD_MD (42 | GPIO_ALT_FN_1_IN)
  1237. #define GPIO42_HWRXD_MD (42 | GPIO_ALT_FN_3_IN)
  1238. #define GPIO43_BTTXD_MD (43 | GPIO_ALT_FN_2_OUT)
  1239. #define GPIO43_HWTXD_MD (43 | GPIO_ALT_FN_3_OUT)
  1240. #define GPIO44_BTCTS_MD (44 | GPIO_ALT_FN_1_IN)
  1241. #define GPIO44_HWCTS_MD (44 | GPIO_ALT_FN_3_IN)
  1242. #define GPIO45_BTRTS_MD (45 | GPIO_ALT_FN_2_OUT)
  1243. #define GPIO45_HWRTS_MD (45 | GPIO_ALT_FN_3_OUT)
  1244. #define GPIO45_SYSCLK_AC97_MD (45 | GPIO_ALT_FN_1_OUT)
  1245. #define GPIO46_ICPRXD_MD (46 | GPIO_ALT_FN_1_IN)
  1246. #define GPIO46_STRXD_MD (46 | GPIO_ALT_FN_2_IN)
  1247. #define GPIO47_ICPTXD_MD (47 | GPIO_ALT_FN_2_OUT)
  1248. #define GPIO47_STTXD_MD (47 | GPIO_ALT_FN_1_OUT)
  1249. #define GPIO48_nPOE_MD (48 | GPIO_ALT_FN_2_OUT)
  1250. #define GPIO48_HWTXD_MD (48 | GPIO_ALT_FN_1_OUT)
  1251. #define GPIO48_nPOE_MD (48 | GPIO_ALT_FN_2_OUT)
  1252. #define GPIO49_HWRXD_MD (49 | GPIO_ALT_FN_1_IN)
  1253. #define GPIO49_nPWE_MD (49 | GPIO_ALT_FN_2_OUT)
  1254. #define GPIO50_nPIOR_MD (50 | GPIO_ALT_FN_2_OUT)
  1255. #define GPIO50_HWCTS_MD (50 | GPIO_ALT_FN_1_IN)
  1256. #define GPIO51_HWRTS_MD (51 | GPIO_ALT_FN_1_OUT)
  1257. #define GPIO51_nPIOW_MD (51 | GPIO_ALT_FN_2_OUT)
  1258. #define GPIO52_nPCE_1_MD (52 | GPIO_ALT_FN_2_OUT)
  1259. #define GPIO53_nPCE_2_MD (53 | GPIO_ALT_FN_2_OUT)
  1260. #define GPIO53_MMCCLK_MD (53 | GPIO_ALT_FN_1_OUT)
  1261. #define GPIO54_MMCCLK_MD (54 | GPIO_ALT_FN_1_OUT)
  1262. #define GPIO54_nPCE_2_MD (54 | GPIO_ALT_FN_2_OUT)
  1263. #define GPIO54_pSKTSEL_MD (54 | GPIO_ALT_FN_2_OUT)
  1264. #define GPIO55_nPREG_MD (55 | GPIO_ALT_FN_2_OUT)
  1265. #define GPIO56_nPWAIT_MD (56 | GPIO_ALT_FN_1_IN)
  1266. #define GPIO57_nIOIS16_MD (57 | GPIO_ALT_FN_1_IN)
  1267. #define GPIO58_LDD_0_MD (58 | GPIO_ALT_FN_2_OUT)
  1268. #define GPIO59_LDD_1_MD (59 | GPIO_ALT_FN_2_OUT)
  1269. #define GPIO60_LDD_2_MD (60 | GPIO_ALT_FN_2_OUT)
  1270. #define GPIO61_LDD_3_MD (61 | GPIO_ALT_FN_2_OUT)
  1271. #define GPIO62_LDD_4_MD (62 | GPIO_ALT_FN_2_OUT)
  1272. #define GPIO63_LDD_5_MD (63 | GPIO_ALT_FN_2_OUT)
  1273. #define GPIO64_LDD_6_MD (64 | GPIO_ALT_FN_2_OUT)
  1274. #define GPIO65_LDD_7_MD (65 | GPIO_ALT_FN_2_OUT)
  1275. #define GPIO66_LDD_8_MD (66 | GPIO_ALT_FN_2_OUT)
  1276. #define GPIO66_MBREQ_MD (66 | GPIO_ALT_FN_1_IN)
  1277. #define GPIO67_LDD_9_MD (67 | GPIO_ALT_FN_2_OUT)
  1278. #define GPIO67_MMCCS0_MD (67 | GPIO_ALT_FN_1_OUT)
  1279. #define GPIO68_LDD_10_MD (68 | GPIO_ALT_FN_2_OUT)
  1280. #define GPIO68_MMCCS1_MD (68 | GPIO_ALT_FN_1_OUT)
  1281. #define GPIO69_LDD_11_MD (69 | GPIO_ALT_FN_2_OUT)
  1282. #define GPIO69_MMCCLK_MD (69 | GPIO_ALT_FN_1_OUT)
  1283. #define GPIO70_LDD_12_MD (70 | GPIO_ALT_FN_2_OUT)
  1284. #define GPIO70_RTCCLK_MD (70 | GPIO_ALT_FN_1_OUT)
  1285. #define GPIO71_LDD_13_MD (71 | GPIO_ALT_FN_2_OUT)
  1286. #define GPIO71_3_6MHz_MD (71 | GPIO_ALT_FN_1_OUT)
  1287. #define GPIO72_LDD_14_MD (72 | GPIO_ALT_FN_2_OUT)
  1288. #define GPIO72_32kHz_MD (72 | GPIO_ALT_FN_1_OUT)
  1289. #define GPIO73_LDD_15_MD (73 | GPIO_ALT_FN_2_OUT)
  1290. #define GPIO73_MBGNT_MD (73 | GPIO_ALT_FN_1_OUT)
  1291. #define GPIO74_LCD_FCLK_MD (74 | GPIO_ALT_FN_2_OUT)
  1292. #define GPIO75_LCD_LCLK_MD (75 | GPIO_ALT_FN_2_OUT)
  1293. #define GPIO76_LCD_PCLK_MD (76 | GPIO_ALT_FN_2_OUT)
  1294. #define GPIO77_LCD_ACBIAS_MD (77 | GPIO_ALT_FN_2_OUT)
  1295. #define GPIO78_nCS_2_MD (78 | GPIO_ALT_FN_2_OUT)
  1296. #define GPIO79_nCS_3_MD (79 | GPIO_ALT_FN_2_OUT)
  1297. #define GPIO79_pSKTSEL_MD (79 | GPIO_ALT_FN_1_OUT)
  1298. #define GPIO80_nCS_4_MD (80 | GPIO_ALT_FN_2_OUT)
  1299. #define GPIO81_NSSP_CLK_OUT (81 | GPIO_ALT_FN_1_OUT)
  1300. #define GPIO81_NSSP_CLK_IN (81 | GPIO_ALT_FN_1_IN)
  1301. #define GPIO82_NSSP_FRM_OUT (82 | GPIO_ALT_FN_1_OUT)
  1302. #define GPIO82_NSSP_FRM_IN (82 | GPIO_ALT_FN_1_IN)
  1303. #define GPIO83_NSSP_TX (83 | GPIO_ALT_FN_1_OUT)
  1304. #define GPIO83_NSSP_RX (83 | GPIO_ALT_FN_2_IN)
  1305. #define GPIO84_NSSP_TX (84 | GPIO_ALT_FN_1_OUT)
  1306. #define GPIO84_NSSP_RX (84 | GPIO_ALT_FN_2_IN)
  1307. #define GPIO85_nPCE_1_MD (85 | GPIO_ALT_FN_1_OUT)
  1308. #define GPIO92_MMCDAT0_MD (92 | GPIO_ALT_FN_1_OUT)
  1309. #define GPIO102_nPCE_1_MD (102 | GPIO_ALT_FN_1_OUT)
  1310. #define GPIO104_pSKTSEL_MD (104 | GPIO_ALT_FN_1_OUT)
  1311. #define GPIO109_MMCDAT1_MD (109 | GPIO_ALT_FN_1_OUT)
  1312. #define GPIO110_MMCDAT2_MD (110 | GPIO_ALT_FN_1_OUT)
  1313. #define GPIO110_MMCCS0_MD (110 | GPIO_ALT_FN_1_OUT)
  1314. #define GPIO111_MMCDAT3_MD (111 | GPIO_ALT_FN_1_OUT)
  1315. #define GPIO110_MMCCS1_MD (111 | GPIO_ALT_FN_1_OUT)
  1316. #define GPIO112_MMCCMD_MD (112 | GPIO_ALT_FN_1_OUT)
  1317. #define GPIO113_I2S_SYSCLK_MD (113 | GPIO_ALT_FN_1_OUT)
  1318. #define GPIO113_AC97_RESET_N_MD (113 | GPIO_ALT_FN_2_OUT)
  1319. #define GPIO117_I2CSCL_MD (117 | GPIO_ALT_FN_1_OUT)
  1320. #define GPIO118_I2CSDA_MD (118 | GPIO_ALT_FN_1_IN)
  1321. /*
  1322. * Power Manager
  1323. */
  1324. #define PMCR __REG(0x40F00000) /* Power Manager Control Register */
  1325. #define PSSR __REG(0x40F00004) /* Power Manager Sleep Status Register */
  1326. #define PSPR __REG(0x40F00008) /* Power Manager Scratch Pad Register */
  1327. #define PWER __REG(0x40F0000C) /* Power Manager Wake-up Enable Register */
  1328. #define PRER __REG(0x40F00010) /* Power Manager GPIO Rising-Edge Detect Enable Register */
  1329. #define PFER __REG(0x40F00014) /* Power Manager GPIO Falling-Edge Detect Enable Register */
  1330. #define PEDR __REG(0x40F00018) /* Power Manager GPIO Edge Detect Status Register */
  1331. #define PCFR __REG(0x40F0001C) /* Power Manager General Configuration Register */
  1332. #define PGSR0 __REG(0x40F00020) /* Power Manager GPIO Sleep State Register for GP[31-0] */
  1333. #define PGSR1 __REG(0x40F00024) /* Power Manager GPIO Sleep State Register for GP[63-32] */
  1334. #define PGSR2 __REG(0x40F00028) /* Power Manager GPIO Sleep State Register for GP[84-64] */
  1335. #define PGSR3 __REG(0x40F0002C) /* Power Manager GPIO Sleep State Register for GP[118-96] */
  1336. #define RCSR __REG(0x40F00030) /* Reset Controller Status Register */
  1337. #define PSLR __REG(0x40F00034) /* Power Manager Sleep Config Register */
  1338. #define PSTR __REG(0x40F00038) /*Power Manager Standby Config Register */
  1339. #define PSNR __REG(0x40F0003C) /*Power Manager Sense Config Register */
  1340. #define PVCR __REG(0x40F00040) /*Power Manager VoltageControl Register */
  1341. #define PKWR __REG(0x40F00050) /* Power Manager KB Wake-up Enable Reg */
  1342. #define PKSR __REG(0x40F00054) /* Power Manager KB Level-Detect Register */
  1343. #define PCMD(x) __REG2(0x40F00080, (x)<<2)
  1344. #define PCMD0 __REG(0x40F00080 + 0 * 4)
  1345. #define PCMD1 __REG(0x40F00080 + 1 * 4)
  1346. #define PCMD2 __REG(0x40F00080 + 2 * 4)
  1347. #define PCMD3 __REG(0x40F00080 + 3 * 4)
  1348. #define PCMD4 __REG(0x40F00080 + 4 * 4)
  1349. #define PCMD5 __REG(0x40F00080 + 5 * 4)
  1350. #define PCMD6 __REG(0x40F00080 + 6 * 4)
  1351. #define PCMD7 __REG(0x40F00080 + 7 * 4)
  1352. #define PCMD8 __REG(0x40F00080 + 8 * 4)
  1353. #define PCMD9 __REG(0x40F00080 + 9 * 4)
  1354. #define PCMD10 __REG(0x40F00080 + 10 * 4)
  1355. #define PCMD11 __REG(0x40F00080 + 11 * 4)
  1356. #define PCMD12 __REG(0x40F00080 + 12 * 4)
  1357. #define PCMD13 __REG(0x40F00080 + 13 * 4)
  1358. #define PCMD14 __REG(0x40F00080 + 14 * 4)
  1359. #define PCMD15 __REG(0x40F00080 + 15 * 4)
  1360. #define PCMD16 __REG(0x40F00080 + 16 * 4)
  1361. #define PCMD17 __REG(0x40F00080 + 17 * 4)
  1362. #define PCMD18 __REG(0x40F00080 + 18 * 4)
  1363. #define PCMD19 __REG(0x40F00080 + 19 * 4)
  1364. #define PCMD20 __REG(0x40F00080 + 20 * 4)
  1365. #define PCMD21 __REG(0x40F00080 + 21 * 4)
  1366. #define PCMD22 __REG(0x40F00080 + 22 * 4)
  1367. #define PCMD23 __REG(0x40F00080 + 23 * 4)
  1368. #define PCMD24 __REG(0x40F00080 + 24 * 4)
  1369. #define PCMD25 __REG(0x40F00080 + 25 * 4)
  1370. #define PCMD26 __REG(0x40F00080 + 26 * 4)
  1371. #define PCMD27 __REG(0x40F00080 + 27 * 4)
  1372. #define PCMD28 __REG(0x40F00080 + 28 * 4)
  1373. #define PCMD29 __REG(0x40F00080 + 29 * 4)
  1374. #define PCMD30 __REG(0x40F00080 + 30 * 4)
  1375. #define PCMD31 __REG(0x40F00080 + 31 * 4)
  1376. #define PCMD_MBC (1<<12)
  1377. #define PCMD_DCE (1<<11)
  1378. #define PCMD_LC (1<<10)
  1379. /* FIXME: PCMD_SQC need be checked. */
  1380. #define PCMD_SQC (3<<8) /* currently only bit 8 is changeable,
  1381. bit 9 should be 0 all day. */
  1382. #define PVCR_VCSA (0x1<<14)
  1383. #define PVCR_CommandDelay (0xf80)
  1384. #define PCFR_PI2C_EN (0x1 << 6)
  1385. #define PSSR_OTGPH (1 << 6) /* OTG Peripheral control Hold */
  1386. #define PSSR_RDH (1 << 5) /* Read Disable Hold */
  1387. #define PSSR_PH (1 << 4) /* Peripheral Control Hold */
  1388. #define PSSR_STS (1 << 3) /* Standby Mode Status */
  1389. #define PSSR_VFS (1 << 2) /* VDD Fault Status */
  1390. #define PSSR_BFS (1 << 1) /* Battery Fault Status */
  1391. #define PSSR_SSS (1 << 0) /* Software Sleep Status */
  1392. #define PSLR_SL_ROD (1 << 20) /* Sleep-Mode/Depp-Sleep Mode nRESET_OUT Disable */
  1393. #define PCFR_RO (1 << 15) /* RDH Override */
  1394. #define PCFR_PO (1 << 14) /* PH Override */
  1395. #define PCFR_GPROD (1 << 12) /* GPIO nRESET_OUT Disable */
  1396. #define PCFR_L1_EN (1 << 11) /* Sleep Mode L1 converter Enable */
  1397. #define PCFR_FVC (1 << 10) /* Frequency/Voltage Change */
  1398. #define PCFR_DC_EN (1 << 7) /* Sleep/deep-sleep DC-DC Converter Enable */
  1399. #define PCFR_PI2CEN (1 << 6) /* Enable PI2C controller */
  1400. #define PCFR_GPR_EN (1 << 4) /* nRESET_GPIO Pin Enable */
  1401. #define PCFR_DS (1 << 3) /* Deep Sleep Mode */
  1402. #define PCFR_FS (1 << 2) /* Float Static Chip Selects */
  1403. #define PCFR_FP (1 << 1) /* Float PCMCIA controls */
  1404. #define PCFR_OPDE (1 << 0) /* 3.6864 MHz oscillator power-down enable */
  1405. #define RCSR_GPR (1 << 3) /* GPIO Reset */
  1406. #define RCSR_SMR (1 << 2) /* Sleep Mode */
  1407. #define RCSR_WDR (1 << 1) /* Watchdog Reset */
  1408. #define RCSR_HWR (1 << 0) /* Hardware Reset */
  1409. #define PWER_GPIO(Nb) (1 << Nb) /* GPIO [0..15] wake-up enable */
  1410. #define PWER_GPIO0 PWER_GPIO (0) /* GPIO [0] wake-up enable */
  1411. #define PWER_GPIO1 PWER_GPIO (1) /* GPIO [1] wake-up enable */
  1412. #define PWER_GPIO2 PWER_GPIO (2) /* GPIO [2] wake-up enable */
  1413. #define PWER_GPIO3 PWER_GPIO (3) /* GPIO [3] wake-up enable */
  1414. #define PWER_GPIO4 PWER_GPIO (4) /* GPIO [4] wake-up enable */
  1415. #define PWER_GPIO5 PWER_GPIO (5) /* GPIO [5] wake-up enable */
  1416. #define PWER_GPIO6 PWER_GPIO (6) /* GPIO [6] wake-up enable */
  1417. #define PWER_GPIO7 PWER_GPIO (7) /* GPIO [7] wake-up enable */
  1418. #define PWER_GPIO8 PWER_GPIO (8) /* GPIO [8] wake-up enable */
  1419. #define PWER_GPIO9 PWER_GPIO (9) /* GPIO [9] wake-up enable */
  1420. #define PWER_GPIO10 PWER_GPIO (10) /* GPIO [10] wake-up enable */
  1421. #define PWER_GPIO11 PWER_GPIO (11) /* GPIO [11] wake-up enable */
  1422. #define PWER_GPIO12 PWER_GPIO (12) /* GPIO [12] wake-up enable */
  1423. #define PWER_GPIO13 PWER_GPIO (13) /* GPIO [13] wake-up enable */
  1424. #define PWER_GPIO14 PWER_GPIO (14) /* GPIO [14] wake-up enable */
  1425. #define PWER_GPIO15 PWER_GPIO (15) /* GPIO [15] wake-up enable */
  1426. #define PWER_RTC 0x80000000 /* RTC alarm wake-up enable */
  1427. /*
  1428. * SSP Serial Port Registers
  1429. * PXA250, PXA255, PXA26x and PXA27x SSP controllers are all slightly different.
  1430. * PXA255, PXA26x and PXA27x have extra ports, registers and bits.
  1431. */
  1432. /* Common PXA2xx bits first */
  1433. #define SSCR0_DSS (0x0000000f) /* Data Size Select (mask) */
  1434. #define SSCR0_DataSize(x) ((x) - 1) /* Data Size Select [4..16] */
  1435. #define SSCR0_FRF (0x00000030) /* FRame Format (mask) */
  1436. #define SSCR0_Motorola (0x0 << 4) /* Motorola's Serial Peripheral Interface (SPI) */
  1437. #define SSCR0_TI (0x1 << 4) /* Texas Instruments' Synchronous Serial Protocol (SSP) */
  1438. #define SSCR0_National (0x2 << 4) /* National Microwire */
  1439. #define SSCR0_ECS (1 << 6) /* External clock select */
  1440. #define SSCR0_SSE (1 << 7) /* Synchronous Serial Port Enable */
  1441. #if defined(CONFIG_PXA25x)
  1442. #define SSCR0_SCR (0x0000ff00) /* Serial Clock Rate (mask) */
  1443. #define SSCR0_SerClkDiv(x) ((((x) - 2)/2) << 8) /* Divisor [2..512] */
  1444. #elif defined(CONFIG_PXA27x)
  1445. #define SSCR0_SCR (0x000fff00) /* Serial Clock Rate (mask) */
  1446. #define SSCR0_SerClkDiv(x) (((x) - 1) << 8) /* Divisor [1..4096] */
  1447. #define SSCR0_EDSS (1 << 20) /* Extended data size select */
  1448. #define SSCR0_NCS (1 << 21) /* Network clock select */
  1449. #define SSCR0_RIM (1 << 22) /* Receive FIFO overrrun interrupt mask */
  1450. #define SSCR0_TUM (1 << 23) /* Transmit FIFO underrun interrupt mask */
  1451. #define SSCR0_FRDC (0x07000000) /* Frame rate divider control (mask) */
  1452. #define SSCR0_SlotsPerFrm(x) ((x) - 1) /* Time slots per frame [1..8] */
  1453. #define SSCR0_ADC (1 << 30) /* Audio clock select */
  1454. #define SSCR0_MOD (1 << 31) /* Mode (normal or network) */
  1455. #endif
  1456. #define SSCR1_RIE (1 << 0) /* Receive FIFO Interrupt Enable */
  1457. #define SSCR1_TIE (1 << 1) /* Transmit FIFO Interrupt Enable */
  1458. #define SSCR1_LBM (1 << 2) /* Loop-Back Mode */
  1459. #define SSCR1_SPO (1 << 3) /* Motorola SPI SSPSCLK polarity setting */
  1460. #define SSCR1_SPH (1 << 4) /* Motorola SPI SSPSCLK phase setting */
  1461. #define SSCR1_MWDS (1 << 5) /* Microwire Transmit Data Size */
  1462. #define SSCR1_TFT (0x000003c0) /* Transmit FIFO Threshold (mask) */
  1463. #define SSCR1_TxTresh(x) (((x) - 1) << 6) /* level [1..16] */
  1464. #define SSCR1_RFT (0x00003c00) /* Receive FIFO Threshold (mask) */
  1465. #define SSCR1_RxTresh(x) (((x) - 1) << 10) /* level [1..16] */
  1466. #define SSSR_TNF (1 << 2) /* Transmit FIFO Not Full */
  1467. #define SSSR_RNE (1 << 3) /* Receive FIFO Not Empty */
  1468. #define SSSR_BSY (1 << 4) /* SSP Busy */
  1469. #define SSSR_TFS (1 << 5) /* Transmit FIFO Service Request */
  1470. #define SSSR_RFS (1 << 6) /* Receive FIFO Service Request */
  1471. #define SSSR_ROR (1 << 7) /* Receive FIFO Overrun */
  1472. #define SSCR0_TIM (1 << 23) /* Transmit FIFO Under Run Interrupt Mask */
  1473. #define SSCR0_RIM (1 << 22) /* Receive FIFO Over Run interrupt Mask */
  1474. #define SSCR0_NCS (1 << 21) /* Network Clock Select */
  1475. #define SSCR0_EDSS (1 << 20) /* Extended Data Size Select */
  1476. /* extra bits in PXA255, PXA26x and PXA27x SSP ports */
  1477. #define SSCR0_PSP (3 << 4) /* PSP - Programmable Serial Protocol */
  1478. #define SSCR1_TTELP (1 << 31) /* TXD Tristate Enable Last Phase */
  1479. #define SSCR1_TTE (1 << 30) /* TXD Tristate Enable */
  1480. #define SSCR1_EBCEI (1 << 29) /* Enable Bit Count Error interrupt */
  1481. #define SSCR1_SCFR (1 << 28) /* Slave Clock free Running */
  1482. #define SSCR1_ECRA (1 << 27) /* Enable Clock Request A */
  1483. #define SSCR1_ECRB (1 << 26) /* Enable Clock request B */
  1484. #define SSCR1_SCLKDIR (1 << 25) /* Serial Bit Rate Clock Direction */
  1485. #define SSCR1_SFRMDIR (1 << 24) /* Frame Direction */
  1486. #define SSCR1_RWOT (1 << 23) /* Receive Without Transmit */
  1487. #define SSCR1_TRAIL (1 << 22) /* Trailing Byte */
  1488. #define SSCR1_TSRE (1 << 21) /* Transmit Service Request Enable */
  1489. #define SSCR1_RSRE (1 << 20) /* Receive Service Request Enable */
  1490. #define SSCR1_TINTE (1 << 19) /* Receiver Time-out Interrupt enable */
  1491. #define SSCR1_PINTE (1 << 18) /* Peripheral Trailing Byte Interupt Enable */
  1492. #define SSCR1_STRF (1 << 15) /* Select FIFO or EFWR */
  1493. #define SSCR1_EFWR (1 << 14) /* Enable FIFO Write/Read */
  1494. #define SSSR_BCE (1 << 23) /* Bit Count Error */
  1495. #define SSSR_CSS (1 << 22) /* Clock Synchronisation Status */
  1496. #define SSSR_TUR (1 << 21) /* Transmit FIFO Under Run */
  1497. #define SSSR_EOC (1 << 20) /* End Of Chain */
  1498. #define SSSR_TINT (1 << 19) /* Receiver Time-out Interrupt */
  1499. #define SSSR_PINT (1 << 18) /* Peripheral Trailing Byte Interrupt */
  1500. #define SSPSP_FSRT (1 << 25) /* Frame Sync Relative Timing */
  1501. #define SSPSP_DMYSTOP(x) (x << 23) /* Dummy Stop */
  1502. #define SSPSP_SFRMWDTH(x) (x << 16) /* Serial Frame Width */
  1503. #define SSPSP_SFRMDLY(x) (x << 9) /* Serial Frame Delay */
  1504. #define SSPSP_DMYSTRT(x) (x << 7) /* Dummy Start */
  1505. #define SSPSP_STRTDLY(x) (x << 4) /* Start Delay */
  1506. #define SSPSP_ETDS (1 << 3) /* End of Transfer data State */
  1507. #define SSPSP_SFRMP (1 << 2) /* Serial Frame Polarity */
  1508. #define SSPSP_SCMODE(x) (x << 0) /* Serial Bit Rate Clock Mode */
  1509. #define SSCR0_P1 __REG(0x41000000) /* SSP Port 1 Control Register 0 */
  1510. #define SSCR1_P1 __REG(0x41000004) /* SSP Port 1 Control Register 1 */
  1511. #define SSSR_P1 __REG(0x41000008) /* SSP Port 1 Status Register */
  1512. #define SSITR_P1 __REG(0x4100000C) /* SSP Port 1 Interrupt Test Register */
  1513. #define SSDR_P1 __REG(0x41000010) /* (Write / Read) SSP Port 1 Data Write Register/SSP Data Read Register */
  1514. /* Support existing PXA25x drivers */
  1515. #define SSCR0 SSCR0_P1 /* SSP Control Register 0 */
  1516. #define SSCR1 SSCR1_P1 /* SSP Control Register 1 */
  1517. #define SSSR SSSR_P1 /* SSP Status Register */
  1518. #define SSITR SSITR_P1 /* SSP Interrupt Test Register */
  1519. #define SSDR SSDR_P1 /* (Write / Read) SSP Data Write Register/SSP Data Read Register */
  1520. /* PXA27x ports */
  1521. #if defined (CONFIG_PXA27x)
  1522. #define SSTO_P1 __REG(0x41000028) /* SSP Port 1 Time Out Register */
  1523. #define SSPSP_P1 __REG(0x4100002C) /* SSP Port 1 Programmable Serial Protocol */
  1524. #define SSTSA_P1 __REG(0x41000030) /* SSP Port 1 Tx Timeslot Active */
  1525. #define SSRSA_P1 __REG(0x41000034) /* SSP Port 1 Rx Timeslot Active */
  1526. #define SSTSS_P1 __REG(0x41000038) /* SSP Port 1 Timeslot Status */
  1527. #define SSACD_P1 __REG(0x4100003C) /* SSP Port 1 Audio Clock Divider */
  1528. #define SSCR0_P2 __REG(0x41700000) /* SSP Port 2 Control Register 0 */
  1529. #define SSCR1_P2 __REG(0x41700004) /* SSP Port 2 Control Register 1 */
  1530. #define SSSR_P2 __REG(0x41700008) /* SSP Port 2 Status Register */
  1531. #define SSITR_P2 __REG(0x4170000C) /* SSP Port 2 Interrupt Test Register */
  1532. #define SSDR_P2 __REG(0x41700010) /* (Write / Read) SSP Port 2 Data Write Register/SSP Data Read Register */
  1533. #define SSTO_P2 __REG(0x41700028) /* SSP Port 2 Time Out Register */
  1534. #define SSPSP_P2 __REG(0x4170002C) /* SSP Port 2 Programmable Serial Protocol */
  1535. #define SSTSA_P2 __REG(0x41700030) /* SSP Port 2 Tx Timeslot Active */
  1536. #define SSRSA_P2 __REG(0x41700034) /* SSP Port 2 Rx Timeslot Active */
  1537. #define SSTSS_P2 __REG(0x41700038) /* SSP Port 2 Timeslot Status */
  1538. #define SSACD_P2 __REG(0x4170003C) /* SSP Port 2 Audio Clock Divider */
  1539. #define SSCR0_P3 __REG(0x41900000) /* SSP Port 3 Control Register 0 */
  1540. #define SSCR1_P3 __REG(0x41900004) /* SSP Port 3 Control Register 1 */
  1541. #define SSSR_P3 __REG(0x41900008) /* SSP Port 3 Status Register */
  1542. #define SSITR_P3 __REG(0x4190000C) /* SSP Port 3 Interrupt Test Register */
  1543. #define SSDR_P3 __REG(0x41900010) /* (Write / Read) SSP Port 3 Data Write Register/SSP Data Read Register */
  1544. #define SSTO_P3 __REG(0x41900028) /* SSP Port 3 Time Out Register */
  1545. #define SSPSP_P3 __REG(0x4190002C) /* SSP Port 3 Programmable Serial Protocol */
  1546. #define SSTSA_P3 __REG(0x41900030) /* SSP Port 3 Tx Timeslot Active */
  1547. #define SSRSA_P3 __REG(0x41900034) /* SSP Port 3 Rx Timeslot Active */
  1548. #define SSTSS_P3 __REG(0x41900038) /* SSP Port 3 Timeslot Status */
  1549. #define SSACD_P3 __REG(0x4190003C) /* SSP Port 3 Audio Clock Divider */
  1550. #else /* PXA255 (only port 2) and PXA26x ports*/
  1551. #define SSTO_P1 __REG(0x41000028) /* SSP Port 1 Time Out Register */
  1552. #define SSPSP_P1 __REG(0x4100002C) /* SSP Port 1 Programmable Serial Protocol */
  1553. #define SSCR0_P2 __REG(0x41400000) /* SSP Port 2 Control Register 0 */
  1554. #define SSCR1_P2 __REG(0x41400004) /* SSP Port 2 Control Register 1 */
  1555. #define SSSR_P2 __REG(0x41400008) /* SSP Port 2 Status Register */
  1556. #define SSITR_P2 __REG(0x4140000C) /* SSP Port 2 Interrupt Test Register */
  1557. #define SSDR_P2 __REG(0x41400010) /* (Write / Read) SSP Port 2 Data Write Register/SSP Data Read Register */
  1558. #define SSTO_P2 __REG(0x41400028) /* SSP Port 2 Time Out Register */
  1559. #define SSPSP_P2 __REG(0x4140002C) /* SSP Port 2 Programmable Serial Protocol */
  1560. #define SSCR0_P3 __REG(0x41500000) /* SSP Port 3 Control Register 0 */
  1561. #define SSCR1_P3 __REG(0x41500004) /* SSP Port 3 Control Register 1 */
  1562. #define SSSR_P3 __REG(0x41500008) /* SSP Port 3 Status Register */
  1563. #define SSITR_P3 __REG(0x4150000C) /* SSP Port 3 Interrupt Test Register */
  1564. #define SSDR_P3 __REG(0x41500010) /* (Write / Read) SSP Port 3 Data Write Register/SSP Data Read Register */
  1565. #define SSTO_P3 __REG(0x41500028) /* SSP Port 3 Time Out Register */
  1566. #define SSPSP_P3 __REG(0x4150002C) /* SSP Port 3 Programmable Serial Protocol */
  1567. #endif
  1568. #define SSCR0_P(x) (*(((x) == 1) ? &SSCR0_P1 : ((x) == 2) ? &SSCR0_P2 : ((x) == 3) ? &SSCR0_P3 : NULL))
  1569. #define SSCR1_P(x) (*(((x) == 1) ? &SSCR1_P1 : ((x) == 2) ? &SSCR1_P2 : ((x) == 3) ? &SSCR1_P3 : NULL))
  1570. #define SSSR_P(x) (*(((x) == 1) ? &SSSR_P1 : ((x) == 2) ? &SSSR_P2 : ((x) == 3) ? &SSSR_P3 : NULL))
  1571. #define SSITR_P(x) (*(((x) == 1) ? &SSITR_P1 : ((x) == 2) ? &SSITR_P2 : ((x) == 3) ? &SSITR_P3 : NULL))
  1572. #define SSDR_P(x) (*(((x) == 1) ? &SSDR_P1 : ((x) == 2) ? &SSDR_P2 : ((x) == 3) ? &SSDR_P3 : NULL))
  1573. #define SSTO_P(x) (*(((x) == 1) ? &SSTO_P1 : ((x) == 2) ? &SSTO_P2 : ((x) == 3) ? &SSTO_P3 : NULL))
  1574. #define SSPSP_P(x) (*(((x) == 1) ? &SSPSP_P1 : ((x) == 2) ? &SSPSP_P2 : ((x) == 3) ? &SSPSP_P3 : NULL))
  1575. #define SSTSA_P(x) (*(((x) == 1) ? &SSTSA_P1 : ((x) == 2) ? &SSTSA_P2 : ((x) == 3) ? &SSTSA_P3 : NULL))
  1576. #define SSRSA_P(x) (*(((x) == 1) ? &SSRSA_P1 : ((x) == 2) ? &SSRSA_P2 : ((x) == 3) ? &SSRSA_P3 : NULL))
  1577. #define SSTSS_P(x) (*(((x) == 1) ? &SSTSS_P1 : ((x) == 2) ? &SSTSS_P2 : ((x) == 3) ? &SSTSS_P3 : NULL))
  1578. #define SSACD_P(x) (*(((x) == 1) ? &SSACD_P1 : ((x) == 2) ? &SSACD_P2 : ((x) == 3) ? &SSACD_P3 : NULL))
  1579. /*
  1580. * MultiMediaCard (MMC) controller
  1581. */
  1582. #define MMC_STRPCL __REG(0x41100000) /* Control to start and stop MMC clock */
  1583. #define MMC_STAT __REG(0x41100004) /* MMC Status Register (read only) */
  1584. #define MMC_CLKRT __REG(0x41100008) /* MMC clock rate */
  1585. #define MMC_SPI __REG(0x4110000c) /* SPI mode control bits */
  1586. #define MMC_CMDAT __REG(0x41100010) /* Command/response/data sequence control */
  1587. #define MMC_RESTO __REG(0x41100014) /* Expected response time out */
  1588. #define MMC_RDTO __REG(0x41100018) /* Expected data read time out */
  1589. #define MMC_BLKLEN __REG(0x4110001c) /* Block length of data transaction */
  1590. #define MMC_NOB __REG(0x41100020) /* Number of blocks, for block mode */
  1591. #define MMC_PRTBUF __REG(0x41100024) /* Partial MMC_TXFIFO FIFO written */
  1592. #define MMC_I_MASK __REG(0x41100028) /* Interrupt Mask */
  1593. #define MMC_I_REG __REG(0x4110002c) /* Interrupt Register (read only) */
  1594. #define MMC_CMD __REG(0x41100030) /* Index of current command */
  1595. #define MMC_ARGH __REG(0x41100034) /* MSW part of the current command argument */
  1596. #define MMC_ARGL __REG(0x41100038) /* LSW part of the current command argument */
  1597. #define MMC_RES __REG(0x4110003c) /* Response FIFO (read only) */
  1598. #define MMC_RXFIFO __REG(0x41100040) /* Receive FIFO (read only) */
  1599. #define MMC_TXFIFO __REG(0x41100044) /* Transmit FIFO (write only) */
  1600. /*
  1601. * Core Clock
  1602. */
  1603. #define CCCR __REG(0x41300000) /* Core Clock Configuration Register */
  1604. #define CKEN __REG(0x41300004) /* Clock Enable Register */
  1605. #define OSCC __REG(0x41300008) /* Oscillator Configuration Register */
  1606. #define CCSR __REG(0x4130000C) /* Core Clock Status Register */
  1607. #define CCCR_N_MASK 0x0380 /* Run Mode Frequency to Turbo Mode Frequency Multiplier */
  1608. #define CCCR_M_MASK 0x0060 /* Memory Frequency to Run Mode Frequency Multiplier */
  1609. #define CCCR_L_MASK 0x001f /* Crystal Frequency to Memory Frequency Multiplier */
  1610. #define CKEN24_CAMERA (1 << 24) /* Camera Interface Clock Enable */
  1611. #define CKEN23_SSP1 (1 << 23) /* SSP1 Unit Clock Enable */
  1612. #define CKEN22_MEMC (1 << 22) /* Memory Controller Clock Enable */
  1613. #define CKEN21_MEMSTK (1 << 21) /* Memory Stick Host Controller */
  1614. #define CKEN20_IM (1 << 20) /* Internal Memory Clock Enable */
  1615. #define CKEN19_KEYPAD (1 << 19) /* Keypad Interface Clock Enable */
  1616. #define CKEN18_USIM (1 << 18) /* USIM Unit Clock Enable */
  1617. #define CKEN17_MSL (1 << 17) /* MSL Unit Clock Enable */
  1618. #define CKEN16_LCD (1 << 16) /* LCD Unit Clock Enable */
  1619. #define CKEN15_PWRI2C (1 << 15) /* PWR I2C Unit Clock Enable */
  1620. #define CKEN14_I2C (1 << 14) /* I2C Unit Clock Enable */
  1621. #define CKEN13_FICP (1 << 13) /* FICP Unit Clock Enable */
  1622. #define CKEN12_MMC (1 << 12) /* MMC Unit Clock Enable */
  1623. #define CKEN11_USB (1 << 11) /* USB Unit Clock Enable */
  1624. #define CKEN10_ASSP (1 << 10) /* ASSP (SSP3) Clock Enable */
  1625. #define CKEN10_USBHOST (1 << 10) /* USB Host Unit Clock Enable */
  1626. #define CKEN9_OSTIMER (1 << 9) /* OS Timer Unit Clock Enable */
  1627. #define CKEN9_NSSP (1 << 9) /* NSSP (SSP2) Clock Enable */
  1628. #define CKEN8_I2S (1 << 8) /* I2S Unit Clock Enable */
  1629. #define CKEN7_BTUART (1 << 7) /* BTUART Unit Clock Enable */
  1630. #define CKEN6_FFUART (1 << 6) /* FFUART Unit Clock Enable */
  1631. #define CKEN5_STUART (1 << 5) /* STUART Unit Clock Enable */
  1632. #define CKEN4_HWUART (1 << 4) /* HWUART Unit Clock Enable */
  1633. #define CKEN4_SSP3 (1 << 4) /* SSP3 Unit Clock Enable */
  1634. #define CKEN3_SSP (1 << 3) /* SSP Unit Clock Enable */
  1635. #define CKEN3_SSP2 (1 << 3) /* SSP2 Unit Clock Enable */
  1636. #define CKEN2_AC97 (1 << 2) /* AC97 Unit Clock Enable */
  1637. #define CKEN1_PWM1 (1 << 1) /* PWM1 Clock Enable */
  1638. #define CKEN0_PWM0 (1 << 0) /* PWM0 Clock Enable */
  1639. #define OSCC_OON (1 << 1) /* 32.768kHz OON (write-once only bit) */
  1640. #define OSCC_OOK (1 << 0) /* 32.768kHz OOK (read-only bit) */
  1641. /*
  1642. * LCD
  1643. */
  1644. #define LCCR0 __REG(0x44000000) /* LCD Controller Control Register 0 */
  1645. #define LCCR1 __REG(0x44000004) /* LCD Controller Control Register 1 */
  1646. #define LCCR2 __REG(0x44000008) /* LCD Controller Control Register 2 */
  1647. #define LCCR3 __REG(0x4400000C) /* LCD Controller Control Register 3 */
  1648. #define DFBR0 __REG(0x44000020) /* DMA Channel 0 Frame Branch Register */
  1649. #define DFBR1 __REG(0x44000024) /* DMA Channel 1 Frame Branch Register */
  1650. #define LCSR __REG(0x44000038) /* LCD Controller Status Register */
  1651. #define LIIDR __REG(0x4400003C) /* LCD Controller Interrupt ID Register */
  1652. #define TMEDRGBR __REG(0x44000040) /* TMED RGB Seed Register */
  1653. #define TMEDCR __REG(0x44000044) /* TMED Control Register */
  1654. #define LCCR3_1BPP (0 << 24)
  1655. #define LCCR3_2BPP (1 << 24)
  1656. #define LCCR3_4BPP (2 << 24)
  1657. #define LCCR3_8BPP (3 << 24)
  1658. #define LCCR3_16BPP (4 << 24)
  1659. #define FDADR0 __REG(0x44000200) /* DMA Channel 0 Frame Descriptor Address Register */
  1660. #define FSADR0 __REG(0x44000204) /* DMA Channel 0 Frame Source Address Register */
  1661. #define FIDR0 __REG(0x44000208) /* DMA Channel 0 Frame ID Register */
  1662. #define LDCMD0 __REG(0x4400020C) /* DMA Channel 0 Command Register */
  1663. #define FDADR1 __REG(0x44000210) /* DMA Channel 1 Frame Descriptor Address Register */
  1664. #define FSADR1 __REG(0x44000214) /* DMA Channel 1 Frame Source Address Register */
  1665. #define FIDR1 __REG(0x44000218) /* DMA Channel 1 Frame ID Register */
  1666. #define LDCMD1 __REG(0x4400021C) /* DMA Channel 1 Command Register */
  1667. #define LCCR0_ENB (1 << 0) /* LCD Controller enable */
  1668. #define LCCR0_CMS (1 << 1) /* Color/Monochrome Display Select */
  1669. #define LCCR0_Color (LCCR0_CMS*0) /* Color display */
  1670. #define LCCR0_Mono (LCCR0_CMS*1) /* Monochrome display */
  1671. #define LCCR0_SDS (1 << 2) /* Single/Dual Panel Display */
  1672. /* Select */
  1673. #define LCCR0_Sngl (LCCR0_SDS*0) /* Single panel display */
  1674. #define LCCR0_Dual (LCCR0_SDS*1) /* Dual panel display */
  1675. #define LCCR0_LDM (1 << 3) /* LCD Disable Done Mask */
  1676. #define LCCR0_SFM (1 << 4) /* Start of frame mask */
  1677. #define LCCR0_IUM (1 << 5) /* Input FIFO underrun mask */
  1678. #define LCCR0_EFM (1 << 6) /* End of Frame mask */
  1679. #define LCCR0_PAS (1 << 7) /* Passive/Active display Select */
  1680. #define LCCR0_Pas (LCCR0_PAS*0) /* Passive display (STN) */
  1681. #define LCCR0_Act (LCCR0_PAS*1) /* Active display (TFT) */
  1682. #define LCCR0_DPD (1 << 9) /* Double Pixel Data (monochrome */
  1683. /* display mode) */
  1684. #define LCCR0_4PixMono (LCCR0_DPD*0) /* 4-Pixel/clock Monochrome */
  1685. /* display */
  1686. #define LCCR0_8PixMono (LCCR0_DPD*1) /* 8-Pixel/clock Monochrome */
  1687. /* display */
  1688. #define LCCR0_DIS (1 << 10) /* LCD Disable */
  1689. #define LCCR0_QDM (1 << 11) /* LCD Quick Disable mask */
  1690. #define LCCR0_PDD (0xff << 12) /* Palette DMA request delay */
  1691. #define LCCR0_PDD_S 12
  1692. #define LCCR0_BM (1 << 20) /* Branch mask */
  1693. #define LCCR0_OUM (1 << 21) /* Output FIFO underrun mask */
  1694. #define LCCR0_LCDT (1 << 22) /* LCD panel type */
  1695. #define LCCR0_RDSTM (1 << 23) /* Read status interrupt mask */
  1696. #define LCCR0_CMDIM (1 << 24) /* Command interrupt mask */
  1697. #define LCCR0_OUC (1 << 25) /* Overlay Underlay control bit */
  1698. #define LCCR0_LDDALT (1 << 26) /* LDD alternate mapping control */
  1699. #define LCCR1_PPL Fld (10, 0) /* Pixels Per Line - 1 */
  1700. #define LCCR1_DisWdth(Pixel) /* Display Width [1..800 pix.] */ \
  1701. (((Pixel) - 1) << FShft (LCCR1_PPL))
  1702. #define LCCR1_HSW Fld (6, 10) /* Horizontal Synchronization */
  1703. #define LCCR1_HorSnchWdth(Tpix) /* Horizontal Synchronization */ \
  1704. /* pulse Width [1..64 Tpix] */ \
  1705. (((Tpix) - 1) << FShft (LCCR1_HSW))
  1706. #define LCCR1_ELW Fld (8, 16) /* End-of-Line pixel clock Wait */
  1707. /* count - 1 [Tpix] */
  1708. #define LCCR1_EndLnDel(Tpix) /* End-of-Line Delay */ \
  1709. /* [1..256 Tpix] */ \
  1710. (((Tpix) - 1) << FShft (LCCR1_ELW))
  1711. #define LCCR1_BLW Fld (8, 24) /* Beginning-of-Line pixel clock */
  1712. /* Wait count - 1 [Tpix] */
  1713. #define LCCR1_BegLnDel(Tpix) /* Beginning-of-Line Delay */ \
  1714. /* [1..256 Tpix] */ \
  1715. (((Tpix) - 1) << FShft (LCCR1_BLW))
  1716. #define LCCR2_LPP Fld (10, 0) /* Line Per Panel - 1 */
  1717. #define LCCR2_DisHght(Line) /* Display Height [1..1024 lines] */ \
  1718. (((Line) - 1) << FShft (LCCR2_LPP))
  1719. #define LCCR2_VSW Fld (6, 10) /* Vertical Synchronization pulse */
  1720. /* Width - 1 [Tln] (L_FCLK) */
  1721. #define LCCR2_VrtSnchWdth(Tln) /* Vertical Synchronization pulse */ \
  1722. /* Width [1..64 Tln] */ \
  1723. (((Tln) - 1) << FShft (LCCR2_VSW))
  1724. #define LCCR2_EFW Fld (8, 16) /* End-of-Frame line clock Wait */
  1725. /* count [Tln] */
  1726. #define LCCR2_EndFrmDel(Tln) /* End-of-Frame Delay */ \
  1727. /* [0..255 Tln] */ \
  1728. ((Tln) << FShft (LCCR2_EFW))
  1729. #define LCCR2_BFW Fld (8, 24) /* Beginning-of-Frame line clock */
  1730. /* Wait count [Tln] */
  1731. #define LCCR2_BegFrmDel(Tln) /* Beginning-of-Frame Delay */ \
  1732. /* [0..255 Tln] */ \
  1733. ((Tln) << FShft (LCCR2_BFW))
  1734. #if 0
  1735. #define LCCR3_PCD (0xff) /* Pixel clock divisor */
  1736. #define LCCR3_ACB (0xff << 8) /* AC Bias pin frequency */
  1737. #define LCCR3_ACB_S 8
  1738. #endif
  1739. #define LCCR3_API (0xf << 16) /* AC Bias pin trasitions per interrupt */
  1740. #define LCCR3_API_S 16
  1741. #define LCCR3_VSP (1 << 20) /* vertical sync polarity */
  1742. #define LCCR3_HSP (1 << 21) /* horizontal sync polarity */
  1743. #define LCCR3_PCP (1 << 22) /* Pixel Clock Polarity (L_PCLK) */
  1744. #define LCCR3_PixRsEdg (LCCR3_PCP*0) /* Pixel clock Rising-Edge */
  1745. #define LCCR3_PixFlEdg (LCCR3_PCP*1) /* Pixel clock Falling-Edge */
  1746. #define LCCR3_OEP (1 << 23) /* Output Enable Polarity (L_BIAS, */
  1747. /* active display mode) */
  1748. #define LCCR3_OutEnH (LCCR3_OEP*0) /* Output Enable active High */
  1749. #define LCCR3_OutEnL (LCCR3_OEP*1) /* Output Enable active Low */
  1750. #if 0
  1751. #define LCCR3_BPP (7 << 24) /* bits per pixel */
  1752. #define LCCR3_BPP_S 24
  1753. #endif
  1754. #define LCCR3_DPC (1 << 27) /* double pixel clock mode */
  1755. #define LCCR3_PCD Fld (8, 0) /* Pixel Clock Divisor */
  1756. #define LCCR3_PixClkDiv(Div) /* Pixel Clock Divisor */ \
  1757. (((Div) << FShft (LCCR3_PCD)))
  1758. #define LCCR3_BPP Fld (3, 24) /* Bit Per Pixel */
  1759. #define LCCR3_Bpp(Bpp) /* Bit Per Pixel */ \
  1760. (((Bpp) << FShft (LCCR3_BPP)))
  1761. #define LCCR3_ACB Fld (8, 8) /* AC Bias */
  1762. #define LCCR3_Acb(Acb) /* BAC Bias */ \
  1763. (((Acb) << FShft (LCCR3_ACB)))
  1764. #define LCCR3_HorSnchH (LCCR3_HSP*0) /* Horizontal Synchronization */
  1765. /* pulse active High */
  1766. #define LCCR3_HorSnchL (LCCR3_HSP*1) /* Horizontal Synchronization */
  1767. #define LCCR3_VrtSnchH (LCCR3_VSP*0) /* Vertical Synchronization pulse */
  1768. /* active High */
  1769. #define LCCR3_VrtSnchL (LCCR3_VSP*1) /* Vertical Synchronization pulse */
  1770. /* active Low */
  1771. #define LCSR_LDD (1 << 0) /* LCD Disable Done */
  1772. #define LCSR_SOF (1 << 1) /* Start of frame */
  1773. #define LCSR_BER (1 << 2) /* Bus error */
  1774. #define LCSR_ABC (1 << 3) /* AC Bias count */
  1775. #define LCSR_IUL (1 << 4) /* input FIFO underrun Lower panel */
  1776. #define LCSR_IUU (1 << 5) /* input FIFO underrun Upper panel */
  1777. #define LCSR_OU (1 << 6) /* output FIFO underrun */
  1778. #define LCSR_QD (1 << 7) /* quick disable */
  1779. #define LCSR_EOF (1 << 8) /* end of frame */
  1780. #define LCSR_BS (1 << 9) /* branch status */
  1781. #define LCSR_SINT (1 << 10) /* subsequent interrupt */
  1782. #define LDCMD_PAL (1 << 26) /* instructs DMA to load palette buffer */
  1783. #define LCSR_LDD (1 << 0) /* LCD Disable Done */
  1784. #define LCSR_SOF (1 << 1) /* Start of frame */
  1785. #define LCSR_BER (1 << 2) /* Bus error */
  1786. #define LCSR_ABC (1 << 3) /* AC Bias count */
  1787. #define LCSR_IUL (1 << 4) /* input FIFO underrun Lower panel */
  1788. #define LCSR_IUU (1 << 5) /* input FIFO underrun Upper panel */
  1789. #define LCSR_OU (1 << 6) /* output FIFO underrun */
  1790. #define LCSR_QD (1 << 7) /* quick disable */
  1791. #define LCSR_EOF (1 << 8) /* end of frame */
  1792. #define LCSR_BS (1 << 9) /* branch status */
  1793. #define LCSR_SINT (1 << 10) /* subsequent interrupt */
  1794. #define LDCMD_PAL (1 << 26) /* instructs DMA to load palette buffer */
  1795. /*
  1796. * Memory controller
  1797. */
  1798. #define MDCNFG __REG(0x48000000) /* SDRAM Configuration Register 0 */
  1799. #define MDREFR __REG(0x48000004) /* SDRAM Refresh Control Register */
  1800. #define MSC0 __REG(0x48000008) /* Static Memory Control Register 0 */
  1801. #define MSC1 __REG(0x4800000C) /* Static Memory Control Register 1 */
  1802. #define MSC2 __REG(0x48000010) /* Static Memory Control Register 2 */
  1803. #define MECR __REG(0x48000014) /* Expansion Memory (PCMCIA/Compact Flash) Bus Configuration */
  1804. #define SXLCR __REG(0x48000018) /* LCR value to be written to SDRAM-Timing Synchronous Flash */
  1805. #define SXCNFG __REG(0x4800001C) /* Synchronous Static Memory Control Register */
  1806. #define SXMRS __REG(0x48000024) /* MRS value to be written to Synchronous Flash or SMROM */
  1807. #define MCMEM0 __REG(0x48000028) /* Card interface Common Memory Space Socket 0 Timing */
  1808. #define MCMEM1 __REG(0x4800002C) /* Card interface Common Memory Space Socket 1 Timing */
  1809. #define MCATT0 __REG(0x48000030) /* Card interface Attribute Space Socket 0 Timing Configuration */
  1810. #define MCATT1 __REG(0x48000034) /* Card interface Attribute Space Socket 1 Timing Configuration */
  1811. #define MCIO0 __REG(0x48000038) /* Card interface I/O Space Socket 0 Timing Configuration */
  1812. #define MCIO1 __REG(0x4800003C) /* Card interface I/O Space Socket 1 Timing Configuration */
  1813. #define MDMRS __REG(0x48000040) /* MRS value to be written to SDRAM */
  1814. #define BOOT_DEF __REG(0x48000044) /* Read-Only Boot-Time Register. Contains BOOT_SEL and PKG_SEL */
  1815. /*
  1816. * More handy macros for PCMCIA
  1817. *
  1818. * Arg is socket number
  1819. */
  1820. #define MCMEM(s) __REG2(0x48000028, (s)<<2 ) /* Card interface Common Memory Space Socket s Timing */
  1821. #define MCATT(s) __REG2(0x48000030, (s)<<2 ) /* Card interface Attribute Space Socket s Timing Configuration */
  1822. #define MCIO(s) __REG2(0x48000038, (s)<<2 ) /* Card interface I/O Space Socket s Timing Configuration */
  1823. /* MECR register defines */
  1824. #define MECR_NOS (1 << 0) /* Number Of Sockets: 0 -> 1 sock, 1 -> 2 sock */
  1825. #define MECR_CIT (1 << 1) /* Card Is There: 0 -> no card, 1 -> card inserted */
  1826. #define MDREFR_K0DB4 (1 << 29) /* SDCLK0 Divide by 4 Control/Status */
  1827. #define MDREFR_K2FREE (1 << 25) /* SDRAM Free-Running Control */
  1828. #define MDREFR_K1FREE (1 << 24) /* SDRAM Free-Running Control */
  1829. #define MDREFR_K0FREE (1 << 23) /* SDRAM Free-Running Control */
  1830. #define MDREFR_SLFRSH (1 << 22) /* SDRAM Self-Refresh Control/Status */
  1831. #define MDREFR_APD (1 << 20) /* SDRAM/SSRAM Auto-Power-Down Enable */
  1832. #define MDREFR_K2DB2 (1 << 19) /* SDCLK2 Divide by 2 Control/Status */
  1833. #define MDREFR_K2RUN (1 << 18) /* SDCLK2 Run Control/Status */
  1834. #define MDREFR_K1DB2 (1 << 17) /* SDCLK1 Divide by 2 Control/Status */
  1835. #define MDREFR_K1RUN (1 << 16) /* SDCLK1 Run Control/Status */
  1836. #define MDREFR_E1PIN (1 << 15) /* SDCKE1 Level Control/Status */
  1837. #define MDREFR_K0DB2 (1 << 14) /* SDCLK0 Divide by 2 Control/Status */
  1838. #define MDREFR_K0RUN (1 << 13) /* SDCLK0 Run Control/Status */
  1839. #define MDREFR_E0PIN (1 << 12) /* SDCKE0 Level Control/Status */
  1840. #ifdef CONFIG_PXA27x
  1841. #define ARB_CNTRL __REG(0x48000048) /* Arbiter Control Register */
  1842. #define ARB_DMA_SLV_PARK (1<<31) /* Be parked with DMA slave when idle */
  1843. #define ARB_CI_PARK (1<<30) /* Be parked with Camera Interface when idle */
  1844. #define ARB_EX_MEM_PARK (1<<29) /* Be parked with external MEMC when idle */
  1845. #define ARB_INT_MEM_PARK (1<<28) /* Be parked with internal MEMC when idle */
  1846. #define ARB_USB_PARK (1<<27) /* Be parked with USB when idle */
  1847. #define ARB_LCD_PARK (1<<26) /* Be parked with LCD when idle */
  1848. #define ARB_DMA_PARK (1<<25) /* Be parked with DMA when idle */
  1849. #define ARB_CORE_PARK (1<<24) /* Be parked with core when idle */
  1850. #define ARB_LOCK_FLAG (1<<23) /* Only Locking masters gain access to the bus */
  1851. /*
  1852. * Keypad
  1853. */
  1854. #define KPC __REG(0x41500000) /* Keypad Interface Control register */
  1855. #define KPDK __REG(0x41500008) /* Keypad Interface Direct Key register */
  1856. #define KPREC __REG(0x41500010) /* Keypad Interface Rotary Encoder register */
  1857. #define KPMK __REG(0x41500018) /* Keypad Interface Matrix Key register */
  1858. #define KPAS __REG(0x41500020) /* Keypad Interface Automatic Scan register */
  1859. #define KPASMKP0 __REG(0x41500028) /* Keypad Interface Automatic Scan Multiple Key Presser register 0 */
  1860. #define KPASMKP1 __REG(0x41500030) /* Keypad Interface Automatic Scan Multiple Key Presser register 1 */
  1861. #define KPASMKP2 __REG(0x41500038) /* Keypad Interface Automatic Scan Multiple Key Presser register 2 */
  1862. #define KPASMKP3 __REG(0x41500040) /* Keypad Interface Automatic Scan Multiple Key Presser register 3 */
  1863. #define KPKDI __REG(0x41500048) /* Keypad Interface Key Debounce Interval register */
  1864. #define KPC_AS (0x1 << 30) /* Automatic Scan bit */
  1865. #define KPC_ASACT (0x1 << 29) /* Automatic Scan on Activity */
  1866. #define KPC_MI (0x1 << 22) /* Matrix interrupt bit */
  1867. #define KPC_IMKP (0x1 << 21) /* Ignore Multiple Key Press */
  1868. #define KPC_MS7 (0x1 << 20) /* Matrix scan line 7 */
  1869. #define KPC_MS6 (0x1 << 19) /* Matrix scan line 6 */
  1870. #define KPC_MS5 (0x1 << 18) /* Matrix scan line 5 */
  1871. #define KPC_MS4 (0x1 << 17) /* Matrix scan line 4 */
  1872. #define KPC_MS3 (0x1 << 16) /* Matrix scan line 3 */
  1873. #define KPC_MS2 (0x1 << 15) /* Matrix scan line 2 */
  1874. #define KPC_MS1 (0x1 << 14) /* Matrix scan line 1 */
  1875. #define KPC_MS0 (0x1 << 13) /* Matrix scan line 0 */
  1876. #define KPC_MS_ALL (KPC_MS0 | KPC_MS1 | KPC_MS2 | KPC_MS3 | KPC_MS4 | KPC_MS5 | KPC_MS6 | KPC_MS7)
  1877. #define KPC_ME (0x1 << 12) /* Matrix Keypad Enable */
  1878. #define KPC_MIE (0x1 << 11) /* Matrix Interrupt Enable */
  1879. #define KPC_DK_DEB_SEL (0x1 << 9) /* Direct Keypad Debounce Select */
  1880. #define KPC_DI (0x1 << 5) /* Direct key interrupt bit */
  1881. #define KPC_RE_ZERO_DEB (0x1 << 4) /* Rotary Encoder Zero Debounce */
  1882. #define KPC_REE1 (0x1 << 3) /* Rotary Encoder1 Enable */
  1883. #define KPC_REE0 (0x1 << 2) /* Rotary Encoder0 Enable */
  1884. #define KPC_DE (0x1 << 1) /* Direct Keypad Enable */
  1885. #define KPC_DIE (0x1 << 0) /* Direct Keypad interrupt Enable */
  1886. #define KPDK_DKP (0x1 << 31)
  1887. #define KPDK_DK7 (0x1 << 7)
  1888. #define KPDK_DK6 (0x1 << 6)
  1889. #define KPDK_DK5 (0x1 << 5)
  1890. #define KPDK_DK4 (0x1 << 4)
  1891. #define KPDK_DK3 (0x1 << 3)
  1892. #define KPDK_DK2 (0x1 << 2)
  1893. #define KPDK_DK1 (0x1 << 1)
  1894. #define KPDK_DK0 (0x1 << 0)
  1895. #define KPREC_OF1 (0x1 << 31)
  1896. #define kPREC_UF1 (0x1 << 30)
  1897. #define KPREC_OF0 (0x1 << 15)
  1898. #define KPREC_UF0 (0x1 << 14)
  1899. #define KPMK_MKP (0x1 << 31)
  1900. #define KPAS_SO (0x1 << 31)
  1901. #define KPASMKPx_SO (0x1 << 31)
  1902. /*
  1903. * UHC: USB Host Controller (OHCI-like) register definitions
  1904. */
  1905. #define UHC_BASE_PHYS (0x4C000000)
  1906. #define UHCREV __REG(0x4C000000) /* UHC HCI Spec Revision */
  1907. #define UHCHCON __REG(0x4C000004) /* UHC Host Control Register */
  1908. #define UHCCOMS __REG(0x4C000008) /* UHC Command Status Register */
  1909. #define UHCINTS __REG(0x4C00000C) /* UHC Interrupt Status Register */
  1910. #define UHCINTE __REG(0x4C000010) /* UHC Interrupt Enable */
  1911. #define UHCINTD __REG(0x4C000014) /* UHC Interrupt Disable */
  1912. #define UHCHCCA __REG(0x4C000018) /* UHC Host Controller Comm. Area */
  1913. #define UHCPCED __REG(0x4C00001C) /* UHC Period Current Endpt Descr */
  1914. #define UHCCHED __REG(0x4C000020) /* UHC Control Head Endpt Descr */
  1915. #define UHCCCED __REG(0x4C000024) /* UHC Control Current Endpt Descr */
  1916. #define UHCBHED __REG(0x4C000028) /* UHC Bulk Head Endpt Descr */
  1917. #define UHCBCED __REG(0x4C00002C) /* UHC Bulk Current Endpt Descr */
  1918. #define UHCDHEAD __REG(0x4C000030) /* UHC Done Head */
  1919. #define UHCFMI __REG(0x4C000034) /* UHC Frame Interval */
  1920. #define UHCFMR __REG(0x4C000038) /* UHC Frame Remaining */
  1921. #define UHCFMN __REG(0x4C00003C) /* UHC Frame Number */
  1922. #define UHCPERS __REG(0x4C000040) /* UHC Periodic Start */
  1923. #define UHCLS __REG(0x4C000044) /* UHC Low Speed Threshold */
  1924. #define UHCRHDA __REG(0x4C000048) /* UHC Root Hub Descriptor A */
  1925. #define UHCRHDA_NOCP (1 << 12) /* No over current protection */
  1926. #define UHCRHDB __REG(0x4C00004C) /* UHC Root Hub Descriptor B */
  1927. #define UHCRHS __REG(0x4C000050) /* UHC Root Hub Status */
  1928. #define UHCRHPS1 __REG(0x4C000054) /* UHC Root Hub Port 1 Status */
  1929. #define UHCRHPS2 __REG(0x4C000058) /* UHC Root Hub Port 2 Status */
  1930. #define UHCRHPS3 __REG(0x4C00005C) /* UHC Root Hub Port 3 Status */
  1931. #define UHCSTAT __REG(0x4C000060) /* UHC Status Register */
  1932. #define UHCSTAT_UPS3 (1 << 16) /* USB Power Sense Port3 */
  1933. #define UHCSTAT_SBMAI (1 << 15) /* System Bus Master Abort Interrupt*/
  1934. #define UHCSTAT_SBTAI (1 << 14) /* System Bus Target Abort Interrupt*/
  1935. #define UHCSTAT_UPRI (1 << 13) /* USB Port Resume Interrupt */
  1936. #define UHCSTAT_UPS2 (1 << 12) /* USB Power Sense Port 2 */
  1937. #define UHCSTAT_UPS1 (1 << 11) /* USB Power Sense Port 1 */
  1938. #define UHCSTAT_HTA (1 << 10) /* HCI Target Abort */
  1939. #define UHCSTAT_HBA (1 << 8) /* HCI Buffer Active */
  1940. #define UHCSTAT_RWUE (1 << 7) /* HCI Remote Wake Up Event */
  1941. #define UHCHR __REG(0x4C000064) /* UHC Reset Register */
  1942. #define UHCHR_SSEP3 (1 << 11) /* Sleep Standby Enable for Port3 */
  1943. #define UHCHR_SSEP2 (1 << 10) /* Sleep Standby Enable for Port2 */
  1944. #define UHCHR_SSEP1 (1 << 9) /* Sleep Standby Enable for Port1 */
  1945. #define UHCHR_PCPL (1 << 7) /* Power control polarity low */
  1946. #define UHCHR_PSPL (1 << 6) /* Power sense polarity low */
  1947. #define UHCHR_SSE (1 << 5) /* Sleep Standby Enable */
  1948. #define UHCHR_UIT (1 << 4) /* USB Interrupt Test */
  1949. #define UHCHR_SSDC (1 << 3) /* Simulation Scale Down Clock */
  1950. #define UHCHR_CGR (1 << 2) /* Clock Generation Reset */
  1951. #define UHCHR_FHR (1 << 1) /* Force Host Controller Reset */
  1952. #define UHCHR_FSBIR (1 << 0) /* Force System Bus Iface Reset */
  1953. #define UHCHIE __REG(0x4C000068) /* UHC Interrupt Enable Register*/
  1954. #define UHCHIE_UPS3IE (1 << 14) /* Power Sense Port3 IntEn */
  1955. #define UHCHIE_UPRIE (1 << 13) /* Port Resume IntEn */
  1956. #define UHCHIE_UPS2IE (1 << 12) /* Power Sense Port2 IntEn */
  1957. #define UHCHIE_UPS1IE (1 << 11) /* Power Sense Port1 IntEn */
  1958. #define UHCHIE_TAIE (1 << 10) /* HCI Interface Transfer Abort
  1959. Interrupt Enable*/
  1960. #define UHCHIE_HBAIE (1 << 8) /* HCI Buffer Active IntEn */
  1961. #define UHCHIE_RWIE (1 << 7) /* Remote Wake-up IntEn */
  1962. #define UHCHIT __REG(0x4C00006C) /* UHC Interrupt Test register */
  1963. /* Camera Interface */
  1964. #define CICR0 __REG(0x50000000)
  1965. #define CICR1 __REG(0x50000004)
  1966. #define CICR2 __REG(0x50000008)
  1967. #define CICR3 __REG(0x5000000C)
  1968. #define CICR4 __REG(0x50000010)
  1969. #define CISR __REG(0x50000014)
  1970. #define CIFR __REG(0x50000018)
  1971. #define CITOR __REG(0x5000001C)
  1972. #define CIBR0 __REG(0x50000028)
  1973. #define CIBR1 __REG(0x50000030)
  1974. #define CIBR2 __REG(0x50000038)
  1975. #define CICR0_DMAEN (1 << 31) /* DMA request enable */
  1976. #define CICR0_PAR_EN (1 << 30) /* Parity enable */
  1977. #define CICR0_SL_CAP_EN (1 << 29) /* Capture enable for slave mode */
  1978. #define CICR0_ENB (1 << 28) /* Camera interface enable */
  1979. #define CICR0_DIS (1 << 27) /* Camera interface disable */
  1980. #define CICR0_SIM (0x7 << 24) /* Sensor interface mode mask */
  1981. #define CICR0_TOM (1 << 9) /* Time-out mask */
  1982. #define CICR0_RDAVM (1 << 8) /* Receive-data-available mask */
  1983. #define CICR0_FEM (1 << 7) /* FIFO-empty mask */
  1984. #define CICR0_EOLM (1 << 6) /* End-of-line mask */
  1985. #define CICR0_PERRM (1 << 5) /* Parity-error mask */
  1986. #define CICR0_QDM (1 << 4) /* Quick-disable mask */
  1987. #define CICR0_CDM (1 << 3) /* Disable-done mask */
  1988. #define CICR0_SOFM (1 << 2) /* Start-of-frame mask */
  1989. #define CICR0_EOFM (1 << 1) /* End-of-frame mask */
  1990. #define CICR0_FOM (1 << 0) /* FIFO-overrun mask */
  1991. #define CICR1_TBIT (1 << 31) /* Transparency bit */
  1992. #define CICR1_RGBT_CONV (0x3 << 30) /* RGBT conversion mask */
  1993. #define CICR1_PPL (0x3f << 15) /* Pixels per line mask */
  1994. #define CICR1_RGB_CONV (0x7 << 12) /* RGB conversion mask */
  1995. #define CICR1_RGB_F (1 << 11) /* RGB format */
  1996. #define CICR1_YCBCR_F (1 << 10) /* YCbCr format */
  1997. #define CICR1_RGB_BPP (0x7 << 7) /* RGB bis per pixel mask */
  1998. #define CICR1_RAW_BPP (0x3 << 5) /* Raw bis per pixel mask */
  1999. #define CICR1_COLOR_SP (0x3 << 3) /* Color space mask */
  2000. #define CICR1_DW (0x7 << 0) /* Data width mask */
  2001. #define CICR2_BLW (0xff << 24) /* Beginning-of-line pixel clock
  2002. wait count mask */
  2003. #define CICR2_ELW (0xff << 16) /* End-of-line pixel clock
  2004. wait count mask */
  2005. #define CICR2_HSW (0x3f << 10) /* Horizontal sync pulse width mask */
  2006. #define CICR2_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
  2007. wait count mask */
  2008. #define CICR2_FSW (0x7 << 0) /* Frame stabilization
  2009. wait count mask */
  2010. #define CICR3_BFW (0xff << 24) /* Beginning-of-frame line clock
  2011. wait count mask */
  2012. #define CICR3_EFW (0xff << 16) /* End-of-frame line clock
  2013. wait count mask */
  2014. #define CICR3_VSW (0x3f << 10) /* Vertical sync pulse width mask */
  2015. #define CICR3_BFPW (0x3f << 3) /* Beginning-of-frame pixel clock
  2016. wait count mask */
  2017. #define CICR3_LPF (0x3ff << 0) /* Lines per frame mask */
  2018. #define CICR4_MCLK_DLY (0x3 << 24) /* MCLK Data Capture Delay mask */
  2019. #define CICR4_PCLK_EN (1 << 23) /* Pixel clock enable */
  2020. #define CICR4_PCP (1 << 22) /* Pixel clock polarity */
  2021. #define CICR4_HSP (1 << 21) /* Horizontal sync polarity */
  2022. #define CICR4_VSP (1 << 20) /* Vertical sync polarity */
  2023. #define CICR4_MCLK_EN (1 << 19) /* MCLK enable */
  2024. #define CICR4_FR_RATE (0x7 << 8) /* Frame rate mask */
  2025. #define CICR4_DIV (0xff << 0) /* Clock divisor mask */
  2026. #define CISR_FTO (1 << 15) /* FIFO time-out */
  2027. #define CISR_RDAV_2 (1 << 14) /* Channel 2 receive data available */
  2028. #define CISR_RDAV_1 (1 << 13) /* Channel 1 receive data available */
  2029. #define CISR_RDAV_0 (1 << 12) /* Channel 0 receive data available */
  2030. #define CISR_FEMPTY_2 (1 << 11) /* Channel 2 FIFO empty */
  2031. #define CISR_FEMPTY_1 (1 << 10) /* Channel 1 FIFO empty */
  2032. #define CISR_FEMPTY_0 (1 << 9) /* Channel 0 FIFO empty */
  2033. #define CISR_EOL (1 << 8) /* End of line */
  2034. #define CISR_PAR_ERR (1 << 7) /* Parity error */
  2035. #define CISR_CQD (1 << 6) /* Camera interface quick disable */
  2036. #define CISR_SOF (1 << 5) /* Start of frame */
  2037. #define CISR_CDD (1 << 4) /* Camera interface disable done */
  2038. #define CISR_EOF (1 << 3) /* End of frame */
  2039. #define CISR_IFO_2 (1 << 2) /* FIFO overrun for Channel 2 */
  2040. #define CISR_IFO_1 (1 << 1) /* FIFO overrun for Channel 1 */
  2041. #define CISR_IFO_0 (1 << 0) /* FIFO overrun for Channel 0 */
  2042. #define CIFR_FLVL2 (0x7f << 23) /* FIFO 2 level mask */
  2043. #define CIFR_FLVL1 (0x7f << 16) /* FIFO 1 level mask */
  2044. #define CIFR_FLVL0 (0xff << 8) /* FIFO 0 level mask */
  2045. #define CIFR_THL_0 (0x3 << 4) /* Threshold Level for Channel 0 FIFO */
  2046. #define CIFR_RESET_F (1 << 3) /* Reset input FIFOs */
  2047. #define CIFR_FEN2 (1 << 2) /* FIFO enable for channel 2 */
  2048. #define CIFR_FEN1 (1 << 1) /* FIFO enable for channel 1 */
  2049. #define CIFR_FEN0 (1 << 0) /* FIFO enable for channel 0 */
  2050. #define SRAM_SIZE 0x40000 /* 4x64K */
  2051. #define SRAM_MEM_PHYS 0x5C000000
  2052. #define IMPMCR __REG(0x58000000) /* IM Power Management Control Reg */
  2053. #define IMPMSR __REG(0x58000008) /* IM Power Management Status Reg */
  2054. #define IMPMCR_PC3 (0x3 << 22) /* Bank 3 Power Control */
  2055. #define IMPMCR_PC3_RUN_MODE (0x0 << 22) /* Run mode */
  2056. #define IMPMCR_PC3_STANDBY_MODE (0x1 << 22) /* Standby mode */
  2057. #define IMPMCR_PC3_AUTO_MODE (0x3 << 22) /* Automatically controlled */
  2058. #define IMPMCR_PC2 (0x3 << 20) /* Bank 2 Power Control */
  2059. #define IMPMCR_PC2_RUN_MODE (0x0 << 20) /* Run mode */
  2060. #define IMPMCR_PC2_STANDBY_MODE (0x1 << 20) /* Standby mode */
  2061. #define IMPMCR_PC2_AUTO_MODE (0x3 << 20) /* Automatically controlled */
  2062. #define IMPMCR_PC1 (0x3 << 18) /* Bank 1 Power Control */
  2063. #define IMPMCR_PC1_RUN_MODE (0x0 << 18) /* Run mode */
  2064. #define IMPMCR_PC1_STANDBY_MODE (0x1 << 18) /* Standby mode */
  2065. #define IMPMCR_PC1_AUTO_MODE (0x3 << 18) /* Automatically controlled */
  2066. #define IMPMCR_PC0 (0x3 << 16) /* Bank 0 Power Control */
  2067. #define IMPMCR_PC0_RUN_MODE (0x0 << 16) /* Run mode */
  2068. #define IMPMCR_PC0_STANDBY_MODE (0x1 << 16) /* Standby mode */
  2069. #define IMPMCR_PC0_AUTO_MODE (0x3 << 16) /* Automatically controlled */
  2070. #define IMPMCR_AW3 (1 << 11) /* Bank 3 Automatic Wake-up enable */
  2071. #define IMPMCR_AW2 (1 << 10) /* Bank 2 Automatic Wake-up enable */
  2072. #define IMPMCR_AW1 (1 << 9) /* Bank 1 Automatic Wake-up enable */
  2073. #define IMPMCR_AW0 (1 << 8) /* Bank 0 Automatic Wake-up enable */
  2074. #define IMPMCR_DST (0xFF << 0) /* Delay Standby Time, ms */
  2075. #define IMPMSR_PS3 (0x3 << 6) /* Bank 3 Power Status: */
  2076. #define IMPMSR_PS3_RUN_MODE (0x0 << 6) /* Run mode */
  2077. #define IMPMSR_PS3_STANDBY_MODE (0x1 << 6) /* Standby mode */
  2078. #define IMPMSR_PS2 (0x3 << 4) /* Bank 2 Power Status: */
  2079. #define IMPMSR_PS2_RUN_MODE (0x0 << 4) /* Run mode */
  2080. #define IMPMSR_PS2_STANDBY_MODE (0x1 << 4) /* Standby mode */
  2081. #define IMPMSR_PS1 (0x3 << 2) /* Bank 1 Power Status: */
  2082. #define IMPMSR_PS1_RUN_MODE (0x0 << 2) /* Run mode */
  2083. #define IMPMSR_PS1_STANDBY_MODE (0x1 << 2) /* Standby mode */
  2084. #define IMPMSR_PS0 (0x3 << 0) /* Bank 0 Power Status: */
  2085. #define IMPMSR_PS0_RUN_MODE (0x0 << 0) /* Run mode */
  2086. #define IMPMSR_PS0_STANDBY_MODE (0x1 << 0) /* Standby mode */
  2087. #endif
  2088. /* PWRMODE register M field values */
  2089. #define PWRMODE_IDLE 0x1
  2090. #define PWRMODE_STANDBY 0x2
  2091. #define PWRMODE_SLEEP 0x3
  2092. #define PWRMODE_DEEPSLEEP 0x7
  2093. #endif