blob: 25d01577d0b564943f282960b67751e5bf84636a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Ralf Baechlea3692022007-07-10 17:33:02 +010010 * Copyright (C) 2000, 07 MIPS Technologies, Inc.
Ralf Baechle41943182005-05-05 16:45:59 +000011 * Copyright (C) 2003, 2004 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13#ifndef _ASM_MIPSREGS_H
14#define _ASM_MIPSREGS_H
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/linkage.h>
Qais Yousef87c99202013-12-09 09:49:45 +000017#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/hazards.h>
Marc St-Jean9267a302007-06-14 15:55:31 -060019#include <asm/war.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
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
James Hogan195cee92015-11-10 17:06:37 +000053#define CP0_HWRENA $7, 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define CP0_BADVADDR $8
Paul Burton609cf6f2015-09-22 11:12:11 -070055#define CP0_BADINSTR $8, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define CP0_COUNT $9
57#define CP0_ENTRYHI $10
James Hoganf913e9e2016-05-11 15:50:28 +010058#define CP0_GUESTCTL1 $10, 4
59#define CP0_GUESTCTL2 $10, 5
60#define CP0_GUESTCTL3 $10, 6
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define CP0_COMPARE $11
James Hoganf913e9e2016-05-11 15:50:28 +010062#define CP0_GUESTCTL0EXT $11, 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define CP0_STATUS $12
James Hoganf913e9e2016-05-11 15:50:28 +010064#define CP0_GUESTCTL0 $12, 6
65#define CP0_GTOFFSET $12, 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define CP0_CAUSE $13
67#define CP0_EPC $14
68#define CP0_PRID $15
Paul Burton609cf6f2015-09-22 11:12:11 -070069#define CP0_EBASE $15, 1
70#define CP0_CMGCRBASE $15, 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define CP0_CONFIG $16
James Hogan195cee92015-11-10 17:06:37 +000072#define CP0_CONFIG3 $16, 3
73#define CP0_CONFIG5 $16, 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#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
111/*
Ralf Baechle7a0fc582005-07-13 19:47:28 +0000112 * 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
121/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 * TX39 Series
123 */
124#define CP0_TX39_CACHE $7
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
James Hoganbae637a2015-07-15 16:17:47 +0100127/* 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 */
Paul Burtonc69567282015-09-22 11:42:51 -0700141#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))
James Hoganbae637a2015-07-15 16:17:47 +0100144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
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
Ralf Baechlec52399b2009-04-02 14:07:10 +0200161#define PM_8K 0x00002000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define PM_16K 0x00006000
Ralf Baechlec52399b2009-04-02 14:07:10 +0200163#define PM_32K 0x0000e000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define PM_64K 0x0001e000
Ralf Baechlec52399b2009-04-02 14:07:10 +0200165#define PM_128K 0x0003e000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define PM_256K 0x0007e000
Ralf Baechlec52399b2009-04-02 14:07:10 +0200167#define PM_512K 0x000fe000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#define PM_1M 0x001fe000
Ralf Baechlec52399b2009-04-02 14:07:10 +0200169#define PM_2M 0x003fe000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#define PM_4M 0x007fe000
Ralf Baechlec52399b2009-04-02 14:07:10 +0200171#define PM_8M 0x00ffe000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#define PM_16M 0x01ffe000
Ralf Baechlec52399b2009-04-02 14:07:10 +0200173#define PM_32M 0x03ffe000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define PM_64M 0x07ffe000
175#define PM_256M 0x1fffe000
Shinya Kuribayashi542c1022008-10-24 01:27:57 +0900176#define PM_1G 0x7fffe000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178#endif
179
180/*
181 * Default page size for a given kernel configuration
182 */
183#ifdef CONFIG_PAGE_SIZE_4KB
Ralf Baechle70342282013-01-22 12:59:30 +0100184#define PM_DEFAULT_MASK PM_4K
Ralf Baechlec52399b2009-04-02 14:07:10 +0200185#elif defined(CONFIG_PAGE_SIZE_8KB)
Ralf Baechle70342282013-01-22 12:59:30 +0100186#define PM_DEFAULT_MASK PM_8K
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#elif defined(CONFIG_PAGE_SIZE_16KB)
Ralf Baechle70342282013-01-22 12:59:30 +0100188#define PM_DEFAULT_MASK PM_16K
Ralf Baechlec52399b2009-04-02 14:07:10 +0200189#elif defined(CONFIG_PAGE_SIZE_32KB)
Ralf Baechle70342282013-01-22 12:59:30 +0100190#define PM_DEFAULT_MASK PM_32K
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#elif defined(CONFIG_PAGE_SIZE_64KB)
Ralf Baechle70342282013-01-22 12:59:30 +0100192#define PM_DEFAULT_MASK PM_64K
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#else
194#error Bad page size configuration!
195#endif
196
David Daneydd794392009-05-27 17:47:43 -0700197/*
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
David Daneyaa1762f2012-10-17 00:48:10 +0200210#elif defined(CONFIG_MIPS_HUGE_TLB_SUPPORT)
David Daneydd794392009-05-27 17:47:43 -0700211#error Bad page size configuration for hugetlbfs!
212#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214/*
215 * Values used for computation of new tlb entries
216 */
217#define PL_4K 12
218#define PL_16K 14
219#define PL_64K 16
220#define PL_256K 18
221#define PL_1M 20
222#define PL_4M 22
223#define PL_16M 24
224#define PL_64M 26
225#define PL_256M 28
226
227/*
David Daney9fe2e9d2010-02-10 15:12:45 -0800228 * PageGrain bits
229 */
Ralf Baechle70342282013-01-22 12:59:30 +0100230#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)
Leonid Yegoshin6575b1d2014-07-15 14:09:57 +0100234#define PG_IEC (_ULCAST_(1) << 27)
David Daney9fe2e9d2010-02-10 15:12:45 -0800235
James Hoganbae637a2015-07-15 16:17:47 +0100236/* MIPS32/64 EntryHI bit definitions */
237#define MIPS_ENTRYHI_EHINV (_ULCAST_(1) << 10)
James Hogan9b5c3392016-05-06 14:36:19 +0100238#define MIPS_ENTRYHI_ASIDX (_ULCAST_(0x3) << 8)
239#define MIPS_ENTRYHI_ASID (_ULCAST_(0xff) << 0)
James Hoganbae637a2015-07-15 16:17:47 +0100240
David Daney9fe2e9d2010-02-10 15:12:45 -0800241/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * R4x00 interrupt enable / cause bits
243 */
Ralf Baechle70342282013-01-22 12:59:30 +0100244#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253/*
254 * R4x00 interrupt cause bits
255 */
Ralf Baechle70342282013-01-22 12:59:30 +0100256#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
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
Ralf Baechle70342282013-01-22 12:59:30 +0100277#define ST0_KX 0x00000080
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278#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 */
Ralf Baechle70342282013-01-22 12:59:30 +0100291#define ST0_IEC 0x00000001
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#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 */
Ralf Baechle70342282013-01-22 12:59:30 +0100305#define ST0_UM (_ULCAST_(1) << 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306#define ST0_IL (_ULCAST_(1) << 23)
307#define ST0_DL (_ULCAST_(1) << 24)
308
309/*
Thiemo Seufer3301edc2006-05-15 18:24:57 +0100310 * Enable the MIPS MDMX and DSP ASEs
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000311 */
312#define ST0_MX 0x01000000
313
314/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 * Status register bits available in all MIPS CPUs.
316 */
317#define ST0_IM 0x0000ff00
Ralf Baechle70342282013-01-22 12:59:30 +0100318#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#define ST0_CH 0x00040000
David Daney96ffa022010-07-23 18:41:46 -0700351#define ST0_NMI 0x00080000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#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
364/*
David VomLehn010c1082009-12-21 17:49:22 -0800365 * Bitfields and bit numbers in the coprocessor 0 IntCtl register. (MIPSR2)
David VomLehn010c1082009-12-21 17:49:22 -0800366 */
James Hogan9323f842015-01-29 11:14:06 +0000367#define INTCTLB_IPFDC 23
368#define INTCTLF_IPFDC (_ULCAST_(7) << INTCTLB_IPFDC)
David VomLehn010c1082009-12-21 17:49:22 -0800369#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
374/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * Bitfields and bit numbers in the coprocessor 0 cause register.
376 *
377 * Refer to your MIPS R4xx0 manual, chapter 5 for explanation.
378 */
Maciej W. Rozycki10545332015-04-03 23:23:56 +0100379#define CAUSEB_EXCCODE 2
380#define CAUSEF_EXCCODE (_ULCAST_(31) << 2)
381#define CAUSEB_IP 8
382#define CAUSEF_IP (_ULCAST_(255) << 8)
Ralf Baechle70342282013-01-22 12:59:30 +0100383#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)
Maciej W. Rozycki10545332015-04-03 23:23:56 +0100399#define CAUSEB_FDCI 21
400#define CAUSEF_FDCI (_ULCAST_(1) << 21)
James Hogane233c732016-03-01 22:19:38 +0000401#define CAUSEB_WP 22
402#define CAUSEF_WP (_ULCAST_(1) << 22)
Maciej W. Rozycki10545332015-04-03 23:23:56 +0100403#define CAUSEB_IV 23
404#define CAUSEF_IV (_ULCAST_(1) << 23)
405#define CAUSEB_PCI 26
406#define CAUSEF_PCI (_ULCAST_(1) << 26)
James Hogan9fd4af62015-12-16 23:49:28 +0000407#define CAUSEB_DC 27
408#define CAUSEF_DC (_ULCAST_(1) << 27)
Maciej W. Rozycki10545332015-04-03 23:23:56 +0100409#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416/*
James Hogan16d100db2015-12-16 23:49:33 +0000417 * 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 */
James Hogan16d100db2015-12-16 23:49:33 +0000433#define EXCCODE_MSAFPE 14 /* MSA floating point exception */
434#define EXCCODE_FPE 15 /* Floating point exception */
James Hogan044c9bb2015-12-16 23:49:34 +0000435#define EXCCODE_TLBRI 19 /* TLB Read-Inhibit exception */
436#define EXCCODE_TLBXI 20 /* TLB Execution-Inhibit exception */
James Hogan16d100db2015-12-16 23:49:33 +0000437#define EXCCODE_MSADIS 21 /* MSA disabled exception */
James Hogan044c9bb2015-12-16 23:49:34 +0000438#define EXCCODE_MDMX 22 /* MDMX unusable exception */
James Hogan16d100db2015-12-16 23:49:33 +0000439#define EXCCODE_WATCH 23 /* Watch address reference */
James Hogan044c9bb2015-12-16 23:49:34 +0000440#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 */
James Hogan16d100db2015-12-16 23:49:33 +0000447
448/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * 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. */
Ralf Baechle70342282013-01-22 12:59:30 +0100464#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#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
Ralf Baechle70342282013-01-22 12:59:30 +0100478/* Bits specific to the R4xx0. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#define R4K_CONF_SW (_ULCAST_(1) << 20)
480#define R4K_CONF_SS (_ULCAST_(1) << 21)
Ralf Baechlee20368d2005-06-21 13:52:33 +0000481#define R4K_CONF_SB (_ULCAST_(3) << 22)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Ralf Baechle70342282013-01-22 12:59:30 +0100483/* Bits specific to the R5000. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484#define R5K_CONF_SE (_ULCAST_(1) << 12)
485#define R5K_CONF_SS (_ULCAST_(3) << 20)
486
Ralf Baechle70342282013-01-22 12:59:30 +0100487/* Bits specific to the RM7000. */
488#define RM7K_CONF_SE (_ULCAST_(1) << 3)
Maciej W. Rozyckic6ad7b72005-06-20 13:09:49 +0000489#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)
Thiemo Seuferba5187d2005-04-25 16:36:23 +0000494
Ralf Baechle70342282013-01-22 12:59:30 +0100495/* 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#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
Ralf Baechle70342282013-01-22 12:59:30 +0100508/* Bits specific to the VR41xx. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509#define VR41_CONF_CS (_ULCAST_(1) << 12)
Yoichi Yuasa2874fe52006-07-08 00:42:12 +0900510#define VR41_CONF_P4K (_ULCAST_(1) << 13)
Yoichi Yuasa4e8ab362006-07-04 22:59:41 +0900511#define VR41_CONF_BP (_ULCAST_(1) << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512#define VR41_CONF_M16 (_ULCAST_(1) << 20)
513#define VR41_CONF_AD (_ULCAST_(1) << 23)
514
Ralf Baechle70342282013-01-22 12:59:30 +0100515/* Bits specific to the R30xx. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516#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
Ralf Baechle70342282013-01-22 12:59:30 +0100532/* Bits specific to the MIPS32/64 PRA. */
533#define MIPS_CONF_MT (_ULCAST_(7) << 7)
James Hogan2f6f3132015-09-17 17:49:20 +0100534#define MIPS_CONF_MT_TLB (_ULCAST_(1) << 7)
535#define MIPS_CONF_MT_FTLB (_ULCAST_(4) << 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#define MIPS_CONF_AR (_ULCAST_(7) << 10)
537#define MIPS_CONF_AT (_ULCAST_(3) << 13)
538#define MIPS_CONF_M (_ULCAST_(1) << 31)
539
540/*
Ralf Baechle41943182005-05-05 16:45:59 +0000541 * Bits in the MIPS32/64 PRA coprocessor 0 config registers 1 and above.
542 */
Ralf Baechle70342282013-01-22 12:59:30 +0100543#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)
Paul Burton20a8d5d2014-01-15 10:31:46 +0000550#define MIPS_CONF1_DA_SHF 7
551#define MIPS_CONF1_DA_SZ 3
Ralf Baechle70342282013-01-22 12:59:30 +0100552#define MIPS_CONF1_DA (_ULCAST_(7) << 7)
Paul Burton20a8d5d2014-01-15 10:31:46 +0000553#define MIPS_CONF1_DL_SHF 10
554#define MIPS_CONF1_DL_SZ 3
Ralf Baechle41943182005-05-05 16:45:59 +0000555#define MIPS_CONF1_DL (_ULCAST_(7) << 10)
Paul Burton20a8d5d2014-01-15 10:31:46 +0000556#define MIPS_CONF1_DS_SHF 13
557#define MIPS_CONF1_DS_SZ 3
Ralf Baechle41943182005-05-05 16:45:59 +0000558#define MIPS_CONF1_DS (_ULCAST_(7) << 13)
Paul Burton20a8d5d2014-01-15 10:31:46 +0000559#define MIPS_CONF1_IA_SHF 16
560#define MIPS_CONF1_IA_SZ 3
Ralf Baechle41943182005-05-05 16:45:59 +0000561#define MIPS_CONF1_IA (_ULCAST_(7) << 16)
Paul Burton20a8d5d2014-01-15 10:31:46 +0000562#define MIPS_CONF1_IL_SHF 19
563#define MIPS_CONF1_IL_SZ 3
Ralf Baechle41943182005-05-05 16:45:59 +0000564#define MIPS_CONF1_IL (_ULCAST_(7) << 19)
Paul Burton20a8d5d2014-01-15 10:31:46 +0000565#define MIPS_CONF1_IS_SHF 22
566#define MIPS_CONF1_IS_SZ 3
Ralf Baechle41943182005-05-05 16:45:59 +0000567#define MIPS_CONF1_IS (_ULCAST_(7) << 22)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000568#define MIPS_CONF1_TLBS_SHIFT (25)
569#define MIPS_CONF1_TLBS_SIZE (6)
570#define MIPS_CONF1_TLBS (_ULCAST_(63) << MIPS_CONF1_TLBS_SHIFT)
Ralf Baechle41943182005-05-05 16:45:59 +0000571
Ralf Baechle70342282013-01-22 12:59:30 +0100572#define MIPS_CONF2_SA (_ULCAST_(15)<< 0)
573#define MIPS_CONF2_SL (_ULCAST_(15)<< 4)
574#define MIPS_CONF2_SS (_ULCAST_(15)<< 8)
Ralf Baechle41943182005-05-05 16:45:59 +0000575#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
Ralf Baechle70342282013-01-22 12:59:30 +0100581#define MIPS_CONF3_TL (_ULCAST_(1) << 0)
582#define MIPS_CONF3_SM (_ULCAST_(1) << 1)
583#define MIPS_CONF3_MT (_ULCAST_(1) << 2)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000584#define MIPS_CONF3_CDMM (_ULCAST_(1) << 3)
Ralf Baechle70342282013-01-22 12:59:30 +0100585#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)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000589#define MIPS_CONF3_ITL (_ULCAST_(1) << 8)
590#define MIPS_CONF3_CTXTC (_ULCAST_(1) << 9)
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000591#define MIPS_CONF3_DSP (_ULCAST_(1) << 10)
Steven J. Hillee80f7c72012-08-03 10:26:04 -0500592#define MIPS_CONF3_DSP2P (_ULCAST_(1) << 11)
Steven J. Hillb2ab4f02012-09-13 16:47:58 -0500593#define MIPS_CONF3_RXI (_ULCAST_(1) << 12)
Ralf Baechlea3692022007-07-10 17:33:02 +0100594#define MIPS_CONF3_ULRI (_ULCAST_(1) << 13)
Steven J. Hillf8fa4812012-12-07 03:51:35 +0000595#define MIPS_CONF3_ISA (_ULCAST_(3) << 14)
Steven J. Hillc6213c62013-06-05 21:25:17 +0000596#define MIPS_CONF3_ISA_OE (_ULCAST_(1) << 16)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000597#define MIPS_CONF3_MCU (_ULCAST_(1) << 17)
598#define MIPS_CONF3_MMAR (_ULCAST_(7) << 18)
599#define MIPS_CONF3_IPLW (_ULCAST_(3) << 21)
David Daney1e7decd2013-02-16 23:42:43 +0100600#define MIPS_CONF3_VZ (_ULCAST_(1) << 23)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000601#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)
Ralf Baechle41943182005-05-05 16:45:59 +0000608
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000609#define MIPS_CONF4_MMUSIZEEXT_SHIFT (0)
David Daney1b362e32010-01-22 14:41:15 -0800610#define MIPS_CONF4_MMUSIZEEXT (_ULCAST_(255) << 0)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000611#define MIPS_CONF4_FTLBSETS_SHIFT (0)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000612#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)
David Daney1b362e32010-01-22 14:41:15 -0800620#define MIPS_CONF4_MMUEXTDEF (_ULCAST_(3) << 14)
621#define MIPS_CONF4_MMUEXTDEF_MMUSIZEEXT (_ULCAST_(1) << 14)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000622#define MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT (_ULCAST_(2) << 14)
623#define MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT (_ULCAST_(3) << 14)
James Hogan9e575f72016-05-11 15:50:27 +0100624#define MIPS_CONF4_KSCREXIST_SHIFT (16)
625#define MIPS_CONF4_KSCREXIST (_ULCAST_(255) << MIPS_CONF4_KSCREXIST_SHIFT)
Leonid Yegoshin691038ba2013-11-14 16:12:21 +0000626#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)
David Daney1b362e32010-01-22 14:41:15 -0800631
Ralf Baechle2f9ee822013-09-19 11:09:48 +0200632#define MIPS_CONF5_NF (_ULCAST_(1) << 0)
633#define MIPS_CONF5_UFR (_ULCAST_(1) << 2)
Paul Burtone19d5db2014-07-14 10:32:13 +0100634#define MIPS_CONF5_MRP (_ULCAST_(1) << 3)
Markos Chandras5aed9da2014-12-02 09:46:19 +0000635#define MIPS_CONF5_LLB (_ULCAST_(1) << 4)
Steven J. Hill23d06e42014-11-13 09:51:59 -0600636#define MIPS_CONF5_MVH (_ULCAST_(1) << 5)
Paul Burtonf270d882016-02-03 03:15:21 +0000637#define MIPS_CONF5_VP (_ULCAST_(1) << 7)
Paul Burton5ff04a82014-09-11 08:30:17 +0100638#define MIPS_CONF5_FRE (_ULCAST_(1) << 8)
639#define MIPS_CONF5_UFE (_ULCAST_(1) << 9)
Ralf Baechle2f9ee822013-09-19 11:09:48 +0200640#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
Steven J. Hill006a8512012-06-26 04:11:03 +0000645#define MIPS_CONF6_SYND (_ULCAST_(1) << 13)
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +0000646/* proAptiv FTLB on/off bit */
647#define MIPS_CONF6_FTLBEN (_ULCAST_(1) << 15)
Huacai Chenb2edcfc2016-03-03 09:45:09 +0800648/* Loongson-3 FTLB on/off bit */
649#define MIPS_CONF6_FTLBDIS (_ULCAST_(1) << 22)
Markos Chandrascf0a8aa2014-11-10 12:25:34 +0000650/* FTLB probability bits */
651#define MIPS_CONF6_FTLBP_SHIFT (16)
Steven J. Hill006a8512012-06-26 04:11:03 +0000652
Ralf Baechle4b3e9752007-06-21 00:22:34 +0100653#define MIPS_CONF7_WII (_ULCAST_(1) << 31)
654
Marc St-Jean9267a302007-06-14 15:55:31 -0600655#define MIPS_CONF7_RPS (_ULCAST_(1) << 2)
656
Markos Chandras02dc6bf2014-01-30 17:21:29 +0000657#define MIPS_CONF7_IAR (_ULCAST_(1) << 10)
658#define MIPS_CONF7_AR (_ULCAST_(1) << 16)
Markos Chandras20a7f7e2015-07-09 10:40:53 +0100659/* FTLB probability bits for R6 */
660#define MIPS_CONF7_FTLBP_SHIFT (18)
Markos Chandras02dc6bf2014-01-30 17:21:29 +0000661
James Hogan50af5012016-03-01 22:19:39 +0000662/* 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
Paul Burtone19d5db2014-07-14 10:32:13 +0100680/* 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
James Hogan37af2f32016-05-11 13:50:49 +0100686/* 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
Paul Burton4dd8ee52014-01-15 10:31:47 +0000694/* CMGCRBase bit definitions */
695#define MIPS_CMGCRB_BASE 11
696#define MIPS_CMGCRF_BASE (~_ULCAST_((1 << MIPS_CMGCRB_BASE) - 1))
697
Ralf Baechle41943182005-05-05 16:45:59 +0000698/*
Steven J. Hill4a0156f2013-11-14 16:12:24 +0000699 * 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
Markos Chandras87d08bc2014-07-14 10:14:04 +0100718#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
James Hoganf913e9e2016-05-11 15:50:28 +0100749/* 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
James Hogan9b3274b2015-02-02 11:45:08 +0000837/* 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
Maciej W. Rozyckie08384c2015-04-03 23:23:50 +0100845/*
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
Joshua Kinard8d5ded12015-06-02 18:21:33 -0400878/*
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)
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100887
Huacai Chen06e48142016-03-03 09:45:11 +0800888/* 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
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100897/*
898 * Coprocessor 1 (FPU) register names
899 */
Maciej W. Rozyckic491cfa2015-04-03 23:27:33 +0100900#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
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100907
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)
Maciej W. Rozyckif1f3b7e2015-04-03 23:27:38 +0100919#define MIPS_FPIR_HAS2008 (_ULCAST_(1) << 23)
920#define MIPS_FPIR_UFRP (_ULCAST_(1) << 28)
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100921#define MIPS_FPIR_FREP (_ULCAST_(1) << 29)
922
923/*
Maciej W. Rozyckic491cfa2015-04-03 23:27:33 +0100924 * 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
951/*
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100952 * FPU Status Register Values
953 */
Maciej W. Rozyckic491cfa2015-04-03 23:27:33 +0100954#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)
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100976
977/*
Maciej W. Rozyckif1f3b7e2015-04-03 23:27:38 +0100978 * Bits 22:20 of the FPU Status Register will be read as 0,
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100979 * and should be written as zero.
980 */
Maciej W. Rozyckif1f3b7e2015-04-03 23:27:38 +0100981#define FPU_CSR_RSVD (_ULCAST_(7) << 20)
982
983#define FPU_CSR_ABS2008 (_ULCAST_(1) << 19)
984#define FPU_CSR_NAN2008 (_ULCAST_(1) << 18)
Maciej W. Rozyckifda51902015-04-03 23:23:46 +0100985
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021#ifndef __ASSEMBLY__
1022
1023/*
Ralf Baechle377cb1b2014-04-29 01:49:24 +02001024 * Macros for handling the ISA mode bit for MIPS16 and microMIPS.
Steven J. Hillbfd08ba2013-02-05 16:52:03 -06001025 */
Ralf Baechle377cb1b2014-04-29 01:49:24 +02001026#if defined(CONFIG_SYS_SUPPORTS_MIPS16) || \
1027 defined(CONFIG_SYS_SUPPORTS_MICROMIPS)
Steven J. Hillbfd08ba2013-02-05 16:52:03 -06001028#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)
Ralf Baechle377cb1b2014-04-29 01:49:24 +02001031#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
Steven J. Hillbfd08ba2013-02-05 16:52:03 -06001036
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
1048/*
Leonid Yegoshin198bb4c2013-11-14 16:12:29 +00001049 * 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
1061/*
Ralf Baechle70342282013-01-22 12:59:30 +01001062 * Functions to access the R10000 performance counters. These are basically
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 * 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" \
Ralf Baechle70342282013-01-22 12:59:30 +01001073 : "=r" (__res) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 : "i" (counter)); \
1075 \
Ralf Baechle70342282013-01-22 12:59:30 +01001076 __res; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077})
1078
Ralf Baechle70342282013-01-22 12:59:30 +01001079#define write_r10k_perf_cntr(counter,val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080do { \
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" \
Ralf Baechle70342282013-01-22 12:59:30 +01001092 : "=r" (__res) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 : "i" (counter)); \
1094 \
Ralf Baechle70342282013-01-22 12:59:30 +01001095 __res; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096})
1097
Ralf Baechle70342282013-01-22 12:59:30 +01001098#define write_r10k_perf_cntl(counter,val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099do { \
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) \
Chris Packham82eb8f72015-07-15 10:44:30 +12001112({ unsigned int __res; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 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" \
Ralf Baechle0952e292005-08-17 10:03:03 +00001150 : : "Jr" ((unsigned int)(value))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 else \
1152 __asm__ __volatile__( \
1153 ".set\tmips32\n\t" \
1154 "mtc0\t%z0, " #register ", " #sel "\n\t" \
1155 ".set\tmips0" \
Ralf Baechle0952e292005-08-17 10:03:03 +00001156 : : "Jr" ((unsigned int)(value))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157} 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) \
Chris Packham82eb8f72015-07-15 10:44:30 +12001194({ unsigned int __res; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 __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" \
Ralf Baechle0952e292005-08-17 10:03:03 +00001205 : : "Jr" ((unsigned int)(value))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206} 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({ \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001214 unsigned long long __val; \
1215 unsigned long __flags; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001217 local_irq_save(__flags); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 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" \
Ralf Baechle0b543522009-04-30 02:16:19 +02001223 "dsra\t%M0, %M0, 32\n\t" \
1224 "dsra\t%L0, %L0, 32\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 ".set\tmips0" \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001226 : "=r" (__val)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 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" \
Ralf Baechle0b543522009-04-30 02:16:19 +02001232 "dsra\t%M0, %M0, 32\n\t" \
1233 "dsra\t%L0, %L0, 32\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 ".set\tmips0" \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001235 : "=r" (__val)); \
1236 local_irq_restore(__flags); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001238 __val; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239})
1240
1241#define __write_64bit_c0_split(source, sel, val) \
1242do { \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001243 unsigned long __flags; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001245 local_irq_save(__flags); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 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)); \
Atsushi Nemoto87d43dd2007-07-11 23:30:40 +09001266 local_irq_restore(__flags); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267} while (0)
1268
Steven J. Hill23d06e42014-11-13 09:51:59 -06001269#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302#define read_c0_index() __read_32bit_c0_register($0, 0)
1303#define write_c0_index(val) __write_32bit_c0_register($0, 0, val)
1304
Ralf Baechle272bace2008-05-26 09:35:47 +01001305#define read_c0_random() __read_32bit_c0_register($1, 0)
1306#define write_c0_random(val) __write_32bit_c0_register($1, 0, val)
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308#define read_c0_entrylo0() __read_ulong_c0_register($2, 0)
1309#define write_c0_entrylo0(val) __write_ulong_c0_register($2, 0, val)
1310
Steven J. Hill23d06e42014-11-13 09:51:59 -06001311#define readx_c0_entrylo0() __readx_32bit_c0_register(2)
1312#define writex_c0_entrylo0(val) __writex_32bit_c0_register(2, val)
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314#define read_c0_entrylo1() __read_ulong_c0_register($3, 0)
1315#define write_c0_entrylo1(val) __write_ulong_c0_register($3, 0, val)
1316
Steven J. Hill23d06e42014-11-13 09:51:59 -06001317#define readx_c0_entrylo1() __readx_32bit_c0_register(3)
1318#define writex_c0_entrylo1(val) __writex_32bit_c0_register(3, val)
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320#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
James Hoganf18bdfa2016-05-11 13:50:52 +01001326#define read_c0_contextconfig() __read_32bit_c0_register($4, 1)
1327#define write_c0_contextconfig(val) __write_32bit_c0_register($4, 1, val)
1328
Ralf Baechlea3692022007-07-10 17:33:02 +01001329#define read_c0_userlocal() __read_ulong_c0_register($4, 2)
Ralf Baechle70342282013-01-22 12:59:30 +01001330#define write_c0_userlocal(val) __write_ulong_c0_register($4, 2, val)
Ralf Baechlea3692022007-07-10 17:33:02 +01001331
James Hoganf18bdfa2016-05-11 13:50:52 +01001332#define read_c0_xcontextconfig() __read_ulong_c0_register($4, 3)
1333#define write_c0_xcontextconfig(val) __write_ulong_c0_register($4, 3, val)
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335#define read_c0_pagemask() __read_32bit_c0_register($5, 0)
1336#define write_c0_pagemask(val) __write_32bit_c0_register($5, 0, val)
1337
David Daney9fe2e9d2010-02-10 15:12:45 -08001338#define read_c0_pagegrain() __read_32bit_c0_register($5, 1)
Ralf Baechle70342282013-01-22 12:59:30 +01001339#define write_c0_pagegrain(val) __write_32bit_c0_register($5, 1, val)
David Daney9fe2e9d2010-02-10 15:12:45 -08001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341#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
Ralf Baechle70342282013-01-22 12:59:30 +01001346#define read_c0_cache() __read_32bit_c0_register($7, 0) /* TX39xx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347#define write_c0_cache(val) __write_32bit_c0_register($7, 0, val)
1348
Ralf Baechle15c4f672006-03-29 18:51:06 +01001349#define read_c0_badvaddr() __read_ulong_c0_register($8, 0)
1350#define write_c0_badvaddr(val) __write_ulong_c0_register($8, 0, val)
1351
James Hogane06a1542016-05-11 13:50:51 +01001352#define read_c0_badinstr() __read_32bit_c0_register($8, 1)
1353#define read_c0_badinstrp() __read_32bit_c0_register($8, 2)
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355#define read_c0_count() __read_32bit_c0_register($9, 0)
1356#define write_c0_count(val) __write_32bit_c0_register($9, 0, val)
1357
Pete Popovbdf21b12005-07-14 17:47:57 +00001358#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364#define read_c0_entryhi() __read_ulong_c0_register($10, 0)
1365#define write_c0_entryhi(val) __write_ulong_c0_register($10, 0, val)
1366
James Hoganf913e9e2016-05-11 15:50:28 +01001367#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376#define read_c0_compare() __read_32bit_c0_register($11, 0)
1377#define write_c0_compare(val) __write_32bit_c0_register($11, 0, val)
1378
James Hoganf913e9e2016-05-11 15:50:28 +01001379#define read_c0_guestctl0ext() __read_32bit_c0_register($11, 4)
1380#define write_c0_guestctl0ext(val) __write_32bit_c0_register($11, 4, val)
1381
Pete Popovbdf21b12005-07-14 17:47:57 +00001382#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388#define read_c0_status() __read_32bit_c0_register($12, 0)
Ralf Baechleb6336482014-05-23 16:29:44 +02001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390#define write_c0_status(val) __write_32bit_c0_register($12, 0, val)
1391
James Hoganf913e9e2016-05-11 15:50:28 +01001392#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398#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
Paul Burton4dd8ee52014-01-15 10:31:47 +00001406#define read_c0_cmgcrbase() __read_ulong_c0_register($15, 3)
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408#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)
Ralf Baechle0efe2762005-02-06 21:24:55 +00001412#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416#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)
Ralf Baechle0efe2762005-02-06 21:24:55 +00001420#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Markos Chandrasb55b9e22014-12-03 12:31:42 +00001425#define read_c0_lladdr() __read_ulong_c0_register($17, 0)
1426#define write_c0_lladdr(val) __write_ulong_c0_register($17, 0, val)
Paul Burtone19d5db2014-07-14 10:32:13 +01001427#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001433 * The WatchLo register. There may be up to 8 of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 */
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/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001453 * The WatchHi register. There may be up to 8 of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 */
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)
Ralf Baechle70342282013-01-22 12:59:30 +01001480#define write_c0_framemask(val) __write_32bit_c0_register($21, 0, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482#define read_c0_diag() __read_32bit_c0_register($22, 0)
1483#define write_c0_diag(val) __write_32bit_c0_register($22, 0, val)
1484
Joshua Kinard8d5ded12015-06-02 18:21:33 -04001485/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489#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)
Ralf Baechle70342282013-01-22 12:59:30 +01001514#define write_c0_perfctrl0(val) __write_32bit_c0_register($25, 0, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515#define read_c0_perfcntr0() __read_32bit_c0_register($25, 1)
Ralf Baechle70342282013-01-22 12:59:30 +01001516#define write_c0_perfcntr0(val) __write_32bit_c0_register($25, 1, val)
David Daney4d36f592011-09-24 02:29:55 +02001517#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519#define read_c0_perfctrl1() __read_32bit_c0_register($25, 2)
Ralf Baechle70342282013-01-22 12:59:30 +01001520#define write_c0_perfctrl1(val) __write_32bit_c0_register($25, 2, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521#define read_c0_perfcntr1() __read_32bit_c0_register($25, 3)
Ralf Baechle70342282013-01-22 12:59:30 +01001522#define write_c0_perfcntr1(val) __write_32bit_c0_register($25, 3, val)
David Daney4d36f592011-09-24 02:29:55 +02001523#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525#define read_c0_perfctrl2() __read_32bit_c0_register($25, 4)
Ralf Baechle70342282013-01-22 12:59:30 +01001526#define write_c0_perfctrl2(val) __write_32bit_c0_register($25, 4, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527#define read_c0_perfcntr2() __read_32bit_c0_register($25, 5)
Ralf Baechle70342282013-01-22 12:59:30 +01001528#define write_c0_perfcntr2(val) __write_32bit_c0_register($25, 5, val)
David Daney4d36f592011-09-24 02:29:55 +02001529#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531#define read_c0_perfctrl3() __read_32bit_c0_register($25, 6)
Ralf Baechle70342282013-01-22 12:59:30 +01001532#define write_c0_perfctrl3(val) __write_32bit_c0_register($25, 6, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533#define read_c0_perfcntr3() __read_32bit_c0_register($25, 7)
Ralf Baechle70342282013-01-22 12:59:30 +01001534#define write_c0_perfcntr3(val) __write_32bit_c0_register($25, 7, val)
David Daney4d36f592011-09-24 02:29:55 +02001535#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538#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)
Ralf Baechle70342282013-01-22 12:59:30 +01001542#define write_c0_derraddr0(val) __write_ulong_c0_register($26, 1, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544#define read_c0_cacheerr() __read_32bit_c0_register($27, 0)
1545
1546#define read_c0_derraddr1() __read_ulong_c0_register($27, 1)
Ralf Baechle70342282013-01-22 12:59:30 +01001547#define write_c0_derraddr1(val) __write_ulong_c0_register($27, 1, val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
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
Ralf Baechle41c594a2006-04-05 09:45:45 +01001552#define read_c0_dtaglo() __read_32bit_c0_register($28, 2)
1553#define write_c0_dtaglo(val) __write_32bit_c0_register($28, 2, val)
1554
Kevin Cernekeeaf231172010-10-16 14:22:32 -07001555#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561#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
Ralf Baechle7a0fc582005-07-13 19:47:28 +00001567/* MIPSR2 */
Ralf Baechle21a151d2007-10-11 23:46:15 +01001568#define read_c0_hwrena() __read_32bit_c0_register($7, 0)
Ralf Baechle7a0fc582005-07-13 19:47:28 +00001569#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
Ralf Baechle21a151d2007-10-11 23:46:15 +01001580#define read_c0_ebase() __read_32bit_c0_register($15, 1)
Ralf Baechle7a0fc582005-07-13 19:47:28 +00001581#define write_c0_ebase(val) __write_32bit_c0_register($15, 1, val)
1582
James Hogan37fb60f2016-05-11 13:50:50 +01001583#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
James Hogan9b3274b2015-02-02 11:45:08 +00001586#define read_c0_cdmmbase() __read_ulong_c0_register($15, 2)
1587#define write_c0_cdmmbase(val) __write_ulong_c0_register($15, 2, val)
1588
Steven J. Hill4a0156f2013-11-14 16:12:24 +00001589/* 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)
David Daneyed918c22008-12-11 15:33:24 -08001598
Markos Chandras87d08bc2014-07-14 10:14:04 +01001599/* 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
Huacai Chen380cd582016-03-03 09:45:12 +08001612#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
David Daneyed918c22008-12-11 15:33:24 -08001618/* 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)
Ralf Baechle70342282013-01-22 12:59:30 +01001626#define write_c0_cvmmemctl(val) __write_64bit_c0_register($11, 7, val)
David Daneyed918c22008-12-11 15:33:24 -08001627/*
Ralf Baechle70342282013-01-22 12:59:30 +01001628 * The cacheerr registers are not standardized. On OCTEON, they are
David Daneyed918c22008-12-11 15:33:24 -08001629 * 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
Kevin Cernekeeaf231172010-10-16 14:22:32 -07001637/* 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
Kevin Cernekee020232f2011-11-16 01:25:44 +00001647/* BMIPS43xx */
Kevin Cernekeeaf231172010-10-16 14:22:32 -07001648#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682/*
James Hogan7eb91112016-05-11 15:50:29 +01001683 * Macros to access the guest system control coprocessor
1684 */
1685
James Hoganbad50d72016-05-16 12:50:04 +01001686#ifdef TOOLCHAIN_SUPPORTS_VIRT
1687
James Hogan7eb91112016-05-11 15:50:29 +01001688#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" \
James Hoganbad50d72016-05-16 12:50:04 +01001694 "mfgc0\t%0, $%1, %2\n\t" \
James Hogan7eb91112016-05-11 15:50:29 +01001695 ".set\tpop" \
James Hoganbad50d72016-05-16 12:50:04 +01001696 : "=r" (__res) \
1697 : "i" (source), "i" (sel)); \
James Hogan7eb91112016-05-11 15:50:29 +01001698 __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" \
James Hoganbad50d72016-05-16 12:50:04 +01001707 "dmfgc0\t%0, $%1, %2\n\t" \
James Hogan7eb91112016-05-11 15:50:29 +01001708 ".set\tpop" \
James Hoganbad50d72016-05-16 12:50:04 +01001709 : "=r" (__res) \
1710 : "i" (source), "i" (sel)); \
James Hogan7eb91112016-05-11 15:50:29 +01001711 __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" \
James Hoganbad50d72016-05-16 12:50:04 +01001720 "mtgc0\t%z0, $%1, %2\n\t" \
James Hogan7eb91112016-05-11 15:50:29 +01001721 ".set\tpop" \
James Hoganbad50d72016-05-16 12:50:04 +01001722 : : "Jr" ((unsigned int)(value)), \
1723 "i" (register), "i" (sel)); \
James Hogan7eb91112016-05-11 15:50:29 +01001724} 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" \
James Hoganbad50d72016-05-16 12:50:04 +01001732 "dmtgc0\t%z0, $%1, %2\n\t" \
James Hogan7eb91112016-05-11 15:50:29 +01001733 ".set\tpop" \
James Hoganbad50d72016-05-16 12:50:04 +01001734 : : "Jr" (value), \
1735 "i" (register), "i" (sel)); \
James Hogan7eb91112016-05-11 15:50:29 +01001736} while (0)
1737
James Hoganbad50d72016-05-16 12:50:04 +01001738#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" \
1776 ".set\tpop" \
1777 : : "Jr" ((unsigned int)(value)), \
1778 "i" (register), "i" (sel)); \
1779} while (0)
1780
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
James Hogan7eb91112016-05-11 15:50:29 +01001796#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
James Hoganbad50d72016-05-16 12:50:04 +01001809#define read_gc0_index() __read_32bit_gc0_register(0, 0)
1810#define write_gc0_index(val) __write_32bit_gc0_register(0, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001811
James Hoganbad50d72016-05-16 12:50:04 +01001812#define read_gc0_entrylo0() __read_ulong_gc0_register(2, 0)
1813#define write_gc0_entrylo0(val) __write_ulong_gc0_register(2, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001814
James Hoganbad50d72016-05-16 12:50:04 +01001815#define read_gc0_entrylo1() __read_ulong_gc0_register(3, 0)
1816#define write_gc0_entrylo1(val) __write_ulong_gc0_register(3, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001817
James Hoganbad50d72016-05-16 12:50:04 +01001818#define read_gc0_context() __read_ulong_gc0_register(4, 0)
1819#define write_gc0_context(val) __write_ulong_gc0_register(4, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001820
James Hoganbad50d72016-05-16 12:50:04 +01001821#define read_gc0_contextconfig() __read_32bit_gc0_register(4, 1)
1822#define write_gc0_contextconfig(val) __write_32bit_gc0_register(4, 1, val)
James Hogan7eb91112016-05-11 15:50:29 +01001823
James Hoganbad50d72016-05-16 12:50:04 +01001824#define read_gc0_userlocal() __read_ulong_gc0_register(4, 2)
1825#define write_gc0_userlocal(val) __write_ulong_gc0_register(4, 2, val)
James Hogan7eb91112016-05-11 15:50:29 +01001826
James Hoganbad50d72016-05-16 12:50:04 +01001827#define read_gc0_xcontextconfig() __read_ulong_gc0_register(4, 3)
1828#define write_gc0_xcontextconfig(val) __write_ulong_gc0_register(4, 3, val)
James Hogan7eb91112016-05-11 15:50:29 +01001829
James Hoganbad50d72016-05-16 12:50:04 +01001830#define read_gc0_pagemask() __read_32bit_gc0_register(5, 0)
1831#define write_gc0_pagemask(val) __write_32bit_gc0_register(5, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001832
James Hoganbad50d72016-05-16 12:50:04 +01001833#define read_gc0_pagegrain() __read_32bit_gc0_register(5, 1)
1834#define write_gc0_pagegrain(val) __write_32bit_gc0_register(5, 1, val)
James Hogan7eb91112016-05-11 15:50:29 +01001835
James Hoganbad50d72016-05-16 12:50:04 +01001836#define read_gc0_segctl0() __read_ulong_gc0_register(5, 2)
1837#define write_gc0_segctl0(val) __write_ulong_gc0_register(5, 2, val)
James Hogan7eb91112016-05-11 15:50:29 +01001838
James Hoganbad50d72016-05-16 12:50:04 +01001839#define read_gc0_segctl1() __read_ulong_gc0_register(5, 3)
1840#define write_gc0_segctl1(val) __write_ulong_gc0_register(5, 3, val)
James Hogan7eb91112016-05-11 15:50:29 +01001841
James Hoganbad50d72016-05-16 12:50:04 +01001842#define read_gc0_segctl2() __read_ulong_gc0_register(5, 4)
1843#define write_gc0_segctl2(val) __write_ulong_gc0_register(5, 4, val)
James Hogan7eb91112016-05-11 15:50:29 +01001844
James Hoganbad50d72016-05-16 12:50:04 +01001845#define read_gc0_pwbase() __read_ulong_gc0_register(5, 5)
1846#define write_gc0_pwbase(val) __write_ulong_gc0_register(5, 5, val)
James Hogan7eb91112016-05-11 15:50:29 +01001847
James Hoganbad50d72016-05-16 12:50:04 +01001848#define read_gc0_pwfield() __read_ulong_gc0_register(5, 6)
1849#define write_gc0_pwfield(val) __write_ulong_gc0_register(5, 6, val)
James Hogan7eb91112016-05-11 15:50:29 +01001850
James Hoganbad50d72016-05-16 12:50:04 +01001851#define read_gc0_pwsize() __read_ulong_gc0_register(5, 7)
1852#define write_gc0_pwsize(val) __write_ulong_gc0_register(5, 7, val)
James Hogan7eb91112016-05-11 15:50:29 +01001853
James Hoganbad50d72016-05-16 12:50:04 +01001854#define read_gc0_wired() __read_32bit_gc0_register(6, 0)
1855#define write_gc0_wired(val) __write_32bit_gc0_register(6, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001856
James Hoganbad50d72016-05-16 12:50:04 +01001857#define read_gc0_pwctl() __read_32bit_gc0_register(6, 6)
1858#define write_gc0_pwctl(val) __write_32bit_gc0_register(6, 6, val)
James Hogan7eb91112016-05-11 15:50:29 +01001859
James Hoganbad50d72016-05-16 12:50:04 +01001860#define read_gc0_hwrena() __read_32bit_gc0_register(7, 0)
1861#define write_gc0_hwrena(val) __write_32bit_gc0_register(7, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001862
James Hoganbad50d72016-05-16 12:50:04 +01001863#define read_gc0_badvaddr() __read_ulong_gc0_register(8, 0)
1864#define write_gc0_badvaddr(val) __write_ulong_gc0_register(8, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001865
James Hoganbad50d72016-05-16 12:50:04 +01001866#define read_gc0_badinstr() __read_32bit_gc0_register(8, 1)
1867#define write_gc0_badinstr(val) __write_32bit_gc0_register(8, 1, val)
James Hogan7eb91112016-05-11 15:50:29 +01001868
James Hoganbad50d72016-05-16 12:50:04 +01001869#define read_gc0_badinstrp() __read_32bit_gc0_register(8, 2)
1870#define write_gc0_badinstrp(val) __write_32bit_gc0_register(8, 2, val)
James Hogan7eb91112016-05-11 15:50:29 +01001871
James Hoganbad50d72016-05-16 12:50:04 +01001872#define read_gc0_count() __read_32bit_gc0_register(9, 0)
James Hogan7eb91112016-05-11 15:50:29 +01001873
James Hoganbad50d72016-05-16 12:50:04 +01001874#define read_gc0_entryhi() __read_ulong_gc0_register(10, 0)
1875#define write_gc0_entryhi(val) __write_ulong_gc0_register(10, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001876
James Hoganbad50d72016-05-16 12:50:04 +01001877#define read_gc0_compare() __read_32bit_gc0_register(11, 0)
1878#define write_gc0_compare(val) __write_32bit_gc0_register(11, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001879
James Hoganbad50d72016-05-16 12:50:04 +01001880#define read_gc0_status() __read_32bit_gc0_register(12, 0)
1881#define write_gc0_status(val) __write_32bit_gc0_register(12, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001882
James Hoganbad50d72016-05-16 12:50:04 +01001883#define read_gc0_intctl() __read_32bit_gc0_register(12, 1)
1884#define write_gc0_intctl(val) __write_32bit_gc0_register(12, 1, val)
James Hogan7eb91112016-05-11 15:50:29 +01001885
James Hoganbad50d72016-05-16 12:50:04 +01001886#define read_gc0_cause() __read_32bit_gc0_register(13, 0)
1887#define write_gc0_cause(val) __write_32bit_gc0_register(13, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001888
James Hoganbad50d72016-05-16 12:50:04 +01001889#define read_gc0_epc() __read_ulong_gc0_register(14, 0)
1890#define write_gc0_epc(val) __write_ulong_gc0_register(14, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001891
James Hoganbad50d72016-05-16 12:50:04 +01001892#define read_gc0_ebase() __read_32bit_gc0_register(15, 1)
1893#define write_gc0_ebase(val) __write_32bit_gc0_register(15, 1, val)
James Hogan7eb91112016-05-11 15:50:29 +01001894
James Hoganbad50d72016-05-16 12:50:04 +01001895#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)
James Hogan7eb91112016-05-11 15:50:29 +01001897
James Hoganbad50d72016-05-16 12:50:04 +01001898#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)
James Hogan7eb91112016-05-11 15:50:29 +01001914
James Hoganbad50d72016-05-16 12:50:04 +01001915#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)
James Hogan7eb91112016-05-11 15:50:29 +01001931
James Hoganbad50d72016-05-16 12:50:04 +01001932#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)
James Hogan7eb91112016-05-11 15:50:29 +01001948
James Hoganbad50d72016-05-16 12:50:04 +01001949#define read_gc0_xcontext() __read_ulong_gc0_register(20, 0)
1950#define write_gc0_xcontext(val) __write_ulong_gc0_register(20, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001951
James Hoganbad50d72016-05-16 12:50:04 +01001952#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)
James Hogan7eb91112016-05-11 15:50:29 +01001976
James Hoganbad50d72016-05-16 12:50:04 +01001977#define read_gc0_errorepc() __read_ulong_gc0_register(30, 0)
1978#define write_gc0_errorepc(val) __write_ulong_gc0_register(30, 0, val)
James Hogan7eb91112016-05-11 15:50:29 +01001979
James Hoganbad50d72016-05-16 12:50:04 +01001980#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)
James Hogan7eb91112016-05-11 15:50:29 +01001992
1993/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 * Macros to access the floating point coprocessor control registers
1995 */
Manuel Lauss842dfc12014-11-07 14:13:54 +01001996#define _read_32bit_cp1_register(source, gas_hardfloat) \
Steven J. Hillb9688312013-01-12 23:29:27 +00001997({ \
Ralf Baechlec46a2f02015-07-15 11:48:15 +02001998 unsigned int __res; \
Steven J. Hillb9688312013-01-12 23:29:27 +00001999 \
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" \
Manuel Lauss842dfc12014-11-07 14:13:54 +01002006 " "STR(gas_hardfloat)" \n" \
Steven J. Hillb9688312013-01-12 23:29:27 +00002007 " cfc1 %0,"STR(source)" \n" \
2008 " .set pop \n" \
2009 : "=r" (__res)); \
2010 __res; \
2011})
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
James Hogan5e320332015-01-30 15:40:19 +00002013#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
Manuel Lauss842dfc12014-11-07 14:13:54 +01002024#ifdef GAS_HAS_SET_HARDFLOAT
2025#define read_32bit_cp1_register(source) \
2026 _read_32bit_cp1_register(source, .set hardfloat)
James Hogan5e320332015-01-30 15:40:19 +00002027#define write_32bit_cp1_register(dest, val) \
2028 _write_32bit_cp1_register(dest, val, .set hardfloat)
Manuel Lauss842dfc12014-11-07 14:13:54 +01002029#else
2030#define read_32bit_cp1_register(source) \
2031 _read_32bit_cp1_register(source, )
James Hogan5e320332015-01-30 15:40:19 +00002032#define write_32bit_cp1_register(dest, val) \
2033 _write_32bit_cp1_register(dest, val, )
Manuel Lauss842dfc12014-11-07 14:13:54 +01002034#endif
2035
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002036#ifdef HAVE_AS_DSP
2037#define rddsp(mask) \
2038({ \
2039 unsigned int __dspctl; \
2040 \
2041 __asm__ __volatile__( \
Florian Fainelli63c2b682013-03-18 15:56:10 +00002042 " .set push \n" \
2043 " .set dsp \n" \
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002044 " rddsp %0, %x1 \n" \
Florian Fainelli63c2b682013-03-18 15:56:10 +00002045 " .set pop \n" \
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002046 : "=r" (__dspctl) \
2047 : "i" (mask)); \
2048 __dspctl; \
2049})
2050
2051#define wrdsp(val, mask) \
2052do { \
2053 __asm__ __volatile__( \
Florian Fainelli63c2b682013-03-18 15:56:10 +00002054 " .set push \n" \
2055 " .set dsp \n" \
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002056 " wrdsp %0, %x1 \n" \
Florian Fainelli63c2b682013-03-18 15:56:10 +00002057 " .set pop \n" \
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002058 : \
2059 : "r" (val), "i" (mask)); \
2060} while (0)
2061
Florian Fainelli63c2b682013-03-18 15:56:10 +00002062#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})
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002073
Florian Fainelli63c2b682013-03-18 15:56:10 +00002074#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})
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002085
Florian Fainelli63c2b682013-03-18 15:56:10 +00002086#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})
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002097
Florian Fainelli63c2b682013-03-18 15:56:10 +00002098#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})
Steven J. Hill32a7ede2013-01-03 19:01:52 +00002246
2247#else
2248
Steven J. Hilld0c1b472012-12-07 03:53:29 +00002249#ifdef CONFIG_CPU_MICROMIPS
2250#define rddsp(mask) \
2251({ \
2252 unsigned int __res; \
2253 \
2254 __asm__ __volatile__( \
2255 " .set push \n" \
2256 " .set noat \n" \
2257 " # rddsp $1, %x1 \n" \
2258 " .hword ((0x0020067c | (%x1 << 14)) >> 16) \n" \
2259 " .hword ((0x0020067c | (%x1 << 14)) & 0xffff) \n" \
2260 " move %0, $1 \n" \
2261 " .set pop \n" \
2262 : "=r" (__res) \
2263 : "i" (mask)); \
2264 __res; \
2265})
2266
2267#define wrdsp(val, mask) \
2268do { \
2269 __asm__ __volatile__( \
2270 " .set push \n" \
2271 " .set noat \n" \
2272 " move $1, %0 \n" \
2273 " # wrdsp $1, %x1 \n" \
2274 " .hword ((0x0020167c | (%x1 << 14)) >> 16) \n" \
2275 " .hword ((0x0020167c | (%x1 << 14)) & 0xffff) \n" \
2276 " .set pop \n" \
2277 : \
2278 : "r" (val), "i" (mask)); \
2279} while (0)
2280
2281#define _umips_dsp_mfxxx(ins) \
2282({ \
2283 unsigned long __treg; \
2284 \
2285 __asm__ __volatile__( \
2286 " .set push \n" \
2287 " .set noat \n" \
2288 " .hword 0x0001 \n" \
2289 " .hword %x1 \n" \
2290 " move %0, $1 \n" \
2291 " .set pop \n" \
2292 : "=r" (__treg) \
2293 : "i" (ins)); \
2294 __treg; \
2295})
2296
2297#define _umips_dsp_mtxxx(val, ins) \
2298do { \
2299 __asm__ __volatile__( \
2300 " .set push \n" \
2301 " .set noat \n" \
2302 " move $1, %0 \n" \
2303 " .hword 0x0001 \n" \
2304 " .hword %x1 \n" \
2305 " .set pop \n" \
2306 : \
2307 : "r" (val), "i" (ins)); \
2308} while (0)
2309
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 */
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002337#define rddsp(mask) \
2338({ \
2339 unsigned int __res; \
2340 \
2341 __asm__ __volatile__( \
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})
2352
2353#define wrdsp(val, mask) \
2354do { \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002355 __asm__ __volatile__( \
2356 " .set push \n" \
2357 " .set noat \n" \
2358 " move $1, %0 \n" \
2359 " # wrdsp $1, %x1 \n" \
Ralf Baechle26487952005-12-07 17:52:40 +00002360 " .word 0x7c2004f8 | (%x1 << 11) \n" \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002361 " .set pop \n" \
2362 : \
2363 : "r" (val), "i" (mask)); \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002364} while (0)
2365
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002366#define _dsp_mfxxx(ins) \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002367({ \
2368 unsigned long __treg; \
2369 \
2370 __asm__ __volatile__( \
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002371 " .set push \n" \
2372 " .set noat \n" \
2373 " .word (0x00000810 | %1) \n" \
2374 " move %0, $1 \n" \
2375 " .set pop \n" \
2376 : "=r" (__treg) \
2377 : "i" (ins)); \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002378 __treg; \
2379})
2380
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002381#define _dsp_mtxxx(val, ins) \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002382do { \
2383 __asm__ __volatile__( \
2384 " .set push \n" \
2385 " .set noat \n" \
2386 " move $1, %0 \n" \
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002387 " .word (0x00200011 | %1) \n" \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002388 " .set pop \n" \
2389 : \
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002390 : "r" (val), "i" (ins)); \
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002391} while (0)
2392
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002393#define _dsp_mflo(reg) _dsp_mfxxx((reg << 21) | 0x0002)
2394#define _dsp_mfhi(reg) _dsp_mfxxx((reg << 21) | 0x0000)
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002395
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002396#define _dsp_mtlo(val, reg) _dsp_mtxxx(val, ((reg << 11) | 0x0002))
2397#define _dsp_mthi(val, reg) _dsp_mtxxx(val, ((reg << 11) | 0x0000))
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002398
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002399#define mflo0() _dsp_mflo(0)
2400#define mflo1() _dsp_mflo(1)
2401#define mflo2() _dsp_mflo(2)
2402#define mflo3() _dsp_mflo(3)
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002403
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002404#define mfhi0() _dsp_mfhi(0)
2405#define mfhi1() _dsp_mfhi(1)
2406#define mfhi2() _dsp_mfhi(2)
2407#define mfhi3() _dsp_mfhi(3)
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002408
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002409#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)
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002413
Steven J. Hill4cb764b2012-12-07 03:53:52 +00002414#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)
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002418
Steven J. Hilld0c1b472012-12-07 03:53:29 +00002419#endif /* CONFIG_CPU_MICROMIPS */
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002420#endif
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422/*
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{
Marc St-Jean9267a302007-06-14 15:55:31 -06002437#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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 __asm__ __volatile__(
2455 ".set noreorder\n\t"
2456 "tlbr\n\t"
2457 ".set reorder");
Marc St-Jean9267a302007-06-14 15:55:31 -06002458
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
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
James Hoganbad50d72016-05-16 12:50:04 +01002488#ifdef TOOLCHAIN_SUPPORTS_VIRT
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490/*
James Hogan7eb91112016-05-11 15:50:29 +01002491 * Guest TLB operations.
2492 *
2493 * It is responsibility of the caller to take care of any TLB hazards.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 */
James Hogan7eb91112016-05-11 15:50:29 +01002495static 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
2537 */
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
James Hoganbad50d72016-05-16 12:50:04 +01002548#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
James Hogan7eb91112016-05-11 15:50:29 +01002595/*
2596 * Manipulate bits in a register.
2597 */
2598#define __BUILD_SET_COMMON(name) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599static inline unsigned int \
James Hogan7eb91112016-05-11 15:50:29 +01002600set_##name(unsigned int set) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{ \
Ralf Baechle89e18eb2009-03-23 22:14:55 +01002602 unsigned int res, new; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 \
James Hogan7eb91112016-05-11 15:50:29 +01002604 res = read_##name(); \
Ralf Baechle89e18eb2009-03-23 22:14:55 +01002605 new = res | set; \
James Hogan7eb91112016-05-11 15:50:29 +01002606 write_##name(new); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 \
2608 return res; \
2609} \
2610 \
2611static inline unsigned int \
James Hogan7eb91112016-05-11 15:50:29 +01002612clear_##name(unsigned int clear) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613{ \
Ralf Baechle89e18eb2009-03-23 22:14:55 +01002614 unsigned int res, new; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 \
James Hogan7eb91112016-05-11 15:50:29 +01002616 res = read_##name(); \
Ralf Baechle89e18eb2009-03-23 22:14:55 +01002617 new = res & ~clear; \
James Hogan7eb91112016-05-11 15:50:29 +01002618 write_##name(new); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 \
2620 return res; \
2621} \
2622 \
2623static inline unsigned int \
James Hogan7eb91112016-05-11 15:50:29 +01002624change_##name(unsigned int change, unsigned int val) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{ \
Ralf Baechle89e18eb2009-03-23 22:14:55 +01002626 unsigned int res, new; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 \
James Hogan7eb91112016-05-11 15:50:29 +01002628 res = read_##name(); \
Ralf Baechle89e18eb2009-03-23 22:14:55 +01002629 new = res & ~change; \
2630 new |= (val & change); \
James Hogan7eb91112016-05-11 15:50:29 +01002631 write_##name(new); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 \
2633 return res; \
2634}
2635
James Hogan7eb91112016-05-11 15:50:29 +01002636/*
2637 * Manipulate bits in a c0 register.
2638 */
2639#define __BUILD_SET_C0(name) __BUILD_SET_COMMON(c0_##name)
2640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641__BUILD_SET_C0(status)
2642__BUILD_SET_C0(cause)
2643__BUILD_SET_C0(config)
Paul Burton7f65afb2014-01-27 15:23:09 +00002644__BUILD_SET_C0(config5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645__BUILD_SET_C0(intcontrol)
Ralf Baechle7a0fc582005-07-13 19:47:28 +00002646__BUILD_SET_C0(intctl)
2647__BUILD_SET_C0(srsmap)
Steven J. Hilla5770df2015-02-19 10:18:52 -06002648__BUILD_SET_C0(pagegrain)
James Hoganf913e9e2016-05-11 15:50:28 +01002649__BUILD_SET_C0(guestctl0)
2650__BUILD_SET_C0(guestctl0ext)
2651__BUILD_SET_C0(guestctl1)
2652__BUILD_SET_C0(guestctl2)
2653__BUILD_SET_C0(guestctl3)
Kevin Cernekee020232f2011-11-16 01:25:44 +00002654__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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
David Daney45b585c2014-05-28 23:52:10 +02002662/*
James Hogan7eb91112016-05-11 15:50:29 +01002663 * 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
2671/*
David Daney45b585c2014-05-28 23:52:10 +02002672 * 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{
James Hogan37af2f32016-05-11 13:50:49 +01002677 return read_c0_ebase() & MIPS_EBASE_CPUNUM;
David Daney45b585c2014-05-28 23:52:10 +02002678}
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680#endif /* !__ASSEMBLY__ */
2681
2682#endif /* _ASM_MIPSREGS_H */