MIPS: Fix VZ probe gas errors with binutils <2.24
[linux-2.6-block.git] / arch / mips / include / asm / mipsregs.h
CommitLineData
1da177e4
LT
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
a3692020 10 * Copyright (C) 2000, 07 MIPS Technologies, Inc.
4194318c 11 * Copyright (C) 2003, 2004 Maciej W. Rozycki
1da177e4
LT
12 */
13#ifndef _ASM_MIPSREGS_H
14#define _ASM_MIPSREGS_H
15
1da177e4 16#include <linux/linkage.h>
87c99203 17#include <linux/types.h>
1da177e4 18#include <asm/hazards.h>
9267a30d 19#include <asm/war.h>
1da177e4
LT
20
21/*
22 * The following macros are especially useful for __asm__
23 * inline assembler.
24 */
25#ifndef __STR
26#define __STR(x) #x
27#endif
28#ifndef STR
29#define STR(x) __STR(x)
30#endif
31
32/*
33 * Configure language
34 */
35#ifdef __ASSEMBLY__
36#define _ULCAST_
37#else
38#define _ULCAST_ (unsigned long)
39#endif
40
41/*
42 * Coprocessor 0 register names
43 */
44#define CP0_INDEX $0
45#define CP0_RANDOM $1
46#define CP0_ENTRYLO0 $2
47#define CP0_ENTRYLO1 $3
48#define CP0_CONF $3
49#define CP0_CONTEXT $4
50#define CP0_PAGEMASK $5
51#define CP0_WIRED $6
52#define CP0_INFO $7
195cee92 53#define CP0_HWRENA $7, 0
1da177e4 54#define CP0_BADVADDR $8
609cf6f2 55#define CP0_BADINSTR $8, 1
1da177e4
LT
56#define CP0_COUNT $9
57#define CP0_ENTRYHI $10
f913e9ea
JH
58#define CP0_GUESTCTL1 $10, 4
59#define CP0_GUESTCTL2 $10, 5
60#define CP0_GUESTCTL3 $10, 6
1da177e4 61#define CP0_COMPARE $11
f913e9ea 62#define CP0_GUESTCTL0EXT $11, 4
1da177e4 63#define CP0_STATUS $12
f913e9ea
JH
64#define CP0_GUESTCTL0 $12, 6
65#define CP0_GTOFFSET $12, 7
1da177e4
LT
66#define CP0_CAUSE $13
67#define CP0_EPC $14
68#define CP0_PRID $15
609cf6f2
PB
69#define CP0_EBASE $15, 1
70#define CP0_CMGCRBASE $15, 3
1da177e4 71#define CP0_CONFIG $16
195cee92
JH
72#define CP0_CONFIG3 $16, 3
73#define CP0_CONFIG5 $16, 5
1da177e4
LT
74#define CP0_LLADDR $17
75#define CP0_WATCHLO $18
76#define CP0_WATCHHI $19
77#define CP0_XCONTEXT $20
78#define CP0_FRAMEMASK $21
79#define CP0_DIAGNOSTIC $22
80#define CP0_DEBUG $23
81#define CP0_DEPC $24
82#define CP0_PERFORMANCE $25
83#define CP0_ECC $26
84#define CP0_CACHEERR $27
85#define CP0_TAGLO $28
86#define CP0_TAGHI $29
87#define CP0_ERROREPC $30
88#define CP0_DESAVE $31
89
90/*
91 * R4640/R4650 cp0 register names. These registers are listed
92 * here only for completeness; without MMU these CPUs are not useable
93 * by Linux. A future ELKS port might take make Linux run on them
94 * though ...
95 */
96#define CP0_IBASE $0
97#define CP0_IBOUND $1
98#define CP0_DBASE $2
99#define CP0_DBOUND $3
100#define CP0_CALG $17
101#define CP0_IWATCH $18
102#define CP0_DWATCH $19
103
104/*
105 * Coprocessor 0 Set 1 register names
106 */
107#define CP0_S1_DERRADDR0 $26
108#define CP0_S1_DERRADDR1 $27
109#define CP0_S1_INTCONTROL $20
110
7a0fc58c
RB
111/*
112 * Coprocessor 0 Set 2 register names
113 */
114#define CP0_S2_SRSCTL $12 /* MIPSR2 */
115
116/*
117 * Coprocessor 0 Set 3 register names
118 */
119#define CP0_S3_SRSMAP $12 /* MIPSR2 */
120
1da177e4
LT
121/*
122 * TX39 Series
123 */
124#define CP0_TX39_CACHE $7
125
1da177e4 126
bae637a2
JH
127/* Generic EntryLo bit definitions */
128#define ENTRYLO_G (_ULCAST_(1) << 0)
129#define ENTRYLO_V (_ULCAST_(1) << 1)
130#define ENTRYLO_D (_ULCAST_(1) << 2)
131#define ENTRYLO_C_SHIFT 3
132#define ENTRYLO_C (_ULCAST_(7) << ENTRYLO_C_SHIFT)
133
134/* R3000 EntryLo bit definitions */
135#define R3K_ENTRYLO_G (_ULCAST_(1) << 8)
136#define R3K_ENTRYLO_V (_ULCAST_(1) << 9)
137#define R3K_ENTRYLO_D (_ULCAST_(1) << 10)
138#define R3K_ENTRYLO_N (_ULCAST_(1) << 11)
139
140/* MIPS32/64 EntryLo bit definitions */
c6956728
PB
141#define MIPS_ENTRYLO_PFN_SHIFT 6
142#define MIPS_ENTRYLO_XI (_ULCAST_(1) << (BITS_PER_LONG - 2))
143#define MIPS_ENTRYLO_RI (_ULCAST_(1) << (BITS_PER_LONG - 1))
bae637a2 144
1da177e4
LT
145/*
146 * Values for PageMask register
147 */
148#ifdef CONFIG_CPU_VR41XX
149
150/* Why doesn't stupidity hurt ... */
151
152#define PM_1K 0x00000000
153#define PM_4K 0x00001800
154#define PM_16K 0x00007800
155#define PM_64K 0x0001f800
156#define PM_256K 0x0007f800
157
158#else
159
160#define PM_4K 0x00000000
c52399be 161#define PM_8K 0x00002000
1da177e4 162#define PM_16K 0x00006000
c52399be 163#define PM_32K 0x0000e000
1da177e4 164#define PM_64K 0x0001e000
c52399be 165#define PM_128K 0x0003e000
1da177e4 166#define PM_256K 0x0007e000
c52399be 167#define PM_512K 0x000fe000
1da177e4 168#define PM_1M 0x001fe000
c52399be 169#define PM_2M 0x003fe000
1da177e4 170#define PM_4M 0x007fe000
c52399be 171#define PM_8M 0x00ffe000
1da177e4 172#define PM_16M 0x01ffe000
c52399be 173#define PM_32M 0x03ffe000
1da177e4
LT
174#define PM_64M 0x07ffe000
175#define PM_256M 0x1fffe000
542c1020 176#define PM_1G 0x7fffe000
1da177e4
LT
177
178#endif
179
180/*
181 * Default page size for a given kernel configuration
182 */
183#ifdef CONFIG_PAGE_SIZE_4KB
70342287 184#define PM_DEFAULT_MASK PM_4K
c52399be 185#elif defined(CONFIG_PAGE_SIZE_8KB)
70342287 186#define PM_DEFAULT_MASK PM_8K
1da177e4 187#elif defined(CONFIG_PAGE_SIZE_16KB)
70342287 188#define PM_DEFAULT_MASK PM_16K
c52399be 189#elif defined(CONFIG_PAGE_SIZE_32KB)
70342287 190#define PM_DEFAULT_MASK PM_32K
1da177e4 191#elif defined(CONFIG_PAGE_SIZE_64KB)
70342287 192#define PM_DEFAULT_MASK PM_64K
1da177e4
LT
193#else
194#error Bad page size configuration!
195#endif
196
dd794392
DD
197/*
198 * Default huge tlb size for a given kernel configuration
199 */
200#ifdef CONFIG_PAGE_SIZE_4KB
201#define PM_HUGE_MASK PM_1M
202#elif defined(CONFIG_PAGE_SIZE_8KB)
203#define PM_HUGE_MASK PM_4M
204#elif defined(CONFIG_PAGE_SIZE_16KB)
205#define PM_HUGE_MASK PM_16M
206#elif defined(CONFIG_PAGE_SIZE_32KB)
207#define PM_HUGE_MASK PM_64M
208#elif defined(CONFIG_PAGE_SIZE_64KB)
209#define PM_HUGE_MASK PM_256M
aa1762f4 210#elif defined(CONFIG_MIPS_HUGE_TLB_SUPPORT)
dd794392
DD
211#error Bad page size configuration for hugetlbfs!
212#endif
1da177e4
LT
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
9fe2e9d6
DD
227/*
228 * PageGrain bits
229 */
70342287
RB
230#define PG_RIE (_ULCAST_(1) << 31)
231#define PG_XIE (_ULCAST_(1) << 30)
232#define PG_ELPA (_ULCAST_(1) << 29)
233#define PG_ESP (_ULCAST_(1) << 28)
6575b1d4 234#define PG_IEC (_ULCAST_(1) << 27)
9fe2e9d6 235
bae637a2
JH
236/* MIPS32/64 EntryHI bit definitions */
237#define MIPS_ENTRYHI_EHINV (_ULCAST_(1) << 10)
9b5c3399
JH
238#define MIPS_ENTRYHI_ASIDX (_ULCAST_(0x3) << 8)
239#define MIPS_ENTRYHI_ASID (_ULCAST_(0xff) << 0)
bae637a2 240
1da177e4
LT
241/*
242 * R4x00 interrupt enable / cause bits
243 */
70342287
RB
244#define IE_SW0 (_ULCAST_(1) << 8)
245#define IE_SW1 (_ULCAST_(1) << 9)
246#define IE_IRQ0 (_ULCAST_(1) << 10)
247#define IE_IRQ1 (_ULCAST_(1) << 11)
248#define IE_IRQ2 (_ULCAST_(1) << 12)
249#define IE_IRQ3 (_ULCAST_(1) << 13)
250#define IE_IRQ4 (_ULCAST_(1) << 14)
251#define IE_IRQ5 (_ULCAST_(1) << 15)
1da177e4
LT
252
253/*
254 * R4x00 interrupt cause bits
255 */
70342287
RB
256#define C_SW0 (_ULCAST_(1) << 8)
257#define C_SW1 (_ULCAST_(1) << 9)
258#define C_IRQ0 (_ULCAST_(1) << 10)
259#define C_IRQ1 (_ULCAST_(1) << 11)
260#define C_IRQ2 (_ULCAST_(1) << 12)
261#define C_IRQ3 (_ULCAST_(1) << 13)
262#define C_IRQ4 (_ULCAST_(1) << 14)
263#define C_IRQ5 (_ULCAST_(1) << 15)
1da177e4
LT
264
265/*
266 * Bitfields in the R4xx0 cp0 status register
267 */
268#define ST0_IE 0x00000001
269#define ST0_EXL 0x00000002
270#define ST0_ERL 0x00000004
271#define ST0_KSU 0x00000018
272# define KSU_USER 0x00000010
273# define KSU_SUPERVISOR 0x00000008
274# define KSU_KERNEL 0x00000000
275#define ST0_UX 0x00000020
276#define ST0_SX 0x00000040
70342287 277#define ST0_KX 0x00000080
1da177e4
LT
278#define ST0_DE 0x00010000
279#define ST0_CE 0x00020000
280
281/*
282 * Setting c0_status.co enables Hit_Writeback and Hit_Writeback_Invalidate
283 * cacheops in userspace. This bit exists only on RM7000 and RM9000
284 * processors.
285 */
286#define ST0_CO 0x08000000
287
288/*
289 * Bitfields in the R[23]000 cp0 status register.
290 */
70342287 291#define ST0_IEC 0x00000001
1da177e4
LT
292#define ST0_KUC 0x00000002
293#define ST0_IEP 0x00000004
294#define ST0_KUP 0x00000008
295#define ST0_IEO 0x00000010
296#define ST0_KUO 0x00000020
297/* bits 6 & 7 are reserved on R[23]000 */
298#define ST0_ISC 0x00010000
299#define ST0_SWC 0x00020000
300#define ST0_CM 0x00080000
301
302/*
303 * Bits specific to the R4640/R4650
304 */
70342287 305#define ST0_UM (_ULCAST_(1) << 4)
1da177e4
LT
306#define ST0_IL (_ULCAST_(1) << 23)
307#define ST0_DL (_ULCAST_(1) << 24)
308
e50c0a8f 309/*
3301edcb 310 * Enable the MIPS MDMX and DSP ASEs
e50c0a8f
RB
311 */
312#define ST0_MX 0x01000000
313
1da177e4
LT
314/*
315 * Status register bits available in all MIPS CPUs.
316 */
317#define ST0_IM 0x0000ff00
70342287
RB
318#define STATUSB_IP0 8
319#define STATUSF_IP0 (_ULCAST_(1) << 8)
320#define STATUSB_IP1 9
321#define STATUSF_IP1 (_ULCAST_(1) << 9)
322#define STATUSB_IP2 10
323#define STATUSF_IP2 (_ULCAST_(1) << 10)
324#define STATUSB_IP3 11
325#define STATUSF_IP3 (_ULCAST_(1) << 11)
326#define STATUSB_IP4 12
327#define STATUSF_IP4 (_ULCAST_(1) << 12)
328#define STATUSB_IP5 13
329#define STATUSF_IP5 (_ULCAST_(1) << 13)
330#define STATUSB_IP6 14
331#define STATUSF_IP6 (_ULCAST_(1) << 14)
332#define STATUSB_IP7 15
333#define STATUSF_IP7 (_ULCAST_(1) << 15)
334#define STATUSB_IP8 0
335#define STATUSF_IP8 (_ULCAST_(1) << 0)
336#define STATUSB_IP9 1
337#define STATUSF_IP9 (_ULCAST_(1) << 1)
338#define STATUSB_IP10 2
339#define STATUSF_IP10 (_ULCAST_(1) << 2)
340#define STATUSB_IP11 3
341#define STATUSF_IP11 (_ULCAST_(1) << 3)
342#define STATUSB_IP12 4
343#define STATUSF_IP12 (_ULCAST_(1) << 4)
344#define STATUSB_IP13 5
345#define STATUSF_IP13 (_ULCAST_(1) << 5)
346#define STATUSB_IP14 6
347#define STATUSF_IP14 (_ULCAST_(1) << 6)
348#define STATUSB_IP15 7
349#define STATUSF_IP15 (_ULCAST_(1) << 7)
1da177e4 350#define ST0_CH 0x00040000
96ffa02d 351#define ST0_NMI 0x00080000
1da177e4
LT
352#define ST0_SR 0x00100000
353#define ST0_TS 0x00200000
354#define ST0_BEV 0x00400000
355#define ST0_RE 0x02000000
356#define ST0_FR 0x04000000
357#define ST0_CU 0xf0000000
358#define ST0_CU0 0x10000000
359#define ST0_CU1 0x20000000
360#define ST0_CU2 0x40000000
361#define ST0_CU3 0x80000000
362#define ST0_XX 0x80000000 /* MIPS IV naming */
363
010c108d
DV
364/*
365 * Bitfields and bit numbers in the coprocessor 0 IntCtl register. (MIPSR2)
010c108d 366 */
9323f84f
JH
367#define INTCTLB_IPFDC 23
368#define INTCTLF_IPFDC (_ULCAST_(7) << INTCTLB_IPFDC)
010c108d
DV
369#define INTCTLB_IPPCI 26
370#define INTCTLF_IPPCI (_ULCAST_(7) << INTCTLB_IPPCI)
371#define INTCTLB_IPTI 29
372#define INTCTLF_IPTI (_ULCAST_(7) << INTCTLB_IPTI)
373
1da177e4
LT
374/*
375 * Bitfields and bit numbers in the coprocessor 0 cause register.
376 *
377 * Refer to your MIPS R4xx0 manual, chapter 5 for explanation.
378 */
1054533a
MR
379#define CAUSEB_EXCCODE 2
380#define CAUSEF_EXCCODE (_ULCAST_(31) << 2)
381#define CAUSEB_IP 8
382#define CAUSEF_IP (_ULCAST_(255) << 8)
70342287
RB
383#define CAUSEB_IP0 8
384#define CAUSEF_IP0 (_ULCAST_(1) << 8)
385#define CAUSEB_IP1 9
386#define CAUSEF_IP1 (_ULCAST_(1) << 9)
387#define CAUSEB_IP2 10
388#define CAUSEF_IP2 (_ULCAST_(1) << 10)
389#define CAUSEB_IP3 11
390#define CAUSEF_IP3 (_ULCAST_(1) << 11)
391#define CAUSEB_IP4 12
392#define CAUSEF_IP4 (_ULCAST_(1) << 12)
393#define CAUSEB_IP5 13
394#define CAUSEF_IP5 (_ULCAST_(1) << 13)
395#define CAUSEB_IP6 14
396#define CAUSEF_IP6 (_ULCAST_(1) << 14)
397#define CAUSEB_IP7 15
398#define CAUSEF_IP7 (_ULCAST_(1) << 15)
1054533a
MR
399#define CAUSEB_FDCI 21
400#define CAUSEF_FDCI (_ULCAST_(1) << 21)
e233c733
JH
401#define CAUSEB_WP 22
402#define CAUSEF_WP (_ULCAST_(1) << 22)
1054533a
MR
403#define CAUSEB_IV 23
404#define CAUSEF_IV (_ULCAST_(1) << 23)
405#define CAUSEB_PCI 26
406#define CAUSEF_PCI (_ULCAST_(1) << 26)
9fd4af63
JH
407#define CAUSEB_DC 27
408#define CAUSEF_DC (_ULCAST_(1) << 27)
1054533a
MR
409#define CAUSEB_CE 28
410#define CAUSEF_CE (_ULCAST_(3) << 28)
411#define CAUSEB_TI 30
412#define CAUSEF_TI (_ULCAST_(1) << 30)
413#define CAUSEB_BD 31
414#define CAUSEF_BD (_ULCAST_(1) << 31)
1da177e4 415
16d100db
JH
416/*
417 * Cause.ExcCode trap codes.
418 */
419#define EXCCODE_INT 0 /* Interrupt pending */
420#define EXCCODE_MOD 1 /* TLB modified fault */
421#define EXCCODE_TLBL 2 /* TLB miss on load or ifetch */
422#define EXCCODE_TLBS 3 /* TLB miss on a store */
423#define EXCCODE_ADEL 4 /* Address error on a load or ifetch */
424#define EXCCODE_ADES 5 /* Address error on a store */
425#define EXCCODE_IBE 6 /* Bus error on an ifetch */
426#define EXCCODE_DBE 7 /* Bus error on a load or store */
427#define EXCCODE_SYS 8 /* System call */
428#define EXCCODE_BP 9 /* Breakpoint */
429#define EXCCODE_RI 10 /* Reserved instruction exception */
430#define EXCCODE_CPU 11 /* Coprocessor unusable */
431#define EXCCODE_OV 12 /* Arithmetic overflow */
432#define EXCCODE_TR 13 /* Trap instruction */
16d100db
JH
433#define EXCCODE_MSAFPE 14 /* MSA floating point exception */
434#define EXCCODE_FPE 15 /* Floating point exception */
044c9bb8
JH
435#define EXCCODE_TLBRI 19 /* TLB Read-Inhibit exception */
436#define EXCCODE_TLBXI 20 /* TLB Execution-Inhibit exception */
16d100db 437#define EXCCODE_MSADIS 21 /* MSA disabled exception */
044c9bb8 438#define EXCCODE_MDMX 22 /* MDMX unusable exception */
16d100db 439#define EXCCODE_WATCH 23 /* Watch address reference */
044c9bb8
JH
440#define EXCCODE_MCHECK 24 /* Machine check */
441#define EXCCODE_THREAD 25 /* Thread exceptions (MT) */
442#define EXCCODE_DSPDIS 26 /* DSP disabled exception */
443#define EXCCODE_GE 27 /* Virtualized guest exception (VZ) */
444
445/* Implementation specific trap codes used by MIPS cores */
446#define MIPS_EXCCODE_TLBPAR 16 /* TLB parity error exception */
16d100db 447
1da177e4
LT
448/*
449 * Bits in the coprocessor 0 config register.
450 */
451/* Generic bits. */
452#define CONF_CM_CACHABLE_NO_WA 0
453#define CONF_CM_CACHABLE_WA 1
454#define CONF_CM_UNCACHED 2
455#define CONF_CM_CACHABLE_NONCOHERENT 3
456#define CONF_CM_CACHABLE_CE 4
457#define CONF_CM_CACHABLE_COW 5
458#define CONF_CM_CACHABLE_CUW 6
459#define CONF_CM_CACHABLE_ACCELERATED 7
460#define CONF_CM_CMASK 7
461#define CONF_BE (_ULCAST_(1) << 15)
462
463/* Bits common to various processors. */
70342287
RB
464#define CONF_CU (_ULCAST_(1) << 3)
465#define CONF_DB (_ULCAST_(1) << 4)
466#define CONF_IB (_ULCAST_(1) << 5)
467#define CONF_DC (_ULCAST_(7) << 6)
468#define CONF_IC (_ULCAST_(7) << 9)
1da177e4
LT
469#define CONF_EB (_ULCAST_(1) << 13)
470#define CONF_EM (_ULCAST_(1) << 14)
471#define CONF_SM (_ULCAST_(1) << 16)
472#define CONF_SC (_ULCAST_(1) << 17)
473#define CONF_EW (_ULCAST_(3) << 18)
474#define CONF_EP (_ULCAST_(15)<< 24)
475#define CONF_EC (_ULCAST_(7) << 28)
476#define CONF_CM (_ULCAST_(1) << 31)
477
70342287 478/* Bits specific to the R4xx0. */
1da177e4
LT
479#define R4K_CONF_SW (_ULCAST_(1) << 20)
480#define R4K_CONF_SS (_ULCAST_(1) << 21)
e20368d5 481#define R4K_CONF_SB (_ULCAST_(3) << 22)
1da177e4 482
70342287 483/* Bits specific to the R5000. */
1da177e4
LT
484#define R5K_CONF_SE (_ULCAST_(1) << 12)
485#define R5K_CONF_SS (_ULCAST_(3) << 20)
486
70342287
RB
487/* Bits specific to the RM7000. */
488#define RM7K_CONF_SE (_ULCAST_(1) << 3)
c6ad7b7d
MR
489#define RM7K_CONF_TE (_ULCAST_(1) << 12)
490#define RM7K_CONF_CLK (_ULCAST_(1) << 16)
491#define RM7K_CONF_TC (_ULCAST_(1) << 17)
492#define RM7K_CONF_SI (_ULCAST_(3) << 20)
493#define RM7K_CONF_SC (_ULCAST_(1) << 31)
ba5187db 494
70342287
RB
495/* Bits specific to the R10000. */
496#define R10K_CONF_DN (_ULCAST_(3) << 3)
497#define R10K_CONF_CT (_ULCAST_(1) << 5)
498#define R10K_CONF_PE (_ULCAST_(1) << 6)
499#define R10K_CONF_PM (_ULCAST_(3) << 7)
500#define R10K_CONF_EC (_ULCAST_(15)<< 9)
1da177e4
LT
501#define R10K_CONF_SB (_ULCAST_(1) << 13)
502#define R10K_CONF_SK (_ULCAST_(1) << 14)
503#define R10K_CONF_SS (_ULCAST_(7) << 16)
504#define R10K_CONF_SC (_ULCAST_(7) << 19)
505#define R10K_CONF_DC (_ULCAST_(7) << 26)
506#define R10K_CONF_IC (_ULCAST_(7) << 29)
507
70342287 508/* Bits specific to the VR41xx. */
1da177e4 509#define VR41_CONF_CS (_ULCAST_(1) << 12)
2874fe55 510#define VR41_CONF_P4K (_ULCAST_(1) << 13)
4e8ab361 511#define VR41_CONF_BP (_ULCAST_(1) << 16)
1da177e4
LT
512#define VR41_CONF_M16 (_ULCAST_(1) << 20)
513#define VR41_CONF_AD (_ULCAST_(1) << 23)
514
70342287 515/* Bits specific to the R30xx. */
1da177e4
LT
516#define R30XX_CONF_FDM (_ULCAST_(1) << 19)
517#define R30XX_CONF_REV (_ULCAST_(1) << 22)
518#define R30XX_CONF_AC (_ULCAST_(1) << 23)
519#define R30XX_CONF_RF (_ULCAST_(1) << 24)
520#define R30XX_CONF_HALT (_ULCAST_(1) << 25)
521#define R30XX_CONF_FPINT (_ULCAST_(7) << 26)
522#define R30XX_CONF_DBR (_ULCAST_(1) << 29)
523#define R30XX_CONF_SB (_ULCAST_(1) << 30)
524#define R30XX_CONF_LOCK (_ULCAST_(1) << 31)
525
526/* Bits specific to the TX49. */
527#define TX49_CONF_DC (_ULCAST_(1) << 16)
528#define TX49_CONF_IC (_ULCAST_(1) << 17) /* conflict with CONF_SC */
529#define TX49_CONF_HALT (_ULCAST_(1) << 18)
530#define TX49_CONF_CWFON (_ULCAST_(1) << 27)
531
70342287
RB
532/* Bits specific to the MIPS32/64 PRA. */
533#define MIPS_CONF_MT (_ULCAST_(7) << 7)
2f6f3136
JH
534#define MIPS_CONF_MT_TLB (_ULCAST_(1) << 7)
535#define MIPS_CONF_MT_FTLB (_ULCAST_(4) << 7)
1da177e4
LT
536#define MIPS_CONF_AR (_ULCAST_(7) << 10)
537#define MIPS_CONF_AT (_ULCAST_(3) << 13)
538#define MIPS_CONF_M (_ULCAST_(1) << 31)
539
4194318c
RB
540/*
541 * Bits in the MIPS32/64 PRA coprocessor 0 config registers 1 and above.
542 */
70342287
RB
543#define MIPS_CONF1_FP (_ULCAST_(1) << 0)
544#define MIPS_CONF1_EP (_ULCAST_(1) << 1)
545#define MIPS_CONF1_CA (_ULCAST_(1) << 2)
546#define MIPS_CONF1_WR (_ULCAST_(1) << 3)
547#define MIPS_CONF1_PC (_ULCAST_(1) << 4)
548#define MIPS_CONF1_MD (_ULCAST_(1) << 5)
549#define MIPS_CONF1_C2 (_ULCAST_(1) << 6)
20a8d5d5
PB
550#define MIPS_CONF1_DA_SHF 7
551#define MIPS_CONF1_DA_SZ 3
70342287 552#define MIPS_CONF1_DA (_ULCAST_(7) << 7)
20a8d5d5
PB
553#define MIPS_CONF1_DL_SHF 10
554#define MIPS_CONF1_DL_SZ 3
4194318c 555#define MIPS_CONF1_DL (_ULCAST_(7) << 10)
20a8d5d5
PB
556#define MIPS_CONF1_DS_SHF 13
557#define MIPS_CONF1_DS_SZ 3
4194318c 558#define MIPS_CONF1_DS (_ULCAST_(7) << 13)
20a8d5d5
PB
559#define MIPS_CONF1_IA_SHF 16
560#define MIPS_CONF1_IA_SZ 3
4194318c 561#define MIPS_CONF1_IA (_ULCAST_(7) << 16)
20a8d5d5
PB
562#define MIPS_CONF1_IL_SHF 19
563#define MIPS_CONF1_IL_SZ 3
4194318c 564#define MIPS_CONF1_IL (_ULCAST_(7) << 19)
20a8d5d5
PB
565#define MIPS_CONF1_IS_SHF 22
566#define MIPS_CONF1_IS_SZ 3
4194318c 567#define MIPS_CONF1_IS (_ULCAST_(7) << 22)
691038ba
LY
568#define MIPS_CONF1_TLBS_SHIFT (25)
569#define MIPS_CONF1_TLBS_SIZE (6)
570#define MIPS_CONF1_TLBS (_ULCAST_(63) << MIPS_CONF1_TLBS_SHIFT)
4194318c 571
70342287
RB
572#define MIPS_CONF2_SA (_ULCAST_(15)<< 0)
573#define MIPS_CONF2_SL (_ULCAST_(15)<< 4)
574#define MIPS_CONF2_SS (_ULCAST_(15)<< 8)
4194318c
RB
575#define MIPS_CONF2_SU (_ULCAST_(15)<< 12)
576#define MIPS_CONF2_TA (_ULCAST_(15)<< 16)
577#define MIPS_CONF2_TL (_ULCAST_(15)<< 20)
578#define MIPS_CONF2_TS (_ULCAST_(15)<< 24)
579#define MIPS_CONF2_TU (_ULCAST_(7) << 28)
580
70342287
RB
581#define MIPS_CONF3_TL (_ULCAST_(1) << 0)
582#define MIPS_CONF3_SM (_ULCAST_(1) << 1)
583#define MIPS_CONF3_MT (_ULCAST_(1) << 2)
691038ba 584#define MIPS_CONF3_CDMM (_ULCAST_(1) << 3)
70342287
RB
585#define MIPS_CONF3_SP (_ULCAST_(1) << 4)
586#define MIPS_CONF3_VINT (_ULCAST_(1) << 5)
587#define MIPS_CONF3_VEIC (_ULCAST_(1) << 6)
588#define MIPS_CONF3_LPA (_ULCAST_(1) << 7)
691038ba
LY
589#define MIPS_CONF3_ITL (_ULCAST_(1) << 8)
590#define MIPS_CONF3_CTXTC (_ULCAST_(1) << 9)
e50c0a8f 591#define MIPS_CONF3_DSP (_ULCAST_(1) << 10)
ee80f7c7 592#define MIPS_CONF3_DSP2P (_ULCAST_(1) << 11)
b2ab4f08 593#define MIPS_CONF3_RXI (_ULCAST_(1) << 12)
a3692020 594#define MIPS_CONF3_ULRI (_ULCAST_(1) << 13)
f8fa4811 595#define MIPS_CONF3_ISA (_ULCAST_(3) << 14)
c6213c6c 596#define MIPS_CONF3_ISA_OE (_ULCAST_(1) << 16)
691038ba
LY
597#define MIPS_CONF3_MCU (_ULCAST_(1) << 17)
598#define MIPS_CONF3_MMAR (_ULCAST_(7) << 18)
599#define MIPS_CONF3_IPLW (_ULCAST_(3) << 21)
1e7decdb 600#define MIPS_CONF3_VZ (_ULCAST_(1) << 23)
691038ba
LY
601#define MIPS_CONF3_PW (_ULCAST_(1) << 24)
602#define MIPS_CONF3_SC (_ULCAST_(1) << 25)
603#define MIPS_CONF3_BI (_ULCAST_(1) << 26)
604#define MIPS_CONF3_BP (_ULCAST_(1) << 27)
605#define MIPS_CONF3_MSA (_ULCAST_(1) << 28)
606#define MIPS_CONF3_CMGCR (_ULCAST_(1) << 29)
607#define MIPS_CONF3_BPG (_ULCAST_(1) << 30)
608
609#define MIPS_CONF4_MMUSIZEEXT_SHIFT (0)
1b362e3e 610#define MIPS_CONF4_MMUSIZEEXT (_ULCAST_(255) << 0)
691038ba 611#define MIPS_CONF4_FTLBSETS_SHIFT (0)
691038ba
LY
612#define MIPS_CONF4_FTLBSETS (_ULCAST_(15) << MIPS_CONF4_FTLBSETS_SHIFT)
613#define MIPS_CONF4_FTLBWAYS_SHIFT (4)
614#define MIPS_CONF4_FTLBWAYS (_ULCAST_(15) << MIPS_CONF4_FTLBWAYS_SHIFT)
615#define MIPS_CONF4_FTLBPAGESIZE_SHIFT (8)
616/* bits 10:8 in FTLB-only configurations */
617#define MIPS_CONF4_FTLBPAGESIZE (_ULCAST_(7) << MIPS_CONF4_FTLBPAGESIZE_SHIFT)
618/* bits 12:8 in VTLB-FTLB only configurations */
619#define MIPS_CONF4_VFTLBPAGESIZE (_ULCAST_(31) << MIPS_CONF4_FTLBPAGESIZE_SHIFT)
1b362e3e
DD
620#define MIPS_CONF4_MMUEXTDEF (_ULCAST_(3) << 14)
621#define MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT (_ULCAST_(1) << 14)
691038ba
LY
622#define MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT (_ULCAST_(2) << 14)
623#define MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT (_ULCAST_(3) << 14)
9e575f75
JH
624#define MIPS_CONF4_KSCREXIST_SHIFT (16)
625#define MIPS_CONF4_KSCREXIST (_ULCAST_(255) << MIPS_CONF4_KSCREXIST_SHIFT)
691038ba
LY
626#define MIPS_CONF4_VTLBSIZEEXT_SHIFT (24)
627#define MIPS_CONF4_VTLBSIZEEXT (_ULCAST_(15) << MIPS_CONF4_VTLBSIZEEXT_SHIFT)
628#define MIPS_CONF4_AE (_ULCAST_(1) << 28)
629#define MIPS_CONF4_IE (_ULCAST_(3) << 29)
630#define MIPS_CONF4_TLBINV (_ULCAST_(2) << 29)
1b362e3e 631
2f9ee82c
RB
632#define MIPS_CONF5_NF (_ULCAST_(1) << 0)
633#define MIPS_CONF5_UFR (_ULCAST_(1) << 2)
e19d5dba 634#define MIPS_CONF5_MRP (_ULCAST_(1) << 3)
5aed9da1 635#define MIPS_CONF5_LLB (_ULCAST_(1) << 4)
23d06e4f 636#define MIPS_CONF5_MVH (_ULCAST_(1) << 5)
f270d881 637#define MIPS_CONF5_VP (_ULCAST_(1) << 7)
5ff04a84
PB
638#define MIPS_CONF5_FRE (_ULCAST_(1) << 8)
639#define MIPS_CONF5_UFE (_ULCAST_(1) << 9)
2f9ee82c
RB
640#define MIPS_CONF5_MSAEN (_ULCAST_(1) << 27)
641#define MIPS_CONF5_EVA (_ULCAST_(1) << 28)
642#define MIPS_CONF5_CV (_ULCAST_(1) << 29)
643#define MIPS_CONF5_K (_ULCAST_(1) << 30)
644
006a851b 645#define MIPS_CONF6_SYND (_ULCAST_(1) << 13)
75b5b5e0
LY
646/* proAptiv FTLB on/off bit */
647#define MIPS_CONF6_FTLBEN (_ULCAST_(1) << 15)
b2edcfc8
HC
648/* Loongson-3 FTLB on/off bit */
649#define MIPS_CONF6_FTLBDIS (_ULCAST_(1) << 22)
cf0a8aa0
MC
650/* FTLB probability bits */
651#define MIPS_CONF6_FTLBP_SHIFT (16)
006a851b 652
4b3e975e
RB
653#define MIPS_CONF7_WII (_ULCAST_(1) << 31)
654
9267a30d
MSJ
655#define MIPS_CONF7_RPS (_ULCAST_(1) << 2)
656
02dc6bfb
MC
657#define MIPS_CONF7_IAR (_ULCAST_(1) << 10)
658#define MIPS_CONF7_AR (_ULCAST_(1) << 16)
20a7f7e5
MC
659/* FTLB probability bits for R6 */
660#define MIPS_CONF7_FTLBP_SHIFT (18)
02dc6bfb 661
50af501c
JH
662/* WatchLo* register definitions */
663#define MIPS_WATCHLO_IRW (_ULCAST_(0x7) << 0)
664
665/* WatchHi* register definitions */
666#define MIPS_WATCHHI_M (_ULCAST_(1) << 31)
667#define MIPS_WATCHHI_G (_ULCAST_(1) << 30)
668#define MIPS_WATCHHI_WM (_ULCAST_(0x3) << 28)
669#define MIPS_WATCHHI_WM_R_RVA (_ULCAST_(0) << 28)
670#define MIPS_WATCHHI_WM_R_GPA (_ULCAST_(1) << 28)
671#define MIPS_WATCHHI_WM_G_GVA (_ULCAST_(2) << 28)
672#define MIPS_WATCHHI_EAS (_ULCAST_(0x3) << 24)
673#define MIPS_WATCHHI_ASID (_ULCAST_(0xff) << 16)
674#define MIPS_WATCHHI_MASK (_ULCAST_(0x1ff) << 3)
675#define MIPS_WATCHHI_I (_ULCAST_(1) << 2)
676#define MIPS_WATCHHI_R (_ULCAST_(1) << 1)
677#define MIPS_WATCHHI_W (_ULCAST_(1) << 0)
678#define MIPS_WATCHHI_IRW (_ULCAST_(0x7) << 0)
679
e19d5dba
PB
680/* MAAR bit definitions */
681#define MIPS_MAAR_ADDR ((BIT_ULL(BITS_PER_LONG - 12) - 1) << 12)
682#define MIPS_MAAR_ADDR_SHIFT 12
683#define MIPS_MAAR_S (_ULCAST_(1) << 1)
684#define MIPS_MAAR_V (_ULCAST_(1) << 0)
685
37af2f30
JH
686/* EBase bit definitions */
687#define MIPS_EBASE_CPUNUM_SHIFT 0
688#define MIPS_EBASE_CPUNUM (_ULCAST_(0x3ff) << 0)
689#define MIPS_EBASE_WG_SHIFT 11
690#define MIPS_EBASE_WG (_ULCAST_(1) << 11)
691#define MIPS_EBASE_BASE_SHIFT 12
692#define MIPS_EBASE_BASE (~_ULCAST_((1 << MIPS_EBASE_BASE_SHIFT) - 1))
693
4dd8ee5d
PB
694/* CMGCRBase bit definitions */
695#define MIPS_CMGCRB_BASE 11
696#define MIPS_CMGCRF_BASE (~_ULCAST_((1 << MIPS_CMGCRB_BASE) - 1))
697
4a0156fb
SH
698/*
699 * Bits in the MIPS32 Memory Segmentation registers.
700 */
701#define MIPS_SEGCFG_PA_SHIFT 9
702#define MIPS_SEGCFG_PA (_ULCAST_(127) << MIPS_SEGCFG_PA_SHIFT)
703#define MIPS_SEGCFG_AM_SHIFT 4
704#define MIPS_SEGCFG_AM (_ULCAST_(7) << MIPS_SEGCFG_AM_SHIFT)
705#define MIPS_SEGCFG_EU_SHIFT 3
706#define MIPS_SEGCFG_EU (_ULCAST_(1) << MIPS_SEGCFG_EU_SHIFT)
707#define MIPS_SEGCFG_C_SHIFT 0
708#define MIPS_SEGCFG_C (_ULCAST_(7) << MIPS_SEGCFG_C_SHIFT)
709
710#define MIPS_SEGCFG_UUSK _ULCAST_(7)
711#define MIPS_SEGCFG_USK _ULCAST_(5)
712#define MIPS_SEGCFG_MUSUK _ULCAST_(4)
713#define MIPS_SEGCFG_MUSK _ULCAST_(3)
714#define MIPS_SEGCFG_MSK _ULCAST_(2)
715#define MIPS_SEGCFG_MK _ULCAST_(1)
716#define MIPS_SEGCFG_UK _ULCAST_(0)
717
87d08bc9
MC
718#define MIPS_PWFIELD_GDI_SHIFT 24
719#define MIPS_PWFIELD_GDI_MASK 0x3f000000
720#define MIPS_PWFIELD_UDI_SHIFT 18
721#define MIPS_PWFIELD_UDI_MASK 0x00fc0000
722#define MIPS_PWFIELD_MDI_SHIFT 12
723#define MIPS_PWFIELD_MDI_MASK 0x0003f000
724#define MIPS_PWFIELD_PTI_SHIFT 6
725#define MIPS_PWFIELD_PTI_MASK 0x00000fc0
726#define MIPS_PWFIELD_PTEI_SHIFT 0
727#define MIPS_PWFIELD_PTEI_MASK 0x0000003f
728
729#define MIPS_PWSIZE_GDW_SHIFT 24
730#define MIPS_PWSIZE_GDW_MASK 0x3f000000
731#define MIPS_PWSIZE_UDW_SHIFT 18
732#define MIPS_PWSIZE_UDW_MASK 0x00fc0000
733#define MIPS_PWSIZE_MDW_SHIFT 12
734#define MIPS_PWSIZE_MDW_MASK 0x0003f000
735#define MIPS_PWSIZE_PTW_SHIFT 6
736#define MIPS_PWSIZE_PTW_MASK 0x00000fc0
737#define MIPS_PWSIZE_PTEW_SHIFT 0
738#define MIPS_PWSIZE_PTEW_MASK 0x0000003f
739
740#define MIPS_PWCTL_PWEN_SHIFT 31
741#define MIPS_PWCTL_PWEN_MASK 0x80000000
742#define MIPS_PWCTL_DPH_SHIFT 7
743#define MIPS_PWCTL_DPH_MASK 0x00000080
744#define MIPS_PWCTL_HUGEPG_SHIFT 6
745#define MIPS_PWCTL_HUGEPG_MASK 0x00000060
746#define MIPS_PWCTL_PSN_SHIFT 0
747#define MIPS_PWCTL_PSN_MASK 0x0000003f
748
f913e9ea
JH
749/* GuestCtl0 fields */
750#define MIPS_GCTL0_GM_SHIFT 31
751#define MIPS_GCTL0_GM (_ULCAST_(1) << MIPS_GCTL0_GM_SHIFT)
752#define MIPS_GCTL0_RI_SHIFT 30
753#define MIPS_GCTL0_RI (_ULCAST_(1) << MIPS_GCTL0_RI_SHIFT)
754#define MIPS_GCTL0_MC_SHIFT 29
755#define MIPS_GCTL0_MC (_ULCAST_(1) << MIPS_GCTL0_MC_SHIFT)
756#define MIPS_GCTL0_CP0_SHIFT 28
757#define MIPS_GCTL0_CP0 (_ULCAST_(1) << MIPS_GCTL0_CP0_SHIFT)
758#define MIPS_GCTL0_AT_SHIFT 26
759#define MIPS_GCTL0_AT (_ULCAST_(0x3) << MIPS_GCTL0_AT_SHIFT)
760#define MIPS_GCTL0_GT_SHIFT 25
761#define MIPS_GCTL0_GT (_ULCAST_(1) << MIPS_GCTL0_GT_SHIFT)
762#define MIPS_GCTL0_CG_SHIFT 24
763#define MIPS_GCTL0_CG (_ULCAST_(1) << MIPS_GCTL0_CG_SHIFT)
764#define MIPS_GCTL0_CF_SHIFT 23
765#define MIPS_GCTL0_CF (_ULCAST_(1) << MIPS_GCTL0_CF_SHIFT)
766#define MIPS_GCTL0_G1_SHIFT 22
767#define MIPS_GCTL0_G1 (_ULCAST_(1) << MIPS_GCTL0_G1_SHIFT)
768#define MIPS_GCTL0_G0E_SHIFT 19
769#define MIPS_GCTL0_G0E (_ULCAST_(1) << MIPS_GCTL0_G0E_SHIFT)
770#define MIPS_GCTL0_PT_SHIFT 18
771#define MIPS_GCTL0_PT (_ULCAST_(1) << MIPS_GCTL0_PT_SHIFT)
772#define MIPS_GCTL0_RAD_SHIFT 9
773#define MIPS_GCTL0_RAD (_ULCAST_(1) << MIPS_GCTL0_RAD_SHIFT)
774#define MIPS_GCTL0_DRG_SHIFT 8
775#define MIPS_GCTL0_DRG (_ULCAST_(1) << MIPS_GCTL0_DRG_SHIFT)
776#define MIPS_GCTL0_G2_SHIFT 7
777#define MIPS_GCTL0_G2 (_ULCAST_(1) << MIPS_GCTL0_G2_SHIFT)
778#define MIPS_GCTL0_GEXC_SHIFT 2
779#define MIPS_GCTL0_GEXC (_ULCAST_(0x1f) << MIPS_GCTL0_GEXC_SHIFT)
780#define MIPS_GCTL0_SFC2_SHIFT 1
781#define MIPS_GCTL0_SFC2 (_ULCAST_(1) << MIPS_GCTL0_SFC2_SHIFT)
782#define MIPS_GCTL0_SFC1_SHIFT 0
783#define MIPS_GCTL0_SFC1 (_ULCAST_(1) << MIPS_GCTL0_SFC1_SHIFT)
784
785/* GuestCtl0.AT Guest address translation control */
786#define MIPS_GCTL0_AT_ROOT 1 /* Guest MMU under Root control */
787#define MIPS_GCTL0_AT_GUEST 3 /* Guest MMU under Guest control */
788
789/* GuestCtl0.GExcCode Hypervisor exception cause codes */
790#define MIPS_GCTL0_GEXC_GPSI 0 /* Guest Privileged Sensitive Instruction */
791#define MIPS_GCTL0_GEXC_GSFC 1 /* Guest Software Field Change */
792#define MIPS_GCTL0_GEXC_HC 2 /* Hypercall */
793#define MIPS_GCTL0_GEXC_GRR 3 /* Guest Reserved Instruction Redirect */
794#define MIPS_GCTL0_GEXC_GVA 8 /* Guest Virtual Address available */
795#define MIPS_GCTL0_GEXC_GHFC 9 /* Guest Hardware Field Change */
796#define MIPS_GCTL0_GEXC_GPA 10 /* Guest Physical Address available */
797
798/* GuestCtl0Ext fields */
799#define MIPS_GCTL0EXT_RPW_SHIFT 8
800#define MIPS_GCTL0EXT_RPW (_ULCAST_(0x3) << MIPS_GCTL0EXT_RPW_SHIFT)
801#define MIPS_GCTL0EXT_NCC_SHIFT 6
802#define MIPS_GCTL0EXT_NCC (_ULCAST_(0x3) << MIPS_GCTL0EXT_NCC_SHIFT)
803#define MIPS_GCTL0EXT_CGI_SHIFT 4
804#define MIPS_GCTL0EXT_CGI (_ULCAST_(1) << MIPS_GCTL0EXT_CGI_SHIFT)
805#define MIPS_GCTL0EXT_FCD_SHIFT 3
806#define MIPS_GCTL0EXT_FCD (_ULCAST_(1) << MIPS_GCTL0EXT_FCD_SHIFT)
807#define MIPS_GCTL0EXT_OG_SHIFT 2
808#define MIPS_GCTL0EXT_OG (_ULCAST_(1) << MIPS_GCTL0EXT_OG_SHIFT)
809#define MIPS_GCTL0EXT_BG_SHIFT 1
810#define MIPS_GCTL0EXT_BG (_ULCAST_(1) << MIPS_GCTL0EXT_BG_SHIFT)
811#define MIPS_GCTL0EXT_MG_SHIFT 0
812#define MIPS_GCTL0EXT_MG (_ULCAST_(1) << MIPS_GCTL0EXT_MG_SHIFT)
813
814/* GuestCtl0Ext.RPW Root page walk configuration */
815#define MIPS_GCTL0EXT_RPW_BOTH 0 /* Root PW for GPA->RPA and RVA->RPA */
816#define MIPS_GCTL0EXT_RPW_GPA 2 /* Root PW for GPA->RPA */
817#define MIPS_GCTL0EXT_RPW_RVA 3 /* Root PW for RVA->RPA */
818
819/* GuestCtl0Ext.NCC Nested cache coherency attributes */
820#define MIPS_GCTL0EXT_NCC_IND 0 /* Guest CCA independent of Root CCA */
821#define MIPS_GCTL0EXT_NCC_MOD 1 /* Guest CCA modified by Root CCA */
822
823/* GuestCtl1 fields */
824#define MIPS_GCTL1_ID_SHIFT 0
825#define MIPS_GCTL1_ID_WIDTH 8
826#define MIPS_GCTL1_ID (_ULCAST_(0xff) << MIPS_GCTL1_ID_SHIFT)
827#define MIPS_GCTL1_RID_SHIFT 16
828#define MIPS_GCTL1_RID_WIDTH 8
829#define MIPS_GCTL1_RID (_ULCAST_(0xff) << MIPS_GCTL1_RID_SHIFT)
830#define MIPS_GCTL1_EID_SHIFT 24
831#define MIPS_GCTL1_EID_WIDTH 8
832#define MIPS_GCTL1_EID (_ULCAST_(0xff) << MIPS_GCTL1_EID_SHIFT)
833
834/* GuestID reserved for root context */
835#define MIPS_GCTL1_ROOT_GUESTID 0
836
9b3274bd
JH
837/* CDMMBase register bit definitions */
838#define MIPS_CDMMBASE_SIZE_SHIFT 0
839#define MIPS_CDMMBASE_SIZE (_ULCAST_(511) << MIPS_CDMMBASE_SIZE_SHIFT)
840#define MIPS_CDMMBASE_CI (_ULCAST_(1) << 9)
841#define MIPS_CDMMBASE_EN (_ULCAST_(1) << 10)
842#define MIPS_CDMMBASE_ADDR_SHIFT 11
843#define MIPS_CDMMBASE_ADDR_START 15
844
e08384ca
MR
845/*
846 * Bitfields in the TX39 family CP0 Configuration Register 3
847 */
848#define TX39_CONF_ICS_SHIFT 19
849#define TX39_CONF_ICS_MASK 0x00380000
850#define TX39_CONF_ICS_1KB 0x00000000
851#define TX39_CONF_ICS_2KB 0x00080000
852#define TX39_CONF_ICS_4KB 0x00100000
853#define TX39_CONF_ICS_8KB 0x00180000
854#define TX39_CONF_ICS_16KB 0x00200000
855
856#define TX39_CONF_DCS_SHIFT 16
857#define TX39_CONF_DCS_MASK 0x00070000
858#define TX39_CONF_DCS_1KB 0x00000000
859#define TX39_CONF_DCS_2KB 0x00010000
860#define TX39_CONF_DCS_4KB 0x00020000
861#define TX39_CONF_DCS_8KB 0x00030000
862#define TX39_CONF_DCS_16KB 0x00040000
863
864#define TX39_CONF_CWFON 0x00004000
865#define TX39_CONF_WBON 0x00002000
866#define TX39_CONF_RF_SHIFT 10
867#define TX39_CONF_RF_MASK 0x00000c00
868#define TX39_CONF_DOZE 0x00000200
869#define TX39_CONF_HALT 0x00000100
870#define TX39_CONF_LOCK 0x00000080
871#define TX39_CONF_ICE 0x00000020
872#define TX39_CONF_DCE 0x00000010
873#define TX39_CONF_IRSIZE_SHIFT 2
874#define TX39_CONF_IRSIZE_MASK 0x0000000c
875#define TX39_CONF_DRSIZE_SHIFT 0
876#define TX39_CONF_DRSIZE_MASK 0x00000003
877
8d5ded16
JK
878/*
879 * Interesting Bits in the R10K CP0 Branch Diagnostic Register
880 */
881/* Disable Branch Target Address Cache */
882#define R10K_DIAG_D_BTAC (_ULCAST_(1) << 27)
883/* Enable Branch Prediction Global History */
884#define R10K_DIAG_E_GHIST (_ULCAST_(1) << 26)
885/* Disable Branch Return Cache */
886#define R10K_DIAG_D_BRC (_ULCAST_(1) << 22)
fda51906 887
06e4814e
HC
888/* Flush ITLB */
889#define LOONGSON_DIAG_ITLB (_ULCAST_(1) << 2)
890/* Flush DTLB */
891#define LOONGSON_DIAG_DTLB (_ULCAST_(1) << 3)
892/* Flush VTLB */
893#define LOONGSON_DIAG_VTLB (_ULCAST_(1) << 12)
894/* Flush FTLB */
895#define LOONGSON_DIAG_FTLB (_ULCAST_(1) << 13)
896
fda51906
MR
897/*
898 * Coprocessor 1 (FPU) register names
899 */
c491cfa2
MR
900#define CP1_REVISION $0
901#define CP1_UFR $1
902#define CP1_UNFR $4
903#define CP1_FCCR $25
904#define CP1_FEXR $26
905#define CP1_FENR $28
906#define CP1_STATUS $31
fda51906
MR
907
908
909/*
910 * Bits in the MIPS32/64 coprocessor 1 (FPU) revision register.
911 */
912#define MIPS_FPIR_S (_ULCAST_(1) << 16)
913#define MIPS_FPIR_D (_ULCAST_(1) << 17)
914#define MIPS_FPIR_PS (_ULCAST_(1) << 18)
915#define MIPS_FPIR_3D (_ULCAST_(1) << 19)
916#define MIPS_FPIR_W (_ULCAST_(1) << 20)
917#define MIPS_FPIR_L (_ULCAST_(1) << 21)
918#define MIPS_FPIR_F64 (_ULCAST_(1) << 22)
f1f3b7eb
MR
919#define MIPS_FPIR_HAS2008 (_ULCAST_(1) << 23)
920#define MIPS_FPIR_UFRP (_ULCAST_(1) << 28)
fda51906
MR
921#define MIPS_FPIR_FREP (_ULCAST_(1) << 29)
922
c491cfa2
MR
923/*
924 * Bits in the MIPS32/64 coprocessor 1 (FPU) condition codes register.
925 */
926#define MIPS_FCCR_CONDX_S 0
927#define MIPS_FCCR_CONDX (_ULCAST_(255) << MIPS_FCCR_CONDX_S)
928#define MIPS_FCCR_COND0_S 0
929#define MIPS_FCCR_COND0 (_ULCAST_(1) << MIPS_FCCR_COND0_S)
930#define MIPS_FCCR_COND1_S 1
931#define MIPS_FCCR_COND1 (_ULCAST_(1) << MIPS_FCCR_COND1_S)
932#define MIPS_FCCR_COND2_S 2
933#define MIPS_FCCR_COND2 (_ULCAST_(1) << MIPS_FCCR_COND2_S)
934#define MIPS_FCCR_COND3_S 3
935#define MIPS_FCCR_COND3 (_ULCAST_(1) << MIPS_FCCR_COND3_S)
936#define MIPS_FCCR_COND4_S 4
937#define MIPS_FCCR_COND4 (_ULCAST_(1) << MIPS_FCCR_COND4_S)
938#define MIPS_FCCR_COND5_S 5
939#define MIPS_FCCR_COND5 (_ULCAST_(1) << MIPS_FCCR_COND5_S)
940#define MIPS_FCCR_COND6_S 6
941#define MIPS_FCCR_COND6 (_ULCAST_(1) << MIPS_FCCR_COND6_S)
942#define MIPS_FCCR_COND7_S 7
943#define MIPS_FCCR_COND7 (_ULCAST_(1) << MIPS_FCCR_COND7_S)
944
945/*
946 * Bits in the MIPS32/64 coprocessor 1 (FPU) enables register.
947 */
948#define MIPS_FENR_FS_S 2
949#define MIPS_FENR_FS (_ULCAST_(1) << MIPS_FENR_FS_S)
950
fda51906
MR
951/*
952 * FPU Status Register Values
953 */
c491cfa2
MR
954#define FPU_CSR_COND_S 23 /* $fcc0 */
955#define FPU_CSR_COND (_ULCAST_(1) << FPU_CSR_COND_S)
956
957#define FPU_CSR_FS_S 24 /* flush denormalised results to 0 */
958#define FPU_CSR_FS (_ULCAST_(1) << FPU_CSR_FS_S)
959
960#define FPU_CSR_CONDX_S 25 /* $fcc[7:1] */
961#define FPU_CSR_CONDX (_ULCAST_(127) << FPU_CSR_CONDX_S)
962#define FPU_CSR_COND1_S 25 /* $fcc1 */
963#define FPU_CSR_COND1 (_ULCAST_(1) << FPU_CSR_COND1_S)
964#define FPU_CSR_COND2_S 26 /* $fcc2 */
965#define FPU_CSR_COND2 (_ULCAST_(1) << FPU_CSR_COND2_S)
966#define FPU_CSR_COND3_S 27 /* $fcc3 */
967#define FPU_CSR_COND3 (_ULCAST_(1) << FPU_CSR_COND3_S)
968#define FPU_CSR_COND4_S 28 /* $fcc4 */
969#define FPU_CSR_COND4 (_ULCAST_(1) << FPU_CSR_COND4_S)
970#define FPU_CSR_COND5_S 29 /* $fcc5 */
971#define FPU_CSR_COND5 (_ULCAST_(1) << FPU_CSR_COND5_S)
972#define FPU_CSR_COND6_S 30 /* $fcc6 */
973#define FPU_CSR_COND6 (_ULCAST_(1) << FPU_CSR_COND6_S)
974#define FPU_CSR_COND7_S 31 /* $fcc7 */
975#define FPU_CSR_COND7 (_ULCAST_(1) << FPU_CSR_COND7_S)
fda51906
MR
976
977/*
f1f3b7eb 978 * Bits 22:20 of the FPU Status Register will be read as 0,
fda51906
MR
979 * and should be written as zero.
980 */
f1f3b7eb
MR
981#define FPU_CSR_RSVD (_ULCAST_(7) << 20)
982
983#define FPU_CSR_ABS2008 (_ULCAST_(1) << 19)
984#define FPU_CSR_NAN2008 (_ULCAST_(1) << 18)
fda51906
MR
985
986/*
987 * X the exception cause indicator
988 * E the exception enable
989 * S the sticky/flag bit
990*/
991#define FPU_CSR_ALL_X 0x0003f000
992#define FPU_CSR_UNI_X 0x00020000
993#define FPU_CSR_INV_X 0x00010000
994#define FPU_CSR_DIV_X 0x00008000
995#define FPU_CSR_OVF_X 0x00004000
996#define FPU_CSR_UDF_X 0x00002000
997#define FPU_CSR_INE_X 0x00001000
998
999#define FPU_CSR_ALL_E 0x00000f80
1000#define FPU_CSR_INV_E 0x00000800
1001#define FPU_CSR_DIV_E 0x00000400
1002#define FPU_CSR_OVF_E 0x00000200
1003#define FPU_CSR_UDF_E 0x00000100
1004#define FPU_CSR_INE_E 0x00000080
1005
1006#define FPU_CSR_ALL_S 0x0000007c
1007#define FPU_CSR_INV_S 0x00000040
1008#define FPU_CSR_DIV_S 0x00000020
1009#define FPU_CSR_OVF_S 0x00000010
1010#define FPU_CSR_UDF_S 0x00000008
1011#define FPU_CSR_INE_S 0x00000004
1012
1013/* Bits 0 and 1 of FPU Status Register specify the rounding mode */
1014#define FPU_CSR_RM 0x00000003
1015#define FPU_CSR_RN 0x0 /* nearest */
1016#define FPU_CSR_RZ 0x1 /* towards zero */
1017#define FPU_CSR_RU 0x2 /* towards +Infinity */
1018#define FPU_CSR_RD 0x3 /* towards -Infinity */
1019
1020
1da177e4
LT
1021#ifndef __ASSEMBLY__
1022
bfd08baa 1023/*
377cb1b6 1024 * Macros for handling the ISA mode bit for MIPS16 and microMIPS.
bfd08baa 1025 */
377cb1b6
RB
1026#if defined(CONFIG_SYS_SUPPORTS_MIPS16) || \
1027 defined(CONFIG_SYS_SUPPORTS_MICROMIPS)
bfd08baa
SH
1028#define get_isa16_mode(x) ((x) & 0x1)
1029#define msk_isa16_mode(x) ((x) & ~0x1)
1030#define set_isa16_mode(x) do { (x) |= 0x1; } while(0)
377cb1b6
RB
1031#else
1032#define get_isa16_mode(x) 0
1033#define msk_isa16_mode(x) (x)
1034#define set_isa16_mode(x) do { } while(0)
1035#endif
bfd08baa
SH
1036
1037/*
1038 * microMIPS instructions can be 16-bit or 32-bit in length. This
1039 * returns a 1 if the instruction is 16-bit and a 0 if 32-bit.
1040 */
1041static inline int mm_insn_16bit(u16 insn)
1042{
1043 u16 opcode = (insn >> 10) & 0x7;
1044
1045 return (opcode >= 1 && opcode <= 3) ? 1 : 0;
1046}
1047
198bb4ce
LY
1048/*
1049 * TLB Invalidate Flush
1050 */
1051static inline void tlbinvf(void)
1052{
1053 __asm__ __volatile__(
1054 ".set push\n\t"
1055 ".set noreorder\n\t"
1056 ".word 0x42000004\n\t" /* tlbinvf */
1057 ".set pop");
1058}
1059
1060
1da177e4 1061/*
70342287 1062 * Functions to access the R10000 performance counters. These are basically
1da177e4
LT
1063 * mfc0 and mtc0 instructions from and to coprocessor register with a 5-bit
1064 * performance counter number encoded into bits 1 ... 5 of the instruction.
1065 * Only performance counters 0 to 1 actually exist, so for a non-R10000 aware
1066 * disassembler these will look like an access to sel 0 or 1.
1067 */
1068#define read_r10k_perf_cntr(counter) \
1069({ \
1070 unsigned int __res; \
1071 __asm__ __volatile__( \
1072 "mfpc\t%0, %1" \
70342287 1073 : "=r" (__res) \
1da177e4
LT
1074 : "i" (counter)); \
1075 \
70342287 1076 __res; \
1da177e4
LT
1077})
1078
70342287 1079#define write_r10k_perf_cntr(counter,val) \
1da177e4
LT
1080do { \
1081 __asm__ __volatile__( \
1082 "mtpc\t%0, %1" \
1083 : \
1084 : "r" (val), "i" (counter)); \
1085} while (0)
1086
1087#define read_r10k_perf_event(counter) \
1088({ \
1089 unsigned int __res; \
1090 __asm__ __volatile__( \
1091 "mfps\t%0, %1" \
70342287 1092 : "=r" (__res) \
1da177e4
LT
1093 : "i" (counter)); \
1094 \
70342287 1095 __res; \
1da177e4
LT
1096})
1097
70342287 1098#define write_r10k_perf_cntl(counter,val) \
1da177e4
LT
1099do { \
1100 __asm__ __volatile__( \
1101 "mtps\t%0, %1" \
1102 : \
1103 : "r" (val), "i" (counter)); \
1104} while (0)
1105
1106
1107/*
1108 * Macros to access the system control coprocessor
1109 */
1110
1111#define __read_32bit_c0_register(source, sel) \
82eb8f73 1112({ unsigned int __res; \
1da177e4
LT
1113 if (sel == 0) \
1114 __asm__ __volatile__( \
1115 "mfc0\t%0, " #source "\n\t" \
1116 : "=r" (__res)); \
1117 else \
1118 __asm__ __volatile__( \
1119 ".set\tmips32\n\t" \
1120 "mfc0\t%0, " #source ", " #sel "\n\t" \
1121 ".set\tmips0\n\t" \
1122 : "=r" (__res)); \
1123 __res; \
1124})
1125
1126#define __read_64bit_c0_register(source, sel) \
1127({ unsigned long long __res; \
1128 if (sizeof(unsigned long) == 4) \
1129 __res = __read_64bit_c0_split(source, sel); \
1130 else if (sel == 0) \
1131 __asm__ __volatile__( \
1132 ".set\tmips3\n\t" \
1133 "dmfc0\t%0, " #source "\n\t" \
1134 ".set\tmips0" \
1135 : "=r" (__res)); \
1136 else \
1137 __asm__ __volatile__( \
1138 ".set\tmips64\n\t" \
1139 "dmfc0\t%0, " #source ", " #sel "\n\t" \
1140 ".set\tmips0" \
1141 : "=r" (__res)); \
1142 __res; \
1143})
1144
1145#define __write_32bit_c0_register(register, sel, value) \
1146do { \
1147 if (sel == 0) \
1148 __asm__ __volatile__( \
1149 "mtc0\t%z0, " #register "\n\t" \
0952e290 1150 : : "Jr" ((unsigned int)(value))); \
1da177e4
LT
1151 else \
1152 __asm__ __volatile__( \
1153 ".set\tmips32\n\t" \
1154 "mtc0\t%z0, " #register ", " #sel "\n\t" \
1155 ".set\tmips0" \
0952e290 1156 : : "Jr" ((unsigned int)(value))); \
1da177e4
LT
1157} while (0)
1158
1159#define __write_64bit_c0_register(register, sel, value) \
1160do { \
1161 if (sizeof(unsigned long) == 4) \
1162 __write_64bit_c0_split(register, sel, value); \
1163 else if (sel == 0) \
1164 __asm__ __volatile__( \
1165 ".set\tmips3\n\t" \
1166 "dmtc0\t%z0, " #register "\n\t" \
1167 ".set\tmips0" \
1168 : : "Jr" (value)); \
1169 else \
1170 __asm__ __volatile__( \
1171 ".set\tmips64\n\t" \
1172 "dmtc0\t%z0, " #register ", " #sel "\n\t" \
1173 ".set\tmips0" \
1174 : : "Jr" (value)); \
1175} while (0)
1176
1177#define __read_ulong_c0_register(reg, sel) \
1178 ((sizeof(unsigned long) == 4) ? \
1179 (unsigned long) __read_32bit_c0_register(reg, sel) : \
1180 (unsigned long) __read_64bit_c0_register(reg, sel))
1181
1182#define __write_ulong_c0_register(reg, sel, val) \
1183do { \
1184 if (sizeof(unsigned long) == 4) \
1185 __write_32bit_c0_register(reg, sel, val); \
1186 else \
1187 __write_64bit_c0_register(reg, sel, val); \
1188} while (0)
1189
1190/*
1191 * On RM7000/RM9000 these are uses to access cop0 set 1 registers
1192 */
1193#define __read_32bit_c0_ctrl_register(source) \
82eb8f73 1194({ unsigned int __res; \
1da177e4
LT
1195 __asm__ __volatile__( \
1196 "cfc0\t%0, " #source "\n\t" \
1197 : "=r" (__res)); \
1198 __res; \
1199})
1200
1201#define __write_32bit_c0_ctrl_register(register, value) \
1202do { \
1203 __asm__ __volatile__( \
1204 "ctc0\t%z0, " #register "\n\t" \
0952e290 1205 : : "Jr" ((unsigned int)(value))); \
1da177e4
LT
1206} while (0)
1207
1208/*
1209 * These versions are only needed for systems with more than 38 bits of
1210 * physical address space running the 32-bit kernel. That's none atm :-)
1211 */
1212#define __read_64bit_c0_split(source, sel) \
1213({ \
87d43dd4
AN
1214 unsigned long long __val; \
1215 unsigned long __flags; \
1da177e4 1216 \
87d43dd4 1217 local_irq_save(__flags); \
1da177e4
LT
1218 if (sel == 0) \
1219 __asm__ __volatile__( \
1220 ".set\tmips64\n\t" \
1221 "dmfc0\t%M0, " #source "\n\t" \
1222 "dsll\t%L0, %M0, 32\n\t" \
0b543526
RB
1223 "dsra\t%M0, %M0, 32\n\t" \
1224 "dsra\t%L0, %L0, 32\n\t" \
1da177e4 1225 ".set\tmips0" \
87d43dd4 1226 : "=r" (__val)); \
1da177e4
LT
1227 else \
1228 __asm__ __volatile__( \
1229 ".set\tmips64\n\t" \
1230 "dmfc0\t%M0, " #source ", " #sel "\n\t" \
1231 "dsll\t%L0, %M0, 32\n\t" \
0b543526
RB
1232 "dsra\t%M0, %M0, 32\n\t" \
1233 "dsra\t%L0, %L0, 32\n\t" \
1da177e4 1234 ".set\tmips0" \
87d43dd4
AN
1235 : "=r" (__val)); \
1236 local_irq_restore(__flags); \
1da177e4 1237 \
87d43dd4 1238 __val; \
1da177e4
LT
1239})
1240
1241#define __write_64bit_c0_split(source, sel, val) \
1242do { \
87d43dd4 1243 unsigned long __flags; \
1da177e4 1244 \
87d43dd4 1245 local_irq_save(__flags); \
1da177e4
LT
1246 if (sel == 0) \
1247 __asm__ __volatile__( \
1248 ".set\tmips64\n\t" \
1249 "dsll\t%L0, %L0, 32\n\t" \
1250 "dsrl\t%L0, %L0, 32\n\t" \
1251 "dsll\t%M0, %M0, 32\n\t" \
1252 "or\t%L0, %L0, %M0\n\t" \
1253 "dmtc0\t%L0, " #source "\n\t" \
1254 ".set\tmips0" \
1255 : : "r" (val)); \
1256 else \
1257 __asm__ __volatile__( \
1258 ".set\tmips64\n\t" \
1259 "dsll\t%L0, %L0, 32\n\t" \
1260 "dsrl\t%L0, %L0, 32\n\t" \
1261 "dsll\t%M0, %M0, 32\n\t" \
1262 "or\t%L0, %L0, %M0\n\t" \
1263 "dmtc0\t%L0, " #source ", " #sel "\n\t" \
1264 ".set\tmips0" \
1265 : : "r" (val)); \
87d43dd4 1266 local_irq_restore(__flags); \
1da177e4
LT
1267} while (0)
1268
23d06e4f
SH
1269#define __readx_32bit_c0_register(source) \
1270({ \
1271 unsigned int __res; \
1272 \
1273 __asm__ __volatile__( \
1274 " .set push \n" \
1275 " .set noat \n" \
1276 " .set mips32r2 \n" \
1277 " .insn \n" \
1278 " # mfhc0 $1, %1 \n" \
1279 " .word (0x40410000 | ((%1 & 0x1f) << 11)) \n" \
1280 " move %0, $1 \n" \
1281 " .set pop \n" \
1282 : "=r" (__res) \
1283 : "i" (source)); \
1284 __res; \
1285})
1286
1287#define __writex_32bit_c0_register(register, value) \
1288do { \
1289 __asm__ __volatile__( \
1290 " .set push \n" \
1291 " .set noat \n" \
1292 " .set mips32r2 \n" \
1293 " move $1, %0 \n" \
1294 " # mthc0 $1, %1 \n" \
1295 " .insn \n" \
1296 " .word (0x40c10000 | ((%1 & 0x1f) << 11)) \n" \
1297 " .set pop \n" \
1298 : \
1299 : "r" (value), "i" (register)); \
1300} while (0)
1301
1da177e4
LT
1302#define read_c0_index() __read_32bit_c0_register($0, 0)
1303#define write_c0_index(val) __write_32bit_c0_register($0, 0, val)
1304
272bace7
RB
1305#define read_c0_random() __read_32bit_c0_register($1, 0)
1306#define write_c0_random(val) __write_32bit_c0_register($1, 0, val)
1307
1da177e4
LT
1308#define read_c0_entrylo0() __read_ulong_c0_register($2, 0)
1309#define write_c0_entrylo0(val) __write_ulong_c0_register($2, 0, val)
1310
23d06e4f
SH
1311#define readx_c0_entrylo0() __readx_32bit_c0_register(2)
1312#define writex_c0_entrylo0(val) __writex_32bit_c0_register(2, val)
1313
1da177e4
LT
1314#define read_c0_entrylo1() __read_ulong_c0_register($3, 0)
1315#define write_c0_entrylo1(val) __write_ulong_c0_register($3, 0, val)
1316
23d06e4f
SH
1317#define readx_c0_entrylo1() __readx_32bit_c0_register(3)
1318#define writex_c0_entrylo1(val) __writex_32bit_c0_register(3, val)
1319
1da177e4
LT
1320#define read_c0_conf() __read_32bit_c0_register($3, 0)
1321#define write_c0_conf(val) __write_32bit_c0_register($3, 0, val)
1322
1323#define read_c0_context() __read_ulong_c0_register($4, 0)
1324#define write_c0_context(val) __write_ulong_c0_register($4, 0, val)
1325
f18bdfa1
JH
1326#define read_c0_contextconfig() __read_32bit_c0_register($4, 1)
1327#define write_c0_contextconfig(val) __write_32bit_c0_register($4, 1, val)
1328
a3692020 1329#define read_c0_userlocal() __read_ulong_c0_register($4, 2)
70342287 1330#define write_c0_userlocal(val) __write_ulong_c0_register($4, 2, val)
a3692020 1331
f18bdfa1
JH
1332#define read_c0_xcontextconfig() __read_ulong_c0_register($4, 3)
1333#define write_c0_xcontextconfig(val) __write_ulong_c0_register($4, 3, val)
1334
1da177e4
LT
1335#define read_c0_pagemask() __read_32bit_c0_register($5, 0)
1336#define write_c0_pagemask(val) __write_32bit_c0_register($5, 0, val)
1337
9fe2e9d6 1338#define read_c0_pagegrain() __read_32bit_c0_register($5, 1)
70342287 1339#define write_c0_pagegrain(val) __write_32bit_c0_register($5, 1, val)
9fe2e9d6 1340
1da177e4
LT
1341#define read_c0_wired() __read_32bit_c0_register($6, 0)
1342#define write_c0_wired(val) __write_32bit_c0_register($6, 0, val)
1343
1344#define read_c0_info() __read_32bit_c0_register($7, 0)
1345
70342287 1346#define read_c0_cache() __read_32bit_c0_register($7, 0) /* TX39xx */
1da177e4
LT
1347#define write_c0_cache(val) __write_32bit_c0_register($7, 0, val)
1348
15c4f67a
RB
1349#define read_c0_badvaddr() __read_ulong_c0_register($8, 0)
1350#define write_c0_badvaddr(val) __write_ulong_c0_register($8, 0, val)
1351
e06a1548
JH
1352#define read_c0_badinstr() __read_32bit_c0_register($8, 1)
1353#define read_c0_badinstrp() __read_32bit_c0_register($8, 2)
1354
1da177e4
LT
1355#define read_c0_count() __read_32bit_c0_register($9, 0)
1356#define write_c0_count(val) __write_32bit_c0_register($9, 0, val)
1357
bdf21b18
PP
1358#define read_c0_count2() __read_32bit_c0_register($9, 6) /* pnx8550 */
1359#define write_c0_count2(val) __write_32bit_c0_register($9, 6, val)
1360
1361#define read_c0_count3() __read_32bit_c0_register($9, 7) /* pnx8550 */
1362#define write_c0_count3(val) __write_32bit_c0_register($9, 7, val)
1363
1da177e4
LT
1364#define read_c0_entryhi() __read_ulong_c0_register($10, 0)
1365#define write_c0_entryhi(val) __write_ulong_c0_register($10, 0, val)
1366
f913e9ea
JH
1367#define read_c0_guestctl1() __read_32bit_c0_register($10, 4)
1368#define write_c0_guestctl1(val) __write_32bit_c0_register($10, 4, val)
1369
1370#define read_c0_guestctl2() __read_32bit_c0_register($10, 5)
1371#define write_c0_guestctl2(val) __write_32bit_c0_register($10, 5, val)
1372
1373#define read_c0_guestctl3() __read_32bit_c0_register($10, 6)
1374#define write_c0_guestctl3(val) __write_32bit_c0_register($10, 6, val)
1375
1da177e4
LT
1376#define read_c0_compare() __read_32bit_c0_register($11, 0)
1377#define write_c0_compare(val) __write_32bit_c0_register($11, 0, val)
1378
f913e9ea
JH
1379#define read_c0_guestctl0ext() __read_32bit_c0_register($11, 4)
1380#define write_c0_guestctl0ext(val) __write_32bit_c0_register($11, 4, val)
1381
bdf21b18
PP
1382#define read_c0_compare2() __read_32bit_c0_register($11, 6) /* pnx8550 */
1383#define write_c0_compare2(val) __write_32bit_c0_register($11, 6, val)
1384
1385#define read_c0_compare3() __read_32bit_c0_register($11, 7) /* pnx8550 */
1386#define write_c0_compare3(val) __write_32bit_c0_register($11, 7, val)
1387
1da177e4 1388#define read_c0_status() __read_32bit_c0_register($12, 0)
b633648c 1389
1da177e4
LT
1390#define write_c0_status(val) __write_32bit_c0_register($12, 0, val)
1391
f913e9ea
JH
1392#define read_c0_guestctl0() __read_32bit_c0_register($12, 6)
1393#define write_c0_guestctl0(val) __write_32bit_c0_register($12, 6, val)
1394
1395#define read_c0_gtoffset() __read_32bit_c0_register($12, 7)
1396#define write_c0_gtoffset(val) __write_32bit_c0_register($12, 7, val)
1397
1da177e4
LT
1398#define read_c0_cause() __read_32bit_c0_register($13, 0)
1399#define write_c0_cause(val) __write_32bit_c0_register($13, 0, val)
1400
1401#define read_c0_epc() __read_ulong_c0_register($14, 0)
1402#define write_c0_epc(val) __write_ulong_c0_register($14, 0, val)
1403
1404#define read_c0_prid() __read_32bit_c0_register($15, 0)
1405
4dd8ee5d
PB
1406#define read_c0_cmgcrbase() __read_ulong_c0_register($15, 3)
1407
1da177e4
LT
1408#define read_c0_config() __read_32bit_c0_register($16, 0)
1409#define read_c0_config1() __read_32bit_c0_register($16, 1)
1410#define read_c0_config2() __read_32bit_c0_register($16, 2)
1411#define read_c0_config3() __read_32bit_c0_register($16, 3)
0efe2761
RB
1412#define read_c0_config4() __read_32bit_c0_register($16, 4)
1413#define read_c0_config5() __read_32bit_c0_register($16, 5)
1414#define read_c0_config6() __read_32bit_c0_register($16, 6)
1415#define read_c0_config7() __read_32bit_c0_register($16, 7)
1da177e4
LT
1416#define write_c0_config(val) __write_32bit_c0_register($16, 0, val)
1417#define write_c0_config1(val) __write_32bit_c0_register($16, 1, val)
1418#define write_c0_config2(val) __write_32bit_c0_register($16, 2, val)
1419#define write_c0_config3(val) __write_32bit_c0_register($16, 3, val)
0efe2761
RB
1420#define write_c0_config4(val) __write_32bit_c0_register($16, 4, val)
1421#define write_c0_config5(val) __write_32bit_c0_register($16, 5, val)
1422#define write_c0_config6(val) __write_32bit_c0_register($16, 6, val)
1423#define write_c0_config7(val) __write_32bit_c0_register($16, 7, val)
1da177e4 1424
b55b9e27
MC
1425#define read_c0_lladdr() __read_ulong_c0_register($17, 0)
1426#define write_c0_lladdr(val) __write_ulong_c0_register($17, 0, val)
e19d5dba
PB
1427#define read_c0_maar() __read_ulong_c0_register($17, 1)
1428#define write_c0_maar(val) __write_ulong_c0_register($17, 1, val)
1429#define read_c0_maari() __read_32bit_c0_register($17, 2)
1430#define write_c0_maari(val) __write_32bit_c0_register($17, 2, val)
1431
1da177e4 1432/*
25985edc 1433 * The WatchLo register. There may be up to 8 of them.
1da177e4
LT
1434 */
1435#define read_c0_watchlo0() __read_ulong_c0_register($18, 0)
1436#define read_c0_watchlo1() __read_ulong_c0_register($18, 1)
1437#define read_c0_watchlo2() __read_ulong_c0_register($18, 2)
1438#define read_c0_watchlo3() __read_ulong_c0_register($18, 3)
1439#define read_c0_watchlo4() __read_ulong_c0_register($18, 4)
1440#define read_c0_watchlo5() __read_ulong_c0_register($18, 5)
1441#define read_c0_watchlo6() __read_ulong_c0_register($18, 6)
1442#define read_c0_watchlo7() __read_ulong_c0_register($18, 7)
1443#define write_c0_watchlo0(val) __write_ulong_c0_register($18, 0, val)
1444#define write_c0_watchlo1(val) __write_ulong_c0_register($18, 1, val)
1445#define write_c0_watchlo2(val) __write_ulong_c0_register($18, 2, val)
1446#define write_c0_watchlo3(val) __write_ulong_c0_register($18, 3, val)
1447#define write_c0_watchlo4(val) __write_ulong_c0_register($18, 4, val)
1448#define write_c0_watchlo5(val) __write_ulong_c0_register($18, 5, val)
1449#define write_c0_watchlo6(val) __write_ulong_c0_register($18, 6, val)
1450#define write_c0_watchlo7(val) __write_ulong_c0_register($18, 7, val)
1451
1452/*
25985edc 1453 * The WatchHi register. There may be up to 8 of them.
1da177e4
LT
1454 */
1455#define read_c0_watchhi0() __read_32bit_c0_register($19, 0)
1456#define read_c0_watchhi1() __read_32bit_c0_register($19, 1)
1457#define read_c0_watchhi2() __read_32bit_c0_register($19, 2)
1458#define read_c0_watchhi3() __read_32bit_c0_register($19, 3)
1459#define read_c0_watchhi4() __read_32bit_c0_register($19, 4)
1460#define read_c0_watchhi5() __read_32bit_c0_register($19, 5)
1461#define read_c0_watchhi6() __read_32bit_c0_register($19, 6)
1462#define read_c0_watchhi7() __read_32bit_c0_register($19, 7)
1463
1464#define write_c0_watchhi0(val) __write_32bit_c0_register($19, 0, val)
1465#define write_c0_watchhi1(val) __write_32bit_c0_register($19, 1, val)
1466#define write_c0_watchhi2(val) __write_32bit_c0_register($19, 2, val)
1467#define write_c0_watchhi3(val) __write_32bit_c0_register($19, 3, val)
1468#define write_c0_watchhi4(val) __write_32bit_c0_register($19, 4, val)
1469#define write_c0_watchhi5(val) __write_32bit_c0_register($19, 5, val)
1470#define write_c0_watchhi6(val) __write_32bit_c0_register($19, 6, val)
1471#define write_c0_watchhi7(val) __write_32bit_c0_register($19, 7, val)
1472
1473#define read_c0_xcontext() __read_ulong_c0_register($20, 0)
1474#define write_c0_xcontext(val) __write_ulong_c0_register($20, 0, val)
1475
1476#define read_c0_intcontrol() __read_32bit_c0_ctrl_register($20)
1477#define write_c0_intcontrol(val) __write_32bit_c0_ctrl_register($20, val)
1478
1479#define read_c0_framemask() __read_32bit_c0_register($21, 0)
70342287 1480#define write_c0_framemask(val) __write_32bit_c0_register($21, 0, val)
1da177e4 1481
1da177e4
LT
1482#define read_c0_diag() __read_32bit_c0_register($22, 0)
1483#define write_c0_diag(val) __write_32bit_c0_register($22, 0, val)
1484
8d5ded16
JK
1485/* R10K CP0 Branch Diagnostic register is 64bits wide */
1486#define read_c0_r10k_diag() __read_64bit_c0_register($22, 0)
1487#define write_c0_r10k_diag(val) __write_64bit_c0_register($22, 0, val)
1488
1da177e4
LT
1489#define read_c0_diag1() __read_32bit_c0_register($22, 1)
1490#define write_c0_diag1(val) __write_32bit_c0_register($22, 1, val)
1491
1492#define read_c0_diag2() __read_32bit_c0_register($22, 2)
1493#define write_c0_diag2(val) __write_32bit_c0_register($22, 2, val)
1494
1495#define read_c0_diag3() __read_32bit_c0_register($22, 3)
1496#define write_c0_diag3(val) __write_32bit_c0_register($22, 3, val)
1497
1498#define read_c0_diag4() __read_32bit_c0_register($22, 4)
1499#define write_c0_diag4(val) __write_32bit_c0_register($22, 4, val)
1500
1501#define read_c0_diag5() __read_32bit_c0_register($22, 5)
1502#define write_c0_diag5(val) __write_32bit_c0_register($22, 5, val)
1503
1504#define read_c0_debug() __read_32bit_c0_register($23, 0)
1505#define write_c0_debug(val) __write_32bit_c0_register($23, 0, val)
1506
1507#define read_c0_depc() __read_ulong_c0_register($24, 0)
1508#define write_c0_depc(val) __write_ulong_c0_register($24, 0, val)
1509
1510/*
1511 * MIPS32 / MIPS64 performance counters
1512 */
1513#define read_c0_perfctrl0() __read_32bit_c0_register($25, 0)
70342287 1514#define write_c0_perfctrl0(val) __write_32bit_c0_register($25, 0, val)
1da177e4 1515#define read_c0_perfcntr0() __read_32bit_c0_register($25, 1)
70342287 1516#define write_c0_perfcntr0(val) __write_32bit_c0_register($25, 1, val)
4d36f59d
DD
1517#define read_c0_perfcntr0_64() __read_64bit_c0_register($25, 1)
1518#define write_c0_perfcntr0_64(val) __write_64bit_c0_register($25, 1, val)
1da177e4 1519#define read_c0_perfctrl1() __read_32bit_c0_register($25, 2)
70342287 1520#define write_c0_perfctrl1(val) __write_32bit_c0_register($25, 2, val)
1da177e4 1521#define read_c0_perfcntr1() __read_32bit_c0_register($25, 3)
70342287 1522#define write_c0_perfcntr1(val) __write_32bit_c0_register($25, 3, val)
4d36f59d
DD
1523#define read_c0_perfcntr1_64() __read_64bit_c0_register($25, 3)
1524#define write_c0_perfcntr1_64(val) __write_64bit_c0_register($25, 3, val)
1da177e4 1525#define read_c0_perfctrl2() __read_32bit_c0_register($25, 4)
70342287 1526#define write_c0_perfctrl2(val) __write_32bit_c0_register($25, 4, val)
1da177e4 1527#define read_c0_perfcntr2() __read_32bit_c0_register($25, 5)
70342287 1528#define write_c0_perfcntr2(val) __write_32bit_c0_register($25, 5, val)
4d36f59d
DD
1529#define read_c0_perfcntr2_64() __read_64bit_c0_register($25, 5)
1530#define write_c0_perfcntr2_64(val) __write_64bit_c0_register($25, 5, val)
1da177e4 1531#define read_c0_perfctrl3() __read_32bit_c0_register($25, 6)
70342287 1532#define write_c0_perfctrl3(val) __write_32bit_c0_register($25, 6, val)
1da177e4 1533#define read_c0_perfcntr3() __read_32bit_c0_register($25, 7)
70342287 1534#define write_c0_perfcntr3(val) __write_32bit_c0_register($25, 7, val)
4d36f59d
DD
1535#define read_c0_perfcntr3_64() __read_64bit_c0_register($25, 7)
1536#define write_c0_perfcntr3_64(val) __write_64bit_c0_register($25, 7, val)
1da177e4 1537
1da177e4
LT
1538#define read_c0_ecc() __read_32bit_c0_register($26, 0)
1539#define write_c0_ecc(val) __write_32bit_c0_register($26, 0, val)
1540
1541#define read_c0_derraddr0() __read_ulong_c0_register($26, 1)
70342287 1542#define write_c0_derraddr0(val) __write_ulong_c0_register($26, 1, val)
1da177e4
LT
1543
1544#define read_c0_cacheerr() __read_32bit_c0_register($27, 0)
1545
1546#define read_c0_derraddr1() __read_ulong_c0_register($27, 1)
70342287 1547#define write_c0_derraddr1(val) __write_ulong_c0_register($27, 1, val)
1da177e4
LT
1548
1549#define read_c0_taglo() __read_32bit_c0_register($28, 0)
1550#define write_c0_taglo(val) __write_32bit_c0_register($28, 0, val)
1551
41c594ab
RB
1552#define read_c0_dtaglo() __read_32bit_c0_register($28, 2)
1553#define write_c0_dtaglo(val) __write_32bit_c0_register($28, 2, val)
1554
af231172
KC
1555#define read_c0_ddatalo() __read_32bit_c0_register($28, 3)
1556#define write_c0_ddatalo(val) __write_32bit_c0_register($28, 3, val)
1557
1558#define read_c0_staglo() __read_32bit_c0_register($28, 4)
1559#define write_c0_staglo(val) __write_32bit_c0_register($28, 4, val)
1560
1da177e4
LT
1561#define read_c0_taghi() __read_32bit_c0_register($29, 0)
1562#define write_c0_taghi(val) __write_32bit_c0_register($29, 0, val)
1563
1564#define read_c0_errorepc() __read_ulong_c0_register($30, 0)
1565#define write_c0_errorepc(val) __write_ulong_c0_register($30, 0, val)
1566
7a0fc58c 1567/* MIPSR2 */
21a151d8 1568#define read_c0_hwrena() __read_32bit_c0_register($7, 0)
7a0fc58c
RB
1569#define write_c0_hwrena(val) __write_32bit_c0_register($7, 0, val)
1570
1571#define read_c0_intctl() __read_32bit_c0_register($12, 1)
1572#define write_c0_intctl(val) __write_32bit_c0_register($12, 1, val)
1573
1574#define read_c0_srsctl() __read_32bit_c0_register($12, 2)
1575#define write_c0_srsctl(val) __write_32bit_c0_register($12, 2, val)
1576
1577#define read_c0_srsmap() __read_32bit_c0_register($12, 3)
1578#define write_c0_srsmap(val) __write_32bit_c0_register($12, 3, val)
1579
21a151d8 1580#define read_c0_ebase() __read_32bit_c0_register($15, 1)
7a0fc58c
RB
1581#define write_c0_ebase(val) __write_32bit_c0_register($15, 1, val)
1582
37fb60f8
JH
1583#define read_c0_ebase_64() __read_64bit_c0_register($15, 1)
1584#define write_c0_ebase_64(val) __write_64bit_c0_register($15, 1, val)
1585
9b3274bd
JH
1586#define read_c0_cdmmbase() __read_ulong_c0_register($15, 2)
1587#define write_c0_cdmmbase(val) __write_ulong_c0_register($15, 2, val)
1588
4a0156fb
SH
1589/* MIPSR3 */
1590#define read_c0_segctl0() __read_32bit_c0_register($5, 2)
1591#define write_c0_segctl0(val) __write_32bit_c0_register($5, 2, val)
1592
1593#define read_c0_segctl1() __read_32bit_c0_register($5, 3)
1594#define write_c0_segctl1(val) __write_32bit_c0_register($5, 3, val)
1595
1596#define read_c0_segctl2() __read_32bit_c0_register($5, 4)
1597#define write_c0_segctl2(val) __write_32bit_c0_register($5, 4, val)
ed918c2d 1598
87d08bc9
MC
1599/* Hardware Page Table Walker */
1600#define read_c0_pwbase() __read_ulong_c0_register($5, 5)
1601#define write_c0_pwbase(val) __write_ulong_c0_register($5, 5, val)
1602
1603#define read_c0_pwfield() __read_ulong_c0_register($5, 6)
1604#define write_c0_pwfield(val) __write_ulong_c0_register($5, 6, val)
1605
1606#define read_c0_pwsize() __read_ulong_c0_register($5, 7)
1607#define write_c0_pwsize(val) __write_ulong_c0_register($5, 7, val)
1608
1609#define read_c0_pwctl() __read_32bit_c0_register($6, 6)
1610#define write_c0_pwctl(val) __write_32bit_c0_register($6, 6, val)
1611
380cd582
HC
1612#define read_c0_pgd() __read_64bit_c0_register($9, 7)
1613#define write_c0_pgd(val) __write_64bit_c0_register($9, 7, val)
1614
1615#define read_c0_kpgd() __read_64bit_c0_register($31, 7)
1616#define write_c0_kpgd(val) __write_64bit_c0_register($31, 7, val)
1617
ed918c2d
DD
1618/* Cavium OCTEON (cnMIPS) */
1619#define read_c0_cvmcount() __read_ulong_c0_register($9, 6)
1620#define write_c0_cvmcount(val) __write_ulong_c0_register($9, 6, val)
1621
1622#define read_c0_cvmctl() __read_64bit_c0_register($9, 7)
1623#define write_c0_cvmctl(val) __write_64bit_c0_register($9, 7, val)
1624
1625#define read_c0_cvmmemctl() __read_64bit_c0_register($11, 7)
70342287 1626#define write_c0_cvmmemctl(val) __write_64bit_c0_register($11, 7, val)
ed918c2d 1627/*
70342287 1628 * The cacheerr registers are not standardized. On OCTEON, they are
ed918c2d
DD
1629 * 64 bits wide.
1630 */
1631#define read_octeon_c0_icacheerr() __read_64bit_c0_register($27, 0)
1632#define write_octeon_c0_icacheerr(val) __write_64bit_c0_register($27, 0, val)
1633
1634#define read_octeon_c0_dcacheerr() __read_64bit_c0_register($27, 1)
1635#define write_octeon_c0_dcacheerr(val) __write_64bit_c0_register($27, 1, val)
1636
af231172
KC
1637/* BMIPS3300 */
1638#define read_c0_brcm_config_0() __read_32bit_c0_register($22, 0)
1639#define write_c0_brcm_config_0(val) __write_32bit_c0_register($22, 0, val)
1640
1641#define read_c0_brcm_bus_pll() __read_32bit_c0_register($22, 4)
1642#define write_c0_brcm_bus_pll(val) __write_32bit_c0_register($22, 4, val)
1643
1644#define read_c0_brcm_reset() __read_32bit_c0_register($22, 5)
1645#define write_c0_brcm_reset(val) __write_32bit_c0_register($22, 5, val)
1646
020232f1 1647/* BMIPS43xx */
af231172
KC
1648#define read_c0_brcm_cmt_intr() __read_32bit_c0_register($22, 1)
1649#define write_c0_brcm_cmt_intr(val) __write_32bit_c0_register($22, 1, val)
1650
1651#define read_c0_brcm_cmt_ctrl() __read_32bit_c0_register($22, 2)
1652#define write_c0_brcm_cmt_ctrl(val) __write_32bit_c0_register($22, 2, val)
1653
1654#define read_c0_brcm_cmt_local() __read_32bit_c0_register($22, 3)
1655#define write_c0_brcm_cmt_local(val) __write_32bit_c0_register($22, 3, val)
1656
1657#define read_c0_brcm_config_1() __read_32bit_c0_register($22, 5)
1658#define write_c0_brcm_config_1(val) __write_32bit_c0_register($22, 5, val)
1659
1660#define read_c0_brcm_cbr() __read_32bit_c0_register($22, 6)
1661#define write_c0_brcm_cbr(val) __write_32bit_c0_register($22, 6, val)
1662
1663/* BMIPS5000 */
1664#define read_c0_brcm_config() __read_32bit_c0_register($22, 0)
1665#define write_c0_brcm_config(val) __write_32bit_c0_register($22, 0, val)
1666
1667#define read_c0_brcm_mode() __read_32bit_c0_register($22, 1)
1668#define write_c0_brcm_mode(val) __write_32bit_c0_register($22, 1, val)
1669
1670#define read_c0_brcm_action() __read_32bit_c0_register($22, 2)
1671#define write_c0_brcm_action(val) __write_32bit_c0_register($22, 2, val)
1672
1673#define read_c0_brcm_edsp() __read_32bit_c0_register($22, 3)
1674#define write_c0_brcm_edsp(val) __write_32bit_c0_register($22, 3, val)
1675
1676#define read_c0_brcm_bootvec() __read_32bit_c0_register($22, 4)
1677#define write_c0_brcm_bootvec(val) __write_32bit_c0_register($22, 4, val)
1678
1679#define read_c0_brcm_sleepcount() __read_32bit_c0_register($22, 7)
1680#define write_c0_brcm_sleepcount(val) __write_32bit_c0_register($22, 7, val)
1681
7eb91118
JH
1682/*
1683 * Macros to access the guest system control coprocessor
1684 */
1685
bad50d79
JH
1686#ifdef TOOLCHAIN_SUPPORTS_VIRT
1687
7eb91118
JH
1688#define __read_32bit_gc0_register(source, sel) \
1689({ int __res; \
1690 __asm__ __volatile__( \
1691 ".set\tpush\n\t" \
1692 ".set\tmips32r2\n\t" \
1693 ".set\tvirt\n\t" \
bad50d79 1694 "mfgc0\t%0, $%1, %2\n\t" \
7eb91118 1695 ".set\tpop" \
bad50d79
JH
1696 : "=r" (__res) \
1697 : "i" (source), "i" (sel)); \
7eb91118
JH
1698 __res; \
1699})
1700
1701#define __read_64bit_gc0_register(source, sel) \
1702({ unsigned long long __res; \
1703 __asm__ __volatile__( \
1704 ".set\tpush\n\t" \
1705 ".set\tmips64r2\n\t" \
1706 ".set\tvirt\n\t" \
bad50d79 1707 "dmfgc0\t%0, $%1, %2\n\t" \
7eb91118 1708 ".set\tpop" \
bad50d79
JH
1709 : "=r" (__res) \
1710 : "i" (source), "i" (sel)); \
7eb91118
JH
1711 __res; \
1712})
1713
1714#define __write_32bit_gc0_register(register, sel, value) \
1715do { \
1716 __asm__ __volatile__( \
1717 ".set\tpush\n\t" \
1718 ".set\tmips32r2\n\t" \
1719 ".set\tvirt\n\t" \
bad50d79 1720 "mtgc0\t%z0, $%1, %2\n\t" \
7eb91118 1721 ".set\tpop" \
bad50d79
JH
1722 : : "Jr" ((unsigned int)(value)), \
1723 "i" (register), "i" (sel)); \
7eb91118
JH
1724} while (0)
1725
1726#define __write_64bit_gc0_register(register, sel, value) \
1727do { \
1728 __asm__ __volatile__( \
1729 ".set\tpush\n\t" \
1730 ".set\tmips64r2\n\t" \
1731 ".set\tvirt\n\t" \
bad50d79
JH
1732 "dmtgc0\t%z0, $%1, %2\n\t" \
1733 ".set\tpop" \
1734 : : "Jr" (value), \
1735 "i" (register), "i" (sel)); \
1736} while (0)
1737
1738#else /* TOOLCHAIN_SUPPORTS_VIRT */
1739
1740#define __read_32bit_gc0_register(source, sel) \
1741({ int __res; \
1742 __asm__ __volatile__( \
1743 ".set\tpush\n\t" \
1744 ".set\tnoat\n\t" \
1745 "# mfgc0\t$1, $%1, %2\n\t" \
1746 ".word\t(0x40610000 | %1 << 11 | %2)\n\t" \
1747 "move\t%0, $1\n\t" \
1748 ".set\tpop" \
1749 : "=r" (__res) \
1750 : "i" (source), "i" (sel)); \
1751 __res; \
1752})
1753
1754#define __read_64bit_gc0_register(source, sel) \
1755({ unsigned long long __res; \
1756 __asm__ __volatile__( \
1757 ".set\tpush\n\t" \
1758 ".set\tnoat\n\t" \
1759 "# dmfgc0\t$1, $%1, %2\n\t" \
1760 ".word\t(0x40610100 | %1 << 11 | %2)\n\t" \
1761 "move\t%0, $1\n\t" \
1762 ".set\tpop" \
1763 : "=r" (__res) \
1764 : "i" (source), "i" (sel)); \
1765 __res; \
1766})
1767
1768#define __write_32bit_gc0_register(register, sel, value) \
1769do { \
1770 __asm__ __volatile__( \
1771 ".set\tpush\n\t" \
1772 ".set\tnoat\n\t" \
1773 "move\t$1, %0\n\t" \
1774 "# mtgc0\t$1, $%1, %2\n\t" \
1775 ".word\t(0x40610200 | %1 << 11 | %2)\n\t" \
7eb91118 1776 ".set\tpop" \
bad50d79
JH
1777 : : "Jr" ((unsigned int)(value)), \
1778 "i" (register), "i" (sel)); \
7eb91118
JH
1779} while (0)
1780
bad50d79
JH
1781#define __write_64bit_gc0_register(register, sel, value) \
1782do { \
1783 __asm__ __volatile__( \
1784 ".set\tpush\n\t" \
1785 ".set\tnoat\n\t" \
1786 "move\t$1, %0\n\t" \
1787 "# dmtgc0\t$1, $%1, %2\n\t" \
1788 ".word\t(0x40610300 | %1 << 11 | %2)\n\t" \
1789 ".set\tpop" \
1790 : : "Jr" (value), \
1791 "i" (register), "i" (sel)); \
1792} while (0)
1793
1794#endif /* !TOOLCHAIN_SUPPORTS_VIRT */
1795
7eb91118
JH
1796#define __read_ulong_gc0_register(reg, sel) \
1797 ((sizeof(unsigned long) == 4) ? \
1798 (unsigned long) __read_32bit_gc0_register(reg, sel) : \
1799 (unsigned long) __read_64bit_gc0_register(reg, sel))
1800
1801#define __write_ulong_gc0_register(reg, sel, val) \
1802do { \
1803 if (sizeof(unsigned long) == 4) \
1804 __write_32bit_gc0_register(reg, sel, val); \
1805 else \
1806 __write_64bit_gc0_register(reg, sel, val); \
1807} while (0)
1808
bad50d79
JH
1809#define read_gc0_index() __read_32bit_gc0_register(0, 0)
1810#define write_gc0_index(val) __write_32bit_gc0_register(0, 0, val)
7eb91118 1811
bad50d79
JH
1812#define read_gc0_entrylo0() __read_ulong_gc0_register(2, 0)
1813#define write_gc0_entrylo0(val) __write_ulong_gc0_register(2, 0, val)
7eb91118 1814
bad50d79
JH
1815#define read_gc0_entrylo1() __read_ulong_gc0_register(3, 0)
1816#define write_gc0_entrylo1(val) __write_ulong_gc0_register(3, 0, val)
7eb91118 1817
bad50d79
JH
1818#define read_gc0_context() __read_ulong_gc0_register(4, 0)
1819#define write_gc0_context(val) __write_ulong_gc0_register(4, 0, val)
7eb91118 1820
bad50d79
JH
1821#define read_gc0_contextconfig() __read_32bit_gc0_register(4, 1)
1822#define write_gc0_contextconfig(val) __write_32bit_gc0_register(4, 1, val)
7eb91118 1823
bad50d79
JH
1824#define read_gc0_userlocal() __read_ulong_gc0_register(4, 2)
1825#define write_gc0_userlocal(val) __write_ulong_gc0_register(4, 2, val)
7eb91118 1826
bad50d79
JH
1827#define read_gc0_xcontextconfig() __read_ulong_gc0_register(4, 3)
1828#define write_gc0_xcontextconfig(val) __write_ulong_gc0_register(4, 3, val)
7eb91118 1829
bad50d79
JH
1830#define read_gc0_pagemask() __read_32bit_gc0_register(5, 0)
1831#define write_gc0_pagemask(val) __write_32bit_gc0_register(5, 0, val)
7eb91118 1832
bad50d79
JH
1833#define read_gc0_pagegrain() __read_32bit_gc0_register(5, 1)
1834#define write_gc0_pagegrain(val) __write_32bit_gc0_register(5, 1, val)
7eb91118 1835
bad50d79
JH
1836#define read_gc0_segctl0() __read_ulong_gc0_register(5, 2)
1837#define write_gc0_segctl0(val) __write_ulong_gc0_register(5, 2, val)
7eb91118 1838
bad50d79
JH
1839#define read_gc0_segctl1() __read_ulong_gc0_register(5, 3)
1840#define write_gc0_segctl1(val) __write_ulong_gc0_register(5, 3, val)
7eb91118 1841
bad50d79
JH
1842#define read_gc0_segctl2() __read_ulong_gc0_register(5, 4)
1843#define write_gc0_segctl2(val) __write_ulong_gc0_register(5, 4, val)
1844
1845#define read_gc0_pwbase() __read_ulong_gc0_register(5, 5)
1846#define write_gc0_pwbase(val) __write_ulong_gc0_register(5, 5, val)
1847
1848#define read_gc0_pwfield() __read_ulong_gc0_register(5, 6)
1849#define write_gc0_pwfield(val) __write_ulong_gc0_register(5, 6, val)
1850
1851#define read_gc0_pwsize() __read_ulong_gc0_register(5, 7)
1852#define write_gc0_pwsize(val) __write_ulong_gc0_register(5, 7, val)
1853
1854#define read_gc0_wired() __read_32bit_gc0_register(6, 0)
1855#define write_gc0_wired(val) __write_32bit_gc0_register(6, 0, val)
1856
1857#define read_gc0_pwctl() __read_32bit_gc0_register(6, 6)
1858#define write_gc0_pwctl(val) __write_32bit_gc0_register(6, 6, val)
1859
1860#define read_gc0_hwrena() __read_32bit_gc0_register(7, 0)
1861#define write_gc0_hwrena(val) __write_32bit_gc0_register(7, 0, val)
1862
1863#define read_gc0_badvaddr() __read_ulong_gc0_register(8, 0)
1864#define write_gc0_badvaddr(val) __write_ulong_gc0_register(8, 0, val)
1865
1866#define read_gc0_badinstr() __read_32bit_gc0_register(8, 1)
1867#define write_gc0_badinstr(val) __write_32bit_gc0_register(8, 1, val)
1868
1869#define read_gc0_badinstrp() __read_32bit_gc0_register(8, 2)
1870#define write_gc0_badinstrp(val) __write_32bit_gc0_register(8, 2, val)
1871
1872#define read_gc0_count() __read_32bit_gc0_register(9, 0)
1873
1874#define read_gc0_entryhi() __read_ulong_gc0_register(10, 0)
1875#define write_gc0_entryhi(val) __write_ulong_gc0_register(10, 0, val)
1876
1877#define read_gc0_compare() __read_32bit_gc0_register(11, 0)
1878#define write_gc0_compare(val) __write_32bit_gc0_register(11, 0, val)
1879
1880#define read_gc0_status() __read_32bit_gc0_register(12, 0)
1881#define write_gc0_status(val) __write_32bit_gc0_register(12, 0, val)
1882
1883#define read_gc0_intctl() __read_32bit_gc0_register(12, 1)
1884#define write_gc0_intctl(val) __write_32bit_gc0_register(12, 1, val)
1885
1886#define read_gc0_cause() __read_32bit_gc0_register(13, 0)
1887#define write_gc0_cause(val) __write_32bit_gc0_register(13, 0, val)
1888
1889#define read_gc0_epc() __read_ulong_gc0_register(14, 0)
1890#define write_gc0_epc(val) __write_ulong_gc0_register(14, 0, val)
1891
1892#define read_gc0_ebase() __read_32bit_gc0_register(15, 1)
1893#define write_gc0_ebase(val) __write_32bit_gc0_register(15, 1, val)
1894
1895#define read_gc0_ebase_64() __read_64bit_gc0_register(15, 1)
1896#define write_gc0_ebase_64(val) __write_64bit_gc0_register(15, 1, val)
1897
1898#define read_gc0_config() __read_32bit_gc0_register(16, 0)
1899#define read_gc0_config1() __read_32bit_gc0_register(16, 1)
1900#define read_gc0_config2() __read_32bit_gc0_register(16, 2)
1901#define read_gc0_config3() __read_32bit_gc0_register(16, 3)
1902#define read_gc0_config4() __read_32bit_gc0_register(16, 4)
1903#define read_gc0_config5() __read_32bit_gc0_register(16, 5)
1904#define read_gc0_config6() __read_32bit_gc0_register(16, 6)
1905#define read_gc0_config7() __read_32bit_gc0_register(16, 7)
1906#define write_gc0_config(val) __write_32bit_gc0_register(16, 0, val)
1907#define write_gc0_config1(val) __write_32bit_gc0_register(16, 1, val)
1908#define write_gc0_config2(val) __write_32bit_gc0_register(16, 2, val)
1909#define write_gc0_config3(val) __write_32bit_gc0_register(16, 3, val)
1910#define write_gc0_config4(val) __write_32bit_gc0_register(16, 4, val)
1911#define write_gc0_config5(val) __write_32bit_gc0_register(16, 5, val)
1912#define write_gc0_config6(val) __write_32bit_gc0_register(16, 6, val)
1913#define write_gc0_config7(val) __write_32bit_gc0_register(16, 7, val)
1914
1915#define read_gc0_watchlo0() __read_ulong_gc0_register(18, 0)
1916#define read_gc0_watchlo1() __read_ulong_gc0_register(18, 1)
1917#define read_gc0_watchlo2() __read_ulong_gc0_register(18, 2)
1918#define read_gc0_watchlo3() __read_ulong_gc0_register(18, 3)
1919#define read_gc0_watchlo4() __read_ulong_gc0_register(18, 4)
1920#define read_gc0_watchlo5() __read_ulong_gc0_register(18, 5)
1921#define read_gc0_watchlo6() __read_ulong_gc0_register(18, 6)
1922#define read_gc0_watchlo7() __read_ulong_gc0_register(18, 7)
1923#define write_gc0_watchlo0(val) __write_ulong_gc0_register(18, 0, val)
1924#define write_gc0_watchlo1(val) __write_ulong_gc0_register(18, 1, val)
1925#define write_gc0_watchlo2(val) __write_ulong_gc0_register(18, 2, val)
1926#define write_gc0_watchlo3(val) __write_ulong_gc0_register(18, 3, val)
1927#define write_gc0_watchlo4(val) __write_ulong_gc0_register(18, 4, val)
1928#define write_gc0_watchlo5(val) __write_ulong_gc0_register(18, 5, val)
1929#define write_gc0_watchlo6(val) __write_ulong_gc0_register(18, 6, val)
1930#define write_gc0_watchlo7(val) __write_ulong_gc0_register(18, 7, val)
1931
1932#define read_gc0_watchhi0() __read_32bit_gc0_register(19, 0)
1933#define read_gc0_watchhi1() __read_32bit_gc0_register(19, 1)
1934#define read_gc0_watchhi2() __read_32bit_gc0_register(19, 2)
1935#define read_gc0_watchhi3() __read_32bit_gc0_register(19, 3)
1936#define read_gc0_watchhi4() __read_32bit_gc0_register(19, 4)
1937#define read_gc0_watchhi5() __read_32bit_gc0_register(19, 5)
1938#define read_gc0_watchhi6() __read_32bit_gc0_register(19, 6)
1939#define read_gc0_watchhi7() __read_32bit_gc0_register(19, 7)
1940#define write_gc0_watchhi0(val) __write_32bit_gc0_register(19, 0, val)
1941#define write_gc0_watchhi1(val) __write_32bit_gc0_register(19, 1, val)
1942#define write_gc0_watchhi2(val) __write_32bit_gc0_register(19, 2, val)
1943#define write_gc0_watchhi3(val) __write_32bit_gc0_register(19, 3, val)
1944#define write_gc0_watchhi4(val) __write_32bit_gc0_register(19, 4, val)
1945#define write_gc0_watchhi5(val) __write_32bit_gc0_register(19, 5, val)
1946#define write_gc0_watchhi6(val) __write_32bit_gc0_register(19, 6, val)
1947#define write_gc0_watchhi7(val) __write_32bit_gc0_register(19, 7, val)
1948
1949#define read_gc0_xcontext() __read_ulong_gc0_register(20, 0)
1950#define write_gc0_xcontext(val) __write_ulong_gc0_register(20, 0, val)
1951
1952#define read_gc0_perfctrl0() __read_32bit_gc0_register(25, 0)
1953#define write_gc0_perfctrl0(val) __write_32bit_gc0_register(25, 0, val)
1954#define read_gc0_perfcntr0() __read_32bit_gc0_register(25, 1)
1955#define write_gc0_perfcntr0(val) __write_32bit_gc0_register(25, 1, val)
1956#define read_gc0_perfcntr0_64() __read_64bit_gc0_register(25, 1)
1957#define write_gc0_perfcntr0_64(val) __write_64bit_gc0_register(25, 1, val)
1958#define read_gc0_perfctrl1() __read_32bit_gc0_register(25, 2)
1959#define write_gc0_perfctrl1(val) __write_32bit_gc0_register(25, 2, val)
1960#define read_gc0_perfcntr1() __read_32bit_gc0_register(25, 3)
1961#define write_gc0_perfcntr1(val) __write_32bit_gc0_register(25, 3, val)
1962#define read_gc0_perfcntr1_64() __read_64bit_gc0_register(25, 3)
1963#define write_gc0_perfcntr1_64(val) __write_64bit_gc0_register(25, 3, val)
1964#define read_gc0_perfctrl2() __read_32bit_gc0_register(25, 4)
1965#define write_gc0_perfctrl2(val) __write_32bit_gc0_register(25, 4, val)
1966#define read_gc0_perfcntr2() __read_32bit_gc0_register(25, 5)
1967#define write_gc0_perfcntr2(val) __write_32bit_gc0_register(25, 5, val)
1968#define read_gc0_perfcntr2_64() __read_64bit_gc0_register(25, 5)
1969#define write_gc0_perfcntr2_64(val) __write_64bit_gc0_register(25, 5, val)
1970#define read_gc0_perfctrl3() __read_32bit_gc0_register(25, 6)
1971#define write_gc0_perfctrl3(val) __write_32bit_gc0_register(25, 6, val)
1972#define read_gc0_perfcntr3() __read_32bit_gc0_register(25, 7)
1973#define write_gc0_perfcntr3(val) __write_32bit_gc0_register(25, 7, val)
1974#define read_gc0_perfcntr3_64() __read_64bit_gc0_register(25, 7)
1975#define write_gc0_perfcntr3_64(val) __write_64bit_gc0_register(25, 7, val)
1976
1977#define read_gc0_errorepc() __read_ulong_gc0_register(30, 0)
1978#define write_gc0_errorepc(val) __write_ulong_gc0_register(30, 0, val)
1979
1980#define read_gc0_kscratch1() __read_ulong_gc0_register(31, 2)
1981#define read_gc0_kscratch2() __read_ulong_gc0_register(31, 3)
1982#define read_gc0_kscratch3() __read_ulong_gc0_register(31, 4)
1983#define read_gc0_kscratch4() __read_ulong_gc0_register(31, 5)
1984#define read_gc0_kscratch5() __read_ulong_gc0_register(31, 6)
1985#define read_gc0_kscratch6() __read_ulong_gc0_register(31, 7)
1986#define write_gc0_kscratch1(val) __write_ulong_gc0_register(31, 2, val)
1987#define write_gc0_kscratch2(val) __write_ulong_gc0_register(31, 3, val)
1988#define write_gc0_kscratch3(val) __write_ulong_gc0_register(31, 4, val)
1989#define write_gc0_kscratch4(val) __write_ulong_gc0_register(31, 5, val)
1990#define write_gc0_kscratch5(val) __write_ulong_gc0_register(31, 6, val)
1991#define write_gc0_kscratch6(val) __write_ulong_gc0_register(31, 7, val)
7eb91118 1992
1da177e4
LT
1993/*
1994 * Macros to access the floating point coprocessor control registers
1995 */
842dfc11 1996#define _read_32bit_cp1_register(source, gas_hardfloat) \
b9688310 1997({ \
c46a2f01 1998 unsigned int __res; \
b9688310
SH
1999 \
2000 __asm__ __volatile__( \
2001 " .set push \n" \
2002 " .set reorder \n" \
2003 " # gas fails to assemble cfc1 for some archs, \n" \
2004 " # like Octeon. \n" \
2005 " .set mips1 \n" \
842dfc11 2006 " "STR(gas_hardfloat)" \n" \
b9688310
SH
2007 " cfc1 %0,"STR(source)" \n" \
2008 " .set pop \n" \
2009 : "=r" (__res)); \
2010 __res; \
2011})
1da177e4 2012
5e32033e
JH
2013#define _write_32bit_cp1_register(dest, val, gas_hardfloat) \
2014do { \
2015 __asm__ __volatile__( \
2016 " .set push \n" \
2017 " .set reorder \n" \
2018 " "STR(gas_hardfloat)" \n" \
2019 " ctc1 %0,"STR(dest)" \n" \
2020 " .set pop \n" \
2021 : : "r" (val)); \
2022} while (0)
2023
842dfc11
ML
2024#ifdef GAS_HAS_SET_HARDFLOAT
2025#define read_32bit_cp1_register(source) \
2026 _read_32bit_cp1_register(source, .set hardfloat)
5e32033e
JH
2027#define write_32bit_cp1_register(dest, val) \
2028 _write_32bit_cp1_register(dest, val, .set hardfloat)
842dfc11
ML
2029#else
2030#define read_32bit_cp1_register(source) \
2031 _read_32bit_cp1_register(source, )
5e32033e
JH
2032#define write_32bit_cp1_register(dest, val) \
2033 _write_32bit_cp1_register(dest, val, )
842dfc11
ML
2034#endif
2035
32a7ede6 2036#ifdef HAVE_AS_DSP
e50c0a8f
RB
2037#define rddsp(mask) \
2038({ \
32a7ede6 2039 unsigned int __dspctl; \
e50c0a8f
RB
2040 \
2041 __asm__ __volatile__( \
63c2b681
FF
2042 " .set push \n" \
2043 " .set dsp \n" \
32a7ede6 2044 " rddsp %0, %x1 \n" \
63c2b681 2045 " .set pop \n" \
32a7ede6 2046 : "=r" (__dspctl) \
e50c0a8f 2047 : "i" (mask)); \
32a7ede6 2048 __dspctl; \
e50c0a8f
RB
2049})
2050
2051#define wrdsp(val, mask) \
2052do { \
e50c0a8f 2053 __asm__ __volatile__( \
63c2b681
FF
2054 " .set push \n" \
2055 " .set dsp \n" \
32a7ede6 2056 " wrdsp %0, %x1 \n" \
63c2b681 2057 " .set pop \n" \
70342287 2058 : \
e50c0a8f 2059 : "r" (val), "i" (mask)); \
e50c0a8f
RB
2060} while (0)
2061
63c2b681
FF
2062#define mflo0() \
2063({ \
2064 long mflo0; \
2065 __asm__( \
2066 " .set push \n" \
2067 " .set dsp \n" \
2068 " mflo %0, $ac0 \n" \
2069 " .set pop \n" \
2070 : "=r" (mflo0)); \
2071 mflo0; \
2072})
2073
2074#define mflo1() \
2075({ \
2076 long mflo1; \
2077 __asm__( \
2078 " .set push \n" \
2079 " .set dsp \n" \
2080 " mflo %0, $ac1 \n" \
2081 " .set pop \n" \
2082 : "=r" (mflo1)); \
2083 mflo1; \
2084})
2085
2086#define mflo2() \
2087({ \
2088 long mflo2; \
2089 __asm__( \
2090 " .set push \n" \
2091 " .set dsp \n" \
2092 " mflo %0, $ac2 \n" \
2093 " .set pop \n" \
2094 : "=r" (mflo2)); \
2095 mflo2; \
2096})
2097
2098#define mflo3() \
2099({ \
2100 long mflo3; \
2101 __asm__( \
2102 " .set push \n" \
2103 " .set dsp \n" \
2104 " mflo %0, $ac3 \n" \
2105 " .set pop \n" \
2106 : "=r" (mflo3)); \
2107 mflo3; \
2108})
2109
2110#define mfhi0() \
2111({ \
2112 long mfhi0; \
2113 __asm__( \
2114 " .set push \n" \
2115 " .set dsp \n" \
2116 " mfhi %0, $ac0 \n" \
2117 " .set pop \n" \
2118 : "=r" (mfhi0)); \
2119 mfhi0; \
2120})
2121
2122#define mfhi1() \
2123({ \
2124 long mfhi1; \
2125 __asm__( \
2126 " .set push \n" \
2127 " .set dsp \n" \
2128 " mfhi %0, $ac1 \n" \
2129 " .set pop \n" \
2130 : "=r" (mfhi1)); \
2131 mfhi1; \
2132})
2133
2134#define mfhi2() \
2135({ \
2136 long mfhi2; \
2137 __asm__( \
2138 " .set push \n" \
2139 " .set dsp \n" \
2140 " mfhi %0, $ac2 \n" \
2141 " .set pop \n" \
2142 : "=r" (mfhi2)); \
2143 mfhi2; \
2144})
2145
2146#define mfhi3() \
2147({ \
2148 long mfhi3; \
2149 __asm__( \
2150 " .set push \n" \
2151 " .set dsp \n" \
2152 " mfhi %0, $ac3 \n" \
2153 " .set pop \n" \
2154 : "=r" (mfhi3)); \
2155 mfhi3; \
2156})
2157
2158
2159#define mtlo0(x) \
2160({ \
2161 __asm__( \
2162 " .set push \n" \
2163 " .set dsp \n" \
2164 " mtlo %0, $ac0 \n" \
2165 " .set pop \n" \
2166 : \
2167 : "r" (x)); \
2168})
2169
2170#define mtlo1(x) \
2171({ \
2172 __asm__( \
2173 " .set push \n" \
2174 " .set dsp \n" \
2175 " mtlo %0, $ac1 \n" \
2176 " .set pop \n" \
2177 : \
2178 : "r" (x)); \
2179})
2180
2181#define mtlo2(x) \
2182({ \
2183 __asm__( \
2184 " .set push \n" \
2185 " .set dsp \n" \
2186 " mtlo %0, $ac2 \n" \
2187 " .set pop \n" \
2188 : \
2189 : "r" (x)); \
2190})
2191
2192#define mtlo3(x) \
2193({ \
2194 __asm__( \
2195 " .set push \n" \
2196 " .set dsp \n" \
2197 " mtlo %0, $ac3 \n" \
2198 " .set pop \n" \
2199 : \
2200 : "r" (x)); \
2201})
2202
2203#define mthi0(x) \
2204({ \
2205 __asm__( \
2206 " .set push \n" \
2207 " .set dsp \n" \
2208 " mthi %0, $ac0 \n" \
2209 " .set pop \n" \
2210 : \
2211 : "r" (x)); \
2212})
2213
2214#define mthi1(x) \
2215({ \
2216 __asm__( \
2217 " .set push \n" \
2218 " .set dsp \n" \
2219 " mthi %0, $ac1 \n" \
2220 " .set pop \n" \
2221 : \
2222 : "r" (x)); \
2223})
2224
2225#define mthi2(x) \
2226({ \
2227 __asm__( \
2228 " .set push \n" \
2229 " .set dsp \n" \
2230 " mthi %0, $ac2 \n" \
2231 " .set pop \n" \
2232 : \
2233 : "r" (x)); \
2234})
2235
2236#define mthi3(x) \
2237({ \
2238 __asm__( \
2239 " .set push \n" \
2240 " .set dsp \n" \
2241 " mthi %0, $ac3 \n" \
2242 " .set pop \n" \
2243 : \
2244 : "r" (x)); \
2245})
e50c0a8f
RB
2246
2247#else
2248
d0c1b478
SH
2249#ifdef CONFIG_CPU_MICROMIPS
2250#define rddsp(mask) \
e50c0a8f 2251({ \
d0c1b478 2252 unsigned int __res; \
e50c0a8f
RB
2253 \
2254 __asm__ __volatile__( \
e50c0a8f
RB
2255 " .set push \n" \
2256 " .set noat \n" \
d0c1b478
SH
2257 " # rddsp $1, %x1 \n" \
2258 " .hword ((0x0020067c | (%x1 << 14)) >> 16) \n" \
2259 " .hword ((0x0020067c | (%x1 << 14)) & 0xffff) \n" \
2260 " move %0, $1 \n" \
e50c0a8f 2261 " .set pop \n" \
d0c1b478
SH
2262 : "=r" (__res) \
2263 : "i" (mask)); \
2264 __res; \
2265})
e50c0a8f 2266
d0c1b478 2267#define wrdsp(val, mask) \
e50c0a8f
RB
2268do { \
2269 __asm__ __volatile__( \
2270 " .set push \n" \
2271 " .set noat \n" \
2272 " move $1, %0 \n" \
d0c1b478
SH
2273 " # wrdsp $1, %x1 \n" \
2274 " .hword ((0x0020167c | (%x1 << 14)) >> 16) \n" \
2275 " .hword ((0x0020167c | (%x1 << 14)) & 0xffff) \n" \
e50c0a8f
RB
2276 " .set pop \n" \
2277 : \
d0c1b478 2278 : "r" (val), "i" (mask)); \
e50c0a8f
RB
2279} while (0)
2280
d0c1b478
SH
2281#define _umips_dsp_mfxxx(ins) \
2282({ \
2283 unsigned long __treg; \
2284 \
e50c0a8f
RB
2285 __asm__ __volatile__( \
2286 " .set push \n" \
2287 " .set noat \n" \
d0c1b478
SH
2288 " .hword 0x0001 \n" \
2289 " .hword %x1 \n" \
2290 " move %0, $1 \n" \
e50c0a8f 2291 " .set pop \n" \
d0c1b478
SH
2292 : "=r" (__treg) \
2293 : "i" (ins)); \
2294 __treg; \
2295})
e50c0a8f 2296
d0c1b478 2297#define _umips_dsp_mtxxx(val, ins) \
e50c0a8f
RB
2298do { \
2299 __asm__ __volatile__( \
2300 " .set push \n" \
2301 " .set noat \n" \
2302 " move $1, %0 \n" \
d0c1b478
SH
2303 " .hword 0x0001 \n" \
2304 " .hword %x1 \n" \
e50c0a8f
RB
2305 " .set pop \n" \
2306 : \
d0c1b478 2307 : "r" (val), "i" (ins)); \
e50c0a8f
RB
2308} while (0)
2309
d0c1b478
SH
2310#define _umips_dsp_mflo(reg) _umips_dsp_mfxxx((reg << 14) | 0x107c)
2311#define _umips_dsp_mfhi(reg) _umips_dsp_mfxxx((reg << 14) | 0x007c)
2312
2313#define _umips_dsp_mtlo(val, reg) _umips_dsp_mtxxx(val, ((reg << 14) | 0x307c))
2314#define _umips_dsp_mthi(val, reg) _umips_dsp_mtxxx(val, ((reg << 14) | 0x207c))
2315
2316#define mflo0() _umips_dsp_mflo(0)
2317#define mflo1() _umips_dsp_mflo(1)
2318#define mflo2() _umips_dsp_mflo(2)
2319#define mflo3() _umips_dsp_mflo(3)
2320
2321#define mfhi0() _umips_dsp_mfhi(0)
2322#define mfhi1() _umips_dsp_mfhi(1)
2323#define mfhi2() _umips_dsp_mfhi(2)
2324#define mfhi3() _umips_dsp_mfhi(3)
2325
2326#define mtlo0(x) _umips_dsp_mtlo(x, 0)
2327#define mtlo1(x) _umips_dsp_mtlo(x, 1)
2328#define mtlo2(x) _umips_dsp_mtlo(x, 2)
2329#define mtlo3(x) _umips_dsp_mtlo(x, 3)
2330
2331#define mthi0(x) _umips_dsp_mthi(x, 0)
2332#define mthi1(x) _umips_dsp_mthi(x, 1)
2333#define mthi2(x) _umips_dsp_mthi(x, 2)
2334#define mthi3(x) _umips_dsp_mthi(x, 3)
2335
2336#else /* !CONFIG_CPU_MICROMIPS */
32a7ede6
SH
2337#define rddsp(mask) \
2338({ \
2339 unsigned int __res; \
2340 \
e50c0a8f 2341 __asm__ __volatile__( \
32a7ede6
SH
2342 " .set push \n" \
2343 " .set noat \n" \
2344 " # rddsp $1, %x1 \n" \
2345 " .word 0x7c000cb8 | (%x1 << 16) \n" \
2346 " move %0, $1 \n" \
2347 " .set pop \n" \
2348 : "=r" (__res) \
2349 : "i" (mask)); \
2350 __res; \
2351})
e50c0a8f 2352
32a7ede6 2353#define wrdsp(val, mask) \
e50c0a8f
RB
2354do { \
2355 __asm__ __volatile__( \
2356 " .set push \n" \
2357 " .set noat \n" \
2358 " move $1, %0 \n" \
32a7ede6
SH
2359 " # wrdsp $1, %x1 \n" \
2360 " .word 0x7c2004f8 | (%x1 << 11) \n" \
e50c0a8f 2361 " .set pop \n" \
32a7ede6
SH
2362 : \
2363 : "r" (val), "i" (mask)); \
e50c0a8f
RB
2364} while (0)
2365
4cb764b4 2366#define _dsp_mfxxx(ins) \
e50c0a8f
RB
2367({ \
2368 unsigned long __treg; \
2369 \
e50c0a8f
RB
2370 __asm__ __volatile__( \
2371 " .set push \n" \
2372 " .set noat \n" \
4cb764b4
SH
2373 " .word (0x00000810 | %1) \n" \
2374 " move %0, $1 \n" \
e50c0a8f 2375 " .set pop \n" \
4cb764b4
SH
2376 : "=r" (__treg) \
2377 : "i" (ins)); \
2378 __treg; \
2379})
e50c0a8f 2380
4cb764b4 2381#define _dsp_mtxxx(val, ins) \
e50c0a8f
RB
2382do { \
2383 __asm__ __volatile__( \
2384 " .set push \n" \
2385 " .set noat \n" \
2386 " move $1, %0 \n" \
4cb764b4 2387 " .word (0x00200011 | %1) \n" \
e50c0a8f
RB
2388 " .set pop \n" \
2389 : \
4cb764b4 2390 : "r" (val), "i" (ins)); \
e50c0a8f
RB
2391} while (0)
2392
4cb764b4
SH
2393#define _dsp_mflo(reg) _dsp_mfxxx((reg << 21) | 0x0002)
2394#define _dsp_mfhi(reg) _dsp_mfxxx((reg << 21) | 0x0000)
e50c0a8f 2395
4cb764b4
SH
2396#define _dsp_mtlo(val, reg) _dsp_mtxxx(val, ((reg << 11) | 0x0002))
2397#define _dsp_mthi(val, reg) _dsp_mtxxx(val, ((reg << 11) | 0x0000))
e50c0a8f 2398
4cb764b4
SH
2399#define mflo0() _dsp_mflo(0)
2400#define mflo1() _dsp_mflo(1)
2401#define mflo2() _dsp_mflo(2)
2402#define mflo3() _dsp_mflo(3)
e50c0a8f 2403
4cb764b4
SH
2404#define mfhi0() _dsp_mfhi(0)
2405#define mfhi1() _dsp_mfhi(1)
2406#define mfhi2() _dsp_mfhi(2)
2407#define mfhi3() _dsp_mfhi(3)
e50c0a8f 2408
4cb764b4
SH
2409#define mtlo0(x) _dsp_mtlo(x, 0)
2410#define mtlo1(x) _dsp_mtlo(x, 1)
2411#define mtlo2(x) _dsp_mtlo(x, 2)
2412#define mtlo3(x) _dsp_mtlo(x, 3)
e50c0a8f 2413
4cb764b4
SH
2414#define mthi0(x) _dsp_mthi(x, 0)
2415#define mthi1(x) _dsp_mthi(x, 1)
2416#define mthi2(x) _dsp_mthi(x, 2)
2417#define mthi3(x) _dsp_mthi(x, 3)
e50c0a8f 2418
d0c1b478 2419#endif /* CONFIG_CPU_MICROMIPS */
e50c0a8f
RB
2420#endif
2421
1da177e4
LT
2422/*
2423 * TLB operations.
2424 *
2425 * It is responsibility of the caller to take care of any TLB hazards.
2426 */
2427static inline void tlb_probe(void)
2428{
2429 __asm__ __volatile__(
2430 ".set noreorder\n\t"
2431 "tlbp\n\t"
2432 ".set reorder");
2433}
2434
2435static inline void tlb_read(void)
2436{
9267a30d
MSJ
2437#if MIPS34K_MISSED_ITLB_WAR
2438 int res = 0;
2439
2440 __asm__ __volatile__(
2441 " .set push \n"
2442 " .set noreorder \n"
2443 " .set noat \n"
2444 " .set mips32r2 \n"
2445 " .word 0x41610001 # dvpe $1 \n"
2446 " move %0, $1 \n"
2447 " ehb \n"
2448 " .set pop \n"
2449 : "=r" (res));
2450
2451 instruction_hazard();
2452#endif
2453
1da177e4
LT
2454 __asm__ __volatile__(
2455 ".set noreorder\n\t"
2456 "tlbr\n\t"
2457 ".set reorder");
9267a30d
MSJ
2458
2459#if MIPS34K_MISSED_ITLB_WAR
2460 if ((res & _ULCAST_(1)))
2461 __asm__ __volatile__(
2462 " .set push \n"
2463 " .set noreorder \n"
2464 " .set noat \n"
2465 " .set mips32r2 \n"
2466 " .word 0x41600021 # evpe \n"
2467 " ehb \n"
2468 " .set pop \n");
2469#endif
1da177e4
LT
2470}
2471
2472static inline void tlb_write_indexed(void)
2473{
2474 __asm__ __volatile__(
2475 ".set noreorder\n\t"
2476 "tlbwi\n\t"
2477 ".set reorder");
2478}
2479
2480static inline void tlb_write_random(void)
2481{
2482 __asm__ __volatile__(
2483 ".set noreorder\n\t"
2484 "tlbwr\n\t"
2485 ".set reorder");
2486}
2487
bad50d79
JH
2488#ifdef TOOLCHAIN_SUPPORTS_VIRT
2489
1da177e4 2490/*
7eb91118
JH
2491 * Guest TLB operations.
2492 *
2493 * It is responsibility of the caller to take care of any TLB hazards.
2494 */
2495static inline void guest_tlb_probe(void)
2496{
2497 __asm__ __volatile__(
2498 ".set push\n\t"
2499 ".set noreorder\n\t"
2500 ".set virt\n\t"
2501 "tlbgp\n\t"
2502 ".set pop");
2503}
2504
2505static inline void guest_tlb_read(void)
2506{
2507 __asm__ __volatile__(
2508 ".set push\n\t"
2509 ".set noreorder\n\t"
2510 ".set virt\n\t"
2511 "tlbgr\n\t"
2512 ".set pop");
2513}
2514
2515static inline void guest_tlb_write_indexed(void)
2516{
2517 __asm__ __volatile__(
2518 ".set push\n\t"
2519 ".set noreorder\n\t"
2520 ".set virt\n\t"
2521 "tlbgwi\n\t"
2522 ".set pop");
2523}
2524
2525static inline void guest_tlb_write_random(void)
2526{
2527 __asm__ __volatile__(
2528 ".set push\n\t"
2529 ".set noreorder\n\t"
2530 ".set virt\n\t"
2531 "tlbgwr\n\t"
2532 ".set pop");
2533}
2534
2535/*
2536 * Guest TLB Invalidate Flush
1da177e4 2537 */
7eb91118
JH
2538static inline void guest_tlbinvf(void)
2539{
2540 __asm__ __volatile__(
2541 ".set push\n\t"
2542 ".set noreorder\n\t"
2543 ".set virt\n\t"
2544 "tlbginvf\n\t"
2545 ".set pop");
2546}
2547
bad50d79
JH
2548#else /* TOOLCHAIN_SUPPORTS_VIRT */
2549
2550/*
2551 * Guest TLB operations.
2552 *
2553 * It is responsibility of the caller to take care of any TLB hazards.
2554 */
2555static inline void guest_tlb_probe(void)
2556{
2557 __asm__ __volatile__(
2558 "# tlbgp\n\t"
2559 ".word 0x42000010");
2560}
2561
2562static inline void guest_tlb_read(void)
2563{
2564 __asm__ __volatile__(
2565 "# tlbgr\n\t"
2566 ".word 0x42000009");
2567}
2568
2569static inline void guest_tlb_write_indexed(void)
2570{
2571 __asm__ __volatile__(
2572 "# tlbgwi\n\t"
2573 ".word 0x4200000a");
2574}
2575
2576static inline void guest_tlb_write_random(void)
2577{
2578 __asm__ __volatile__(
2579 "# tlbgwr\n\t"
2580 ".word 0x4200000e");
2581}
2582
2583/*
2584 * Guest TLB Invalidate Flush
2585 */
2586static inline void guest_tlbinvf(void)
2587{
2588 __asm__ __volatile__(
2589 "# tlbginvf\n\t"
2590 ".word 0x4200000c");
2591}
2592
2593#endif /* !TOOLCHAIN_SUPPORTS_VIRT */
2594
7eb91118
JH
2595/*
2596 * Manipulate bits in a register.
2597 */
2598#define __BUILD_SET_COMMON(name) \
1da177e4 2599static inline unsigned int \
7eb91118 2600set_##name(unsigned int set) \
1da177e4 2601{ \
89e18eb3 2602 unsigned int res, new; \
1da177e4 2603 \
7eb91118 2604 res = read_##name(); \
89e18eb3 2605 new = res | set; \
7eb91118 2606 write_##name(new); \
1da177e4
LT
2607 \
2608 return res; \
2609} \
2610 \
2611static inline unsigned int \
7eb91118 2612clear_##name(unsigned int clear) \
1da177e4 2613{ \
89e18eb3 2614 unsigned int res, new; \
1da177e4 2615 \
7eb91118 2616 res = read_##name(); \
89e18eb3 2617 new = res & ~clear; \
7eb91118 2618 write_##name(new); \
1da177e4
LT
2619 \
2620 return res; \
2621} \
2622 \
2623static inline unsigned int \
7eb91118 2624change_##name(unsigned int change, unsigned int val) \
1da177e4 2625{ \
89e18eb3 2626 unsigned int res, new; \
1da177e4 2627 \
7eb91118 2628 res = read_##name(); \
89e18eb3
RB
2629 new = res & ~change; \
2630 new |= (val & change); \
7eb91118 2631 write_##name(new); \
1da177e4
LT
2632 \
2633 return res; \
2634}
2635
7eb91118
JH
2636/*
2637 * Manipulate bits in a c0 register.
2638 */
2639#define __BUILD_SET_C0(name) __BUILD_SET_COMMON(c0_##name)
2640
1da177e4
LT
2641__BUILD_SET_C0(status)
2642__BUILD_SET_C0(cause)
2643__BUILD_SET_C0(config)
7f65afb9 2644__BUILD_SET_C0(config5)
1da177e4 2645__BUILD_SET_C0(intcontrol)
7a0fc58c
RB
2646__BUILD_SET_C0(intctl)
2647__BUILD_SET_C0(srsmap)
a5770df0 2648__BUILD_SET_C0(pagegrain)
f913e9ea
JH
2649__BUILD_SET_C0(guestctl0)
2650__BUILD_SET_C0(guestctl0ext)
2651__BUILD_SET_C0(guestctl1)
2652__BUILD_SET_C0(guestctl2)
2653__BUILD_SET_C0(guestctl3)
020232f1
KC
2654__BUILD_SET_C0(brcm_config_0)
2655__BUILD_SET_C0(brcm_bus_pll)
2656__BUILD_SET_C0(brcm_reset)
2657__BUILD_SET_C0(brcm_cmt_intr)
2658__BUILD_SET_C0(brcm_cmt_ctrl)
2659__BUILD_SET_C0(brcm_config)
2660__BUILD_SET_C0(brcm_mode)
1da177e4 2661
7eb91118
JH
2662/*
2663 * Manipulate bits in a guest c0 register.
2664 */
2665#define __BUILD_SET_GC0(name) __BUILD_SET_COMMON(gc0_##name)
2666
2667__BUILD_SET_GC0(status)
2668__BUILD_SET_GC0(cause)
2669__BUILD_SET_GC0(ebase)
2670
45b585c8
DD
2671/*
2672 * Return low 10 bits of ebase.
2673 * Note that under KVM (MIPSVZ) this returns vcpu id.
2674 */
2675static inline unsigned int get_ebase_cpunum(void)
2676{
37af2f30 2677 return read_c0_ebase() & MIPS_EBASE_CPUNUM;
45b585c8
DD
2678}
2679
1da177e4
LT
2680#endif /* !__ASSEMBLY__ */
2681
2682#endif /* _ASM_MIPSREGS_H */