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