1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
|
/* This file is part of the CodeSourcery C Library (CSLIBC).
Copyright (c) 2009 CodeSourcery, Inc.
THIS FILE CONTAINS PROPRIETARY, CONFIDENTIAL, AND TRADE SECRET
INFORMATION OF CODESOURCERY AND/OR ITS LICENSORS.
You may not use, modify or distribute this file without the express
written permission of CodeSourcery or its authorized
distributor. Please consult your license agreement for the
applicable terms and conditions. */
/*
* Copyright (c) 1999-2007 MIPS Technologies, Inc.
* Copyright (C) 2009 CodeSourcery, LLC.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright
* notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with
* the distribution.
* * Neither the name of MIPS Technologies Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* m32c0.h : MIPS32 coprocessor 0 definitions
*/
#ifndef _M32C0_H_
#define _M32C0_H_
#ifdef __cplusplus
extern "C" {
#endif
/* MIPS32-specific MMU interface */
//#assert mmu(m32)
//#include "mips/m32tlb.h"
/*
* MIPS32 Exception Codes
*/
#define EXC_INTR 0 /* interrupt */
#define EXC_MOD 1 /* tlb modification */
#define EXC_TLBL 2 /* tlb miss (load/i-fetch) */
#define EXC_TLBS 3 /* tlb miss (store) */
#define EXC_ADEL 4 /* address error (load/i-fetch) */
#define EXC_ADES 5 /* address error (store) */
#define EXC_IBE 6 /* bus error (i-fetch) */
#define EXC_DBE 7 /* data bus error (load/store) */
#define EXC_SYS 8 /* system call */
#define EXC_BP 9 /* breakpoint */
#define EXC_RI 10 /* reserved instruction */
#define EXC_CPU 11 /* coprocessor unusable */
#define EXC_OVF 12 /* integer overflow */
#define EXC_TRAP 13 /* trap exception */
#define EXC_RES14 14
#define EXC_FPE 15 /* floating point exception */
#define EXC_IS1 16 /* implementation-specific 1 */
#define EXC_IS2 17 /* implementation-specific 2 */
#define EXC_C2E 18 /* coprocessor 2 exception */
#define EXC_RES19 19
#define EXC_RES20 20
#define EXC_RES21 21
#define EXC_MDMX 22 /* mdmx unusable */
#define EXC_WATCH 23 /* watchpoint */
#define EXC_MCHECK 24 /* machine check */
#define EXC_THREAD 25 /* thread */
#define EXC_DSPU 26 /* dsp unusable */
#define EXC_RES27 27
#define EXC_RES28 28
#define EXC_RES29 29
#define EXC_RES30 30
#define EXC_RES31 31
/*
* MIPS32 Cause Register (CP0 Register 13, Select 0)
*/
#define CR_BD 0x80000000 /* branch delay */
#define CR_TI 0x40000000 /* timer interrupt (r2) */
#define CR_CEMASK 0x30000000 /* coprocessor used */
#define CR_CESHIFT 28
#define CR_DC 0x08000000 /* disable count (r2) */
#define CR_PCI 0x04000000 /* performance counter i/u (r2) */
#define CR_IV 0x00800000 /* use special i/u vec */
#define CR_WP 0x00400000 /* deferred watchpoint */
/* interrupt pending bits */
#define CR_SINT0 0x00000100 /* s/w interrupt 0 */
#define CR_SINT1 0x00000200 /* s/w interrupt 1 */
#define CR_HINT0 0x00000400 /* h/w interrupt 0 */
#define CR_HINT1 0x00000800 /* h/w interrupt 1 */
#define CR_HINT2 0x00001000 /* h/w interrupt 2 */
#define CR_HINT3 0x00002000 /* h/w interrupt 3 */
#define CR_HINT4 0x00004000 /* h/w interrupt 4 */
#define CR_HINT5 0x00008000 /* h/w interrupt 5 */
/* alternative interrupt pending bit naming */
#define CR_IP0 0x00000100
#define CR_IP1 0x00000200
#define CR_IP2 0x00000400
#define CR_IP3 0x00000800
#define CR_IP4 0x00001000
#define CR_IP5 0x00002000
#define CR_IP6 0x00004000
#define CR_IP7 0x00008000
#define CR_IMASK 0x0000ff00 /* interrupt pending mask */
#define CR_XMASK 0x0000007c /* exception code mask */
#define CR_XCPT(x) ((x)<<2)
/*
* MIPS32 Status Register (CP0 Register 12, Select 0)
*/
#define SR_IE 0x00000001 /* interrupt enable */
#define SR_EXL 0x00000002 /* exception level */
#define SR_ERL 0x00000004 /* error level */
#define SR_UM 0x00000010 /* user mode */
#define SR_KSU_MASK 0x00000018 /* ksu mode mask */
#define SR_KSU_USER 0x00000010 /* user mode */
#define SR_KSU_SPVS 0x00000008 /* supervisor mode */
#define SR_KSU_KERN 0x00000000 /* kernel mode */
/* interrupt mask bits */
#define SR_SINT0 0x00000100 /* enable s/w interrupt 0 */
#define SR_SINT1 0x00000200 /* enable s/w interrupt 1 */
#define SR_HINT0 0x00000400 /* enable h/w interrupt 1 */
#define SR_HINT1 0x00000800 /* enable h/w interrupt 2 */
#define SR_HINT2 0x00001000 /* enable h/w interrupt 3 */
#define SR_HINT3 0x00002000 /* enable h/w interrupt 4 */
#define SR_HINT4 0x00004000 /* enable h/w interrupt 5 */
#define SR_HINT5 0x00008000 /* enable h/w interrupt 6 */
/* alternative interrupt mask naming */
#define SR_IM0 0x00000100
#define SR_IM1 0x00000200
#define SR_IM2 0x00000400
#define SR_IM3 0x00000800
#define SR_IM4 0x00001000
#define SR_IM5 0x00002000
#define SR_IM6 0x00004000
#define SR_IM7 0x00008000
#define SR_IMASK 0x0000ff00
#define SR_NMI 0x00080000 /* NMI occurred */
#define SR_SR 0x00100000 /* soft reset occurred */
#define SR_TS 0x00200000 /* TLB shutdown */
#define SR_BEV 0x00400000 /* boot exception vectors */
#define SR_PX 0x00800000 /* user 64-bit reg / 32-bit addr */
#define SR_MX 0x01000000 /* enable MDMX/DSP ASE */
#define SR_RE 0x02000000 /* reverse endian (user mode) */
#define SR_FR 0x04000000 /* 64-bit fpu registers */
#define SR_RP 0x08000000 /* reduce power */
#define SR_CU0 0x10000000 /* coprocessor 0 enable */
#define SR_CU1 0x20000000 /* coprocessor 1 enable */
#define SR_CU2 0x40000000 /* coprocessor 2 enable */
#define SR_CU3 0x80000000 /* coprocessor 3 enable */
/*
* MIPS32r2 HWREna Register (CP0 Register 7, Select 0)
*/
#define HWRENA_CPUNUM 0x00000001
#define HWRENA_SYNCSTEP 0x00000002
#define HWRENA_CC 0x00000004
#define HWRENA_CCRES 0x00000008
/*
* MIPS32r2 IntCtl Register (CP0 Register 12, Select 1)
*/
#define INTCTL_IPTI 0xe0000000 /* timer i/u pending bit */
#define INTCTL_IPTI_SHIFT 29
#define INTCTL_IPPCI 0x1c000000 /* perfctr i/u pending bit */
#define INTCTL_IPPCI_SHIFT 26
#define INTCTL_VS 0x000003e0 /* vector spacing */
#define INTCTL_VS_0 (0x00<<5)
#define INTCTL_VS_32 (0x01<<5)
#define INTCTL_VS_64 (0x02<<5)
#define INTCTL_VS_128 (0x04<<5)
#define INTCTL_VS_256 (0x08<<5)
#define INTCTL_VS_512 (0x10<<5)
/*
* MIPS32r2 SRSCtl Register (CP0 Register 12, Select 2)
*/
#define SRSCTL_HSS 0x3c000000 /* highest shadow set */
#define SRSCTL_HSS_SHIFT 26
#define SRSCTL_EICSS 0x003c0000 /* EIC shadow set */
#define SRSCTL_EICSS_SHIFT 18
#define SRSCTL_ESS 0x0000f000 /* exception shadow set */
#define SRSCTL_ESS_SHIFT 12
#define SRSCTL_PSS 0x000003c0 /* previous shadow set */
#define SRSCTL_PSS_SHIFT 6
#define SRSCTL_CSS 0x0000000f /* current shadow set */
#define SRSCTL_CSS_SHIFT 0
/*
* MIPS32 Config0 Register (CP0 Register 16, Select 0)
*/
#define CFG0_M 0x80000000 /* Config1 implemented */
#define CFG0_BE 0x00008000 /* Big Endian */
#define CFG0_ATMASK 0x00006000 /* Architecture type: */
#define CFG0_AT_M32 (0<<13) /* MIPS32 */
#define CFG0_AT_M64_A32 (1<<13) /* MIPS64, 32-bit addresses */
#define CFG0_AT_M64_A64 (2<<13) /* MIPS64, 64-bit addresses */
#define CFG0_AT_RES (3<<13)
#define CFG0_ARMASK 0x00001c00
#define CFG0_ARSHIFT 10
#define CFG0_MTMASK 0x00000380
#define CFG0_MT_NONE (0<<7)
#define CFG0_MT_TLB (1<<7)
#define CFG0_MT_BAT (2<<7)
#define CFG0_MT_NONSTD (3<<7)
#define CFG0_VI 0x00000008 /* Icache is virtual */
#define CFG0_K0MASK 0x00000007 /* KSEG0 coherency algorithm */
/*
* R4000 compatibility Config Register (actually processor dependent)
*/
#define CFG_BE CFG0_BE /* Big Endian */
#define CFG_K0MASK CFG0_K0MASK /* KSEG0 coherency algorithm */
/*
* MIPS32 Config1 Register (CP0 Register 16, Select 1)
*/
#define CFG1_M 0x80000000 /* Config2 implemented */
#define CFG1_MMUSMASK 0x7e000000 /* mmu size - 1 */
#define CFG1_MMUSSHIFT 25
#define CFG1_ISMASK 0x01c00000 /* icache lines 64<<n */
#define CFG1_ISSHIFT 22
#define CFG1_ILMASK 0x00380000 /* icache line size 2<<n */
#define CFG1_ILSHIFT 19
#define CFG1_IAMASK 0x00070000 /* icache ways - 1 */
#define CFG1_IASHIFT 16
#define CFG1_DSMASK 0x0000e000 /* dcache lines 64<<n */
#define CFG1_DSSHIFT 13
#define CFG1_DLMASK 0x00001c00 /* dcache line size 2<<n */
#define CFG1_DLSHIFT 10
#define CFG1_DAMASK 0x00000380 /* dcache ways - 1 */
#define CFG1_DASHIFT 7
#define CFG1_C2 0x00000040 /* Coprocessor 2 present */
#define CFG1_MD 0x00000020 /* MDMX implemented */
#define CFG1_PC 0x00000010 /* performance counters implemented */
#define CFG1_WR 0x00000008 /* watch registers implemented */
#define CFG1_CA 0x00000004 /* compression (mips16) implemented */
#define CFG1_EP 0x00000002 /* ejtag implemented */
#define CFG1_FP 0x00000001 /* fpu implemented */
/*
* MIPS32r2 Config2 Register (CP0 Register 16, Select 2)
*/
#define CFG2_M 0x80000000 /* Config3 implemented */
#define CFG2_TUMASK 0x70000000 /* tertiary cache control */
#define CFG2_TUSHIFT 28
#define CFG2_TSMASK 0x0f000000 /* tcache sets per wway 64<<n */
#define CFG2_TSSHIFT 24
#define CFG2_TLMASK 0x00f00000 /* tcache line size 2<<n */
#define CFG2_TLSHIFT 20
#define CFG2_TAMASK 0x000f0000 /* tcache ways - 1 */
#define CFG2_TASHIFT 16
#define CFG2_SUMASK 0x0000f000 /* secondary cache control */
#define CFG2_SUSHIFT 12
#define CFG2_SSMASK 0x00000f00 /* scache sets per wway 64<<n */
#define CFG2_SSSHIFT 8
#define CFG2_SLMASK 0x000000f0 /* scache line size 2<<n */
#define CFG2_SLSHIFT 4
#define CFG2_SAMASK 0x0000000f /* scache ways - 1 */
#define CFG2_SASHIFT 0
/*
* MIPS32r2 Config3 Register (CP0 Register 16, Select 3)
*/
#define CFG3_M 0x80000000 /* Config4 implemented */
#define CFG3_ISAONEXC 0x00010000 /* ISA mode on exception entry */
#define CFG3_DSPP 0x00000400 /* DSP ASE present */
#define CFG3_LPA 0x00000080 /* Large physical addresses */
#define CFG3_VEIC 0x00000040 /* Vectored external i/u controller */
#define CFG3_VI 0x00000020 /* Vectored i/us */
#define CFG3_SP 0x00000010 /* Small page support */
#define CFG3_MT 0x00000004 /* MT ASE present */
#define CFG3_SM 0x00000002 /* SmartMIPS ASE */
#define CFG3_TL 0x00000001 /* Trace Logic */
/*
* Primary cache mode
*/
#define CFG_C_UNCACHED 2
#define CFG_C_WBACK 3
#define CFG_C_NONCOHERENT 3
#if 0
/* These cache modes are CPU specific */
#define CFG_C_WTHRU_NOALLOC 0
#define CFG_C_WTHRU_ALLOC 1
#define CFG_C_COHERENTXCL 4
#define CFG_C_COHERENTXCLW 5
#define CFG_C_COHERENTUPD 6
#define CFG_C_UNCACHED_ACCEL 7
#endif
/*
* Primary Cache TagLo (CP0 Register 28, Select 0/2)
*/
#define TAG_PTAG_MASK 0xffffff00 /* Primary Tag */
#define TAG_PTAG_SHIFT 8
#define TAG_PSTATE_MASK 0x000000c0 /* Primary Cache State */
#define TAG_PSTATE_SHIFT 6
#define TAG_PSTATE_LOCK 0x00000020
#define TAG_PARITY_MASK 0x00000001 /* Primary Tag Parity */
#define TAG_PARITY_SHIFT 0
/* primary cache state (XXX actually implementation specific) */
#define PSTATE_INVAL 0
#define PSTATE_SHARED 1
#define PSTATE_CLEAN_EXCL 2
#define PSTATE_DIRTY_EXCL 3
/*
* Cache operations
*/
#define Index_Invalidate_I 0x00 /* 0 0 */
#define Index_Writeback_Inv_D 0x01 /* 0 1 */
#define Index_Writeback_Inv_T 0x02 /* 0 2 */
#define Index_Writeback_Inv_S 0x03 /* 0 3 */
#define Index_Load_Tag_I 0x04 /* 1 0 */
#define Index_Load_Tag_D 0x05 /* 1 1 */
#define Index_Load_Tag_T 0x06 /* 1 2 */
#define Index_Load_Tag_S 0x07 /* 1 3 */
#define Index_Store_Tag_I 0x08 /* 2 0 */
#define Index_Store_Tag_D 0x09 /* 2 1 */
#define Index_Store_Tag_T 0x0A /* 2 2 */
#define Index_Store_Tag_S 0x0B /* 2 3 */
#define Hit_Invalidate_I 0x10 /* 4 0 */
#define Hit_Invalidate_D 0x11 /* 4 1 */
#define Hit_Invalidate_T 0x12 /* 4 2 */
#define Hit_Invalidate_S 0x13 /* 4 3 */
#define Fill_I 0x14 /* 5 0 */
#define Hit_Writeback_Inv_D 0x15 /* 5 1 */
#define Hit_Writeback_Inv_T 0x16 /* 5 2 */
#define Hit_Writeback_Inv_S 0x17 /* 5 3 */
#define Hit_Writeback_D 0x19 /* 6 1 */
#define Hit_Writeback_T 0x1A /* 6 1 */
#define Hit_Writeback_S 0x1B /* 6 3 */
#define Fetch_Lock_I 0x1C /* 7 0 */
#define Fetch_Lock_D 0x1D /* 7 1 */
/* MIPS32 WatchLo Register (CP0 Register 18) */
#define WATCHLO_VA 0xfffffff8
#define WATCHLO_I 0x00000004
#define WATCHLO_R 0x00000002
#define WATCHLO_W 0x00000001
/* MIPS32 WatchHi Register (CP0 Register 19) */
#define WATCHHI_M 0x80000000
#define WATCHHI_G 0x40000000
#define WATCHHI_ASIDMASK 0x00ff0000
#define WATCHHI_ASIDSHIFT 16
#define WATCHHI_MASK 0x00000ffc
#define WATCHHI_I 0x00000004
#define WATCHHI_R 0x00000002
#define WATCHHI_W 0x00000001
/* MIPS32 PerfCnt Register (CP0 Register 25) */
#define PERFCNT_M 0x80000000
#define PERFCNT_EVENTMASK 0x000007e0
#define PERFCNT_EVENTSHFT 5
#define PERFCNT_IE 0x00000010
#define PERFCNT_U 0x00000008
#define PERFCNT_S 0x00000004
#define PERFCNT_K 0x00000002
#define PERFCNT_EXL 0x00000001
/* MIPS32r2 PageGrain Register (CP0 Register 5, Select 1) */
#define PAGEGRAIN_ELPA 0x20000000 /* Enable large phusical addresses */
#define PAGEGRAIN_ESP 0x10000000 /* Enable small (1KB) page support */
/* MIPS32r2 EBase Register (CP0 Register 15, Select 1) */
#define EBASE_BASE 0xfffff000 /* Exception base */
#define EBASE_CPU 0x000003ff /* CPU number */
#ifdef __ASSEMBLER__
/*
* MIPS32 Coprocessor 0 register numbers
*/
#define C0_INDEX $0
#define C0_INX $0
#define C0_RANDOM $1
#define C0_RAND $1
#define C0_ENTRYLO0 $2
#define C0_TLBLO0 $2
#define C0_ENTRYLO1 $3
#define C0_TLBLO1 $3
#define C0_CONTEXT $4
#define C0_CTXT $4
#define C0_PAGEMASK $5
#define C0_PAGEGRAIN $5,1
#define C0_WIRED $6
#define C0_HWRENA $7
#define C0_BADVADDR $8
#define C0_VADDR $8
#define C0_COUNT $9
#define C0_ENTRYHI $10
#define C0_TLBHI $10
#define C0_COMPARE $11
#define C0_STATUS $12
#define C0_SR $12
#define C0_INTCTL $12,1
#define C0_SRSCTL $12,2
#define C0_SRSMAP $12,3
#define C0_CAUSE $13
#define C0_CR $13
#define C0_EPC $14
#define C0_PRID $15
#define C0_EBASE $15,1
#define C0_CONFIG $16
#define C0_CONFIG0 $16,0
#define C0_CONFIG1 $16,1
#define C0_CONFIG2 $16,2
#define C0_CONFIG3 $16,3
#define C0_LLADDR $17
#define C0_WATCHLO $18
#define C0_WATCHHI $19
#define C0_DEBUG $23
#define C0_DEPC $24
#define C0_PERFCNT $25
#define C0_ERRCTL $26
#define C0_CACHEERR $27
#define C0_TAGLO $28
#define C0_ITAGLO $28
#define C0_DTAGLO $28,2
#define C0_TAGLO2 $28,4
#define C0_DATALO $28,1
#define C0_IDATALO $28,1
#define C0_DDATALO $28,3
#define C0_DATALO2 $28,5
#define C0_TAGHI $29
#define C0_DATAHI $29,1
#define C0_ERRPC $30
#define C0_DESAVE $31
$index = $0
$random = $1
$entrylo0 = $2
$entrylo1 = $3
$context = $4
$pagemask = $5
$wired = $6
$hwrena = $7
$vaddr = $8
$badvaddr = $8
$count = $9
$entryhi = $10
$compare = $11
$sr = $12
$cr = $13
$epc = $14
$prid = $15
$config = $16
$lladdr = $17
$watchlo = $18
$watchhi = $19
$debug = $23
$depc = $24
$perfcnt = $25
$errctl = $26
$cacheerr = $27
$taglo = $28
$taghi = $29
$errpc = $30
$desave = $31
#else /* !__ASSEMBLER__ */
/*
* Standard types
*/
typedef unsigned long reg32_t; /* a 32-bit register */
typedef unsigned long long reg64_t; /* a 64-bit register */
#if __mips == 64 || __mips64
typedef unsigned long long reg_t;
typedef signed long long sreg_t;
#else
typedef unsigned long reg_t;
typedef signed long sreg_t;
#endif
/*
* MIPS32 Coprocessor 0 register numbers
*/
#define C0_INDEX 0
#define C0_INX 0
#define C0_RANDOM 1
#define C0_RAND 1
#define C0_ENTRYLO0 2
#define C0_TLBLO0 2
#define C0_ENTRYLO1 3
#define C0_TLBLO1 3
#define C0_CONTEXT 4
#define C0_CTXT 4
#define C0_PAGEMASK 5
#define C0_WIRED 6
#define C0_HWRENA 7
#define C0_BADVADDR 8
#define C0_VADDR 8
#define C0_COUNT 9
#define C0_ENTRYHI 10
#define C0_TLBHI 10
#define C0_COMPARE 11
#define C0_STATUS 12
#define C0_SR 12
#define C0_CAUSE 13
#define C0_CR 13
#define C0_EPC 14
#define C0_PRID 15
#define C0_CONFIG 16
#define C0_LLADDR 17
#define C0_WATCHLO 18
#define C0_WATCHHI 19
#define C0_DEBUG 23
#define C0_DEPC 24
#define C0_PERFCNT 25
#define C0_ERRCTL 26
#define C0_CACHEERR 27
#define C0_TAGLO 28
#define C0_TAGHI 29
#define C0_ERRPC 30
#define C0_DESAVE 31
#define _mips_nop() \
__asm__ __volatile ("%(ssnop%)" : :)
#if ! __mips16 || __force_mips16_asm
# define _mips_sync() __asm__ __volatile__ ("sync" : : : "memory")
#else
extern void _mips_sync(void);
#endif
/* wait for unmasked interrupt */
#define _mips_wait() \
__asm__ __volatile ("wait")
/*
* Define macros for accessing the MIPS32 coprocessor 0 registers.
* Most apart from "set" return the original register value.
*/
#if ! __mips16 || __force_mips16_asm
#define _m32c0_mfc0(reg, sel) \
__extension__ ({ \
register unsigned long __r; \
__asm__ __volatile ("mfc0 %0,$%1,%2" \
: "=d" (__r) \
: "JK" (reg), "JK" (sel)); \
__r; \
})
#if __mips_isa_rev >= 2
#define _m32c0_mtc0(reg, sel, val) \
do { \
__asm__ __volatile ("%(mtc0 %z0,$%1,%2; ehb%)" \
: \
: "dJ" ((reg32_t)(val)), "JK" (reg), "JK" (sel) \
: "memory"); \
} while (0)
#else
#define _m32c0_mtc0(reg, sel, val) \
do { \
__asm__ __volatile ("%(mtc0 %z0,$%1,%2; ssnop; ssnop; ehb%)" \
: \
: "dJ" ((reg32_t)(val)), "JK" (reg), "JK" (sel) \
: "memory"); \
} while (0)
#endif
#define _m32c0_mxc0(reg, sel, val) \
__extension__ ({ \
register reg32_t __o; \
__o = _m32c0_mfc0 (reg, sel); \
_m32c0_mtc0 (reg, sel, val); \
__o; \
})
#else
#define _m32c0_mfc0(rn, sel) _mips_xxc0 ((rn) + (sel)*32, 0, 0)
#define _m32c0_mtc0(rn, sel, v) (void) _mips_xxc0 ((rn) + (sel)*32, ~0, v)
#define _m32c0_mxc0(rn, sel, v) _mips_xxc0 ((rn) + (sel)*32, ~0, v)
#endif /* !__mips16 */
/* generic equivalents for mips/cpu.h */
#define _mips_mfc0(r) _m32c0_mfc0(r,0)
#define _mips_mtc0(r,v) _m32c0_mtc0(r,0,v)
/* MIPS32 Config0 register */
#define mips32_getconfig0() _mips_mfc0(C0_CONFIG)
#define mips32_setconfig0(v) _mips_mtc0(C0_CONFIG,v)
#define mips32_xchconfig0(v) _mips_mxc0(C0_CONFIG,v)
#define mips32_bicconfig0(clr) _mips_bcc0(C0_CONFIG,clr)
#define mips32_bisconfig0(set) _mips_bsc0(C0_CONFIG,set)
#define mips32_bcsconfig0(c,s) _mips_bcsc0(C0_CONFIG,c,s)
/* MIPS32 Config1, 2 & 3 register */
#define mips32_getconfig1() _m32c0_mfc0(C0_CONFIG,1)
#define mips32_getconfig2() _m32c0_mfc0(C0_CONFIG,2)
#define mips32_getconfig3() _m32c0_mfc0(C0_CONFIG,3)
/* MIPS32 WatchLo register */
#define mips32_getwatchlo(sel) _mips_xxc0(C0_WATCHLO + (sel)*32, 0, 0)
#define mips32_setwatchlo(sel,v) _mips_xxc0(C0_WATCHLO + (sel)*32, ~0, v)
/* MIPS32 WatchHi register */
#define mips32_getwatchhi(sel) _mips_xxc0(C0_WATCHHI + (sel)*32, 0, 0)
#define mips32_setwatchhi(sel,v) _mips_xxc0(C0_WATCHHI + (sel)*32, ~0, v)
/* MIPS32 Debug register */
#define mips32_getdebug() _mips_mfc0(C0_DEBUG)
#define mips32_setdebug(v) _mips_mtc0(C0_DEBUG,v)
#define mips32_xchdebug(v) _mips_mxc0(C0_DEBUG,v)
#define mips32_bicdebug(clr) _mips_bcc0(C0_DEBUG,clr)
#define mips32_bisdebug(set) _mips_bsc0(C0_DEBUG,set)
#define mips32_bcsdebug(c,s) _mips_bcsc0(C0_DEBUG,c,s)
/* MIPS32 ErrCtl register */
#define mips32_geterrctl() _mips_mfc0(C0_ERRCTL)
#define mips32_seterrctl(x) _mips_mtc0(C0_ERRCTL,x)
#define mips32_xcherrctl(x) _mips_mxc0(C0_ERRCTL,x)
#define mips32_bicerrctl(clr) _mips_bcc0(C0_ERRCTL,clr)
#define mips32_biserrctl(set) _mips_bsc0(C0_ERRCTL,set)
#define mips32_bcserrctl(c,s) _mips_bcsc0(C0_ERRCTL,c,s)
/* MIPS32 TagLo register */
#define mips32_getitaglo() _mips_mfc0(C0_TAGLO) /* alias define */
#define mips32_setitaglo(x) _mips_mtc0(C0_TAGLO,x) /* alias define */
#define mips32_xchitaglo(x) _mips_mxc0(C0_TAGLO,x) /* alias define */
#define mips32_getdtaglo() _m32c0_mfc0(C0_TAGLO,2)
#define mips32_setdtaglo(x) _m32c0_mtc0(C0_TAGLO,2,x)
#define mips32_xchdtaglo(x) _m32c0_mxc0(C0_TAGLO,2,x)
#define mips32_gettaglo2() _m32c0_mfc0(C0_TAGLO,4)
#define mips32_settaglo2(x) _m32c0_mtc0(C0_TAGLO,4,x)
#define mips32_xchtaglo2(x) _m32c0_mxc0(C0_TAGLO,4,x)
/* MIPS32 DataLo register */
#define mips32_getdatalo() _m32c0_mfc0(C0_TAGLO,1)
#define mips32_setdatalo(x) _m32c0_mtc0(C0_TAGLO,1,x)
#define mips32_xchdatalo(x) _m32c0_mxc0(C0_TAGLO,1,x)
#define mips32_getidatalo() mips32_getdatalo() /* alias define */
#define mips32_setidatalo(x) mips32_setdatalo(x) /* alias define */
#define mips32_xchidatalo(x) mips32_xchdatalo(x) /* alias define */
#define mips32_getddatalo() _m32c0_mfc0(C0_TAGLO,3)
#define mips32_setddatalo(x) _m32c0_mtc0(C0_TAGLO,3,x)
#define mips32_xchddatalo(x) _m32c0_mxc0(C0_TAGLO,3,x)
#define mips32_getdatalo2() _m32c0_mfc0(C0_TAGLO,5)
#define mips32_setdatalo2(x) _m32c0_mtc0(C0_TAGLO,5,x)
#define mips32_xchdatalo2(x) _m32c0_mxc0(C0_TAGLO,5,x)
/* MIPS32r2 IntCtl register */
#define mips32_getintctl() _m32c0_mfc0(12,1)
#define mips32_setintctl(x) _m32c0_mtc0(12,1,x)
#define mips32_xchintctl(x) _m32c0_mxc0(12,1,x)
/* MIPS32r2 SRSCtl register */
#define mips32_getsrsctl() _m32c0_mfc0(12,2)
#define mips32_setsrsctl(x) _m32c0_mtc0(12,2,x)
#define mips32_xchsrsctl(x) _m32c0_mxc0(12,2,x)
/* MIPS32r2 SRSMap register */
#define mips32_getsrsmapl() _m32c0_mfc0(12,3)
#define mips32_setsrsmap(x) _m32c0_mtc0(12,3,x)
#define mips32_xchsrsmap(x) _m32c0_mxc0(12,3,x)
/* MIPS32r2/SmartMIPS PageGrain register */
#define mips32_getpagegrain() _m32c0_mfc0(5,1)
#define mips32_setpagegrain(x) _m32c0_mtc0(5,1,x)
#define mips32_xchpagegrain(x) _m32c0_mxc0(5,1,x)
/* MIPS32r2 HWREna register */
#define mips32_gethwrena() _mips_mfc0(C0_HWRENA)
#define mips32_sethwrena(v) _mips_mtc0(C0_HWRENA,v)
#define mips32_xchhwrena(v) _mips_mxc0(C0_HWRENA,v)
#define mips32_bichwrena(clr) _mips_bcc0(C0_HWRENA,clr)
#define mips32_bishwrena(set) _mips_bsc0(C0_HWRENA,set)
#define mips32_bcshwrena(c,s) _mips_bcsc0(C0_HWRENA,c,s)
/* MIPS32r2 EBase register */
#define mips32_getebase() _m32c0_mfc0(15,1)
#define mips32_setebase(x) _m32c0_mtc0(15,1,x)
#define mips32_xchebase(x) _m32c0_mxc0(15,1,x)
/* Define MIPS64 user-level intrinsics */
#include "mips/mips32.h"
/* CP0 intrinsics */
#if __mips_isa_rev >= 2 && (! __mips16 || __force_mips16_asm)
/* MIPS32r2 atomic interrupt disable */
#define _mips_intdisable() __extension__({ \
unsigned int __v; \
__asm__ __volatile__ ("di %0; ehb" : "=d" (__v)); \
__v; \
})
/* MIPS32r2 atomic interrupt restore */
#define _mips_intrestore(x) \
mips_setsr (x)
/* MIPS32r2 set SRSCtl.PSS (previous shadow set), returning old value */
extern unsigned int _mips32r2_xchsrspss (unsigned int);
#if 0
/* simpler to make this a function in mipscp0.sx */
#define _mips32r2_xchsrspss(set) \
__extension__({ \
unsigned int __tmp, __old; \
__asm __volatile ("mfc0 %0,$12,2\n\
ext %1,%0,6,4\n\
ins %0,%z2,6,4\n\
mtc0 %0,$12,2\n\
la %0,1f\n\
jr.hb %0\n\
1:"
: "=&d" (__tmp), "=&d" (__old) \
: "dJ" (set)); \
__old; \
})
#endif
/* MIPS32r2 write previous gpr */
#define _mips32r2_wrpgpr(regno, val) \
do { \
__asm __volatile ("wrpgpr $%0,%z1" \
: /* no outputs */ \
: "JK" (regno), "dJ" (val)); \
} while (0)
/* MIPS32r2 read previous gpr */
#define _mips32r2_rdpgpr(regno) \
__extension__({ \
reg_t __val; \
__asm __volatile ("rdpgpr %0,$%1" \
: "=d" (__val) \
: "JK" (regno)); \
__val; \
})
#endif /* __mips_isa_rev >= 2 && ! __mips16 */
#endif /* __ASSEMBLER__ */
/* MIPS32 PREF instruction hint codes */
#define PREF_LOAD 0
#define PREF_STORE 1
#define PREF_LOAD_STREAMED 4
#define PREF_STORE_STREAMED 5
#define PREF_LOAD_RETAINED 6
#define PREF_STORE_RETAINED 7
#define PREF_WRITEBACK_INVAL 25
#define PREF_PREPAREFORSTORE 30
#ifdef __cplusplus
}
#endif
#endif /* _M32C0_H_ */
|