mipsregs.h 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. /*
  2. * Copyright (C) 1994, 1995, 1996, 1997, 2000, 2001 by Ralf Baechle
  3. * Copyright (C) 2000 Silicon Graphics, Inc.
  4. * Modified for further R[236]000 support by Paul M. Antoine, 1996.
  5. * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  6. * Copyright (C) 2000, 07 MIPS Technologies, Inc.
  7. * Copyright (C) 2003, 2004 Maciej W. Rozycki
  8. *
  9. * SPDX-License-Identifier: GPL-2.0
  10. */
  11. #ifndef _ASM_MIPSREGS_H
  12. #define _ASM_MIPSREGS_H
  13. /*
  14. * The following macros are especially useful for __asm__
  15. * inline assembler.
  16. */
  17. #ifndef __STR
  18. #define __STR(x) #x
  19. #endif
  20. #ifndef STR
  21. #define STR(x) __STR(x)
  22. #endif
  23. /*
  24. * Configure language
  25. */
  26. #ifdef __ASSEMBLY__
  27. #define _ULCAST_
  28. #else
  29. #define _ULCAST_ (unsigned long)
  30. #endif
  31. /*
  32. * Coprocessor 0 register names
  33. */
  34. #define CP0_INDEX $0
  35. #define CP0_RANDOM $1
  36. #define CP0_ENTRYLO0 $2
  37. #define CP0_ENTRYLO1 $3
  38. #define CP0_CONF $3
  39. #define CP0_GLOBALNUMBER $3, 1
  40. #define CP0_CONTEXT $4
  41. #define CP0_PAGEMASK $5
  42. #define CP0_WIRED $6
  43. #define CP0_INFO $7
  44. #define CP0_HWRENA $7, 0
  45. #define CP0_BADVADDR $8
  46. #define CP0_BADINSTR $8, 1
  47. #define CP0_COUNT $9
  48. #define CP0_ENTRYHI $10
  49. #define CP0_COMPARE $11
  50. #define CP0_STATUS $12
  51. #define CP0_CAUSE $13
  52. #define CP0_EPC $14
  53. #define CP0_PRID $15
  54. #define CP0_EBASE $15, 1
  55. #define CP0_CMGCRBASE $15, 3
  56. #define CP0_CONFIG $16
  57. #define CP0_CONFIG3 $16, 3
  58. #define CP0_CONFIG5 $16, 5
  59. #define CP0_LLADDR $17
  60. #define CP0_WATCHLO $18
  61. #define CP0_WATCHHI $19
  62. #define CP0_XCONTEXT $20
  63. #define CP0_FRAMEMASK $21
  64. #define CP0_DIAGNOSTIC $22
  65. #define CP0_DEBUG $23
  66. #define CP0_DEPC $24
  67. #define CP0_PERFORMANCE $25
  68. #define CP0_ECC $26
  69. #define CP0_CACHEERR $27
  70. #define CP0_TAGLO $28
  71. #define CP0_TAGHI $29
  72. #define CP0_ERROREPC $30
  73. #define CP0_DESAVE $31
  74. /*
  75. * R4640/R4650 cp0 register names. These registers are listed
  76. * here only for completeness; without MMU these CPUs are not useable
  77. * by Linux. A future ELKS port might take make Linux run on them
  78. * though ...
  79. */
  80. #define CP0_IBASE $0
  81. #define CP0_IBOUND $1
  82. #define CP0_DBASE $2
  83. #define CP0_DBOUND $3
  84. #define CP0_CALG $17
  85. #define CP0_IWATCH $18
  86. #define CP0_DWATCH $19
  87. /*
  88. * Coprocessor 0 Set 1 register names
  89. */
  90. #define CP0_S1_DERRADDR0 $26
  91. #define CP0_S1_DERRADDR1 $27
  92. #define CP0_S1_INTCONTROL $20
  93. /*
  94. * Coprocessor 0 Set 2 register names
  95. */
  96. #define CP0_S2_SRSCTL $12 /* MIPSR2 */
  97. /*
  98. * Coprocessor 0 Set 3 register names
  99. */
  100. #define CP0_S3_SRSMAP $12 /* MIPSR2 */
  101. /*
  102. * TX39 Series
  103. */
  104. #define CP0_TX39_CACHE $7
  105. /* Generic EntryLo bit definitions */
  106. #define ENTRYLO_G (_ULCAST_(1) << 0)
  107. #define ENTRYLO_V (_ULCAST_(1) << 1)
  108. #define ENTRYLO_D (_ULCAST_(1) << 2)
  109. #define ENTRYLO_C_SHIFT 3
  110. #define ENTRYLO_C (_ULCAST_(7) << ENTRYLO_C_SHIFT)
  111. /* R3000 EntryLo bit definitions */
  112. #define R3K_ENTRYLO_G (_ULCAST_(1) << 8)
  113. #define R3K_ENTRYLO_V (_ULCAST_(1) << 9)
  114. #define R3K_ENTRYLO_D (_ULCAST_(1) << 10)
  115. #define R3K_ENTRYLO_N (_ULCAST_(1) << 11)
  116. /* MIPS32/64 EntryLo bit definitions */
  117. #define MIPS_ENTRYLO_PFN_SHIFT 6
  118. #define MIPS_ENTRYLO_XI (_ULCAST_(1) << (BITS_PER_LONG - 2))
  119. #define MIPS_ENTRYLO_RI (_ULCAST_(1) << (BITS_PER_LONG - 1))
  120. /*
  121. * Values for PageMask register
  122. */
  123. #ifdef CONFIG_CPU_VR41XX
  124. /* Why doesn't stupidity hurt ... */
  125. #define PM_1K 0x00000000
  126. #define PM_4K 0x00001800
  127. #define PM_16K 0x00007800
  128. #define PM_64K 0x0001f800
  129. #define PM_256K 0x0007f800
  130. #else
  131. #define PM_4K 0x00000000
  132. #define PM_8K 0x00002000
  133. #define PM_16K 0x00006000
  134. #define PM_32K 0x0000e000
  135. #define PM_64K 0x0001e000
  136. #define PM_128K 0x0003e000
  137. #define PM_256K 0x0007e000
  138. #define PM_512K 0x000fe000
  139. #define PM_1M 0x001fe000
  140. #define PM_2M 0x003fe000
  141. #define PM_4M 0x007fe000
  142. #define PM_8M 0x00ffe000
  143. #define PM_16M 0x01ffe000
  144. #define PM_32M 0x03ffe000
  145. #define PM_64M 0x07ffe000
  146. #define PM_256M 0x1fffe000
  147. #define PM_1G 0x7fffe000
  148. #endif
  149. /*
  150. * Values used for computation of new tlb entries
  151. */
  152. #define PL_4K 12
  153. #define PL_16K 14
  154. #define PL_64K 16
  155. #define PL_256K 18
  156. #define PL_1M 20
  157. #define PL_4M 22
  158. #define PL_16M 24
  159. #define PL_64M 26
  160. #define PL_256M 28
  161. /*
  162. * PageGrain bits
  163. */
  164. #define PG_RIE (_ULCAST_(1) << 31)
  165. #define PG_XIE (_ULCAST_(1) << 30)
  166. #define PG_ELPA (_ULCAST_(1) << 29)
  167. #define PG_ESP (_ULCAST_(1) << 28)
  168. #define PG_IEC (_ULCAST_(1) << 27)
  169. /* MIPS32/64 EntryHI bit definitions */
  170. #define MIPS_ENTRYHI_EHINV (_ULCAST_(1) << 10)
  171. /*
  172. * R4x00 interrupt enable / cause bits
  173. */
  174. #define IE_SW0 (_ULCAST_(1) << 8)
  175. #define IE_SW1 (_ULCAST_(1) << 9)
  176. #define IE_IRQ0 (_ULCAST_(1) << 10)
  177. #define IE_IRQ1 (_ULCAST_(1) << 11)
  178. #define IE_IRQ2 (_ULCAST_(1) << 12)
  179. #define IE_IRQ3 (_ULCAST_(1) << 13)
  180. #define IE_IRQ4 (_ULCAST_(1) << 14)
  181. #define IE_IRQ5 (_ULCAST_(1) << 15)
  182. /*
  183. * R4x00 interrupt cause bits
  184. */
  185. #define C_SW0 (_ULCAST_(1) << 8)
  186. #define C_SW1 (_ULCAST_(1) << 9)
  187. #define C_IRQ0 (_ULCAST_(1) << 10)
  188. #define C_IRQ1 (_ULCAST_(1) << 11)
  189. #define C_IRQ2 (_ULCAST_(1) << 12)
  190. #define C_IRQ3 (_ULCAST_(1) << 13)
  191. #define C_IRQ4 (_ULCAST_(1) << 14)
  192. #define C_IRQ5 (_ULCAST_(1) << 15)
  193. /*
  194. * Bitfields in the R4xx0 cp0 status register
  195. */
  196. #define ST0_IE 0x00000001
  197. #define ST0_EXL 0x00000002
  198. #define ST0_ERL 0x00000004
  199. #define ST0_KSU 0x00000018
  200. # define KSU_USER 0x00000010
  201. # define KSU_SUPERVISOR 0x00000008
  202. # define KSU_KERNEL 0x00000000
  203. #define ST0_UX 0x00000020
  204. #define ST0_SX 0x00000040
  205. #define ST0_KX 0x00000080
  206. #define ST0_DE 0x00010000
  207. #define ST0_CE 0x00020000
  208. /*
  209. * Setting c0_status.co enables Hit_Writeback and Hit_Writeback_Invalidate
  210. * cacheops in userspace. This bit exists only on RM7000 and RM9000
  211. * processors.
  212. */
  213. #define ST0_CO 0x08000000
  214. /*
  215. * Bitfields in the R[23]000 cp0 status register.
  216. */
  217. #define ST0_IEC 0x00000001
  218. #define ST0_KUC 0x00000002
  219. #define ST0_IEP 0x00000004
  220. #define ST0_KUP 0x00000008
  221. #define ST0_IEO 0x00000010
  222. #define ST0_KUO 0x00000020
  223. /* bits 6 & 7 are reserved on R[23]000 */
  224. #define ST0_ISC 0x00010000
  225. #define ST0_SWC 0x00020000
  226. #define ST0_CM 0x00080000
  227. /*
  228. * Bits specific to the R4640/R4650
  229. */
  230. #define ST0_UM (_ULCAST_(1) << 4)
  231. #define ST0_IL (_ULCAST_(1) << 23)
  232. #define ST0_DL (_ULCAST_(1) << 24)
  233. /*
  234. * Enable the MIPS MDMX and DSP ASEs
  235. */
  236. #define ST0_MX 0x01000000
  237. /*
  238. * Status register bits available in all MIPS CPUs.
  239. */
  240. #define ST0_IM 0x0000ff00
  241. #define STATUSB_IP0 8
  242. #define STATUSF_IP0 (_ULCAST_(1) << 8)
  243. #define STATUSB_IP1 9
  244. #define STATUSF_IP1 (_ULCAST_(1) << 9)
  245. #define STATUSB_IP2 10
  246. #define STATUSF_IP2 (_ULCAST_(1) << 10)
  247. #define STATUSB_IP3 11
  248. #define STATUSF_IP3 (_ULCAST_(1) << 11)
  249. #define STATUSB_IP4 12
  250. #define STATUSF_IP4 (_ULCAST_(1) << 12)
  251. #define STATUSB_IP5 13
  252. #define STATUSF_IP5 (_ULCAST_(1) << 13)
  253. #define STATUSB_IP6 14
  254. #define STATUSF_IP6 (_ULCAST_(1) << 14)
  255. #define STATUSB_IP7 15
  256. #define STATUSF_IP7 (_ULCAST_(1) << 15)
  257. #define STATUSB_IP8 0
  258. #define STATUSF_IP8 (_ULCAST_(1) << 0)
  259. #define STATUSB_IP9 1
  260. #define STATUSF_IP9 (_ULCAST_(1) << 1)
  261. #define STATUSB_IP10 2
  262. #define STATUSF_IP10 (_ULCAST_(1) << 2)
  263. #define STATUSB_IP11 3
  264. #define STATUSF_IP11 (_ULCAST_(1) << 3)
  265. #define STATUSB_IP12 4
  266. #define STATUSF_IP12 (_ULCAST_(1) << 4)
  267. #define STATUSB_IP13 5
  268. #define STATUSF_IP13 (_ULCAST_(1) << 5)
  269. #define STATUSB_IP14 6
  270. #define STATUSF_IP14 (_ULCAST_(1) << 6)
  271. #define STATUSB_IP15 7
  272. #define STATUSF_IP15 (_ULCAST_(1) << 7)
  273. #define ST0_CH 0x00040000
  274. #define ST0_NMI 0x00080000
  275. #define ST0_SR 0x00100000
  276. #define ST0_TS 0x00200000
  277. #define ST0_BEV 0x00400000
  278. #define ST0_RE 0x02000000
  279. #define ST0_FR 0x04000000
  280. #define ST0_CU 0xf0000000
  281. #define ST0_CU0 0x10000000
  282. #define ST0_CU1 0x20000000
  283. #define ST0_CU2 0x40000000
  284. #define ST0_CU3 0x80000000
  285. #define ST0_XX 0x80000000 /* MIPS IV naming */
  286. /*
  287. * Bitfields and bit numbers in the coprocessor 0 IntCtl register. (MIPSR2)
  288. */
  289. #define INTCTLB_IPFDC 23
  290. #define INTCTLF_IPFDC (_ULCAST_(7) << INTCTLB_IPFDC)
  291. #define INTCTLB_IPPCI 26
  292. #define INTCTLF_IPPCI (_ULCAST_(7) << INTCTLB_IPPCI)
  293. #define INTCTLB_IPTI 29
  294. #define INTCTLF_IPTI (_ULCAST_(7) << INTCTLB_IPTI)
  295. /*
  296. * Bitfields and bit numbers in the coprocessor 0 cause register.
  297. *
  298. * Refer to your MIPS R4xx0 manual, chapter 5 for explanation.
  299. */
  300. #define CAUSEB_EXCCODE 2
  301. #define CAUSEF_EXCCODE (_ULCAST_(31) << 2)
  302. #define CAUSEB_IP 8
  303. #define CAUSEF_IP (_ULCAST_(255) << 8)
  304. #define CAUSEB_IP0 8
  305. #define CAUSEF_IP0 (_ULCAST_(1) << 8)
  306. #define CAUSEB_IP1 9
  307. #define CAUSEF_IP1 (_ULCAST_(1) << 9)
  308. #define CAUSEB_IP2 10
  309. #define CAUSEF_IP2 (_ULCAST_(1) << 10)
  310. #define CAUSEB_IP3 11
  311. #define CAUSEF_IP3 (_ULCAST_(1) << 11)
  312. #define CAUSEB_IP4 12
  313. #define CAUSEF_IP4 (_ULCAST_(1) << 12)
  314. #define CAUSEB_IP5 13
  315. #define CAUSEF_IP5 (_ULCAST_(1) << 13)
  316. #define CAUSEB_IP6 14
  317. #define CAUSEF_IP6 (_ULCAST_(1) << 14)
  318. #define CAUSEB_IP7 15
  319. #define CAUSEF_IP7 (_ULCAST_(1) << 15)
  320. #define CAUSEB_FDCI 21
  321. #define CAUSEF_FDCI (_ULCAST_(1) << 21)
  322. #define CAUSEB_IV 23
  323. #define CAUSEF_IV (_ULCAST_(1) << 23)
  324. #define CAUSEB_PCI 26
  325. #define CAUSEF_PCI (_ULCAST_(1) << 26)
  326. #define CAUSEB_CE 28
  327. #define CAUSEF_CE (_ULCAST_(3) << 28)
  328. #define CAUSEB_TI 30
  329. #define CAUSEF_TI (_ULCAST_(1) << 30)
  330. #define CAUSEB_BD 31
  331. #define CAUSEF_BD (_ULCAST_(1) << 31)
  332. /*
  333. * Bits in the coprocessor 0 EBase register.
  334. */
  335. #define EBASE_CPUNUM 0x3ff
  336. /*
  337. * Bits in the coprocessor 0 config register.
  338. */
  339. /* Generic bits. */
  340. #define CONF_CM_CACHABLE_NO_WA 0
  341. #define CONF_CM_CACHABLE_WA 1
  342. #define CONF_CM_UNCACHED 2
  343. #define CONF_CM_CACHABLE_NONCOHERENT 3
  344. #define CONF_CM_CACHABLE_CE 4
  345. #define CONF_CM_CACHABLE_COW 5
  346. #define CONF_CM_CACHABLE_CUW 6
  347. #define CONF_CM_CACHABLE_ACCELERATED 7
  348. #define CONF_CM_CMASK 7
  349. #define CONF_BE (_ULCAST_(1) << 15)
  350. /* Bits common to various processors. */
  351. #define CONF_CU (_ULCAST_(1) << 3)
  352. #define CONF_DB (_ULCAST_(1) << 4)
  353. #define CONF_IB (_ULCAST_(1) << 5)
  354. #define CONF_DC (_ULCAST_(7) << 6)
  355. #define CONF_IC (_ULCAST_(7) << 9)
  356. #define CONF_EB (_ULCAST_(1) << 13)
  357. #define CONF_EM (_ULCAST_(1) << 14)
  358. #define CONF_SM (_ULCAST_(1) << 16)
  359. #define CONF_SC (_ULCAST_(1) << 17)
  360. #define CONF_EW (_ULCAST_(3) << 18)
  361. #define CONF_EP (_ULCAST_(15) << 24)
  362. #define CONF_EC (_ULCAST_(7) << 28)
  363. #define CONF_CM (_ULCAST_(1) << 31)
  364. /* Bits specific to the R4xx0. */
  365. #define R4K_CONF_SW (_ULCAST_(1) << 20)
  366. #define R4K_CONF_SS (_ULCAST_(1) << 21)
  367. #define R4K_CONF_SB (_ULCAST_(3) << 22)
  368. /* Bits specific to the R5000. */
  369. #define R5K_CONF_SE (_ULCAST_(1) << 12)
  370. #define R5K_CONF_SS (_ULCAST_(3) << 20)
  371. /* Bits specific to the RM7000. */
  372. #define RM7K_CONF_SE (_ULCAST_(1) << 3)
  373. #define RM7K_CONF_TE (_ULCAST_(1) << 12)
  374. #define RM7K_CONF_CLK (_ULCAST_(1) << 16)
  375. #define RM7K_CONF_TC (_ULCAST_(1) << 17)
  376. #define RM7K_CONF_SI (_ULCAST_(3) << 20)
  377. #define RM7K_CONF_SC (_ULCAST_(1) << 31)
  378. /* Bits specific to the R10000. */
  379. #define R10K_CONF_DN (_ULCAST_(3) << 3)
  380. #define R10K_CONF_CT (_ULCAST_(1) << 5)
  381. #define R10K_CONF_PE (_ULCAST_(1) << 6)
  382. #define R10K_CONF_PM (_ULCAST_(3) << 7)
  383. #define R10K_CONF_EC (_ULCAST_(15) << 9)
  384. #define R10K_CONF_SB (_ULCAST_(1) << 13)
  385. #define R10K_CONF_SK (_ULCAST_(1) << 14)
  386. #define R10K_CONF_SS (_ULCAST_(7) << 16)
  387. #define R10K_CONF_SC (_ULCAST_(7) << 19)
  388. #define R10K_CONF_DC (_ULCAST_(7) << 26)
  389. #define R10K_CONF_IC (_ULCAST_(7) << 29)
  390. /* Bits specific to the VR41xx. */
  391. #define VR41_CONF_CS (_ULCAST_(1) << 12)
  392. #define VR41_CONF_P4K (_ULCAST_(1) << 13)
  393. #define VR41_CONF_BP (_ULCAST_(1) << 16)
  394. #define VR41_CONF_M16 (_ULCAST_(1) << 20)
  395. #define VR41_CONF_AD (_ULCAST_(1) << 23)
  396. /* Bits specific to the R30xx. */
  397. #define R30XX_CONF_FDM (_ULCAST_(1) << 19)
  398. #define R30XX_CONF_REV (_ULCAST_(1) << 22)
  399. #define R30XX_CONF_AC (_ULCAST_(1) << 23)
  400. #define R30XX_CONF_RF (_ULCAST_(1) << 24)
  401. #define R30XX_CONF_HALT (_ULCAST_(1) << 25)
  402. #define R30XX_CONF_FPINT (_ULCAST_(7) << 26)
  403. #define R30XX_CONF_DBR (_ULCAST_(1) << 29)
  404. #define R30XX_CONF_SB (_ULCAST_(1) << 30)
  405. #define R30XX_CONF_LOCK (_ULCAST_(1) << 31)
  406. /* Bits specific to the TX49. */
  407. #define TX49_CONF_DC (_ULCAST_(1) << 16)
  408. #define TX49_CONF_IC (_ULCAST_(1) << 17) /* conflict with CONF_SC */
  409. #define TX49_CONF_HALT (_ULCAST_(1) << 18)
  410. #define TX49_CONF_CWFON (_ULCAST_(1) << 27)
  411. /* Bits specific to the MIPS32/64 PRA. */
  412. #define MIPS_CONF_MT (_ULCAST_(7) << 7)
  413. #define MIPS_CONF_MT_TLB (_ULCAST_(1) << 7)
  414. #define MIPS_CONF_MT_FTLB (_ULCAST_(4) << 7)
  415. #define MIPS_CONF_AR (_ULCAST_(7) << 10)
  416. #define MIPS_CONF_AT (_ULCAST_(3) << 13)
  417. #define MIPS_CONF_IMPL (_ULCAST_(0x1ff) << 16)
  418. #define MIPS_CONF_M (_ULCAST_(1) << 31)
  419. /*
  420. * Bits in the MIPS32/64 PRA coprocessor 0 config registers 1 and above.
  421. */
  422. #define MIPS_CONF1_FP (_ULCAST_(1) << 0)
  423. #define MIPS_CONF1_EP (_ULCAST_(1) << 1)
  424. #define MIPS_CONF1_CA (_ULCAST_(1) << 2)
  425. #define MIPS_CONF1_WR (_ULCAST_(1) << 3)
  426. #define MIPS_CONF1_PC (_ULCAST_(1) << 4)
  427. #define MIPS_CONF1_MD (_ULCAST_(1) << 5)
  428. #define MIPS_CONF1_C2 (_ULCAST_(1) << 6)
  429. #define MIPS_CONF1_DA_SHF 7
  430. #define MIPS_CONF1_DA_SZ 3
  431. #define MIPS_CONF1_DA (_ULCAST_(7) << 7)
  432. #define MIPS_CONF1_DL_SHF 10
  433. #define MIPS_CONF1_DL_SZ 3
  434. #define MIPS_CONF1_DL (_ULCAST_(7) << 10)
  435. #define MIPS_CONF1_DS_SHF 13
  436. #define MIPS_CONF1_DS_SZ 3
  437. #define MIPS_CONF1_DS (_ULCAST_(7) << 13)
  438. #define MIPS_CONF1_IA_SHF 16
  439. #define MIPS_CONF1_IA_SZ 3
  440. #define MIPS_CONF1_IA (_ULCAST_(7) << 16)
  441. #define MIPS_CONF1_IL_SHF 19
  442. #define MIPS_CONF1_IL_SZ 3
  443. #define MIPS_CONF1_IL (_ULCAST_(7) << 19)
  444. #define MIPS_CONF1_IS_SHF 22
  445. #define MIPS_CONF1_IS_SZ 3
  446. #define MIPS_CONF1_IS (_ULCAST_(7) << 22)
  447. #define MIPS_CONF1_TLBS_SHIFT (25)
  448. #define MIPS_CONF1_TLBS_SIZE (6)
  449. #define MIPS_CONF1_TLBS (_ULCAST_(63) << MIPS_CONF1_TLBS_SHIFT)
  450. #define MIPS_CONF2_SA_SHF 0
  451. #define MIPS_CONF2_SA (_ULCAST_(15) << 0)
  452. #define MIPS_CONF2_SL_SHF 4
  453. #define MIPS_CONF2_SL (_ULCAST_(15) << 4)
  454. #define MIPS_CONF2_SS_SHF 8
  455. #define MIPS_CONF2_SS (_ULCAST_(15) << 8)
  456. #define MIPS_CONF2_L2B (_ULCAST_(1) << 12)
  457. #define MIPS_CONF2_SU (_ULCAST_(15) << 12)
  458. #define MIPS_CONF2_TA (_ULCAST_(15) << 16)
  459. #define MIPS_CONF2_TL (_ULCAST_(15) << 20)
  460. #define MIPS_CONF2_TS (_ULCAST_(15) << 24)
  461. #define MIPS_CONF2_TU (_ULCAST_(7) << 28)
  462. #define MIPS_CONF3_TL (_ULCAST_(1) << 0)
  463. #define MIPS_CONF3_SM (_ULCAST_(1) << 1)
  464. #define MIPS_CONF3_MT (_ULCAST_(1) << 2)
  465. #define MIPS_CONF3_CDMM (_ULCAST_(1) << 3)
  466. #define MIPS_CONF3_SP (_ULCAST_(1) << 4)
  467. #define MIPS_CONF3_VINT (_ULCAST_(1) << 5)
  468. #define MIPS_CONF3_VEIC (_ULCAST_(1) << 6)
  469. #define MIPS_CONF3_LPA (_ULCAST_(1) << 7)
  470. #define MIPS_CONF3_ITL (_ULCAST_(1) << 8)
  471. #define MIPS_CONF3_CTXTC (_ULCAST_(1) << 9)
  472. #define MIPS_CONF3_DSP (_ULCAST_(1) << 10)
  473. #define MIPS_CONF3_DSP2P (_ULCAST_(1) << 11)
  474. #define MIPS_CONF3_RXI (_ULCAST_(1) << 12)
  475. #define MIPS_CONF3_ULRI (_ULCAST_(1) << 13)
  476. #define MIPS_CONF3_ISA (_ULCAST_(3) << 14)
  477. #define MIPS_CONF3_ISA_OE (_ULCAST_(1) << 16)
  478. #define MIPS_CONF3_MCU (_ULCAST_(1) << 17)
  479. #define MIPS_CONF3_MMAR (_ULCAST_(7) << 18)
  480. #define MIPS_CONF3_IPLW (_ULCAST_(3) << 21)
  481. #define MIPS_CONF3_VZ (_ULCAST_(1) << 23)
  482. #define MIPS_CONF3_PW (_ULCAST_(1) << 24)
  483. #define MIPS_CONF3_SC (_ULCAST_(1) << 25)
  484. #define MIPS_CONF3_BI (_ULCAST_(1) << 26)
  485. #define MIPS_CONF3_BP (_ULCAST_(1) << 27)
  486. #define MIPS_CONF3_MSA (_ULCAST_(1) << 28)
  487. #define MIPS_CONF3_CMGCR (_ULCAST_(1) << 29)
  488. #define MIPS_CONF3_BPG (_ULCAST_(1) << 30)
  489. #define MIPS_CONF4_MMUSIZEEXT_SHIFT (0)
  490. #define MIPS_CONF4_MMUSIZEEXT (_ULCAST_(255) << 0)
  491. #define MIPS_CONF4_FTLBSETS_SHIFT (0)
  492. #define MIPS_CONF4_FTLBSETS (_ULCAST_(15) << MIPS_CONF4_FTLBSETS_SHIFT)
  493. #define MIPS_CONF4_FTLBWAYS_SHIFT (4)
  494. #define MIPS_CONF4_FTLBWAYS (_ULCAST_(15) << MIPS_CONF4_FTLBWAYS_SHIFT)
  495. #define MIPS_CONF4_FTLBPAGESIZE_SHIFT (8)
  496. /* bits 10:8 in FTLB-only configurations */
  497. #define MIPS_CONF4_FTLBPAGESIZE (_ULCAST_(7) << MIPS_CONF4_FTLBPAGESIZE_SHIFT)
  498. /* bits 12:8 in VTLB-FTLB only configurations */
  499. #define MIPS_CONF4_VFTLBPAGESIZE (_ULCAST_(31) << MIPS_CONF4_FTLBPAGESIZE_SHIFT)
  500. #define MIPS_CONF4_MMUEXTDEF (_ULCAST_(3) << 14)
  501. #define MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT (_ULCAST_(1) << 14)
  502. #define MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT (_ULCAST_(2) << 14)
  503. #define MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT (_ULCAST_(3) << 14)
  504. #define MIPS_CONF4_KSCREXIST (_ULCAST_(255) << 16)
  505. #define MIPS_CONF4_VTLBSIZEEXT_SHIFT (24)
  506. #define MIPS_CONF4_VTLBSIZEEXT (_ULCAST_(15) << MIPS_CONF4_VTLBSIZEEXT_SHIFT)
  507. #define MIPS_CONF4_AE (_ULCAST_(1) << 28)
  508. #define MIPS_CONF4_IE (_ULCAST_(3) << 29)
  509. #define MIPS_CONF4_TLBINV (_ULCAST_(2) << 29)
  510. #define MIPS_CONF5_NF (_ULCAST_(1) << 0)
  511. #define MIPS_CONF5_UFR (_ULCAST_(1) << 2)
  512. #define MIPS_CONF5_MRP (_ULCAST_(1) << 3)
  513. #define MIPS_CONF5_LLB (_ULCAST_(1) << 4)
  514. #define MIPS_CONF5_MVH (_ULCAST_(1) << 5)
  515. #define MIPS_CONF5_VP (_ULCAST_(1) << 7)
  516. #define MIPS_CONF5_FRE (_ULCAST_(1) << 8)
  517. #define MIPS_CONF5_UFE (_ULCAST_(1) << 9)
  518. #define MIPS_CONF5_L2C (_ULCAST_(1) << 10)
  519. #define MIPS_CONF5_MSAEN (_ULCAST_(1) << 27)
  520. #define MIPS_CONF5_EVA (_ULCAST_(1) << 28)
  521. #define MIPS_CONF5_CV (_ULCAST_(1) << 29)
  522. #define MIPS_CONF5_K (_ULCAST_(1) << 30)
  523. #define MIPS_CONF6_SYND (_ULCAST_(1) << 13)
  524. /* proAptiv FTLB on/off bit */
  525. #define MIPS_CONF6_FTLBEN (_ULCAST_(1) << 15)
  526. /* FTLB probability bits */
  527. #define MIPS_CONF6_FTLBP_SHIFT (16)
  528. #define MIPS_CONF7_WII (_ULCAST_(1) << 31)
  529. #define MIPS_CONF7_RPS (_ULCAST_(1) << 2)
  530. #define MIPS_CONF7_IAR (_ULCAST_(1) << 10)
  531. #define MIPS_CONF7_AR (_ULCAST_(1) << 16)
  532. /* FTLB probability bits for R6 */
  533. #define MIPS_CONF7_FTLBP_SHIFT (18)
  534. /* MAAR bit definitions */
  535. #define MIPS_MAAR_ADDR ((BIT_ULL(BITS_PER_LONG - 12) - 1) << 12)
  536. #define MIPS_MAAR_ADDR_SHIFT 12
  537. #define MIPS_MAAR_S (_ULCAST_(1) << 1)
  538. #define MIPS_MAAR_V (_ULCAST_(1) << 0)
  539. /* CMGCRBase bit definitions */
  540. #define MIPS_CMGCRB_BASE 11
  541. #define MIPS_CMGCRF_BASE (~_ULCAST_((1 << MIPS_CMGCRB_BASE) - 1))
  542. /*
  543. * Bits in the MIPS32 Memory Segmentation registers.
  544. */
  545. #define MIPS_SEGCFG_PA_SHIFT 9
  546. #define MIPS_SEGCFG_PA (_ULCAST_(127) << MIPS_SEGCFG_PA_SHIFT)
  547. #define MIPS_SEGCFG_AM_SHIFT 4
  548. #define MIPS_SEGCFG_AM (_ULCAST_(7) << MIPS_SEGCFG_AM_SHIFT)
  549. #define MIPS_SEGCFG_EU_SHIFT 3
  550. #define MIPS_SEGCFG_EU (_ULCAST_(1) << MIPS_SEGCFG_EU_SHIFT)
  551. #define MIPS_SEGCFG_C_SHIFT 0
  552. #define MIPS_SEGCFG_C (_ULCAST_(7) << MIPS_SEGCFG_C_SHIFT)
  553. #define MIPS_SEGCFG_UUSK _ULCAST_(7)
  554. #define MIPS_SEGCFG_USK _ULCAST_(5)
  555. #define MIPS_SEGCFG_MUSUK _ULCAST_(4)
  556. #define MIPS_SEGCFG_MUSK _ULCAST_(3)
  557. #define MIPS_SEGCFG_MSK _ULCAST_(2)
  558. #define MIPS_SEGCFG_MK _ULCAST_(1)
  559. #define MIPS_SEGCFG_UK _ULCAST_(0)
  560. #define MIPS_PWFIELD_GDI_SHIFT 24
  561. #define MIPS_PWFIELD_GDI_MASK 0x3f000000
  562. #define MIPS_PWFIELD_UDI_SHIFT 18
  563. #define MIPS_PWFIELD_UDI_MASK 0x00fc0000
  564. #define MIPS_PWFIELD_MDI_SHIFT 12
  565. #define MIPS_PWFIELD_MDI_MASK 0x0003f000
  566. #define MIPS_PWFIELD_PTI_SHIFT 6
  567. #define MIPS_PWFIELD_PTI_MASK 0x00000fc0
  568. #define MIPS_PWFIELD_PTEI_SHIFT 0
  569. #define MIPS_PWFIELD_PTEI_MASK 0x0000003f
  570. #define MIPS_PWSIZE_GDW_SHIFT 24
  571. #define MIPS_PWSIZE_GDW_MASK 0x3f000000
  572. #define MIPS_PWSIZE_UDW_SHIFT 18
  573. #define MIPS_PWSIZE_UDW_MASK 0x00fc0000
  574. #define MIPS_PWSIZE_MDW_SHIFT 12
  575. #define MIPS_PWSIZE_MDW_MASK 0x0003f000
  576. #define MIPS_PWSIZE_PTW_SHIFT 6
  577. #define MIPS_PWSIZE_PTW_MASK 0x00000fc0
  578. #define MIPS_PWSIZE_PTEW_SHIFT 0
  579. #define MIPS_PWSIZE_PTEW_MASK 0x0000003f
  580. #define MIPS_PWCTL_PWEN_SHIFT 31
  581. #define MIPS_PWCTL_PWEN_MASK 0x80000000
  582. #define MIPS_PWCTL_DPH_SHIFT 7
  583. #define MIPS_PWCTL_DPH_MASK 0x00000080
  584. #define MIPS_PWCTL_HUGEPG_SHIFT 6
  585. #define MIPS_PWCTL_HUGEPG_MASK 0x00000060
  586. #define MIPS_PWCTL_PSN_SHIFT 0
  587. #define MIPS_PWCTL_PSN_MASK 0x0000003f
  588. /* CDMMBase register bit definitions */
  589. #define MIPS_CDMMBASE_SIZE_SHIFT 0
  590. #define MIPS_CDMMBASE_SIZE (_ULCAST_(511) << MIPS_CDMMBASE_SIZE_SHIFT)
  591. #define MIPS_CDMMBASE_CI (_ULCAST_(1) << 9)
  592. #define MIPS_CDMMBASE_EN (_ULCAST_(1) << 10)
  593. #define MIPS_CDMMBASE_ADDR_SHIFT 11
  594. #define MIPS_CDMMBASE_ADDR_START 15
  595. /*
  596. * Bitfields in the TX39 family CP0 Configuration Register 3
  597. */
  598. #define TX39_CONF_ICS_SHIFT 19
  599. #define TX39_CONF_ICS_MASK 0x00380000
  600. #define TX39_CONF_ICS_1KB 0x00000000
  601. #define TX39_CONF_ICS_2KB 0x00080000
  602. #define TX39_CONF_ICS_4KB 0x00100000
  603. #define TX39_CONF_ICS_8KB 0x00180000
  604. #define TX39_CONF_ICS_16KB 0x00200000
  605. #define TX39_CONF_DCS_SHIFT 16
  606. #define TX39_CONF_DCS_MASK 0x00070000
  607. #define TX39_CONF_DCS_1KB 0x00000000
  608. #define TX39_CONF_DCS_2KB 0x00010000
  609. #define TX39_CONF_DCS_4KB 0x00020000
  610. #define TX39_CONF_DCS_8KB 0x00030000
  611. #define TX39_CONF_DCS_16KB 0x00040000
  612. #define TX39_CONF_CWFON 0x00004000
  613. #define TX39_CONF_WBON 0x00002000
  614. #define TX39_CONF_RF_SHIFT 10
  615. #define TX39_CONF_RF_MASK 0x00000c00
  616. #define TX39_CONF_DOZE 0x00000200
  617. #define TX39_CONF_HALT 0x00000100
  618. #define TX39_CONF_LOCK 0x00000080
  619. #define TX39_CONF_ICE 0x00000020
  620. #define TX39_CONF_DCE 0x00000010
  621. #define TX39_CONF_IRSIZE_SHIFT 2
  622. #define TX39_CONF_IRSIZE_MASK 0x0000000c
  623. #define TX39_CONF_DRSIZE_SHIFT 0
  624. #define TX39_CONF_DRSIZE_MASK 0x00000003
  625. /*
  626. * Interesting Bits in the R10K CP0 Branch Diagnostic Register
  627. */
  628. /* Disable Branch Target Address Cache */
  629. #define R10K_DIAG_D_BTAC (_ULCAST_(1) << 27)
  630. /* Enable Branch Prediction Global History */
  631. #define R10K_DIAG_E_GHIST (_ULCAST_(1) << 26)
  632. /* Disable Branch Return Cache */
  633. #define R10K_DIAG_D_BRC (_ULCAST_(1) << 22)
  634. /*
  635. * Coprocessor 1 (FPU) register names
  636. */
  637. #define CP1_REVISION $0
  638. #define CP1_UFR $1
  639. #define CP1_UNFR $4
  640. #define CP1_FCCR $25
  641. #define CP1_FEXR $26
  642. #define CP1_FENR $28
  643. #define CP1_STATUS $31
  644. /*
  645. * Bits in the MIPS32/64 coprocessor 1 (FPU) revision register.
  646. */
  647. #define MIPS_FPIR_S (_ULCAST_(1) << 16)
  648. #define MIPS_FPIR_D (_ULCAST_(1) << 17)
  649. #define MIPS_FPIR_PS (_ULCAST_(1) << 18)
  650. #define MIPS_FPIR_3D (_ULCAST_(1) << 19)
  651. #define MIPS_FPIR_W (_ULCAST_(1) << 20)
  652. #define MIPS_FPIR_L (_ULCAST_(1) << 21)
  653. #define MIPS_FPIR_F64 (_ULCAST_(1) << 22)
  654. #define MIPS_FPIR_HAS2008 (_ULCAST_(1) << 23)
  655. #define MIPS_FPIR_UFRP (_ULCAST_(1) << 28)
  656. #define MIPS_FPIR_FREP (_ULCAST_(1) << 29)
  657. /*
  658. * Bits in the MIPS32/64 coprocessor 1 (FPU) condition codes register.
  659. */
  660. #define MIPS_FCCR_CONDX_S 0
  661. #define MIPS_FCCR_CONDX (_ULCAST_(255) << MIPS_FCCR_CONDX_S)
  662. #define MIPS_FCCR_COND0_S 0
  663. #define MIPS_FCCR_COND0 (_ULCAST_(1) << MIPS_FCCR_COND0_S)
  664. #define MIPS_FCCR_COND1_S 1
  665. #define MIPS_FCCR_COND1 (_ULCAST_(1) << MIPS_FCCR_COND1_S)
  666. #define MIPS_FCCR_COND2_S 2
  667. #define MIPS_FCCR_COND2 (_ULCAST_(1) << MIPS_FCCR_COND2_S)
  668. #define MIPS_FCCR_COND3_S 3
  669. #define MIPS_FCCR_COND3 (_ULCAST_(1) << MIPS_FCCR_COND3_S)
  670. #define MIPS_FCCR_COND4_S 4
  671. #define MIPS_FCCR_COND4 (_ULCAST_(1) << MIPS_FCCR_COND4_S)
  672. #define MIPS_FCCR_COND5_S 5
  673. #define MIPS_FCCR_COND5 (_ULCAST_(1) << MIPS_FCCR_COND5_S)
  674. #define MIPS_FCCR_COND6_S 6
  675. #define MIPS_FCCR_COND6 (_ULCAST_(1) << MIPS_FCCR_COND6_S)
  676. #define MIPS_FCCR_COND7_S 7
  677. #define MIPS_FCCR_COND7 (_ULCAST_(1) << MIPS_FCCR_COND7_S)
  678. /*
  679. * Bits in the MIPS32/64 coprocessor 1 (FPU) enables register.
  680. */
  681. #define MIPS_FENR_FS_S 2
  682. #define MIPS_FENR_FS (_ULCAST_(1) << MIPS_FENR_FS_S)
  683. /*
  684. * FPU Status Register Values
  685. */
  686. #define FPU_CSR_COND_S 23 /* $fcc0 */
  687. #define FPU_CSR_COND (_ULCAST_(1) << FPU_CSR_COND_S)
  688. #define FPU_CSR_FS_S 24 /* flush denormalised results to 0 */
  689. #define FPU_CSR_FS (_ULCAST_(1) << FPU_CSR_FS_S)
  690. #define FPU_CSR_CONDX_S 25 /* $fcc[7:1] */
  691. #define FPU_CSR_CONDX (_ULCAST_(127) << FPU_CSR_CONDX_S)
  692. #define FPU_CSR_COND1_S 25 /* $fcc1 */
  693. #define FPU_CSR_COND1 (_ULCAST_(1) << FPU_CSR_COND1_S)
  694. #define FPU_CSR_COND2_S 26 /* $fcc2 */
  695. #define FPU_CSR_COND2 (_ULCAST_(1) << FPU_CSR_COND2_S)
  696. #define FPU_CSR_COND3_S 27 /* $fcc3 */
  697. #define FPU_CSR_COND3 (_ULCAST_(1) << FPU_CSR_COND3_S)
  698. #define FPU_CSR_COND4_S 28 /* $fcc4 */
  699. #define FPU_CSR_COND4 (_ULCAST_(1) << FPU_CSR_COND4_S)
  700. #define FPU_CSR_COND5_S 29 /* $fcc5 */
  701. #define FPU_CSR_COND5 (_ULCAST_(1) << FPU_CSR_COND5_S)
  702. #define FPU_CSR_COND6_S 30 /* $fcc6 */
  703. #define FPU_CSR_COND6 (_ULCAST_(1) << FPU_CSR_COND6_S)
  704. #define FPU_CSR_COND7_S 31 /* $fcc7 */
  705. #define FPU_CSR_COND7 (_ULCAST_(1) << FPU_CSR_COND7_S)
  706. /*
  707. * Bits 22:20 of the FPU Status Register will be read as 0,
  708. * and should be written as zero.
  709. */
  710. #define FPU_CSR_RSVD (_ULCAST_(7) << 20)
  711. #define FPU_CSR_ABS2008 (_ULCAST_(1) << 19)
  712. #define FPU_CSR_NAN2008 (_ULCAST_(1) << 18)
  713. /*
  714. * X the exception cause indicator
  715. * E the exception enable
  716. * S the sticky/flag bit
  717. */
  718. #define FPU_CSR_ALL_X 0x0003f000
  719. #define FPU_CSR_UNI_X 0x00020000
  720. #define FPU_CSR_INV_X 0x00010000
  721. #define FPU_CSR_DIV_X 0x00008000
  722. #define FPU_CSR_OVF_X 0x00004000
  723. #define FPU_CSR_UDF_X 0x00002000
  724. #define FPU_CSR_INE_X 0x00001000
  725. #define FPU_CSR_ALL_E 0x00000f80
  726. #define FPU_CSR_INV_E 0x00000800
  727. #define FPU_CSR_DIV_E 0x00000400
  728. #define FPU_CSR_OVF_E 0x00000200
  729. #define FPU_CSR_UDF_E 0x00000100
  730. #define FPU_CSR_INE_E 0x00000080
  731. #define FPU_CSR_ALL_S 0x0000007c
  732. #define FPU_CSR_INV_S 0x00000040
  733. #define FPU_CSR_DIV_S 0x00000020
  734. #define FPU_CSR_OVF_S 0x00000010
  735. #define FPU_CSR_UDF_S 0x00000008
  736. #define FPU_CSR_INE_S 0x00000004
  737. /* Bits 0 and 1 of FPU Status Register specify the rounding mode */
  738. #define FPU_CSR_RM 0x00000003
  739. #define FPU_CSR_RN 0x0 /* nearest */
  740. #define FPU_CSR_RZ 0x1 /* towards zero */
  741. #define FPU_CSR_RU 0x2 /* towards +Infinity */
  742. #define FPU_CSR_RD 0x3 /* towards -Infinity */
  743. #ifndef __ASSEMBLY__
  744. /*
  745. * Macros for handling the ISA mode bit for MIPS16 and microMIPS.
  746. */
  747. #if defined(CONFIG_SYS_SUPPORTS_MIPS16) || \
  748. defined(CONFIG_SYS_SUPPORTS_MICROMIPS)
  749. #define get_isa16_mode(x) ((x) & 0x1)
  750. #define msk_isa16_mode(x) ((x) & ~0x1)
  751. #define set_isa16_mode(x) do { (x) |= 0x1; } while (0)
  752. #else
  753. #define get_isa16_mode(x) 0
  754. #define msk_isa16_mode(x) (x)
  755. #define set_isa16_mode(x) do { } while (0)
  756. #endif
  757. /*
  758. * microMIPS instructions can be 16-bit or 32-bit in length. This
  759. * returns a 1 if the instruction is 16-bit and a 0 if 32-bit.
  760. */
  761. static inline int mm_insn_16bit(u16 insn)
  762. {
  763. u16 opcode = (insn >> 10) & 0x7;
  764. return (opcode >= 1 && opcode <= 3) ? 1 : 0;
  765. }
  766. /*
  767. * TLB Invalidate Flush
  768. */
  769. static inline void tlbinvf(void)
  770. {
  771. __asm__ __volatile__(
  772. ".set push\n\t"
  773. ".set noreorder\n\t"
  774. ".word 0x42000004\n\t" /* tlbinvf */
  775. ".set pop");
  776. }
  777. /*
  778. * Functions to access the R10000 performance counters. These are basically
  779. * mfc0 and mtc0 instructions from and to coprocessor register with a 5-bit
  780. * performance counter number encoded into bits 1 ... 5 of the instruction.
  781. * Only performance counters 0 to 1 actually exist, so for a non-R10000 aware
  782. * disassembler these will look like an access to sel 0 or 1.
  783. */
  784. #define read_r10k_perf_cntr(counter) \
  785. ({ \
  786. unsigned int __res; \
  787. __asm__ __volatile__( \
  788. "mfpc\t%0, %1" \
  789. : "=r" (__res) \
  790. : "i" (counter)); \
  791. \
  792. __res; \
  793. })
  794. #define write_r10k_perf_cntr(counter,val) \
  795. do { \
  796. __asm__ __volatile__( \
  797. "mtpc\t%0, %1" \
  798. : \
  799. : "r" (val), "i" (counter)); \
  800. } while (0)
  801. #define read_r10k_perf_event(counter) \
  802. ({ \
  803. unsigned int __res; \
  804. __asm__ __volatile__( \
  805. "mfps\t%0, %1" \
  806. : "=r" (__res) \
  807. : "i" (counter)); \
  808. \
  809. __res; \
  810. })
  811. #define write_r10k_perf_cntl(counter,val) \
  812. do { \
  813. __asm__ __volatile__( \
  814. "mtps\t%0, %1" \
  815. : \
  816. : "r" (val), "i" (counter)); \
  817. } while (0)
  818. /*
  819. * Macros to access the system control coprocessor
  820. */
  821. #define __read_32bit_c0_register(source, sel) \
  822. ({ unsigned int __res; \
  823. if (sel == 0) \
  824. __asm__ __volatile__( \
  825. "mfc0\t%0, " #source "\n\t" \
  826. : "=r" (__res)); \
  827. else \
  828. __asm__ __volatile__( \
  829. ".set\tmips32\n\t" \
  830. "mfc0\t%0, " #source ", " #sel "\n\t" \
  831. ".set\tmips0\n\t" \
  832. : "=r" (__res)); \
  833. __res; \
  834. })
  835. #define __read_64bit_c0_register(source, sel) \
  836. ({ unsigned long long __res; \
  837. if (sizeof(unsigned long) == 4) \
  838. __res = __read_64bit_c0_split(source, sel); \
  839. else if (sel == 0) \
  840. __asm__ __volatile__( \
  841. ".set\tmips3\n\t" \
  842. "dmfc0\t%0, " #source "\n\t" \
  843. ".set\tmips0" \
  844. : "=r" (__res)); \
  845. else \
  846. __asm__ __volatile__( \
  847. ".set\tmips64\n\t" \
  848. "dmfc0\t%0, " #source ", " #sel "\n\t" \
  849. ".set\tmips0" \
  850. : "=r" (__res)); \
  851. __res; \
  852. })
  853. #define __write_32bit_c0_register(register, sel, value) \
  854. do { \
  855. if (sel == 0) \
  856. __asm__ __volatile__( \
  857. "mtc0\t%z0, " #register "\n\t" \
  858. : : "Jr" ((unsigned int)(value))); \
  859. else \
  860. __asm__ __volatile__( \
  861. ".set\tmips32\n\t" \
  862. "mtc0\t%z0, " #register ", " #sel "\n\t" \
  863. ".set\tmips0" \
  864. : : "Jr" ((unsigned int)(value))); \
  865. } while (0)
  866. #define __write_64bit_c0_register(register, sel, value) \
  867. do { \
  868. if (sizeof(unsigned long) == 4) \
  869. __write_64bit_c0_split(register, sel, value); \
  870. else if (sel == 0) \
  871. __asm__ __volatile__( \
  872. ".set\tmips3\n\t" \
  873. "dmtc0\t%z0, " #register "\n\t" \
  874. ".set\tmips0" \
  875. : : "Jr" (value)); \
  876. else \
  877. __asm__ __volatile__( \
  878. ".set\tmips64\n\t" \
  879. "dmtc0\t%z0, " #register ", " #sel "\n\t" \
  880. ".set\tmips0" \
  881. : : "Jr" (value)); \
  882. } while (0)
  883. #define __read_ulong_c0_register(reg, sel) \
  884. ((sizeof(unsigned long) == 4) ? \
  885. (unsigned long) __read_32bit_c0_register(reg, sel) : \
  886. (unsigned long) __read_64bit_c0_register(reg, sel))
  887. #define __write_ulong_c0_register(reg, sel, val) \
  888. do { \
  889. if (sizeof(unsigned long) == 4) \
  890. __write_32bit_c0_register(reg, sel, val); \
  891. else \
  892. __write_64bit_c0_register(reg, sel, val); \
  893. } while (0)
  894. /*
  895. * On RM7000/RM9000 these are uses to access cop0 set 1 registers
  896. */
  897. #define __read_32bit_c0_ctrl_register(source) \
  898. ({ unsigned int __res; \
  899. __asm__ __volatile__( \
  900. "cfc0\t%0, " #source "\n\t" \
  901. : "=r" (__res)); \
  902. __res; \
  903. })
  904. #define __write_32bit_c0_ctrl_register(register, value) \
  905. do { \
  906. __asm__ __volatile__( \
  907. "ctc0\t%z0, " #register "\n\t" \
  908. : : "Jr" ((unsigned int)(value))); \
  909. } while (0)
  910. /*
  911. * These versions are only needed for systems with more than 38 bits of
  912. * physical address space running the 32-bit kernel. That's none atm :-)
  913. */
  914. #define __read_64bit_c0_split(source, sel) \
  915. ({ \
  916. unsigned long long __val; \
  917. unsigned long __flags; \
  918. \
  919. local_irq_save(__flags); \
  920. if (sel == 0) \
  921. __asm__ __volatile__( \
  922. ".set\tmips64\n\t" \
  923. "dmfc0\t%M0, " #source "\n\t" \
  924. "dsll\t%L0, %M0, 32\n\t" \
  925. "dsra\t%M0, %M0, 32\n\t" \
  926. "dsra\t%L0, %L0, 32\n\t" \
  927. ".set\tmips0" \
  928. : "=r" (__val)); \
  929. else \
  930. __asm__ __volatile__( \
  931. ".set\tmips64\n\t" \
  932. "dmfc0\t%M0, " #source ", " #sel "\n\t" \
  933. "dsll\t%L0, %M0, 32\n\t" \
  934. "dsra\t%M0, %M0, 32\n\t" \
  935. "dsra\t%L0, %L0, 32\n\t" \
  936. ".set\tmips0" \
  937. : "=r" (__val)); \
  938. local_irq_restore(__flags); \
  939. \
  940. __val; \
  941. })
  942. #define __write_64bit_c0_split(source, sel, val) \
  943. do { \
  944. unsigned long __flags; \
  945. \
  946. local_irq_save(__flags); \
  947. if (sel == 0) \
  948. __asm__ __volatile__( \
  949. ".set\tmips64\n\t" \
  950. "dsll\t%L0, %L0, 32\n\t" \
  951. "dsrl\t%L0, %L0, 32\n\t" \
  952. "dsll\t%M0, %M0, 32\n\t" \
  953. "or\t%L0, %L0, %M0\n\t" \
  954. "dmtc0\t%L0, " #source "\n\t" \
  955. ".set\tmips0" \
  956. : : "r" (val)); \
  957. else \
  958. __asm__ __volatile__( \
  959. ".set\tmips64\n\t" \
  960. "dsll\t%L0, %L0, 32\n\t" \
  961. "dsrl\t%L0, %L0, 32\n\t" \
  962. "dsll\t%M0, %M0, 32\n\t" \
  963. "or\t%L0, %L0, %M0\n\t" \
  964. "dmtc0\t%L0, " #source ", " #sel "\n\t" \
  965. ".set\tmips0" \
  966. : : "r" (val)); \
  967. local_irq_restore(__flags); \
  968. } while (0)
  969. #define __readx_32bit_c0_register(source) \
  970. ({ \
  971. unsigned int __res; \
  972. \
  973. __asm__ __volatile__( \
  974. " .set push \n" \
  975. " .set noat \n" \
  976. " .set mips32r2 \n" \
  977. " .insn \n" \
  978. " # mfhc0 $1, %1 \n" \
  979. " .word (0x40410000 | ((%1 & 0x1f) << 11)) \n" \
  980. " move %0, $1 \n" \
  981. " .set pop \n" \
  982. : "=r" (__res) \
  983. : "i" (source)); \
  984. __res; \
  985. })
  986. #define __writex_32bit_c0_register(register, value) \
  987. ({ \
  988. __asm__ __volatile__( \
  989. " .set push \n" \
  990. " .set noat \n" \
  991. " .set mips32r2 \n" \
  992. " move $1, %0 \n" \
  993. " # mthc0 $1, %1 \n" \
  994. " .insn \n" \
  995. " .word (0x40c10000 | ((%1 & 0x1f) << 11)) \n" \
  996. " .set pop \n" \
  997. : \
  998. : "r" (value), "i" (register)); \
  999. })
  1000. #define read_c0_index() __read_32bit_c0_register($0, 0)
  1001. #define write_c0_index(val) __write_32bit_c0_register($0, 0, val)
  1002. #define read_c0_random() __read_32bit_c0_register($1, 0)
  1003. #define write_c0_random(val) __write_32bit_c0_register($1, 0, val)
  1004. #define read_c0_entrylo0() __read_ulong_c0_register($2, 0)
  1005. #define write_c0_entrylo0(val) __write_ulong_c0_register($2, 0, val)
  1006. #define readx_c0_entrylo0() __readx_32bit_c0_register(2)
  1007. #define writex_c0_entrylo0(val) __writex_32bit_c0_register(2, val)
  1008. #define read_c0_entrylo1() __read_ulong_c0_register($3, 0)
  1009. #define write_c0_entrylo1(val) __write_ulong_c0_register($3, 0, val)
  1010. #define readx_c0_entrylo1() __readx_32bit_c0_register(3)
  1011. #define writex_c0_entrylo1(val) __writex_32bit_c0_register(3, val)
  1012. #define read_c0_conf() __read_32bit_c0_register($3, 0)
  1013. #define write_c0_conf(val) __write_32bit_c0_register($3, 0, val)
  1014. #define read_c0_context() __read_ulong_c0_register($4, 0)
  1015. #define write_c0_context(val) __write_ulong_c0_register($4, 0, val)
  1016. #define read_c0_userlocal() __read_ulong_c0_register($4, 2)
  1017. #define write_c0_userlocal(val) __write_ulong_c0_register($4, 2, val)
  1018. #define read_c0_pagemask() __read_32bit_c0_register($5, 0)
  1019. #define write_c0_pagemask(val) __write_32bit_c0_register($5, 0, val)
  1020. #define read_c0_pagegrain() __read_32bit_c0_register($5, 1)
  1021. #define write_c0_pagegrain(val) __write_32bit_c0_register($5, 1, val)
  1022. #define read_c0_wired() __read_32bit_c0_register($6, 0)
  1023. #define write_c0_wired(val) __write_32bit_c0_register($6, 0, val)
  1024. #define read_c0_info() __read_32bit_c0_register($7, 0)
  1025. #define read_c0_cache() __read_32bit_c0_register($7, 0) /* TX39xx */
  1026. #define write_c0_cache(val) __write_32bit_c0_register($7, 0, val)
  1027. #define read_c0_badvaddr() __read_ulong_c0_register($8, 0)
  1028. #define write_c0_badvaddr(val) __write_ulong_c0_register($8, 0, val)
  1029. #define read_c0_count() __read_32bit_c0_register($9, 0)
  1030. #define write_c0_count(val) __write_32bit_c0_register($9, 0, val)
  1031. #define read_c0_count2() __read_32bit_c0_register($9, 6) /* pnx8550 */
  1032. #define write_c0_count2(val) __write_32bit_c0_register($9, 6, val)
  1033. #define read_c0_count3() __read_32bit_c0_register($9, 7) /* pnx8550 */
  1034. #define write_c0_count3(val) __write_32bit_c0_register($9, 7, val)
  1035. #define read_c0_entryhi() __read_ulong_c0_register($10, 0)
  1036. #define write_c0_entryhi(val) __write_ulong_c0_register($10, 0, val)
  1037. #define read_c0_compare() __read_32bit_c0_register($11, 0)
  1038. #define write_c0_compare(val) __write_32bit_c0_register($11, 0, val)
  1039. #define read_c0_compare2() __read_32bit_c0_register($11, 6) /* pnx8550 */
  1040. #define write_c0_compare2(val) __write_32bit_c0_register($11, 6, val)
  1041. #define read_c0_compare3() __read_32bit_c0_register($11, 7) /* pnx8550 */
  1042. #define write_c0_compare3(val) __write_32bit_c0_register($11, 7, val)
  1043. #define read_c0_status() __read_32bit_c0_register($12, 0)
  1044. #define write_c0_status(val) __write_32bit_c0_register($12, 0, val)
  1045. #define read_c0_cause() __read_32bit_c0_register($13, 0)
  1046. #define write_c0_cause(val) __write_32bit_c0_register($13, 0, val)
  1047. #define read_c0_epc() __read_ulong_c0_register($14, 0)
  1048. #define write_c0_epc(val) __write_ulong_c0_register($14, 0, val)
  1049. #define read_c0_prid() __read_32bit_c0_register($15, 0)
  1050. #define read_c0_cmgcrbase() __read_ulong_c0_register($15, 3)
  1051. #define read_c0_config() __read_32bit_c0_register($16, 0)
  1052. #define read_c0_config1() __read_32bit_c0_register($16, 1)
  1053. #define read_c0_config2() __read_32bit_c0_register($16, 2)
  1054. #define read_c0_config3() __read_32bit_c0_register($16, 3)
  1055. #define read_c0_config4() __read_32bit_c0_register($16, 4)
  1056. #define read_c0_config5() __read_32bit_c0_register($16, 5)
  1057. #define read_c0_config6() __read_32bit_c0_register($16, 6)
  1058. #define read_c0_config7() __read_32bit_c0_register($16, 7)
  1059. #define write_c0_config(val) __write_32bit_c0_register($16, 0, val)
  1060. #define write_c0_config1(val) __write_32bit_c0_register($16, 1, val)
  1061. #define write_c0_config2(val) __write_32bit_c0_register($16, 2, val)
  1062. #define write_c0_config3(val) __write_32bit_c0_register($16, 3, val)
  1063. #define write_c0_config4(val) __write_32bit_c0_register($16, 4, val)
  1064. #define write_c0_config5(val) __write_32bit_c0_register($16, 5, val)
  1065. #define write_c0_config6(val) __write_32bit_c0_register($16, 6, val)
  1066. #define write_c0_config7(val) __write_32bit_c0_register($16, 7, val)
  1067. #define read_c0_lladdr() __read_ulong_c0_register($17, 0)
  1068. #define write_c0_lladdr(val) __write_ulong_c0_register($17, 0, val)
  1069. #define read_c0_maar() __read_ulong_c0_register($17, 1)
  1070. #define write_c0_maar(val) __write_ulong_c0_register($17, 1, val)
  1071. #define read_c0_maari() __read_32bit_c0_register($17, 2)
  1072. #define write_c0_maari(val) __write_32bit_c0_register($17, 2, val)
  1073. /*
  1074. * The WatchLo register. There may be up to 8 of them.
  1075. */
  1076. #define read_c0_watchlo0() __read_ulong_c0_register($18, 0)
  1077. #define read_c0_watchlo1() __read_ulong_c0_register($18, 1)
  1078. #define read_c0_watchlo2() __read_ulong_c0_register($18, 2)
  1079. #define read_c0_watchlo3() __read_ulong_c0_register($18, 3)
  1080. #define read_c0_watchlo4() __read_ulong_c0_register($18, 4)
  1081. #define read_c0_watchlo5() __read_ulong_c0_register($18, 5)
  1082. #define read_c0_watchlo6() __read_ulong_c0_register($18, 6)
  1083. #define read_c0_watchlo7() __read_ulong_c0_register($18, 7)
  1084. #define write_c0_watchlo0(val) __write_ulong_c0_register($18, 0, val)
  1085. #define write_c0_watchlo1(val) __write_ulong_c0_register($18, 1, val)
  1086. #define write_c0_watchlo2(val) __write_ulong_c0_register($18, 2, val)
  1087. #define write_c0_watchlo3(val) __write_ulong_c0_register($18, 3, val)
  1088. #define write_c0_watchlo4(val) __write_ulong_c0_register($18, 4, val)
  1089. #define write_c0_watchlo5(val) __write_ulong_c0_register($18, 5, val)
  1090. #define write_c0_watchlo6(val) __write_ulong_c0_register($18, 6, val)
  1091. #define write_c0_watchlo7(val) __write_ulong_c0_register($18, 7, val)
  1092. /*
  1093. * The WatchHi register. There may be up to 8 of them.
  1094. */
  1095. #define read_c0_watchhi0() __read_32bit_c0_register($19, 0)
  1096. #define read_c0_watchhi1() __read_32bit_c0_register($19, 1)
  1097. #define read_c0_watchhi2() __read_32bit_c0_register($19, 2)
  1098. #define read_c0_watchhi3() __read_32bit_c0_register($19, 3)
  1099. #define read_c0_watchhi4() __read_32bit_c0_register($19, 4)
  1100. #define read_c0_watchhi5() __read_32bit_c0_register($19, 5)
  1101. #define read_c0_watchhi6() __read_32bit_c0_register($19, 6)
  1102. #define read_c0_watchhi7() __read_32bit_c0_register($19, 7)
  1103. #define write_c0_watchhi0(val) __write_32bit_c0_register($19, 0, val)
  1104. #define write_c0_watchhi1(val) __write_32bit_c0_register($19, 1, val)
  1105. #define write_c0_watchhi2(val) __write_32bit_c0_register($19, 2, val)
  1106. #define write_c0_watchhi3(val) __write_32bit_c0_register($19, 3, val)
  1107. #define write_c0_watchhi4(val) __write_32bit_c0_register($19, 4, val)
  1108. #define write_c0_watchhi5(val) __write_32bit_c0_register($19, 5, val)
  1109. #define write_c0_watchhi6(val) __write_32bit_c0_register($19, 6, val)
  1110. #define write_c0_watchhi7(val) __write_32bit_c0_register($19, 7, val)
  1111. #define read_c0_xcontext() __read_ulong_c0_register($20, 0)
  1112. #define write_c0_xcontext(val) __write_ulong_c0_register($20, 0, val)
  1113. #define read_c0_intcontrol() __read_32bit_c0_ctrl_register($20)
  1114. #define write_c0_intcontrol(val) __write_32bit_c0_ctrl_register($20, val)
  1115. #define read_c0_framemask() __read_32bit_c0_register($21, 0)
  1116. #define write_c0_framemask(val) __write_32bit_c0_register($21, 0, val)
  1117. #define read_c0_diag() __read_32bit_c0_register($22, 0)
  1118. #define write_c0_diag(val) __write_32bit_c0_register($22, 0, val)
  1119. /* R10K CP0 Branch Diagnostic register is 64bits wide */
  1120. #define read_c0_r10k_diag() __read_64bit_c0_register($22, 0)
  1121. #define write_c0_r10k_diag(val) __write_64bit_c0_register($22, 0, val)
  1122. #define read_c0_diag1() __read_32bit_c0_register($22, 1)
  1123. #define write_c0_diag1(val) __write_32bit_c0_register($22, 1, val)
  1124. #define read_c0_diag2() __read_32bit_c0_register($22, 2)
  1125. #define write_c0_diag2(val) __write_32bit_c0_register($22, 2, val)
  1126. #define read_c0_diag3() __read_32bit_c0_register($22, 3)
  1127. #define write_c0_diag3(val) __write_32bit_c0_register($22, 3, val)
  1128. #define read_c0_diag4() __read_32bit_c0_register($22, 4)
  1129. #define write_c0_diag4(val) __write_32bit_c0_register($22, 4, val)
  1130. #define read_c0_diag5() __read_32bit_c0_register($22, 5)
  1131. #define write_c0_diag5(val) __write_32bit_c0_register($22, 5, val)
  1132. #define read_c0_debug() __read_32bit_c0_register($23, 0)
  1133. #define write_c0_debug(val) __write_32bit_c0_register($23, 0, val)
  1134. #define read_c0_depc() __read_ulong_c0_register($24, 0)
  1135. #define write_c0_depc(val) __write_ulong_c0_register($24, 0, val)
  1136. /*
  1137. * MIPS32 / MIPS64 performance counters
  1138. */
  1139. #define read_c0_perfctrl0() __read_32bit_c0_register($25, 0)
  1140. #define write_c0_perfctrl0(val) __write_32bit_c0_register($25, 0, val)
  1141. #define read_c0_perfcntr0() __read_32bit_c0_register($25, 1)
  1142. #define write_c0_perfcntr0(val) __write_32bit_c0_register($25, 1, val)
  1143. #define read_c0_perfcntr0_64() __read_64bit_c0_register($25, 1)
  1144. #define write_c0_perfcntr0_64(val) __write_64bit_c0_register($25, 1, val)
  1145. #define read_c0_perfctrl1() __read_32bit_c0_register($25, 2)
  1146. #define write_c0_perfctrl1(val) __write_32bit_c0_register($25, 2, val)
  1147. #define read_c0_perfcntr1() __read_32bit_c0_register($25, 3)
  1148. #define write_c0_perfcntr1(val) __write_32bit_c0_register($25, 3, val)
  1149. #define read_c0_perfcntr1_64() __read_64bit_c0_register($25, 3)
  1150. #define write_c0_perfcntr1_64(val) __write_64bit_c0_register($25, 3, val)
  1151. #define read_c0_perfctrl2() __read_32bit_c0_register($25, 4)
  1152. #define write_c0_perfctrl2(val) __write_32bit_c0_register($25, 4, val)
  1153. #define read_c0_perfcntr2() __read_32bit_c0_register($25, 5)
  1154. #define write_c0_perfcntr2(val) __write_32bit_c0_register($25, 5, val)
  1155. #define read_c0_perfcntr2_64() __read_64bit_c0_register($25, 5)
  1156. #define write_c0_perfcntr2_64(val) __write_64bit_c0_register($25, 5, val)
  1157. #define read_c0_perfctrl3() __read_32bit_c0_register($25, 6)
  1158. #define write_c0_perfctrl3(val) __write_32bit_c0_register($25, 6, val)
  1159. #define read_c0_perfcntr3() __read_32bit_c0_register($25, 7)
  1160. #define write_c0_perfcntr3(val) __write_32bit_c0_register($25, 7, val)
  1161. #define read_c0_perfcntr3_64() __read_64bit_c0_register($25, 7)
  1162. #define write_c0_perfcntr3_64(val) __write_64bit_c0_register($25, 7, val)
  1163. #define read_c0_ecc() __read_32bit_c0_register($26, 0)
  1164. #define write_c0_ecc(val) __write_32bit_c0_register($26, 0, val)
  1165. #define read_c0_derraddr0() __read_ulong_c0_register($26, 1)
  1166. #define write_c0_derraddr0(val) __write_ulong_c0_register($26, 1, val)
  1167. #define read_c0_cacheerr() __read_32bit_c0_register($27, 0)
  1168. #define read_c0_derraddr1() __read_ulong_c0_register($27, 1)
  1169. #define write_c0_derraddr1(val) __write_ulong_c0_register($27, 1, val)
  1170. #define read_c0_taglo() __read_32bit_c0_register($28, 0)
  1171. #define write_c0_taglo(val) __write_32bit_c0_register($28, 0, val)
  1172. #define read_c0_dtaglo() __read_32bit_c0_register($28, 2)
  1173. #define write_c0_dtaglo(val) __write_32bit_c0_register($28, 2, val)
  1174. #define read_c0_ddatalo() __read_32bit_c0_register($28, 3)
  1175. #define write_c0_ddatalo(val) __write_32bit_c0_register($28, 3, val)
  1176. #define read_c0_staglo() __read_32bit_c0_register($28, 4)
  1177. #define write_c0_staglo(val) __write_32bit_c0_register($28, 4, val)
  1178. #define read_c0_taghi() __read_32bit_c0_register($29, 0)
  1179. #define write_c0_taghi(val) __write_32bit_c0_register($29, 0, val)
  1180. #define read_c0_errorepc() __read_ulong_c0_register($30, 0)
  1181. #define write_c0_errorepc(val) __write_ulong_c0_register($30, 0, val)
  1182. /* MIPSR2 */
  1183. #define read_c0_hwrena() __read_32bit_c0_register($7, 0)
  1184. #define write_c0_hwrena(val) __write_32bit_c0_register($7, 0, val)
  1185. #define read_c0_intctl() __read_32bit_c0_register($12, 1)
  1186. #define write_c0_intctl(val) __write_32bit_c0_register($12, 1, val)
  1187. #define read_c0_srsctl() __read_32bit_c0_register($12, 2)
  1188. #define write_c0_srsctl(val) __write_32bit_c0_register($12, 2, val)
  1189. #define read_c0_srsmap() __read_32bit_c0_register($12, 3)
  1190. #define write_c0_srsmap(val) __write_32bit_c0_register($12, 3, val)
  1191. #define read_c0_ebase() __read_32bit_c0_register($15, 1)
  1192. #define write_c0_ebase(val) __write_32bit_c0_register($15, 1, val)
  1193. #define read_c0_cdmmbase() __read_ulong_c0_register($15, 2)
  1194. #define write_c0_cdmmbase(val) __write_ulong_c0_register($15, 2, val)
  1195. /* MIPSR3 */
  1196. #define read_c0_segctl0() __read_32bit_c0_register($5, 2)
  1197. #define write_c0_segctl0(val) __write_32bit_c0_register($5, 2, val)
  1198. #define read_c0_segctl1() __read_32bit_c0_register($5, 3)
  1199. #define write_c0_segctl1(val) __write_32bit_c0_register($5, 3, val)
  1200. #define read_c0_segctl2() __read_32bit_c0_register($5, 4)
  1201. #define write_c0_segctl2(val) __write_32bit_c0_register($5, 4, val)
  1202. /* Hardware Page Table Walker */
  1203. #define read_c0_pwbase() __read_ulong_c0_register($5, 5)
  1204. #define write_c0_pwbase(val) __write_ulong_c0_register($5, 5, val)
  1205. #define read_c0_pwfield() __read_ulong_c0_register($5, 6)
  1206. #define write_c0_pwfield(val) __write_ulong_c0_register($5, 6, val)
  1207. #define read_c0_pwsize() __read_ulong_c0_register($5, 7)
  1208. #define write_c0_pwsize(val) __write_ulong_c0_register($5, 7, val)
  1209. #define read_c0_pwctl() __read_32bit_c0_register($6, 6)
  1210. #define write_c0_pwctl(val) __write_32bit_c0_register($6, 6, val)
  1211. /* Cavium OCTEON (cnMIPS) */
  1212. #define read_c0_cvmcount() __read_ulong_c0_register($9, 6)
  1213. #define write_c0_cvmcount(val) __write_ulong_c0_register($9, 6, val)
  1214. #define read_c0_cvmctl() __read_64bit_c0_register($9, 7)
  1215. #define write_c0_cvmctl(val) __write_64bit_c0_register($9, 7, val)
  1216. #define read_c0_cvmmemctl() __read_64bit_c0_register($11, 7)
  1217. #define write_c0_cvmmemctl(val) __write_64bit_c0_register($11, 7, val)
  1218. /*
  1219. * The cacheerr registers are not standardized. On OCTEON, they are
  1220. * 64 bits wide.
  1221. */
  1222. #define read_octeon_c0_icacheerr() __read_64bit_c0_register($27, 0)
  1223. #define write_octeon_c0_icacheerr(val) __write_64bit_c0_register($27, 0, val)
  1224. #define read_octeon_c0_dcacheerr() __read_64bit_c0_register($27, 1)
  1225. #define write_octeon_c0_dcacheerr(val) __write_64bit_c0_register($27, 1, val)
  1226. /* BMIPS3300 */
  1227. #define read_c0_brcm_config_0() __read_32bit_c0_register($22, 0)
  1228. #define write_c0_brcm_config_0(val) __write_32bit_c0_register($22, 0, val)
  1229. #define read_c0_brcm_bus_pll() __read_32bit_c0_register($22, 4)
  1230. #define write_c0_brcm_bus_pll(val) __write_32bit_c0_register($22, 4, val)
  1231. #define read_c0_brcm_reset() __read_32bit_c0_register($22, 5)
  1232. #define write_c0_brcm_reset(val) __write_32bit_c0_register($22, 5, val)
  1233. /* BMIPS43xx */
  1234. #define read_c0_brcm_cmt_intr() __read_32bit_c0_register($22, 1)
  1235. #define write_c0_brcm_cmt_intr(val) __write_32bit_c0_register($22, 1, val)
  1236. #define read_c0_brcm_cmt_ctrl() __read_32bit_c0_register($22, 2)
  1237. #define write_c0_brcm_cmt_ctrl(val) __write_32bit_c0_register($22, 2, val)
  1238. #define read_c0_brcm_cmt_local() __read_32bit_c0_register($22, 3)
  1239. #define write_c0_brcm_cmt_local(val) __write_32bit_c0_register($22, 3, val)
  1240. #define read_c0_brcm_config_1() __read_32bit_c0_register($22, 5)
  1241. #define write_c0_brcm_config_1(val) __write_32bit_c0_register($22, 5, val)
  1242. #define read_c0_brcm_cbr() __read_32bit_c0_register($22, 6)
  1243. #define write_c0_brcm_cbr(val) __write_32bit_c0_register($22, 6, val)
  1244. /* BMIPS5000 */
  1245. #define read_c0_brcm_config() __read_32bit_c0_register($22, 0)
  1246. #define write_c0_brcm_config(val) __write_32bit_c0_register($22, 0, val)
  1247. #define read_c0_brcm_mode() __read_32bit_c0_register($22, 1)
  1248. #define write_c0_brcm_mode(val) __write_32bit_c0_register($22, 1, val)
  1249. #define read_c0_brcm_action() __read_32bit_c0_register($22, 2)
  1250. #define write_c0_brcm_action(val) __write_32bit_c0_register($22, 2, val)
  1251. #define read_c0_brcm_edsp() __read_32bit_c0_register($22, 3)
  1252. #define write_c0_brcm_edsp(val) __write_32bit_c0_register($22, 3, val)
  1253. #define read_c0_brcm_bootvec() __read_32bit_c0_register($22, 4)
  1254. #define write_c0_brcm_bootvec(val) __write_32bit_c0_register($22, 4, val)
  1255. #define read_c0_brcm_sleepcount() __read_32bit_c0_register($22, 7)
  1256. #define write_c0_brcm_sleepcount(val) __write_32bit_c0_register($22, 7, val)
  1257. /*
  1258. * Macros to access the floating point coprocessor control registers
  1259. */
  1260. #define _read_32bit_cp1_register(source, gas_hardfloat) \
  1261. ({ \
  1262. unsigned int __res; \
  1263. \
  1264. __asm__ __volatile__( \
  1265. " .set push \n" \
  1266. " .set reorder \n" \
  1267. " # gas fails to assemble cfc1 for some archs, \n" \
  1268. " # like Octeon. \n" \
  1269. " .set mips1 \n" \
  1270. " "STR(gas_hardfloat)" \n" \
  1271. " cfc1 %0,"STR(source)" \n" \
  1272. " .set pop \n" \
  1273. : "=r" (__res)); \
  1274. __res; \
  1275. })
  1276. #define _write_32bit_cp1_register(dest, val, gas_hardfloat) \
  1277. ({ \
  1278. __asm__ __volatile__( \
  1279. " .set push \n" \
  1280. " .set reorder \n" \
  1281. " "STR(gas_hardfloat)" \n" \
  1282. " ctc1 %0,"STR(dest)" \n" \
  1283. " .set pop \n" \
  1284. : : "r" (val)); \
  1285. })
  1286. #ifdef GAS_HAS_SET_HARDFLOAT
  1287. #define read_32bit_cp1_register(source) \
  1288. _read_32bit_cp1_register(source, .set hardfloat)
  1289. #define write_32bit_cp1_register(dest, val) \
  1290. _write_32bit_cp1_register(dest, val, .set hardfloat)
  1291. #else
  1292. #define read_32bit_cp1_register(source) \
  1293. _read_32bit_cp1_register(source, )
  1294. #define write_32bit_cp1_register(dest, val) \
  1295. _write_32bit_cp1_register(dest, val, )
  1296. #endif
  1297. #ifdef HAVE_AS_DSP
  1298. #define rddsp(mask) \
  1299. ({ \
  1300. unsigned int __dspctl; \
  1301. \
  1302. __asm__ __volatile__( \
  1303. " .set push \n" \
  1304. " .set dsp \n" \
  1305. " rddsp %0, %x1 \n" \
  1306. " .set pop \n" \
  1307. : "=r" (__dspctl) \
  1308. : "i" (mask)); \
  1309. __dspctl; \
  1310. })
  1311. #define wrdsp(val, mask) \
  1312. ({ \
  1313. __asm__ __volatile__( \
  1314. " .set push \n" \
  1315. " .set dsp \n" \
  1316. " wrdsp %0, %x1 \n" \
  1317. " .set pop \n" \
  1318. : \
  1319. : "r" (val), "i" (mask)); \
  1320. })
  1321. #define mflo0() \
  1322. ({ \
  1323. long mflo0; \
  1324. __asm__( \
  1325. " .set push \n" \
  1326. " .set dsp \n" \
  1327. " mflo %0, $ac0 \n" \
  1328. " .set pop \n" \
  1329. : "=r" (mflo0)); \
  1330. mflo0; \
  1331. })
  1332. #define mflo1() \
  1333. ({ \
  1334. long mflo1; \
  1335. __asm__( \
  1336. " .set push \n" \
  1337. " .set dsp \n" \
  1338. " mflo %0, $ac1 \n" \
  1339. " .set pop \n" \
  1340. : "=r" (mflo1)); \
  1341. mflo1; \
  1342. })
  1343. #define mflo2() \
  1344. ({ \
  1345. long mflo2; \
  1346. __asm__( \
  1347. " .set push \n" \
  1348. " .set dsp \n" \
  1349. " mflo %0, $ac2 \n" \
  1350. " .set pop \n" \
  1351. : "=r" (mflo2)); \
  1352. mflo2; \
  1353. })
  1354. #define mflo3() \
  1355. ({ \
  1356. long mflo3; \
  1357. __asm__( \
  1358. " .set push \n" \
  1359. " .set dsp \n" \
  1360. " mflo %0, $ac3 \n" \
  1361. " .set pop \n" \
  1362. : "=r" (mflo3)); \
  1363. mflo3; \
  1364. })
  1365. #define mfhi0() \
  1366. ({ \
  1367. long mfhi0; \
  1368. __asm__( \
  1369. " .set push \n" \
  1370. " .set dsp \n" \
  1371. " mfhi %0, $ac0 \n" \
  1372. " .set pop \n" \
  1373. : "=r" (mfhi0)); \
  1374. mfhi0; \
  1375. })
  1376. #define mfhi1() \
  1377. ({ \
  1378. long mfhi1; \
  1379. __asm__( \
  1380. " .set push \n" \
  1381. " .set dsp \n" \
  1382. " mfhi %0, $ac1 \n" \
  1383. " .set pop \n" \
  1384. : "=r" (mfhi1)); \
  1385. mfhi1; \
  1386. })
  1387. #define mfhi2() \
  1388. ({ \
  1389. long mfhi2; \
  1390. __asm__( \
  1391. " .set push \n" \
  1392. " .set dsp \n" \
  1393. " mfhi %0, $ac2 \n" \
  1394. " .set pop \n" \
  1395. : "=r" (mfhi2)); \
  1396. mfhi2; \
  1397. })
  1398. #define mfhi3() \
  1399. ({ \
  1400. long mfhi3; \
  1401. __asm__( \
  1402. " .set push \n" \
  1403. " .set dsp \n" \
  1404. " mfhi %0, $ac3 \n" \
  1405. " .set pop \n" \
  1406. : "=r" (mfhi3)); \
  1407. mfhi3; \
  1408. })
  1409. #define mtlo0(x) \
  1410. ({ \
  1411. __asm__( \
  1412. " .set push \n" \
  1413. " .set dsp \n" \
  1414. " mtlo %0, $ac0 \n" \
  1415. " .set pop \n" \
  1416. : \
  1417. : "r" (x)); \
  1418. })
  1419. #define mtlo1(x) \
  1420. ({ \
  1421. __asm__( \
  1422. " .set push \n" \
  1423. " .set dsp \n" \
  1424. " mtlo %0, $ac1 \n" \
  1425. " .set pop \n" \
  1426. : \
  1427. : "r" (x)); \
  1428. })
  1429. #define mtlo2(x) \
  1430. ({ \
  1431. __asm__( \
  1432. " .set push \n" \
  1433. " .set dsp \n" \
  1434. " mtlo %0, $ac2 \n" \
  1435. " .set pop \n" \
  1436. : \
  1437. : "r" (x)); \
  1438. })
  1439. #define mtlo3(x) \
  1440. ({ \
  1441. __asm__( \
  1442. " .set push \n" \
  1443. " .set dsp \n" \
  1444. " mtlo %0, $ac3 \n" \
  1445. " .set pop \n" \
  1446. : \
  1447. : "r" (x)); \
  1448. })
  1449. #define mthi0(x) \
  1450. ({ \
  1451. __asm__( \
  1452. " .set push \n" \
  1453. " .set dsp \n" \
  1454. " mthi %0, $ac0 \n" \
  1455. " .set pop \n" \
  1456. : \
  1457. : "r" (x)); \
  1458. })
  1459. #define mthi1(x) \
  1460. ({ \
  1461. __asm__( \
  1462. " .set push \n" \
  1463. " .set dsp \n" \
  1464. " mthi %0, $ac1 \n" \
  1465. " .set pop \n" \
  1466. : \
  1467. : "r" (x)); \
  1468. })
  1469. #define mthi2(x) \
  1470. ({ \
  1471. __asm__( \
  1472. " .set push \n" \
  1473. " .set dsp \n" \
  1474. " mthi %0, $ac2 \n" \
  1475. " .set pop \n" \
  1476. : \
  1477. : "r" (x)); \
  1478. })
  1479. #define mthi3(x) \
  1480. ({ \
  1481. __asm__( \
  1482. " .set push \n" \
  1483. " .set dsp \n" \
  1484. " mthi %0, $ac3 \n" \
  1485. " .set pop \n" \
  1486. : \
  1487. : "r" (x)); \
  1488. })
  1489. #else
  1490. #ifdef CONFIG_CPU_MICROMIPS
  1491. #define rddsp(mask) \
  1492. ({ \
  1493. unsigned int __res; \
  1494. \
  1495. __asm__ __volatile__( \
  1496. " .set push \n" \
  1497. " .set noat \n" \
  1498. " # rddsp $1, %x1 \n" \
  1499. " .hword ((0x0020067c | (%x1 << 14)) >> 16) \n" \
  1500. " .hword ((0x0020067c | (%x1 << 14)) & 0xffff) \n" \
  1501. " move %0, $1 \n" \
  1502. " .set pop \n" \
  1503. : "=r" (__res) \
  1504. : "i" (mask)); \
  1505. __res; \
  1506. })
  1507. #define wrdsp(val, mask) \
  1508. ({ \
  1509. __asm__ __volatile__( \
  1510. " .set push \n" \
  1511. " .set noat \n" \
  1512. " move $1, %0 \n" \
  1513. " # wrdsp $1, %x1 \n" \
  1514. " .hword ((0x0020167c | (%x1 << 14)) >> 16) \n" \
  1515. " .hword ((0x0020167c | (%x1 << 14)) & 0xffff) \n" \
  1516. " .set pop \n" \
  1517. : \
  1518. : "r" (val), "i" (mask)); \
  1519. })
  1520. #define _umips_dsp_mfxxx(ins) \
  1521. ({ \
  1522. unsigned long __treg; \
  1523. \
  1524. __asm__ __volatile__( \
  1525. " .set push \n" \
  1526. " .set noat \n" \
  1527. " .hword 0x0001 \n" \
  1528. " .hword %x1 \n" \
  1529. " move %0, $1 \n" \
  1530. " .set pop \n" \
  1531. : "=r" (__treg) \
  1532. : "i" (ins)); \
  1533. __treg; \
  1534. })
  1535. #define _umips_dsp_mtxxx(val, ins) \
  1536. ({ \
  1537. __asm__ __volatile__( \
  1538. " .set push \n" \
  1539. " .set noat \n" \
  1540. " move $1, %0 \n" \
  1541. " .hword 0x0001 \n" \
  1542. " .hword %x1 \n" \
  1543. " .set pop \n" \
  1544. : \
  1545. : "r" (val), "i" (ins)); \
  1546. })
  1547. #define _umips_dsp_mflo(reg) _umips_dsp_mfxxx((reg << 14) | 0x107c)
  1548. #define _umips_dsp_mfhi(reg) _umips_dsp_mfxxx((reg << 14) | 0x007c)
  1549. #define _umips_dsp_mtlo(val, reg) _umips_dsp_mtxxx(val, ((reg << 14) | 0x307c))
  1550. #define _umips_dsp_mthi(val, reg) _umips_dsp_mtxxx(val, ((reg << 14) | 0x207c))
  1551. #define mflo0() _umips_dsp_mflo(0)
  1552. #define mflo1() _umips_dsp_mflo(1)
  1553. #define mflo2() _umips_dsp_mflo(2)
  1554. #define mflo3() _umips_dsp_mflo(3)
  1555. #define mfhi0() _umips_dsp_mfhi(0)
  1556. #define mfhi1() _umips_dsp_mfhi(1)
  1557. #define mfhi2() _umips_dsp_mfhi(2)
  1558. #define mfhi3() _umips_dsp_mfhi(3)
  1559. #define mtlo0(x) _umips_dsp_mtlo(x, 0)
  1560. #define mtlo1(x) _umips_dsp_mtlo(x, 1)
  1561. #define mtlo2(x) _umips_dsp_mtlo(x, 2)
  1562. #define mtlo3(x) _umips_dsp_mtlo(x, 3)
  1563. #define mthi0(x) _umips_dsp_mthi(x, 0)
  1564. #define mthi1(x) _umips_dsp_mthi(x, 1)
  1565. #define mthi2(x) _umips_dsp_mthi(x, 2)
  1566. #define mthi3(x) _umips_dsp_mthi(x, 3)
  1567. #else /* !CONFIG_CPU_MICROMIPS */
  1568. #define rddsp(mask) \
  1569. ({ \
  1570. unsigned int __res; \
  1571. \
  1572. __asm__ __volatile__( \
  1573. " .set push \n" \
  1574. " .set noat \n" \
  1575. " # rddsp $1, %x1 \n" \
  1576. " .word 0x7c000cb8 | (%x1 << 16) \n" \
  1577. " move %0, $1 \n" \
  1578. " .set pop \n" \
  1579. : "=r" (__res) \
  1580. : "i" (mask)); \
  1581. __res; \
  1582. })
  1583. #define wrdsp(val, mask) \
  1584. ({ \
  1585. __asm__ __volatile__( \
  1586. " .set push \n" \
  1587. " .set noat \n" \
  1588. " move $1, %0 \n" \
  1589. " # wrdsp $1, %x1 \n" \
  1590. " .word 0x7c2004f8 | (%x1 << 11) \n" \
  1591. " .set pop \n" \
  1592. : \
  1593. : "r" (val), "i" (mask)); \
  1594. })
  1595. #define _dsp_mfxxx(ins) \
  1596. ({ \
  1597. unsigned long __treg; \
  1598. \
  1599. __asm__ __volatile__( \
  1600. " .set push \n" \
  1601. " .set noat \n" \
  1602. " .word (0x00000810 | %1) \n" \
  1603. " move %0, $1 \n" \
  1604. " .set pop \n" \
  1605. : "=r" (__treg) \
  1606. : "i" (ins)); \
  1607. __treg; \
  1608. })
  1609. #define _dsp_mtxxx(val, ins) \
  1610. ({ \
  1611. __asm__ __volatile__( \
  1612. " .set push \n" \
  1613. " .set noat \n" \
  1614. " move $1, %0 \n" \
  1615. " .word (0x00200011 | %1) \n" \
  1616. " .set pop \n" \
  1617. : \
  1618. : "r" (val), "i" (ins)); \
  1619. })
  1620. #define _dsp_mflo(reg) _dsp_mfxxx((reg << 21) | 0x0002)
  1621. #define _dsp_mfhi(reg) _dsp_mfxxx((reg << 21) | 0x0000)
  1622. #define _dsp_mtlo(val, reg) _dsp_mtxxx(val, ((reg << 11) | 0x0002))
  1623. #define _dsp_mthi(val, reg) _dsp_mtxxx(val, ((reg << 11) | 0x0000))
  1624. #define mflo0() _dsp_mflo(0)
  1625. #define mflo1() _dsp_mflo(1)
  1626. #define mflo2() _dsp_mflo(2)
  1627. #define mflo3() _dsp_mflo(3)
  1628. #define mfhi0() _dsp_mfhi(0)
  1629. #define mfhi1() _dsp_mfhi(1)
  1630. #define mfhi2() _dsp_mfhi(2)
  1631. #define mfhi3() _dsp_mfhi(3)
  1632. #define mtlo0(x) _dsp_mtlo(x, 0)
  1633. #define mtlo1(x) _dsp_mtlo(x, 1)
  1634. #define mtlo2(x) _dsp_mtlo(x, 2)
  1635. #define mtlo3(x) _dsp_mtlo(x, 3)
  1636. #define mthi0(x) _dsp_mthi(x, 0)
  1637. #define mthi1(x) _dsp_mthi(x, 1)
  1638. #define mthi2(x) _dsp_mthi(x, 2)
  1639. #define mthi3(x) _dsp_mthi(x, 3)
  1640. #endif /* CONFIG_CPU_MICROMIPS */
  1641. #endif
  1642. /*
  1643. * TLB operations.
  1644. *
  1645. * It is responsibility of the caller to take care of any TLB hazards.
  1646. */
  1647. static inline void tlb_probe(void)
  1648. {
  1649. __asm__ __volatile__(
  1650. ".set noreorder\n\t"
  1651. "tlbp\n\t"
  1652. ".set reorder");
  1653. }
  1654. static inline void tlb_read(void)
  1655. {
  1656. #if MIPS34K_MISSED_ITLB_WAR
  1657. int res = 0;
  1658. __asm__ __volatile__(
  1659. " .set push \n"
  1660. " .set noreorder \n"
  1661. " .set noat \n"
  1662. " .set mips32r2 \n"
  1663. " .word 0x41610001 # dvpe $1 \n"
  1664. " move %0, $1 \n"
  1665. " ehb \n"
  1666. " .set pop \n"
  1667. : "=r" (res));
  1668. instruction_hazard();
  1669. #endif
  1670. __asm__ __volatile__(
  1671. ".set noreorder\n\t"
  1672. "tlbr\n\t"
  1673. ".set reorder");
  1674. #if MIPS34K_MISSED_ITLB_WAR
  1675. if ((res & _ULCAST_(1)))
  1676. __asm__ __volatile__(
  1677. " .set push \n"
  1678. " .set noreorder \n"
  1679. " .set noat \n"
  1680. " .set mips32r2 \n"
  1681. " .word 0x41600021 # evpe \n"
  1682. " ehb \n"
  1683. " .set pop \n");
  1684. #endif
  1685. }
  1686. static inline void tlb_write_indexed(void)
  1687. {
  1688. __asm__ __volatile__(
  1689. ".set noreorder\n\t"
  1690. "tlbwi\n\t"
  1691. ".set reorder");
  1692. }
  1693. static inline void tlb_write_random(void)
  1694. {
  1695. __asm__ __volatile__(
  1696. ".set noreorder\n\t"
  1697. "tlbwr\n\t"
  1698. ".set reorder");
  1699. }
  1700. /*
  1701. * Manipulate bits in a c0 register.
  1702. */
  1703. #define __BUILD_SET_C0(name) \
  1704. static inline unsigned int \
  1705. set_c0_##name(unsigned int set) \
  1706. { \
  1707. unsigned int res, new; \
  1708. \
  1709. res = read_c0_##name(); \
  1710. new = res | set; \
  1711. write_c0_##name(new); \
  1712. \
  1713. return res; \
  1714. } \
  1715. \
  1716. static inline unsigned int \
  1717. clear_c0_##name(unsigned int clear) \
  1718. { \
  1719. unsigned int res, new; \
  1720. \
  1721. res = read_c0_##name(); \
  1722. new = res & ~clear; \
  1723. write_c0_##name(new); \
  1724. \
  1725. return res; \
  1726. } \
  1727. \
  1728. static inline unsigned int \
  1729. change_c0_##name(unsigned int change, unsigned int val) \
  1730. { \
  1731. unsigned int res, new; \
  1732. \
  1733. res = read_c0_##name(); \
  1734. new = res & ~change; \
  1735. new |= (val & change); \
  1736. write_c0_##name(new); \
  1737. \
  1738. return res; \
  1739. }
  1740. __BUILD_SET_C0(status)
  1741. __BUILD_SET_C0(cause)
  1742. __BUILD_SET_C0(config)
  1743. __BUILD_SET_C0(config5)
  1744. __BUILD_SET_C0(intcontrol)
  1745. __BUILD_SET_C0(intctl)
  1746. __BUILD_SET_C0(srsmap)
  1747. __BUILD_SET_C0(pagegrain)
  1748. __BUILD_SET_C0(brcm_config_0)
  1749. __BUILD_SET_C0(brcm_bus_pll)
  1750. __BUILD_SET_C0(brcm_reset)
  1751. __BUILD_SET_C0(brcm_cmt_intr)
  1752. __BUILD_SET_C0(brcm_cmt_ctrl)
  1753. __BUILD_SET_C0(brcm_config)
  1754. __BUILD_SET_C0(brcm_mode)
  1755. /*
  1756. * Return low 10 bits of ebase.
  1757. * Note that under KVM (MIPSVZ) this returns vcpu id.
  1758. */
  1759. static inline unsigned int get_ebase_cpunum(void)
  1760. {
  1761. return read_c0_ebase() & 0x3ff;
  1762. }
  1763. #endif /* !__ASSEMBLY__ */
  1764. #endif /* _ASM_MIPSREGS_H */