mipsregs.h 54 KB

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