]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-mips/mipsregs.h
Detect the MIPS R2 vectored interrupt, external interrupt controller
[linux-2.6-omap-h63xx.git] / include / asm-mips / mipsregs.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 1994, 1995, 1996, 1997, 2000, 2001 by Ralf Baechle
7  * Copyright (C) 2000 Silicon Graphics, Inc.
8  * Modified for further R[236]000 support by Paul M. Antoine, 1996.
9  * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
10  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
11  * Copyright (C) 2003, 2004  Maciej W. Rozycki
12  */
13 #ifndef _ASM_MIPSREGS_H
14 #define _ASM_MIPSREGS_H
15
16 #include <linux/config.h>
17 #include <linux/linkage.h>
18 #include <asm/hazards.h>
19
20 /*
21  * The following macros are especially useful for __asm__
22  * inline assembler.
23  */
24 #ifndef __STR
25 #define __STR(x) #x
26 #endif
27 #ifndef STR
28 #define STR(x) __STR(x)
29 #endif
30
31 /*
32  *  Configure language
33  */
34 #ifdef __ASSEMBLY__
35 #define _ULCAST_
36 #else
37 #define _ULCAST_ (unsigned long)
38 #endif
39
40 #include <asm/mipsmtregs.h>
41
42 /*
43  * Coprocessor 0 register names
44  */
45 #define CP0_INDEX $0
46 #define CP0_RANDOM $1
47 #define CP0_ENTRYLO0 $2
48 #define CP0_ENTRYLO1 $3
49 #define CP0_CONF $3
50 #define CP0_CONTEXT $4
51 #define CP0_PAGEMASK $5
52 #define CP0_WIRED $6
53 #define CP0_INFO $7
54 #define CP0_BADVADDR $8
55 #define CP0_COUNT $9
56 #define CP0_ENTRYHI $10
57 #define CP0_COMPARE $11
58 #define CP0_STATUS $12
59 #define CP0_CAUSE $13
60 #define CP0_EPC $14
61 #define CP0_PRID $15
62 #define CP0_CONFIG $16
63 #define CP0_LLADDR $17
64 #define CP0_WATCHLO $18
65 #define CP0_WATCHHI $19
66 #define CP0_XCONTEXT $20
67 #define CP0_FRAMEMASK $21
68 #define CP0_DIAGNOSTIC $22
69 #define CP0_DEBUG $23
70 #define CP0_DEPC $24
71 #define CP0_PERFORMANCE $25
72 #define CP0_ECC $26
73 #define CP0_CACHEERR $27
74 #define CP0_TAGLO $28
75 #define CP0_TAGHI $29
76 #define CP0_ERROREPC $30
77 #define CP0_DESAVE $31
78
79 /*
80  * R4640/R4650 cp0 register names.  These registers are listed
81  * here only for completeness; without MMU these CPUs are not useable
82  * by Linux.  A future ELKS port might take make Linux run on them
83  * though ...
84  */
85 #define CP0_IBASE $0
86 #define CP0_IBOUND $1
87 #define CP0_DBASE $2
88 #define CP0_DBOUND $3
89 #define CP0_CALG $17
90 #define CP0_IWATCH $18
91 #define CP0_DWATCH $19
92
93 /*
94  * Coprocessor 0 Set 1 register names
95  */
96 #define CP0_S1_DERRADDR0  $26
97 #define CP0_S1_DERRADDR1  $27
98 #define CP0_S1_INTCONTROL $20
99
100 /*
101  * Coprocessor 0 Set 2 register names
102  */
103 #define CP0_S2_SRSCTL     $12   /* MIPSR2 */
104
105 /*
106  * Coprocessor 0 Set 3 register names
107  */
108 #define CP0_S3_SRSMAP     $12   /* MIPSR2 */
109
110 /*
111  *  TX39 Series
112  */
113 #define CP0_TX39_CACHE  $7
114
115 /*
116  * Coprocessor 1 (FPU) register names
117  */
118 #define CP1_REVISION   $0
119 #define CP1_STATUS     $31
120
121 /*
122  * FPU Status Register Values
123  */
124 /*
125  * Status Register Values
126  */
127
128 #define FPU_CSR_FLUSH   0x01000000      /* flush denormalised results to 0 */
129 #define FPU_CSR_COND    0x00800000      /* $fcc0 */
130 #define FPU_CSR_COND0   0x00800000      /* $fcc0 */
131 #define FPU_CSR_COND1   0x02000000      /* $fcc1 */
132 #define FPU_CSR_COND2   0x04000000      /* $fcc2 */
133 #define FPU_CSR_COND3   0x08000000      /* $fcc3 */
134 #define FPU_CSR_COND4   0x10000000      /* $fcc4 */
135 #define FPU_CSR_COND5   0x20000000      /* $fcc5 */
136 #define FPU_CSR_COND6   0x40000000      /* $fcc6 */
137 #define FPU_CSR_COND7   0x80000000      /* $fcc7 */
138
139 /*
140  * X the exception cause indicator
141  * E the exception enable
142  * S the sticky/flag bit
143 */
144 #define FPU_CSR_ALL_X   0x0003f000
145 #define FPU_CSR_UNI_X   0x00020000
146 #define FPU_CSR_INV_X   0x00010000
147 #define FPU_CSR_DIV_X   0x00008000
148 #define FPU_CSR_OVF_X   0x00004000
149 #define FPU_CSR_UDF_X   0x00002000
150 #define FPU_CSR_INE_X   0x00001000
151
152 #define FPU_CSR_ALL_E   0x00000f80
153 #define FPU_CSR_INV_E   0x00000800
154 #define FPU_CSR_DIV_E   0x00000400
155 #define FPU_CSR_OVF_E   0x00000200
156 #define FPU_CSR_UDF_E   0x00000100
157 #define FPU_CSR_INE_E   0x00000080
158
159 #define FPU_CSR_ALL_S   0x0000007c
160 #define FPU_CSR_INV_S   0x00000040
161 #define FPU_CSR_DIV_S   0x00000020
162 #define FPU_CSR_OVF_S   0x00000010
163 #define FPU_CSR_UDF_S   0x00000008
164 #define FPU_CSR_INE_S   0x00000004
165
166 /* rounding mode */
167 #define FPU_CSR_RN      0x0     /* nearest */
168 #define FPU_CSR_RZ      0x1     /* towards zero */
169 #define FPU_CSR_RU      0x2     /* towards +Infinity */
170 #define FPU_CSR_RD      0x3     /* towards -Infinity */
171
172
173 /*
174  * Values for PageMask register
175  */
176 #ifdef CONFIG_CPU_VR41XX
177
178 /* Why doesn't stupidity hurt ... */
179
180 #define PM_1K           0x00000000
181 #define PM_4K           0x00001800
182 #define PM_16K          0x00007800
183 #define PM_64K          0x0001f800
184 #define PM_256K         0x0007f800
185
186 #else
187
188 #define PM_4K           0x00000000
189 #define PM_16K          0x00006000
190 #define PM_64K          0x0001e000
191 #define PM_256K         0x0007e000
192 #define PM_1M           0x001fe000
193 #define PM_4M           0x007fe000
194 #define PM_16M          0x01ffe000
195 #define PM_64M          0x07ffe000
196 #define PM_256M         0x1fffe000
197
198 #endif
199
200 /*
201  * Default page size for a given kernel configuration
202  */
203 #ifdef CONFIG_PAGE_SIZE_4KB
204 #define PM_DEFAULT_MASK PM_4K
205 #elif defined(CONFIG_PAGE_SIZE_16KB)
206 #define PM_DEFAULT_MASK PM_16K
207 #elif defined(CONFIG_PAGE_SIZE_64KB)
208 #define PM_DEFAULT_MASK PM_64K
209 #else
210 #error Bad page size configuration!
211 #endif
212
213
214 /*
215  * Values used for computation of new tlb entries
216  */
217 #define PL_4K           12
218 #define PL_16K          14
219 #define PL_64K          16
220 #define PL_256K         18
221 #define PL_1M           20
222 #define PL_4M           22
223 #define PL_16M          24
224 #define PL_64M          26
225 #define PL_256M         28
226
227 /*
228  * R4x00 interrupt enable / cause bits
229  */
230 #define IE_SW0          (_ULCAST_(1) <<  8)
231 #define IE_SW1          (_ULCAST_(1) <<  9)
232 #define IE_IRQ0         (_ULCAST_(1) << 10)
233 #define IE_IRQ1         (_ULCAST_(1) << 11)
234 #define IE_IRQ2         (_ULCAST_(1) << 12)
235 #define IE_IRQ3         (_ULCAST_(1) << 13)
236 #define IE_IRQ4         (_ULCAST_(1) << 14)
237 #define IE_IRQ5         (_ULCAST_(1) << 15)
238
239 /*
240  * R4x00 interrupt cause bits
241  */
242 #define C_SW0           (_ULCAST_(1) <<  8)
243 #define C_SW1           (_ULCAST_(1) <<  9)
244 #define C_IRQ0          (_ULCAST_(1) << 10)
245 #define C_IRQ1          (_ULCAST_(1) << 11)
246 #define C_IRQ2          (_ULCAST_(1) << 12)
247 #define C_IRQ3          (_ULCAST_(1) << 13)
248 #define C_IRQ4          (_ULCAST_(1) << 14)
249 #define C_IRQ5          (_ULCAST_(1) << 15)
250
251 /*
252  * Bitfields in the R4xx0 cp0 status register
253  */
254 #define ST0_IE                  0x00000001
255 #define ST0_EXL                 0x00000002
256 #define ST0_ERL                 0x00000004
257 #define ST0_KSU                 0x00000018
258 #  define KSU_USER              0x00000010
259 #  define KSU_SUPERVISOR        0x00000008
260 #  define KSU_KERNEL            0x00000000
261 #define ST0_UX                  0x00000020
262 #define ST0_SX                  0x00000040
263 #define ST0_KX                  0x00000080
264 #define ST0_DE                  0x00010000
265 #define ST0_CE                  0x00020000
266
267 /*
268  * Setting c0_status.co enables Hit_Writeback and Hit_Writeback_Invalidate
269  * cacheops in userspace.  This bit exists only on RM7000 and RM9000
270  * processors.
271  */
272 #define ST0_CO                  0x08000000
273
274 /*
275  * Bitfields in the R[23]000 cp0 status register.
276  */
277 #define ST0_IEC                 0x00000001
278 #define ST0_KUC                 0x00000002
279 #define ST0_IEP                 0x00000004
280 #define ST0_KUP                 0x00000008
281 #define ST0_IEO                 0x00000010
282 #define ST0_KUO                 0x00000020
283 /* bits 6 & 7 are reserved on R[23]000 */
284 #define ST0_ISC                 0x00010000
285 #define ST0_SWC                 0x00020000
286 #define ST0_CM                  0x00080000
287
288 /*
289  * Bits specific to the R4640/R4650
290  */
291 #define ST0_UM                  (_ULCAST_(1) <<  4)
292 #define ST0_IL                  (_ULCAST_(1) << 23)
293 #define ST0_DL                  (_ULCAST_(1) << 24)
294
295 /*
296  * Enable the MIPS DSP ASE
297  */
298 #define ST0_MX                  0x01000000
299
300 /*
301  * Bitfields in the TX39 family CP0 Configuration Register 3
302  */
303 #define TX39_CONF_ICS_SHIFT     19
304 #define TX39_CONF_ICS_MASK      0x00380000
305 #define TX39_CONF_ICS_1KB       0x00000000
306 #define TX39_CONF_ICS_2KB       0x00080000
307 #define TX39_CONF_ICS_4KB       0x00100000
308 #define TX39_CONF_ICS_8KB       0x00180000
309 #define TX39_CONF_ICS_16KB      0x00200000
310
311 #define TX39_CONF_DCS_SHIFT     16
312 #define TX39_CONF_DCS_MASK      0x00070000
313 #define TX39_CONF_DCS_1KB       0x00000000
314 #define TX39_CONF_DCS_2KB       0x00010000
315 #define TX39_CONF_DCS_4KB       0x00020000
316 #define TX39_CONF_DCS_8KB       0x00030000
317 #define TX39_CONF_DCS_16KB      0x00040000
318
319 #define TX39_CONF_CWFON         0x00004000
320 #define TX39_CONF_WBON          0x00002000
321 #define TX39_CONF_RF_SHIFT      10
322 #define TX39_CONF_RF_MASK       0x00000c00
323 #define TX39_CONF_DOZE          0x00000200
324 #define TX39_CONF_HALT          0x00000100
325 #define TX39_CONF_LOCK          0x00000080
326 #define TX39_CONF_ICE           0x00000020
327 #define TX39_CONF_DCE           0x00000010
328 #define TX39_CONF_IRSIZE_SHIFT  2
329 #define TX39_CONF_IRSIZE_MASK   0x0000000c
330 #define TX39_CONF_DRSIZE_SHIFT  0
331 #define TX39_CONF_DRSIZE_MASK   0x00000003
332
333 /*
334  * Status register bits available in all MIPS CPUs.
335  */
336 #define ST0_IM                  0x0000ff00
337 #define  STATUSB_IP0            8
338 #define  STATUSF_IP0            (_ULCAST_(1) <<  8)
339 #define  STATUSB_IP1            9
340 #define  STATUSF_IP1            (_ULCAST_(1) <<  9)
341 #define  STATUSB_IP2            10
342 #define  STATUSF_IP2            (_ULCAST_(1) << 10)
343 #define  STATUSB_IP3            11
344 #define  STATUSF_IP3            (_ULCAST_(1) << 11)
345 #define  STATUSB_IP4            12
346 #define  STATUSF_IP4            (_ULCAST_(1) << 12)
347 #define  STATUSB_IP5            13
348 #define  STATUSF_IP5            (_ULCAST_(1) << 13)
349 #define  STATUSB_IP6            14
350 #define  STATUSF_IP6            (_ULCAST_(1) << 14)
351 #define  STATUSB_IP7            15
352 #define  STATUSF_IP7            (_ULCAST_(1) << 15)
353 #define  STATUSB_IP8            0
354 #define  STATUSF_IP8            (_ULCAST_(1) <<  0)
355 #define  STATUSB_IP9            1
356 #define  STATUSF_IP9            (_ULCAST_(1) <<  1)
357 #define  STATUSB_IP10           2
358 #define  STATUSF_IP10           (_ULCAST_(1) <<  2)
359 #define  STATUSB_IP11           3
360 #define  STATUSF_IP11           (_ULCAST_(1) <<  3)
361 #define  STATUSB_IP12           4
362 #define  STATUSF_IP12           (_ULCAST_(1) <<  4)
363 #define  STATUSB_IP13           5
364 #define  STATUSF_IP13           (_ULCAST_(1) <<  5)
365 #define  STATUSB_IP14           6
366 #define  STATUSF_IP14           (_ULCAST_(1) <<  6)
367 #define  STATUSB_IP15           7
368 #define  STATUSF_IP15           (_ULCAST_(1) <<  7)
369 #define ST0_CH                  0x00040000
370 #define ST0_SR                  0x00100000
371 #define ST0_TS                  0x00200000
372 #define ST0_BEV                 0x00400000
373 #define ST0_RE                  0x02000000
374 #define ST0_FR                  0x04000000
375 #define ST0_CU                  0xf0000000
376 #define ST0_CU0                 0x10000000
377 #define ST0_CU1                 0x20000000
378 #define ST0_CU2                 0x40000000
379 #define ST0_CU3                 0x80000000
380 #define ST0_XX                  0x80000000      /* MIPS IV naming */
381
382 /*
383  * Bitfields and bit numbers in the coprocessor 0 cause register.
384  *
385  * Refer to your MIPS R4xx0 manual, chapter 5 for explanation.
386  */
387 #define  CAUSEB_EXCCODE         2
388 #define  CAUSEF_EXCCODE         (_ULCAST_(31)  <<  2)
389 #define  CAUSEB_IP              8
390 #define  CAUSEF_IP              (_ULCAST_(255) <<  8)
391 #define  CAUSEB_IP0             8
392 #define  CAUSEF_IP0             (_ULCAST_(1)   <<  8)
393 #define  CAUSEB_IP1             9
394 #define  CAUSEF_IP1             (_ULCAST_(1)   <<  9)
395 #define  CAUSEB_IP2             10
396 #define  CAUSEF_IP2             (_ULCAST_(1)   << 10)
397 #define  CAUSEB_IP3             11
398 #define  CAUSEF_IP3             (_ULCAST_(1)   << 11)
399 #define  CAUSEB_IP4             12
400 #define  CAUSEF_IP4             (_ULCAST_(1)   << 12)
401 #define  CAUSEB_IP5             13
402 #define  CAUSEF_IP5             (_ULCAST_(1)   << 13)
403 #define  CAUSEB_IP6             14
404 #define  CAUSEF_IP6             (_ULCAST_(1)   << 14)
405 #define  CAUSEB_IP7             15
406 #define  CAUSEF_IP7             (_ULCAST_(1)   << 15)
407 #define  CAUSEB_IV              23
408 #define  CAUSEF_IV              (_ULCAST_(1)   << 23)
409 #define  CAUSEB_CE              28
410 #define  CAUSEF_CE              (_ULCAST_(3)   << 28)
411 #define  CAUSEB_BD              31
412 #define  CAUSEF_BD              (_ULCAST_(1)   << 31)
413
414 /*
415  * Bits in the coprocessor 0 config register.
416  */
417 /* Generic bits.  */
418 #define CONF_CM_CACHABLE_NO_WA          0
419 #define CONF_CM_CACHABLE_WA             1
420 #define CONF_CM_UNCACHED                2
421 #define CONF_CM_CACHABLE_NONCOHERENT    3
422 #define CONF_CM_CACHABLE_CE             4
423 #define CONF_CM_CACHABLE_COW            5
424 #define CONF_CM_CACHABLE_CUW            6
425 #define CONF_CM_CACHABLE_ACCELERATED    7
426 #define CONF_CM_CMASK                   7
427 #define CONF_BE                 (_ULCAST_(1) << 15)
428
429 /* Bits common to various processors.  */
430 #define CONF_CU                 (_ULCAST_(1) <<  3)
431 #define CONF_DB                 (_ULCAST_(1) <<  4)
432 #define CONF_IB                 (_ULCAST_(1) <<  5)
433 #define CONF_DC                 (_ULCAST_(7) <<  6)
434 #define CONF_IC                 (_ULCAST_(7) <<  9)
435 #define CONF_EB                 (_ULCAST_(1) << 13)
436 #define CONF_EM                 (_ULCAST_(1) << 14)
437 #define CONF_SM                 (_ULCAST_(1) << 16)
438 #define CONF_SC                 (_ULCAST_(1) << 17)
439 #define CONF_EW                 (_ULCAST_(3) << 18)
440 #define CONF_EP                 (_ULCAST_(15)<< 24)
441 #define CONF_EC                 (_ULCAST_(7) << 28)
442 #define CONF_CM                 (_ULCAST_(1) << 31)
443
444 /* Bits specific to the R4xx0.  */
445 #define R4K_CONF_SW             (_ULCAST_(1) << 20)
446 #define R4K_CONF_SS             (_ULCAST_(1) << 21)
447 #define R4K_CONF_SB             (_ULCAST_(3) << 22)
448
449 /* Bits specific to the R5000.  */
450 #define R5K_CONF_SE             (_ULCAST_(1) << 12)
451 #define R5K_CONF_SS             (_ULCAST_(3) << 20)
452
453 /* Bits specific to the RM7000.  */
454 #define RM7K_CONF_SE            (_ULCAST_(1) <<  3)
455 #define RM7K_CONF_TE            (_ULCAST_(1) << 12)
456 #define RM7K_CONF_CLK           (_ULCAST_(1) << 16)
457 #define RM7K_CONF_TC            (_ULCAST_(1) << 17)
458 #define RM7K_CONF_SI            (_ULCAST_(3) << 20)
459 #define RM7K_CONF_SC            (_ULCAST_(1) << 31)
460
461 /* Bits specific to the R10000.  */
462 #define R10K_CONF_DN            (_ULCAST_(3) <<  3)
463 #define R10K_CONF_CT            (_ULCAST_(1) <<  5)
464 #define R10K_CONF_PE            (_ULCAST_(1) <<  6)
465 #define R10K_CONF_PM            (_ULCAST_(3) <<  7)
466 #define R10K_CONF_EC            (_ULCAST_(15)<<  9)
467 #define R10K_CONF_SB            (_ULCAST_(1) << 13)
468 #define R10K_CONF_SK            (_ULCAST_(1) << 14)
469 #define R10K_CONF_SS            (_ULCAST_(7) << 16)
470 #define R10K_CONF_SC            (_ULCAST_(7) << 19)
471 #define R10K_CONF_DC            (_ULCAST_(7) << 26)
472 #define R10K_CONF_IC            (_ULCAST_(7) << 29)
473
474 /* Bits specific to the VR41xx.  */
475 #define VR41_CONF_CS            (_ULCAST_(1) << 12)
476 #define VR41_CONF_M16           (_ULCAST_(1) << 20)
477 #define VR41_CONF_AD            (_ULCAST_(1) << 23)
478
479 /* Bits specific to the R30xx.  */
480 #define R30XX_CONF_FDM          (_ULCAST_(1) << 19)
481 #define R30XX_CONF_REV          (_ULCAST_(1) << 22)
482 #define R30XX_CONF_AC           (_ULCAST_(1) << 23)
483 #define R30XX_CONF_RF           (_ULCAST_(1) << 24)
484 #define R30XX_CONF_HALT         (_ULCAST_(1) << 25)
485 #define R30XX_CONF_FPINT        (_ULCAST_(7) << 26)
486 #define R30XX_CONF_DBR          (_ULCAST_(1) << 29)
487 #define R30XX_CONF_SB           (_ULCAST_(1) << 30)
488 #define R30XX_CONF_LOCK         (_ULCAST_(1) << 31)
489
490 /* Bits specific to the TX49.  */
491 #define TX49_CONF_DC            (_ULCAST_(1) << 16)
492 #define TX49_CONF_IC            (_ULCAST_(1) << 17)  /* conflict with CONF_SC */
493 #define TX49_CONF_HALT          (_ULCAST_(1) << 18)
494 #define TX49_CONF_CWFON         (_ULCAST_(1) << 27)
495
496 /* Bits specific to the MIPS32/64 PRA.  */
497 #define MIPS_CONF_MT            (_ULCAST_(7) <<  7)
498 #define MIPS_CONF_AR            (_ULCAST_(7) << 10)
499 #define MIPS_CONF_AT            (_ULCAST_(3) << 13)
500 #define MIPS_CONF_M             (_ULCAST_(1) << 31)
501
502 /*
503  * Bits in the MIPS32/64 PRA coprocessor 0 config registers 1 and above.
504  */
505 #define MIPS_CONF1_FP           (_ULCAST_(1) <<  0)
506 #define MIPS_CONF1_EP           (_ULCAST_(1) <<  1)
507 #define MIPS_CONF1_CA           (_ULCAST_(1) <<  2)
508 #define MIPS_CONF1_WR           (_ULCAST_(1) <<  3)
509 #define MIPS_CONF1_PC           (_ULCAST_(1) <<  4)
510 #define MIPS_CONF1_MD           (_ULCAST_(1) <<  5)
511 #define MIPS_CONF1_C2           (_ULCAST_(1) <<  6)
512 #define MIPS_CONF1_DA           (_ULCAST_(7) <<  7)
513 #define MIPS_CONF1_DL           (_ULCAST_(7) << 10)
514 #define MIPS_CONF1_DS           (_ULCAST_(7) << 13)
515 #define MIPS_CONF1_IA           (_ULCAST_(7) << 16)
516 #define MIPS_CONF1_IL           (_ULCAST_(7) << 19)
517 #define MIPS_CONF1_IS           (_ULCAST_(7) << 22)
518 #define MIPS_CONF1_TLBS         (_ULCAST_(63)<< 25)
519
520 #define MIPS_CONF2_SA           (_ULCAST_(15)<<  0)
521 #define MIPS_CONF2_SL           (_ULCAST_(15)<<  4)
522 #define MIPS_CONF2_SS           (_ULCAST_(15)<<  8)
523 #define MIPS_CONF2_SU           (_ULCAST_(15)<< 12)
524 #define MIPS_CONF2_TA           (_ULCAST_(15)<< 16)
525 #define MIPS_CONF2_TL           (_ULCAST_(15)<< 20)
526 #define MIPS_CONF2_TS           (_ULCAST_(15)<< 24)
527 #define MIPS_CONF2_TU           (_ULCAST_(7) << 28)
528
529 #define MIPS_CONF3_TL           (_ULCAST_(1) <<  0)
530 #define MIPS_CONF3_SM           (_ULCAST_(1) <<  1)
531 #define MIPS_CONF3_MT           (_ULCAST_(1) <<  2)
532 #define MIPS_CONF3_SP           (_ULCAST_(1) <<  4)
533 #define MIPS_CONF3_VINT         (_ULCAST_(1) <<  5)
534 #define MIPS_CONF3_VEIC         (_ULCAST_(1) <<  6)
535 #define MIPS_CONF3_LPA          (_ULCAST_(1) <<  7)
536 #define MIPS_CONF3_DSP          (_ULCAST_(1) << 10)
537
538 /*
539  * Bits in the MIPS32/64 coprocessor 1 (FPU) revision register.
540  */
541 #define MIPS_FPIR_S             (_ULCAST_(1) << 16)
542 #define MIPS_FPIR_D             (_ULCAST_(1) << 17)
543 #define MIPS_FPIR_PS            (_ULCAST_(1) << 18)
544 #define MIPS_FPIR_3D            (_ULCAST_(1) << 19)
545 #define MIPS_FPIR_W             (_ULCAST_(1) << 20)
546 #define MIPS_FPIR_L             (_ULCAST_(1) << 21)
547 #define MIPS_FPIR_F64           (_ULCAST_(1) << 22)
548
549 /*
550  * R10000 performance counter definitions.
551  *
552  * FIXME: The R10000 performance counter opens a nice way to implement CPU
553  *        time accounting with a precission of one cycle.  I don't have
554  *        R10000 silicon but just a manual, so ...
555  */
556
557 /*
558  * Events counted by counter #0
559  */
560 #define CE0_CYCLES                      0
561 #define CE0_INSN_ISSUED                 1
562 #define CE0_LPSC_ISSUED                 2
563 #define CE0_S_ISSUED                    3
564 #define CE0_SC_ISSUED                   4
565 #define CE0_SC_FAILED                   5
566 #define CE0_BRANCH_DECODED              6
567 #define CE0_QW_WB_SECONDARY             7
568 #define CE0_CORRECTED_ECC_ERRORS        8
569 #define CE0_ICACHE_MISSES               9
570 #define CE0_SCACHE_I_MISSES             10
571 #define CE0_SCACHE_I_WAY_MISSPREDICTED  11
572 #define CE0_EXT_INTERVENTIONS_REQ       12
573 #define CE0_EXT_INVALIDATE_REQ          13
574 #define CE0_VIRTUAL_COHERENCY_COND      14
575 #define CE0_INSN_GRADUATED              15
576
577 /*
578  * Events counted by counter #1
579  */
580 #define CE1_CYCLES                      0
581 #define CE1_INSN_GRADUATED              1
582 #define CE1_LPSC_GRADUATED              2
583 #define CE1_S_GRADUATED                 3
584 #define CE1_SC_GRADUATED                4
585 #define CE1_FP_INSN_GRADUATED           5
586 #define CE1_QW_WB_PRIMARY               6
587 #define CE1_TLB_REFILL                  7
588 #define CE1_BRANCH_MISSPREDICTED        8
589 #define CE1_DCACHE_MISS                 9
590 #define CE1_SCACHE_D_MISSES             10
591 #define CE1_SCACHE_D_WAY_MISSPREDICTED  11
592 #define CE1_EXT_INTERVENTION_HITS       12
593 #define CE1_EXT_INVALIDATE_REQ          13
594 #define CE1_SP_HINT_TO_CEXCL_SC_BLOCKS  14
595 #define CE1_SP_HINT_TO_SHARED_SC_BLOCKS 15
596
597 /*
598  * These flags define in which privilege mode the counters count events
599  */
600 #define CEB_USER        8       /* Count events in user mode, EXL = ERL = 0 */
601 #define CEB_SUPERVISOR  4       /* Count events in supvervisor mode EXL = ERL = 0 */
602 #define CEB_KERNEL      2       /* Count events in kernel mode EXL = ERL = 0 */
603 #define CEB_EXL         1       /* Count events with EXL = 1, ERL = 0 */
604
605 #ifndef __ASSEMBLY__
606
607 /*
608  * Functions to access the R10000 performance counters.  These are basically
609  * mfc0 and mtc0 instructions from and to coprocessor register with a 5-bit
610  * performance counter number encoded into bits 1 ... 5 of the instruction.
611  * Only performance counters 0 to 1 actually exist, so for a non-R10000 aware
612  * disassembler these will look like an access to sel 0 or 1.
613  */
614 #define read_r10k_perf_cntr(counter)                            \
615 ({                                                              \
616         unsigned int __res;                                     \
617         __asm__ __volatile__(                                   \
618         "mfpc\t%0, %1"                                          \
619         : "=r" (__res)                                          \
620         : "i" (counter));                                       \
621                                                                 \
622         __res;                                                  \
623 })
624
625 #define write_r10k_perf_cntr(counter,val)                       \
626 do {                                                            \
627         __asm__ __volatile__(                                   \
628         "mtpc\t%0, %1"                                          \
629         :                                                       \
630         : "r" (val), "i" (counter));                            \
631 } while (0)
632
633 #define read_r10k_perf_event(counter)                           \
634 ({                                                              \
635         unsigned int __res;                                     \
636         __asm__ __volatile__(                                   \
637         "mfps\t%0, %1"                                          \
638         : "=r" (__res)                                          \
639         : "i" (counter));                                       \
640                                                                 \
641         __res;                                                  \
642 })
643
644 #define write_r10k_perf_cntl(counter,val)                       \
645 do {                                                            \
646         __asm__ __volatile__(                                   \
647         "mtps\t%0, %1"                                          \
648         :                                                       \
649         : "r" (val), "i" (counter));                            \
650 } while (0)
651
652
653 /*
654  * Macros to access the system control coprocessor
655  */
656
657 #define __read_32bit_c0_register(source, sel)                           \
658 ({ int __res;                                                           \
659         if (sel == 0)                                                   \
660                 __asm__ __volatile__(                                   \
661                         "mfc0\t%0, " #source "\n\t"                     \
662                         : "=r" (__res));                                \
663         else                                                            \
664                 __asm__ __volatile__(                                   \
665                         ".set\tmips32\n\t"                              \
666                         "mfc0\t%0, " #source ", " #sel "\n\t"           \
667                         ".set\tmips0\n\t"                               \
668                         : "=r" (__res));                                \
669         __res;                                                          \
670 })
671
672 #define __read_64bit_c0_register(source, sel)                           \
673 ({ unsigned long long __res;                                            \
674         if (sizeof(unsigned long) == 4)                                 \
675                 __res = __read_64bit_c0_split(source, sel);             \
676         else if (sel == 0)                                              \
677                 __asm__ __volatile__(                                   \
678                         ".set\tmips3\n\t"                               \
679                         "dmfc0\t%0, " #source "\n\t"                    \
680                         ".set\tmips0"                                   \
681                         : "=r" (__res));                                \
682         else                                                            \
683                 __asm__ __volatile__(                                   \
684                         ".set\tmips64\n\t"                              \
685                         "dmfc0\t%0, " #source ", " #sel "\n\t"          \
686                         ".set\tmips0"                                   \
687                         : "=r" (__res));                                \
688         __res;                                                          \
689 })
690
691 #define __write_32bit_c0_register(register, sel, value)                 \
692 do {                                                                    \
693         if (sel == 0)                                                   \
694                 __asm__ __volatile__(                                   \
695                         "mtc0\t%z0, " #register "\n\t"                  \
696                         : : "Jr" ((unsigned int)value));                \
697         else                                                            \
698                 __asm__ __volatile__(                                   \
699                         ".set\tmips32\n\t"                              \
700                         "mtc0\t%z0, " #register ", " #sel "\n\t"        \
701                         ".set\tmips0"                                   \
702                         : : "Jr" ((unsigned int)value));                \
703 } while (0)
704
705 #define __write_64bit_c0_register(register, sel, value)                 \
706 do {                                                                    \
707         if (sizeof(unsigned long) == 4)                                 \
708                 __write_64bit_c0_split(register, sel, value);           \
709         else if (sel == 0)                                              \
710                 __asm__ __volatile__(                                   \
711                         ".set\tmips3\n\t"                               \
712                         "dmtc0\t%z0, " #register "\n\t"                 \
713                         ".set\tmips0"                                   \
714                         : : "Jr" (value));                              \
715         else                                                            \
716                 __asm__ __volatile__(                                   \
717                         ".set\tmips64\n\t"                              \
718                         "dmtc0\t%z0, " #register ", " #sel "\n\t"       \
719                         ".set\tmips0"                                   \
720                         : : "Jr" (value));                              \
721 } while (0)
722
723 #define __read_ulong_c0_register(reg, sel)                              \
724         ((sizeof(unsigned long) == 4) ?                                 \
725         (unsigned long) __read_32bit_c0_register(reg, sel) :            \
726         (unsigned long) __read_64bit_c0_register(reg, sel))
727
728 #define __write_ulong_c0_register(reg, sel, val)                        \
729 do {                                                                    \
730         if (sizeof(unsigned long) == 4)                                 \
731                 __write_32bit_c0_register(reg, sel, val);               \
732         else                                                            \
733                 __write_64bit_c0_register(reg, sel, val);               \
734 } while (0)
735
736 /*
737  * On RM7000/RM9000 these are uses to access cop0 set 1 registers
738  */
739 #define __read_32bit_c0_ctrl_register(source)                           \
740 ({ int __res;                                                           \
741         __asm__ __volatile__(                                           \
742                 "cfc0\t%0, " #source "\n\t"                             \
743                 : "=r" (__res));                                        \
744         __res;                                                          \
745 })
746
747 #define __write_32bit_c0_ctrl_register(register, value)                 \
748 do {                                                                    \
749         __asm__ __volatile__(                                           \
750                 "ctc0\t%z0, " #register "\n\t"                          \
751                 : : "Jr" ((unsigned int)value));                        \
752 } while (0)
753
754 /*
755  * These versions are only needed for systems with more than 38 bits of
756  * physical address space running the 32-bit kernel.  That's none atm :-)
757  */
758 #define __read_64bit_c0_split(source, sel)                              \
759 ({                                                                      \
760         unsigned long long val;                                         \
761         unsigned long flags;                                            \
762                                                                         \
763         local_irq_save(flags);                                          \
764         if (sel == 0)                                                   \
765                 __asm__ __volatile__(                                   \
766                         ".set\tmips64\n\t"                              \
767                         "dmfc0\t%M0, " #source "\n\t"                   \
768                         "dsll\t%L0, %M0, 32\n\t"                        \
769                         "dsrl\t%M0, %M0, 32\n\t"                        \
770                         "dsrl\t%L0, %L0, 32\n\t"                        \
771                         ".set\tmips0"                                   \
772                         : "=r" (val));                                  \
773         else                                                            \
774                 __asm__ __volatile__(                                   \
775                         ".set\tmips64\n\t"                              \
776                         "dmfc0\t%M0, " #source ", " #sel "\n\t"         \
777                         "dsll\t%L0, %M0, 32\n\t"                        \
778                         "dsrl\t%M0, %M0, 32\n\t"                        \
779                         "dsrl\t%L0, %L0, 32\n\t"                        \
780                         ".set\tmips0"                                   \
781                         : "=r" (val));                                  \
782         local_irq_restore(flags);                                       \
783                                                                         \
784         val;                                                            \
785 })
786
787 #define __write_64bit_c0_split(source, sel, val)                        \
788 do {                                                                    \
789         unsigned long flags;                                            \
790                                                                         \
791         local_irq_save(flags);                                          \
792         if (sel == 0)                                                   \
793                 __asm__ __volatile__(                                   \
794                         ".set\tmips64\n\t"                              \
795                         "dsll\t%L0, %L0, 32\n\t"                        \
796                         "dsrl\t%L0, %L0, 32\n\t"                        \
797                         "dsll\t%M0, %M0, 32\n\t"                        \
798                         "or\t%L0, %L0, %M0\n\t"                         \
799                         "dmtc0\t%L0, " #source "\n\t"                   \
800                         ".set\tmips0"                                   \
801                         : : "r" (val));                                 \
802         else                                                            \
803                 __asm__ __volatile__(                                   \
804                         ".set\tmips64\n\t"                              \
805                         "dsll\t%L0, %L0, 32\n\t"                        \
806                         "dsrl\t%L0, %L0, 32\n\t"                        \
807                         "dsll\t%M0, %M0, 32\n\t"                        \
808                         "or\t%L0, %L0, %M0\n\t"                         \
809                         "dmtc0\t%L0, " #source ", " #sel "\n\t"         \
810                         ".set\tmips0"                                   \
811                         : : "r" (val));                                 \
812         local_irq_restore(flags);                                       \
813 } while (0)
814
815 #define read_c0_index()         __read_32bit_c0_register($0, 0)
816 #define write_c0_index(val)     __write_32bit_c0_register($0, 0, val)
817
818 #define read_c0_entrylo0()      __read_ulong_c0_register($2, 0)
819 #define write_c0_entrylo0(val)  __write_ulong_c0_register($2, 0, val)
820
821 #define read_c0_entrylo1()      __read_ulong_c0_register($3, 0)
822 #define write_c0_entrylo1(val)  __write_ulong_c0_register($3, 0, val)
823
824 #define read_c0_conf()          __read_32bit_c0_register($3, 0)
825 #define write_c0_conf(val)      __write_32bit_c0_register($3, 0, val)
826
827 #define read_c0_context()       __read_ulong_c0_register($4, 0)
828 #define write_c0_context(val)   __write_ulong_c0_register($4, 0, val)
829
830 #define read_c0_pagemask()      __read_32bit_c0_register($5, 0)
831 #define write_c0_pagemask(val)  __write_32bit_c0_register($5, 0, val)
832
833 #define read_c0_wired()         __read_32bit_c0_register($6, 0)
834 #define write_c0_wired(val)     __write_32bit_c0_register($6, 0, val)
835
836 #define read_c0_info()          __read_32bit_c0_register($7, 0)
837
838 #define read_c0_cache()         __read_32bit_c0_register($7, 0) /* TX39xx */
839 #define write_c0_cache(val)     __write_32bit_c0_register($7, 0, val)
840
841 #define read_c0_count()         __read_32bit_c0_register($9, 0)
842 #define write_c0_count(val)     __write_32bit_c0_register($9, 0, val)
843
844 #define read_c0_entryhi()       __read_ulong_c0_register($10, 0)
845 #define write_c0_entryhi(val)   __write_ulong_c0_register($10, 0, val)
846
847 #define read_c0_compare()       __read_32bit_c0_register($11, 0)
848 #define write_c0_compare(val)   __write_32bit_c0_register($11, 0, val)
849
850 #define read_c0_status()        __read_32bit_c0_register($12, 0)
851 #define write_c0_status(val)    __write_32bit_c0_register($12, 0, val)
852
853 #define read_c0_cause()         __read_32bit_c0_register($13, 0)
854 #define write_c0_cause(val)     __write_32bit_c0_register($13, 0, val)
855
856 #define read_c0_epc()           __read_ulong_c0_register($14, 0)
857 #define write_c0_epc(val)       __write_ulong_c0_register($14, 0, val)
858
859 #define read_c0_prid()          __read_32bit_c0_register($15, 0)
860
861 #define read_c0_config()        __read_32bit_c0_register($16, 0)
862 #define read_c0_config1()       __read_32bit_c0_register($16, 1)
863 #define read_c0_config2()       __read_32bit_c0_register($16, 2)
864 #define read_c0_config3()       __read_32bit_c0_register($16, 3)
865 #define read_c0_config4()       __read_32bit_c0_register($16, 4)
866 #define read_c0_config5()       __read_32bit_c0_register($16, 5)
867 #define read_c0_config6()       __read_32bit_c0_register($16, 6)
868 #define read_c0_config7()       __read_32bit_c0_register($16, 7)
869 #define write_c0_config(val)    __write_32bit_c0_register($16, 0, val)
870 #define write_c0_config1(val)   __write_32bit_c0_register($16, 1, val)
871 #define write_c0_config2(val)   __write_32bit_c0_register($16, 2, val)
872 #define write_c0_config3(val)   __write_32bit_c0_register($16, 3, val)
873 #define write_c0_config4(val)   __write_32bit_c0_register($16, 4, val)
874 #define write_c0_config5(val)   __write_32bit_c0_register($16, 5, val)
875 #define write_c0_config6(val)   __write_32bit_c0_register($16, 6, val)
876 #define write_c0_config7(val)   __write_32bit_c0_register($16, 7, val)
877
878 /*
879  * The WatchLo register.  There may be upto 8 of them.
880  */
881 #define read_c0_watchlo0()      __read_ulong_c0_register($18, 0)
882 #define read_c0_watchlo1()      __read_ulong_c0_register($18, 1)
883 #define read_c0_watchlo2()      __read_ulong_c0_register($18, 2)
884 #define read_c0_watchlo3()      __read_ulong_c0_register($18, 3)
885 #define read_c0_watchlo4()      __read_ulong_c0_register($18, 4)
886 #define read_c0_watchlo5()      __read_ulong_c0_register($18, 5)
887 #define read_c0_watchlo6()      __read_ulong_c0_register($18, 6)
888 #define read_c0_watchlo7()      __read_ulong_c0_register($18, 7)
889 #define write_c0_watchlo0(val)  __write_ulong_c0_register($18, 0, val)
890 #define write_c0_watchlo1(val)  __write_ulong_c0_register($18, 1, val)
891 #define write_c0_watchlo2(val)  __write_ulong_c0_register($18, 2, val)
892 #define write_c0_watchlo3(val)  __write_ulong_c0_register($18, 3, val)
893 #define write_c0_watchlo4(val)  __write_ulong_c0_register($18, 4, val)
894 #define write_c0_watchlo5(val)  __write_ulong_c0_register($18, 5, val)
895 #define write_c0_watchlo6(val)  __write_ulong_c0_register($18, 6, val)
896 #define write_c0_watchlo7(val)  __write_ulong_c0_register($18, 7, val)
897
898 /*
899  * The WatchHi register.  There may be upto 8 of them.
900  */
901 #define read_c0_watchhi0()      __read_32bit_c0_register($19, 0)
902 #define read_c0_watchhi1()      __read_32bit_c0_register($19, 1)
903 #define read_c0_watchhi2()      __read_32bit_c0_register($19, 2)
904 #define read_c0_watchhi3()      __read_32bit_c0_register($19, 3)
905 #define read_c0_watchhi4()      __read_32bit_c0_register($19, 4)
906 #define read_c0_watchhi5()      __read_32bit_c0_register($19, 5)
907 #define read_c0_watchhi6()      __read_32bit_c0_register($19, 6)
908 #define read_c0_watchhi7()      __read_32bit_c0_register($19, 7)
909
910 #define write_c0_watchhi0(val)  __write_32bit_c0_register($19, 0, val)
911 #define write_c0_watchhi1(val)  __write_32bit_c0_register($19, 1, val)
912 #define write_c0_watchhi2(val)  __write_32bit_c0_register($19, 2, val)
913 #define write_c0_watchhi3(val)  __write_32bit_c0_register($19, 3, val)
914 #define write_c0_watchhi4(val)  __write_32bit_c0_register($19, 4, val)
915 #define write_c0_watchhi5(val)  __write_32bit_c0_register($19, 5, val)
916 #define write_c0_watchhi6(val)  __write_32bit_c0_register($19, 6, val)
917 #define write_c0_watchhi7(val)  __write_32bit_c0_register($19, 7, val)
918
919 #define read_c0_xcontext()      __read_ulong_c0_register($20, 0)
920 #define write_c0_xcontext(val)  __write_ulong_c0_register($20, 0, val)
921
922 #define read_c0_intcontrol()    __read_32bit_c0_ctrl_register($20)
923 #define write_c0_intcontrol(val) __write_32bit_c0_ctrl_register($20, val)
924
925 #define read_c0_framemask()     __read_32bit_c0_register($21, 0)
926 #define write_c0_framemask(val) __write_32bit_c0_register($21, 0, val)
927
928 /* RM9000 PerfControl performance counter control register */
929 #define read_c0_perfcontrol()   __read_32bit_c0_register($22, 0)
930 #define write_c0_perfcontrol(val) __write_32bit_c0_register($22, 0, val)
931
932 #define read_c0_diag()          __read_32bit_c0_register($22, 0)
933 #define write_c0_diag(val)      __write_32bit_c0_register($22, 0, val)
934
935 #define read_c0_diag1()         __read_32bit_c0_register($22, 1)
936 #define write_c0_diag1(val)     __write_32bit_c0_register($22, 1, val)
937
938 #define read_c0_diag2()         __read_32bit_c0_register($22, 2)
939 #define write_c0_diag2(val)     __write_32bit_c0_register($22, 2, val)
940
941 #define read_c0_diag3()         __read_32bit_c0_register($22, 3)
942 #define write_c0_diag3(val)     __write_32bit_c0_register($22, 3, val)
943
944 #define read_c0_diag4()         __read_32bit_c0_register($22, 4)
945 #define write_c0_diag4(val)     __write_32bit_c0_register($22, 4, val)
946
947 #define read_c0_diag5()         __read_32bit_c0_register($22, 5)
948 #define write_c0_diag5(val)     __write_32bit_c0_register($22, 5, val)
949
950 #define read_c0_debug()         __read_32bit_c0_register($23, 0)
951 #define write_c0_debug(val)     __write_32bit_c0_register($23, 0, val)
952
953 #define read_c0_depc()          __read_ulong_c0_register($24, 0)
954 #define write_c0_depc(val)      __write_ulong_c0_register($24, 0, val)
955
956 /*
957  * MIPS32 / MIPS64 performance counters
958  */
959 #define read_c0_perfctrl0()     __read_32bit_c0_register($25, 0)
960 #define write_c0_perfctrl0(val) __write_32bit_c0_register($25, 0, val)
961 #define read_c0_perfcntr0()     __read_32bit_c0_register($25, 1)
962 #define write_c0_perfcntr0(val) __write_32bit_c0_register($25, 1, val)
963 #define read_c0_perfctrl1()     __read_32bit_c0_register($25, 2)
964 #define write_c0_perfctrl1(val) __write_32bit_c0_register($25, 2, val)
965 #define read_c0_perfcntr1()     __read_32bit_c0_register($25, 3)
966 #define write_c0_perfcntr1(val) __write_32bit_c0_register($25, 3, val)
967 #define read_c0_perfctrl2()     __read_32bit_c0_register($25, 4)
968 #define write_c0_perfctrl2(val) __write_32bit_c0_register($25, 4, val)
969 #define read_c0_perfcntr2()     __read_32bit_c0_register($25, 5)
970 #define write_c0_perfcntr2(val) __write_32bit_c0_register($25, 5, val)
971 #define read_c0_perfctrl3()     __read_32bit_c0_register($25, 6)
972 #define write_c0_perfctrl3(val) __write_32bit_c0_register($25, 6, val)
973 #define read_c0_perfcntr3()     __read_32bit_c0_register($25, 7)
974 #define write_c0_perfcntr3(val) __write_32bit_c0_register($25, 7, val)
975
976 /* RM9000 PerfCount performance counter register */
977 #define read_c0_perfcount()     __read_64bit_c0_register($25, 0)
978 #define write_c0_perfcount(val) __write_64bit_c0_register($25, 0, val)
979
980 #define read_c0_ecc()           __read_32bit_c0_register($26, 0)
981 #define write_c0_ecc(val)       __write_32bit_c0_register($26, 0, val)
982
983 #define read_c0_derraddr0()     __read_ulong_c0_register($26, 1)
984 #define write_c0_derraddr0(val) __write_ulong_c0_register($26, 1, val)
985
986 #define read_c0_cacheerr()      __read_32bit_c0_register($27, 0)
987
988 #define read_c0_derraddr1()     __read_ulong_c0_register($27, 1)
989 #define write_c0_derraddr1(val) __write_ulong_c0_register($27, 1, val)
990
991 #define read_c0_taglo()         __read_32bit_c0_register($28, 0)
992 #define write_c0_taglo(val)     __write_32bit_c0_register($28, 0, val)
993
994 #define read_c0_taghi()         __read_32bit_c0_register($29, 0)
995 #define write_c0_taghi(val)     __write_32bit_c0_register($29, 0, val)
996
997 #define read_c0_errorepc()      __read_ulong_c0_register($30, 0)
998 #define write_c0_errorepc(val)  __write_ulong_c0_register($30, 0, val)
999
1000 /* MIPSR2 */
1001 #define read_c0_hwrena()        __read_32bit_c0_register($7,0)
1002 #define write_c0_hwrena(val)    __write_32bit_c0_register($7, 0, val)
1003
1004 #define read_c0_intctl()        __read_32bit_c0_register($12, 1)
1005 #define write_c0_intctl(val)    __write_32bit_c0_register($12, 1, val)
1006
1007 #define read_c0_srsctl()        __read_32bit_c0_register($12, 2)
1008 #define write_c0_srsctl(val)    __write_32bit_c0_register($12, 2, val)
1009
1010 #define read_c0_srsmap()        __read_32bit_c0_register($12, 3)
1011 #define write_c0_srsmap(val)    __write_32bit_c0_register($12, 3, val)
1012
1013 #define read_c0_ebase()         __read_32bit_c0_register($15,1)
1014 #define write_c0_ebase(val)     __write_32bit_c0_register($15, 1, val)
1015
1016 /*
1017  * Macros to access the floating point coprocessor control registers
1018  */
1019 #define read_32bit_cp1_register(source)                         \
1020 ({ int __res;                                                   \
1021         __asm__ __volatile__(                                   \
1022         ".set\tpush\n\t"                                        \
1023         ".set\treorder\n\t"                                     \
1024         "cfc1\t%0,"STR(source)"\n\t"                            \
1025         ".set\tpop"                                             \
1026         : "=r" (__res));                                        \
1027         __res;})
1028
1029 #define rddsp(mask)                                                     \
1030 ({                                                                      \
1031         unsigned int __res;                                             \
1032                                                                         \
1033         __asm__ __volatile__(                                           \
1034         "       .set    push                            \n"             \
1035         "       .set    noat                            \n"             \
1036         "       # rddsp $1, %x1                         \n"             \
1037         "       .word   0x7c000cb8 | (%x1 << 16)        \n"             \
1038         "       move    %0, $1                          \n"             \
1039         "       .set    pop                             \n"             \
1040         : "=r" (__res)                                                  \
1041         : "i" (mask));                                                  \
1042         __res;                                                          \
1043 })
1044
1045 #define wrdsp(val, mask)                                                \
1046 do {                                                                    \
1047         __asm__ __volatile__(                                           \
1048         "       .set    push                                    \n"     \
1049         "       .set    noat                                    \n"     \
1050         "       move    $1, %0                                  \n"     \
1051         "       # wrdsp $1, %x1                                 \n"     \
1052         "       .word   0x7c2004f8 | (%x1 << 15)                \n"     \
1053         "       .set    pop                                     \n"     \
1054         :                                                               \
1055         : "r" (val), "i" (mask));                                       \
1056 } while (0)
1057
1058 #if 0   /* Need DSP ASE capable assembler ... */
1059 #define mflo0() ({ long mflo0; __asm__("mflo %0, $ac0" : "=r" (mflo0)); mflo0;})
1060 #define mflo1() ({ long mflo1; __asm__("mflo %0, $ac1" : "=r" (mflo1)); mflo1;})
1061 #define mflo2() ({ long mflo2; __asm__("mflo %0, $ac2" : "=r" (mflo2)); mflo2;})
1062 #define mflo3() ({ long mflo3; __asm__("mflo %0, $ac3" : "=r" (mflo3)); mflo3;})
1063
1064 #define mfhi0() ({ long mfhi0; __asm__("mfhi %0, $ac0" : "=r" (mfhi0)); mfhi0;})
1065 #define mfhi1() ({ long mfhi1; __asm__("mfhi %0, $ac1" : "=r" (mfhi1)); mfhi1;})
1066 #define mfhi2() ({ long mfhi2; __asm__("mfhi %0, $ac2" : "=r" (mfhi2)); mfhi2;})
1067 #define mfhi3() ({ long mfhi3; __asm__("mfhi %0, $ac3" : "=r" (mfhi3)); mfhi3;})
1068
1069 #define mtlo0(x) __asm__("mtlo %0, $ac0" ::"r" (x))
1070 #define mtlo1(x) __asm__("mtlo %0, $ac1" ::"r" (x))
1071 #define mtlo2(x) __asm__("mtlo %0, $ac2" ::"r" (x))
1072 #define mtlo3(x) __asm__("mtlo %0, $ac3" ::"r" (x))
1073
1074 #define mthi0(x) __asm__("mthi %0, $ac0" ::"r" (x))
1075 #define mthi1(x) __asm__("mthi %0, $ac1" ::"r" (x))
1076 #define mthi2(x) __asm__("mthi %0, $ac2" ::"r" (x))
1077 #define mthi3(x) __asm__("mthi %0, $ac3" ::"r" (x))
1078
1079 #else
1080
1081 #define mfhi0()                                                         \
1082 ({                                                                      \
1083         unsigned long __treg;                                           \
1084                                                                         \
1085         __asm__ __volatile__(                                           \
1086         "       .set    push                    \n"                     \
1087         "       .set    noat                    \n"                     \
1088         "       # mfhi  %0, $ac0                \n"                     \
1089         "       .word   0x00000810              \n"                     \
1090         "       move    %0, $1                  \n"                     \
1091         "       .set    pop                     \n"                     \
1092         : "=r" (__treg));                                               \
1093         __treg;                                                         \
1094 })
1095
1096 #define mfhi1()                                                         \
1097 ({                                                                      \
1098         unsigned long __treg;                                           \
1099                                                                         \
1100         __asm__ __volatile__(                                           \
1101         "       .set    push                    \n"                     \
1102         "       .set    noat                    \n"                     \
1103         "       # mfhi  %0, $ac1                \n"                     \
1104         "       .word   0x00200810              \n"                     \
1105         "       move    %0, $1                  \n"                     \
1106         "       .set    pop                     \n"                     \
1107         : "=r" (__treg));                                               \
1108         __treg;                                                         \
1109 })
1110
1111 #define mfhi2()                                                         \
1112 ({                                                                      \
1113         unsigned long __treg;                                           \
1114                                                                         \
1115         __asm__ __volatile__(                                           \
1116         "       .set    push                    \n"                     \
1117         "       .set    noat                    \n"                     \
1118         "       # mfhi  %0, $ac2                \n"                     \
1119         "       .word   0x00400810              \n"                     \
1120         "       move    %0, $1                  \n"                     \
1121         "       .set    pop                     \n"                     \
1122         : "=r" (__treg));                                               \
1123         __treg;                                                         \
1124 })
1125
1126 #define mfhi3()                                                         \
1127 ({                                                                      \
1128         unsigned long __treg;                                           \
1129                                                                         \
1130         __asm__ __volatile__(                                           \
1131         "       .set    push                    \n"                     \
1132         "       .set    noat                    \n"                     \
1133         "       # mfhi  %0, $ac3                \n"                     \
1134         "       .word   0x00600810              \n"                     \
1135         "       move    %0, $1                  \n"                     \
1136         "       .set    pop                     \n"                     \
1137         : "=r" (__treg));                                               \
1138         __treg;                                                         \
1139 })
1140
1141 #define mflo0()                                                         \
1142 ({                                                                      \
1143         unsigned long __treg;                                           \
1144                                                                         \
1145         __asm__ __volatile__(                                           \
1146         "       .set    push                    \n"                     \
1147         "       .set    noat                    \n"                     \
1148         "       # mflo  %0, $ac0                \n"                     \
1149         "       .word   0x00000812              \n"                     \
1150         "       move    %0, $1                  \n"                     \
1151         "       .set    pop                     \n"                     \
1152         : "=r" (__treg));                                               \
1153         __treg;                                                         \
1154 })
1155
1156 #define mflo1()                                                         \
1157 ({                                                                      \
1158         unsigned long __treg;                                           \
1159                                                                         \
1160         __asm__ __volatile__(                                           \
1161         "       .set    push                    \n"                     \
1162         "       .set    noat                    \n"                     \
1163         "       # mflo  %0, $ac1                \n"                     \
1164         "       .word   0x00200812              \n"                     \
1165         "       move    %0, $1                  \n"                     \
1166         "       .set    pop                     \n"                     \
1167         : "=r" (__treg));                                               \
1168         __treg;                                                         \
1169 })
1170
1171 #define mflo2()                                                         \
1172 ({                                                                      \
1173         unsigned long __treg;                                           \
1174                                                                         \
1175         __asm__ __volatile__(                                           \
1176         "       .set    push                    \n"                     \
1177         "       .set    noat                    \n"                     \
1178         "       # mflo  %0, $ac2                \n"                     \
1179         "       .word   0x00400812              \n"                     \
1180         "       move    %0, $1                  \n"                     \
1181         "       .set    pop                     \n"                     \
1182         : "=r" (__treg));                                               \
1183         __treg;                                                         \
1184 })
1185
1186 #define mflo3()                                                         \
1187 ({                                                                      \
1188         unsigned long __treg;                                           \
1189                                                                         \
1190         __asm__ __volatile__(                                           \
1191         "       .set    push                    \n"                     \
1192         "       .set    noat                    \n"                     \
1193         "       # mflo  %0, $ac3                \n"                     \
1194         "       .word   0x00600812              \n"                     \
1195         "       move    %0, $1                  \n"                     \
1196         "       .set    pop                     \n"                     \
1197         : "=r" (__treg));                                               \
1198         __treg;                                                         \
1199 })
1200
1201 #define mthi0(x)                                                        \
1202 do {                                                                    \
1203         __asm__ __volatile__(                                           \
1204         "       .set    push                                    \n"     \
1205         "       .set    noat                                    \n"     \
1206         "       move    $1, %0                                  \n"     \
1207         "       # mthi  $1, $ac0                                \n"     \
1208         "       .word   0x00200011                              \n"     \
1209         "       .set    pop                                     \n"     \
1210         :                                                               \
1211         : "r" (x));                                                     \
1212 } while (0)
1213
1214 #define mthi1(x)                                                        \
1215 do {                                                                    \
1216         __asm__ __volatile__(                                           \
1217         "       .set    push                                    \n"     \
1218         "       .set    noat                                    \n"     \
1219         "       move    $1, %0                                  \n"     \
1220         "       # mthi  $1, $ac1                                \n"     \
1221         "       .word   0x00200811                              \n"     \
1222         "       .set    pop                                     \n"     \
1223         :                                                               \
1224         : "r" (x));                                                     \
1225 } while (0)
1226
1227 #define mthi2(x)                                                        \
1228 do {                                                                    \
1229         __asm__ __volatile__(                                           \
1230         "       .set    push                                    \n"     \
1231         "       .set    noat                                    \n"     \
1232         "       move    $1, %0                                  \n"     \
1233         "       # mthi  $1, $ac2                                \n"     \
1234         "       .word   0x00201011                              \n"     \
1235         "       .set    pop                                     \n"     \
1236         :                                                               \
1237         : "r" (x));                                                     \
1238 } while (0)
1239
1240 #define mthi3(x)                                                        \
1241 do {                                                                    \
1242         __asm__ __volatile__(                                           \
1243         "       .set    push                                    \n"     \
1244         "       .set    noat                                    \n"     \
1245         "       move    $1, %0                                  \n"     \
1246         "       # mthi  $1, $ac3                                \n"     \
1247         "       .word   0x00201811                              \n"     \
1248         "       .set    pop                                     \n"     \
1249         :                                                               \
1250         : "r" (x));                                                     \
1251 } while (0)
1252
1253 #define mtlo0(x)                                                        \
1254 do {                                                                    \
1255         __asm__ __volatile__(                                           \
1256         "       .set    push                                    \n"     \
1257         "       .set    noat                                    \n"     \
1258         "       move    $1, %0                                  \n"     \
1259         "       # mtlo  $1, $ac0                                \n"     \
1260         "       .word   0x00200013                              \n"     \
1261         "       .set    pop                                     \n"     \
1262         :                                                               \
1263         : "r" (x));                                                     \
1264 } while (0)
1265
1266 #define mtlo1(x)                                                        \
1267 do {                                                                    \
1268         __asm__ __volatile__(                                           \
1269         "       .set    push                                    \n"     \
1270         "       .set    noat                                    \n"     \
1271         "       move    $1, %0                                  \n"     \
1272         "       # mtlo  $1, $ac1                                \n"     \
1273         "       .word   0x00200813                              \n"     \
1274         "       .set    pop                                     \n"     \
1275         :                                                               \
1276         : "r" (x));                                                     \
1277 } while (0)
1278
1279 #define mtlo2(x)                                                        \
1280 do {                                                                    \
1281         __asm__ __volatile__(                                           \
1282         "       .set    push                                    \n"     \
1283         "       .set    noat                                    \n"     \
1284         "       move    $1, %0                                  \n"     \
1285         "       # mtlo  $1, $ac2                                \n"     \
1286         "       .word   0x00201013                              \n"     \
1287         "       .set    pop                                     \n"     \
1288         :                                                               \
1289         : "r" (x));                                                     \
1290 } while (0)
1291
1292 #define mtlo3(x)                                                        \
1293 do {                                                                    \
1294         __asm__ __volatile__(                                           \
1295         "       .set    push                                    \n"     \
1296         "       .set    noat                                    \n"     \
1297         "       move    $1, %0                                  \n"     \
1298         "       # mtlo  $1, $ac3                                \n"     \
1299         "       .word   0x00201813                              \n"     \
1300         "       .set    pop                                     \n"     \
1301         :                                                               \
1302         : "r" (x));                                                     \
1303 } while (0)
1304
1305 #endif
1306
1307 /*
1308  * TLB operations.
1309  *
1310  * It is responsibility of the caller to take care of any TLB hazards.
1311  */
1312 static inline void tlb_probe(void)
1313 {
1314         __asm__ __volatile__(
1315                 ".set noreorder\n\t"
1316                 "tlbp\n\t"
1317                 ".set reorder");
1318 }
1319
1320 static inline void tlb_read(void)
1321 {
1322         __asm__ __volatile__(
1323                 ".set noreorder\n\t"
1324                 "tlbr\n\t"
1325                 ".set reorder");
1326 }
1327
1328 static inline void tlb_write_indexed(void)
1329 {
1330         __asm__ __volatile__(
1331                 ".set noreorder\n\t"
1332                 "tlbwi\n\t"
1333                 ".set reorder");
1334 }
1335
1336 static inline void tlb_write_random(void)
1337 {
1338         __asm__ __volatile__(
1339                 ".set noreorder\n\t"
1340                 "tlbwr\n\t"
1341                 ".set reorder");
1342 }
1343
1344 /*
1345  * Manipulate bits in a c0 register.
1346  */
1347 #define __BUILD_SET_C0(name)                                    \
1348 static inline unsigned int                                      \
1349 set_c0_##name(unsigned int set)                                 \
1350 {                                                               \
1351         unsigned int res;                                       \
1352                                                                 \
1353         res = read_c0_##name();                                 \
1354         res |= set;                                             \
1355         write_c0_##name(res);                                   \
1356                                                                 \
1357         return res;                                             \
1358 }                                                               \
1359                                                                 \
1360 static inline unsigned int                                      \
1361 clear_c0_##name(unsigned int clear)                             \
1362 {                                                               \
1363         unsigned int res;                                       \
1364                                                                 \
1365         res = read_c0_##name();                                 \
1366         res &= ~clear;                                          \
1367         write_c0_##name(res);                                   \
1368                                                                 \
1369         return res;                                             \
1370 }                                                               \
1371                                                                 \
1372 static inline unsigned int                                      \
1373 change_c0_##name(unsigned int change, unsigned int new)         \
1374 {                                                               \
1375         unsigned int res;                                       \
1376                                                                 \
1377         res = read_c0_##name();                                 \
1378         res &= ~change;                                         \
1379         res |= (new & change);                                  \
1380         write_c0_##name(res);                                   \
1381                                                                 \
1382         return res;                                             \
1383 }
1384
1385 __BUILD_SET_C0(status)
1386 __BUILD_SET_C0(cause)
1387 __BUILD_SET_C0(config)
1388 __BUILD_SET_C0(intcontrol)
1389 __BUILD_SET_C0(intctl)
1390 __BUILD_SET_C0(srsmap)
1391
1392 #endif /* !__ASSEMBLY__ */
1393
1394 #endif /* _ASM_MIPSREGS_H */