-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathproc_reg.h
More file actions
1208 lines (1015 loc) · 43.1 KB
/
proc_reg.h
File metadata and controls
1208 lines (1015 loc) · 43.1 KB
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
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2007-2016 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. The rights granted to you under the License
* may not be used to create, or enable the creation or redistribution of,
* unlawful or unlicensed copies of an Apple operating system, or to
* circumvent, violate, or enable the circumvention or violation of, any
* terms of an Apple operating system software license agreement.
*
* Please obtain a copy of the License at
* http://www.opensource.apple.com/apsl/ and read it before using this file.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
* Please see the License for the specific language governing rights and
* limitations under the License.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_END@
*/
/*
* @OSF_COPYRIGHT@
*/
/* CMU_ENDHIST */
/*
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie Mellon
* the rights to redistribute these changes.
*/
/*
*/
/*
* Processor registers for ARM
*/
#ifndef _ARM_PROC_REG_H_
#define _ARM_PROC_REG_H_
#if defined (__arm64__)
#include <pexpert/arm64/board_config.h>
#elif defined (__arm__)
#include <pexpert/arm/board_config.h>
#endif
#if defined (ARMA7)
#define __ARM_ARCH__ 7
#define __ARM_SUB_ARCH__ CPU_ARCH_ARMv7k
#define __ARM_VMSA__ 7
#define __ARM_VFP__ 3
#if defined(__XNU_UP__)
#define __ARM_SMP__ 0
#else
#define __ARM_SMP__ 1
/* For SMP kernels, force physical aperture to be mapped at PTE level so that its mappings
* can be updated to reflect cache attribute changes on alias mappings. This prevents
* prefetched physical aperture cachelines from becoming dirty in L1 due to a write to
* an uncached alias mapping on the same core. Subsequent uncached writes from another
* core may not snoop this line, and the dirty line may end up being evicted later to
* effectively overwrite the uncached writes from other cores. */
#define __ARM_PTE_PHYSMAP__ 1
#endif
/* __ARMA7_SMP__ controls whether we are consistent with the A7 MP_CORE spec; needed because entities other than
* the xnu-managed processors may need to snoop our cache operations.
*/
#define __ARMA7_SMP__ 1
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM_USER_PROTECT__ 1
#define __ARM_TIME_TIMEBASE_ONLY__ 1
#elif defined (APPLECYCLONE)
#define __ARM_ARCH__ 8
#define __ARM_VMSA__ 8
#define __ARM_SMP__ 1
#define __ARM_VFP__ 4
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_COHERENT_IO__ 1
#define __ARM_IC_NOALIAS_ICACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM_ENABLE_SWAP__ 1
#define __ARM_V8_CRYPTO_EXTENSIONS__ 1
#define __ARM64_PMAP_SUBPAGE_L1__ 1
#define __ARM_KERNEL_PROTECT__ 1
#elif defined (APPLETYPHOON)
#define __ARM_ARCH__ 8
#define __ARM_VMSA__ 8
#define __ARM_SMP__ 1
#define __ARM_VFP__ 4
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_COHERENT_IO__ 1
#define __ARM_IC_NOALIAS_ICACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM_ENABLE_SWAP__ 1
#define __ARM_V8_CRYPTO_EXTENSIONS__ 1
#define __ARM64_PMAP_SUBPAGE_L1__ 1
#define __ARM_KERNEL_PROTECT__ 1
#elif defined (APPLETWISTER)
#define __ARM_ARCH__ 8
#define __ARM_VMSA__ 8
#define __ARM_SMP__ 1
#define __ARM_VFP__ 4
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_COHERENT_IO__ 1
#define __ARM_IC_NOALIAS_ICACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM_ENABLE_SWAP__ 1
#define __ARM_V8_CRYPTO_EXTENSIONS__ 1
#define __ARM_16K_PG__ 1
#define __ARM64_PMAP_SUBPAGE_L1__ 1
#define __ARM_KERNEL_PROTECT__ 1
#elif defined (APPLEHURRICANE)
#define __ARM_ARCH__ 8
#define __ARM_VMSA__ 8
#define __ARM_SMP__ 1
#define __ARM_VFP__ 4
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_COHERENT_IO__ 1
#define __ARM_IC_NOALIAS_ICACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM_ENABLE_SWAP__ 1
#define __ARM_V8_CRYPTO_EXTENSIONS__ 1
#define __ARM_16K_PG__ 1
#define __ARM64_PMAP_SUBPAGE_L1__ 1
#define __ARM_KERNEL_PROTECT__ 1
#define __ARM_GLOBAL_SLEEP_BIT__ 1
#define __ARM_PAN_AVAILABLE__ 1
#elif defined (APPLEMONSOON)
#define __ARM_ARCH__ 8
#define __ARM_VMSA__ 8
#define __ARM_SMP__ 1
#define __ARM_AMP__ 1
#define __ARM_VFP__ 4
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_COHERENT_IO__ 1
#define __ARM_IC_NOALIAS_ICACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM_ENABLE_SWAP__ 1
#define __ARM_V8_CRYPTO_EXTENSIONS__ 1
#define __ARM_16K_PG__ 1
#define __ARM64_PMAP_SUBPAGE_L1__ 1
#define __ARM_KERNEL_PROTECT__ 1
#define __ARM_GLOBAL_SLEEP_BIT__ 1
#define __ARM_PAN_AVAILABLE__ 1
#define __ARM_WKDM_ISA_AVAILABLE__ 1
#define __PLATFORM_WKDM_ALIGNMENT_MASK__ (0x3FULL)
#define __PLATFORM_WKDM_ALIGNMENT_BOUNDARY__ (64)
#define __ARM_CLUSTER_COUNT__ 2
#elif defined (BCM2837)
#define __ARM_ARCH__ 8
#define __ARM_VMSA__ 8
#define __ARM_SMP__ 1
#define __ARM_VFP__ 4
#define __ARM_COHERENT_CACHE__ 1
#define __ARM_L1_PTW__ 1
#define __ARM_DEBUG__ 7
#define __ARM64_PMAP_SUBPAGE_L1__ 1
#else
#error processor not supported
#endif
#if __ARM_KERNEL_PROTECT__
/*
* This feature is not currently implemented for 32-bit ARM CPU architectures.
* A discussion of this feature for 64-bit ARM CPU architectures can be found
* in the ARM64 version of this file.
*/
#if __arm__
#error __ARM_KERNEL_PROTECT__ is not supported on ARM32
#endif
#endif /* __ARM_KERNEL_PROTECT__ */
#if defined(ARM_BOARD_WFE_TIMEOUT_NS)
#define __ARM_ENABLE_WFE_ 1
#else
#define __ARM_ENABLE_WFE_ 0
#endif
#define CONFIG_THREAD_GROUPS 0
#ifdef XNU_KERNEL_PRIVATE
#if __ARM_VFP__
#define ARM_VFP_DEBUG 0
#endif
#endif
/*
* FSR registers
*
* CPSR: Current Program Status Register
* SPSR: Saved Program Status Registers
*
* 31 30 29 28 27 24 19 16 9 8 7 6 5 4 0
* +-----------------------------------------------------------+
* | N| Z| C| V| Q|...| J|...|GE[3:0]|...| E| A| I| F| T| MODE |
* +-----------------------------------------------------------+
*/
/*
* Flags
*/
#define PSR_NF 0x80000000 /* Negative/Less than */
#define PSR_ZF 0x40000000 /* Zero */
#define PSR_CF 0x20000000 /* Carry/Borrow/Extend */
#define PSR_VF 0x10000000 /* Overflow */
#define PSR_QF 0x08000000 /* saturation flag (QADD ARMv5) */
/*
* Modified execution mode flags
*/
#define PSR_JF 0x01000000 /* Jazelle flag (BXJ ARMv5) */
#define PSR_EF 0x00000200 /* mixed-endian flag (SETEND ARMv6) */
#define PSR_AF 0x00000100 /* precise abort flag (ARMv6) */
#define PSR_TF 0x00000020 /* thumb flag (BX ARMv4T) */
#define PSR_TFb 5 /* thumb flag (BX ARMv4T) */
/*
* Interrupts
*/
#define PSR_IRQFb 7 /* IRQ : 0 = IRQ enable */
#define PSR_IRQF 0x00000080 /* IRQ : 0 = IRQ enable */
#define PSR_FIQF 0x00000040 /* FIQ : 0 = FIQ enable */
/*
* CPU mode
*/
#define PSR_USER_MODE 0x00000010 /* User mode */
#define PSR_FIQ_MODE 0x00000011 /* FIQ mode */
#define PSR_IRQ_MODE 0x00000012 /* IRQ mode */
#define PSR_SVC_MODE 0x00000013 /* Supervisor mode */
#define PSR_ABT_MODE 0x00000017 /* Abort mode */
#define PSR_UND_MODE 0x0000001B /* Undefined mode */
#define PSR_MODE_MASK 0x0000001F
#define PSR_IS_KERNEL(psr) (((psr) & PSR_MODE_MASK) != PSR_USER_MODE)
#define PSR_IS_USER(psr) (((psr) & PSR_MODE_MASK) == PSR_USER_MODE)
#define PSR_USERDFLT PSR_USER_MODE
#define PSR_USER_MASK (PSR_AF | PSR_IRQF | PSR_FIQF | PSR_MODE_MASK)
#define PSR_USER_SET PSR_USER_MODE
#define PSR_INTMASK PSR_IRQF /* Interrupt disable */
/*
* FPEXC: Floating-Point Exception Register
*/
#define FPEXC_EX 0x80000000 /* Exception status */
#define FPEXC_EX_BIT 31
#define FPEXC_EN 0x40000000 /* VFP : 1 = EN enable */
#define FPEXC_EN_BIT 30
/*
* FPSCR: Floating-point Status and Control Register
*/
#define FPSCR_DN 0x02000000 /* Default NaN */
#define FPSCR_FZ 0x01000000 /* Flush to zero */
#define FPSCR_DEFAULT FPSCR_DN | FPSCR_FZ
/*
* FSR registers
*
* IFSR: Instruction Fault Status Register
* DFSR: Data Fault Status Register
*/
#define FSR_ALIGN 0x00000001 /* Alignment */
#define FSR_DEBUG 0x00000002 /* Debug (watch/break) */
#define FSR_ICFAULT 0x00000004 /* Fault on instruction cache maintenance */
#define FSR_SFAULT 0x00000005 /* Translation Section */
#define FSR_PFAULT 0x00000007 /* Translation Page */
#define FSR_SACCESS 0x00000003 /* Section access */
#define FSR_PACCESS 0x00000006 /* Page Access */
#define FSR_SDOM 0x00000009 /* Domain Section */
#define FSR_PDOM 0x0000000B /* Domain Page */
#define FSR_SPERM 0x0000000D /* Permission Section */
#define FSR_PPERM 0x0000000F /* Permission Page */
#define FSR_EXT 0x00001000 /* External (Implementation Defined Classification) */
#define FSR_MASK 0x0000040F /* Valid bits */
#define FSR_ALIGN_MASK 0x0000040D /* Valid bits to check align */
#define DFSR_WRITE 0x00000800 /* write data abort fault */
#if defined (ARMA7) || defined (APPLE_ARM64_ARCH_FAMILY) || defined (BCM2837)
#define TEST_FSR_VMFAULT(status) \
(((status) == FSR_PFAULT) \
|| ((status) == FSR_PPERM) \
|| ((status) == FSR_SFAULT) \
|| ((status) == FSR_SPERM) \
|| ((status) == FSR_ICFAULT) \
|| ((status) == FSR_SACCESS) \
|| ((status) == FSR_PACCESS))
#define TEST_FSR_TRANSLATION_FAULT(status) \
(((status) == FSR_SFAULT) \
|| ((status) == FSR_PFAULT))
#else
#error Incompatible CPU type configured
#endif
/*
* Cache configuration
*/
#if defined (ARMA7)
/* I-Cache */
#define MMU_I_CLINE 5 /* cache line size as 1<<MMU_I_CLINE (32) */
/* D-Cache */
#define MMU_CSIZE 15 /* cache size as 1<<MMU_CSIZE (32K) */
#define MMU_CLINE 6 /* cache line size as 1<<MMU_CLINE (64) */
#define MMU_NWAY 2 /* set associativity 1<<MMU_NWAY (4) */
#define MMU_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define MMU_I7WAY 30 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY) /* set size 1<<MMU_SWAY */
#define MMU_NSET (MMU_SWAY - MMU_CLINE) /* lines per way 1<<MMU_NSET */
#define __ARM_L2CACHE__ 1
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__ /* cache size as 1<<MMU_CSIZE */
#define L2_CLINE 6 /* cache line size as 1<<MMU_CLINE (64) */
#define L2_NWAY 3 /* set associativity 1<<MMU_NWAY (8) */
#define L2_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define L2_I7WAY 29 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define L2_I9WAY 29 /* cp15 c9 way incrementer 1<<MMU_I9WAY */
#define L2_SWAY (L2_CSIZE - L2_NWAY) /* set size 1<<MMU_SWAY */
#define L2_NSET (L2_SWAY - L2_CLINE) /* lines per way 1<<MMU_NSET */
#elif defined (APPLECYCLONE)
/* I-Cache */
#define MMU_I_CLINE 6 /* cache line size as 1<<MMU_I_CLINE (64) */
/* D-Cache */
#define MMU_CSIZE 16 /* cache size as 1<<MMU_CSIZE (64K) */
#define MMU_CLINE 6 /* cache line size as 1<<MMU_CLINE (64) */
#define MMU_NWAY 1 /* set associativity 1<<MMU_NWAY (2) */
#define MMU_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define MMU_I7WAY 31 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define MMU_I9WAY 31 /* cp15 c9 way incrementer 1<<MMU_I9WAY */
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY) /* set size 1<<MMU_SWAY */
#define MMU_NSET (MMU_SWAY - MMU_CLINE) /* lines per way 1<<MMU_NSET */
#define __ARM_L2CACHE__ 1
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__ /* cache size as 1<<L2_CSIZE */
#define L2_CLINE 6 /* cache line size as 1<<L2_CLINE (64) */
#define L2_NWAY 3 /* set associativity 1<<L2_NWAY (8) */
#define L2_I7SET 6 /* cp15 c7 set incrementer 1<<L2_I7SET */
#define L2_I7WAY 29 /* cp15 c7 way incrementer 1<<L2_I7WAY */
#define L2_I9WAY 29 /* cp15 c9 way incrementer 1<<L2_I9WAY */
#define L2_SWAY (L2_CSIZE - L2_NWAY) /* set size 1<<L2_SWAY */
#define L2_NSET (L2_SWAY - L2_CLINE) /* lines per way 1<<L2_NSET */
#elif defined (APPLETYPHOON)
/* I-Cache */
#define MMU_I_CLINE 6 /* cache line size as 1<<MMU_I_CLINE (64) */
/* D-Cache */
#define MMU_CSIZE 16 /* cache size as 1<<MMU_CSIZE (64K) */
#define MMU_CLINE 6 /* cache line size as 1<<MMU_CLINE (64) */
#define MMU_NWAY 1 /* set associativity 1<<MMU_NWAY (2) */
#define MMU_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define MMU_I7WAY 31 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define MMU_I9WAY 31 /* cp15 c9 way incrementer 1<<MMU_I9WAY */
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY) /* set size 1<<MMU_SWAY */
#define MMU_NSET (MMU_SWAY - MMU_CLINE) /* lines per way 1<<MMU_NSET */
#define __ARM_L2CACHE__ 1
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__ /* cache size as 1<<L2_CSIZE */
#define L2_CLINE 6 /* cache line size as 1<<L2_CLINE (64) */
#define L2_NWAY 3 /* set associativity 1<<L2_NWAY (8) */
#define L2_I7SET 6 /* cp15 c7 set incrementer 1<<L2_I7SET */
#define L2_I7WAY 29 /* cp15 c7 way incrementer 1<<L2_I7WAY */
#define L2_I9WAY 29 /* cp15 c9 way incrementer 1<<L2_I9WAY */
#define L2_SWAY (L2_CSIZE - L2_NWAY) /* set size 1<<L2_SWAY */
#define L2_NSET (L2_SWAY - L2_CLINE) /* lines per way 1<<L2_NSET */
#elif defined (APPLETWISTER)
/* I-Cache */
#define MMU_I_CLINE 6 /* cache line size as 1<<MMU_I_CLINE (64) */
/* D-Cache */
#define MMU_CSIZE 16 /* cache size as 1<<MMU_CSIZE (64K) */
#define MMU_CLINE 6 /* cache line size is 1<<MMU_CLINE (64) */
#define MMU_NWAY 2 /* set associativity 1<<MMU_NWAY (4) */
#define MMU_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define MMU_I7WAY 30 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define MMU_I9WAY 30 /* cp15 c9 way incrementer 1<<MMU_I9WAY */
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY) /* set size 1<<MMU_SWAY */
#define MMU_NSET (MMU_SWAY - MMU_CLINE) /* lines per way 1<<MMU_NSET */
/* L2-Cache */
#define __ARM_L2CACHE__ 1
/*
* For reasons discussed in the platform expert code, we round the reported
* L2 size to 4MB, and adjust the other parameters accordingly.
*/
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__ /* cache size as 1<<L2_CSIZE */
#define L2_CLINE 6 /* cache line size as 1<<L2_CSIZE (64) */
#define L2_NWAY 4 /* set associativity as 1<<L2_CLINE (16, is actually 12) */
#define L2_I7SET 6 /* cp15 c7 set incrementer 1<<L2_I7SET */
#define L2_I7WAY 28 /* cp15 c7 way incrementer 1<<L2_I7WAY */
#define L2_I9WAY 28 /* cp15 c9 way incremenber 1<<L2_I9WAY */
#define L2_SWAY (L2_CSIZE - L2_NWAY) /* set size 1<<L2_SWAY */
#define L2_NSET (L2_SWAY - L2_CLINE) /* lines per way 1<<L2_NSET */
#elif defined (APPLEHURRICANE)
/* I-Cache */
#define MMU_I_CLINE 6 /* cache line size as 1<<MMU_I_CLINE (64) */
/* D-Cache */
#define MMU_CSIZE 16 /* cache size as 1<<MMU_CSIZE (64K) */
#define MMU_CLINE 6 /* cache line size is 1<<MMU_CLINE (64) */
#define MMU_NWAY 2 /* set associativity 1<<MMU_NWAY (4) */
#define MMU_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define MMU_I7WAY 30 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define MMU_I9WAY 30 /* cp15 c9 way incrementer 1<<MMU_I9WAY */
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY) /* set size 1<<MMU_SWAY */
#define MMU_NSET (MMU_SWAY - MMU_CLINE) /* lines per way 1<<MMU_NSET */
/* L2-Cache */
#define __ARM_L2CACHE__ 1
/*
* For reasons discussed in the platform expert code, we round the reported
* L2 size to 4MB, and adjust the other parameters accordingly.
*/
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__ /* cache size as 1<<L2_CSIZE */
#define L2_CLINE 6 /* cache line size as 1<<L2_CSIZE (64) */
#define L2_NWAY 4 /* set associativity as 1<<L2_CLINE (16, is actually 12) */
#define L2_I7SET 6 /* cp15 c7 set incrementer 1<<L2_I7SET */
#define L2_I7WAY 28 /* cp15 c7 way incrementer 1<<L2_I7WAY */
#define L2_I9WAY 28 /* cp15 c9 way incremenber 1<<L2_I9WAY */
#define L2_SWAY (L2_CSIZE - L2_NWAY) /* set size 1<<L2_SWAY */
#define L2_NSET (L2_SWAY - L2_CLINE) /* lines per way 1<<L2_NSET */
#elif defined (APPLEMONSOON)
/* I-Cache, 96KB for Monsoon, 48KB for Mistral, 6-way. */
#define MMU_I_CLINE 6 /* cache line size as 1<<MMU_I_CLINE (64) */
/* D-Cache, 64KB for Monsoon, 32KB for Mistral, 4-way. */
#define MMU_CSIZE 16 /* cache size as 1<<MMU_CSIZE (64K) */
#define MMU_CLINE 6 /* cache line size is 1<<MMU_CLINE (64) */
#define MMU_NWAY 2 /* set associativity 1<<MMU_NWAY (4) */
#define MMU_I7SET 6 /* cp15 c7 set incrementer 1<<MMU_I7SET */
#define MMU_I7WAY 30 /* cp15 c7 way incrementer 1<<MMU_I7WAY */
#define MMU_I9WAY 30 /* cp15 c9 way incrementer 1<<MMU_I9WAY */
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY) /* set size 1<<MMU_SWAY */
#define MMU_NSET (MMU_SWAY - MMU_CLINE) /* lines per way 1<<MMU_NSET */
/* L2-Cache */
#define __ARM_L2CACHE__ 1
/*
* LLC (Monsoon L2, Mistral L3): 8MB, 128-byte lines, 16-way.
* L2E (Mistral L2): 1MB, 64-byte lines, 8-way.
*
* TODO: Our L2 cahes have different line sizes. I begin to suspect
* this may be a problem.
*/
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__ /* cache size as 1<<L2_CSIZE */
#define L2_CLINE 7 /* cache line size as 1<<L2_CLINE (128) */
#define L2_NWAY 4 /* set associativity as 1<<L2_NWAY (16) */
#define L2_I7SET 6 /* TODO: cp15 c7 set incrementer 1<<L2_I7SET */
#define L2_I7WAY 28 /* TODO: cp15 c7 way incrementer 1<<L2_I7WAY */
#define L2_I9WAY 28 /* TODO: cp15 c9 way incremenber 1<<L2_I9WAY */
#define L2_SWAY (L2_CSIZE - L2_NWAY) /* set size 1<<L2_SWAY */
#define L2_NSET (L2_SWAY - L2_CLINE) /* lines per way 1<<L2_NSET */
#elif defined (BCM2837) /* Raspberry Pi 3 */
/* I-Cache. We don't have detailed spec so we just follow the ARM technical reference. */
#define MMU_I_CLINE 6
/* D-Cache. */
#define MMU_CSIZE 15
#define MMU_CLINE 6
#define MMU_NWAY 4
#define MMU_I7SET 6
#define MMU_I7WAY 30
#define MMU_I9WAY 30
#define MMU_SWAY (MMU_CSIZE - MMU_NWAY)
#define MMU_NSET (MMU_SWAY - MMU_CLINE)
#define __ARM_L2CACHE__ 1
#define L2_CSIZE __ARM_L2CACHE_SIZE_LOG__
#define L2_CLINE 6
#define L2_NWAY 4
#define L2_I7SET 6
#define L2_I7WAY 28
#define L2_I9WAY 28
#define L2_SWAY (L2_CSIZE - L2_NWAY)
#define L2_NSET (L2_SWAY - L2_CLINE)
#else
#error processor not supported
#endif
#if (__ARM_VMSA__ <= 7)
/*
* SCTLR: System Control Register
*/
/*
* System Control Register (SCTLR)
*
* 31 30 29 28 27 25 24 22 21 20 19 17 15 14 13 12 11 10 5 2 1 0
* +-+--+---+---+----+-+--+--+--+--+----+---+-+--+-+-+--+--+--+--+--+---+-+------+--+-+-+-+
* |0|TE|AFE|TRE|NMFI|0|EE|VE|11|FI|UWXN|WXN|1|HA|1|0|RR| V| I| Z|SW|000|1|C15BEN|11|C|A|M|
* +-+--+---+---+----+-+--+--+--+--+----+---+-+--+-+-+--+--+--+--+--+---+-+------+--+-+-+-+
*
* TE Thumb Exception enable
* AFE Access flag enable
* TRE TEX remap enable
* NMFI Non-maskable FIQ (NMFI) support
* EE Exception Endianness
* VE Interrupt Vectors Enable
* FI Fast interrupts configuration enable
* ITD IT Disable
* UWXN Unprivileged write permission implies PL1 XN
* WXN Write permission implies XN
* HA Hardware Access flag enable
* RR Round Robin select
* V High exception vectors
* I Instruction cache enable
* Z Branch prediction enable
* SW SWP/SWPB enable
* C15BEN CP15 barrier enable
* C Cache enable
* A Alignment check enable
* M MMU enable
*/
#define SCTLR_RESERVED 0x82DD8394
#define SCTLR_ENABLE 0x00000001 /* MMU enable */
#define SCTLR_ALIGN 0x00000002 /* Alignment check enable */
#define SCTLR_DCACHE 0x00000004 /* Data or Unified Cache enable */
#define SCTLR_BEN 0x00000040 /* CP15 barrier enable */
#define SCTLR_SW 0x00000400 /* SWP/SWPB Enable */
#define SCTLR_PREDIC 0x00000800 /* Branch prediction enable */
#define SCTLR_ICACHE 0x00001000 /* Instruction cache enabled. */
#define SCTLR_HIGHVEC 0x00002000 /* Vector table at 0xffff0000 */
#define SCTLR_RROBIN 0x00004000 /* Round Robin replacement */
#define SCTLR_HA 0x00020000 /* Hardware Access flag enable */
#define SCTLR_NMFI 0x08000000 /* Non-maskable FIQ */
#define SCTLR_TRE 0x10000000 /* TEX remap enable */
#define SCTLR_AFE 0x20000000 /* Access flag enable */
#define SCTLR_TE 0x40000000 /* Thumb Exception enable */
#define SCTLR_DEFAULT (SCTLR_AFE|SCTLR_TRE|SCTLR_HIGHVEC|SCTLR_ICACHE|SCTLR_PREDIC|SCTLR_DCACHE|SCTLR_ENABLE)
/*
* PRRR: Primary Region Remap Register
*
* 31 24 20 19 18 17 16 0
* +---------------------------------------------------------------+
* | NOSn | Res |NS1|NS0|DS1|DS0| TRn |
* +---------------------------------------------------------------+
*/
#define PRRR_NS1 0x00080000
#define PRRR_NS0 0x00040000
#define PRRR_DS1 0x00020000
#define PRRR_DS0 0x00010000
#define PRRR_NOSn_ISH(region) (0x1<<((region)+24))
#if defined (ARMA7)
#define PRRR_SETUP (0x1F08022A)
#else
#error processor not supported
#endif
/*
* NMRR, Normal Memory Remap Register
*
* 30 28 26 24 22 20 18 16 14 12 10 8 6 4 2 0
* +---------------------------------------------------------------+
* |OR7|OR6|OR5|OR4|OR3|OR2|OR1|OR0|IR7|IR6|IR5|IR4|IR3|IR2|IR1|IR0|
* +---------------------------------------------------------------+
*/
#define NMRR_DISABLED 0x0 /* Non-cacheable */
#define NMRR_WRITEBACK 0x1 /* Write-Back, Write-Allocate */
#define NMRR_WRITETHRU 0x2 /* Write-Through, no Write-Allocate */
#define NMRR_WRITEBACKNO 0x3 /* Write-Back, no Write-Allocate */
#if defined (ARMA7)
#define NMRR_SETUP (0x01210121)
#else
#error processor not supported
#endif
/*
* TTBR: Translation Table Base Register
*
*/
#define TTBR_IRGN_DISBALED 0x00000000 /* inner non-cacheable */
#define TTBR_IRGN_WRITEBACK 0x00000040 /* inner write back and allocate */
#define TTBR_IRGN_WRITETHRU 0x00000001 /* inner write thru */
#define TTBR_IRGN_WRITEBACKNO 0x00000041 /* inner write back no allocate */
#define TTBR_RGN_DISBALED 0x00000000 /* outer non-cacheable */
#define TTBR_RGN_WRITEBACK 0x00000008 /* outer write back and allocate */
#define TTBR_RGN_WRITETHRU 0x00000010 /* outer write thru outer cache */
#define TTBR_RGN_WRITEBACKNO 0x00000018 /* outer write back no allocate */
#define TTBR_SHARED 0x00000002 /* Shareable memory atribute */
#define TTBR_SHARED_NOTOUTER 0x00000020 /* Outer not shareable memory atribute */
#if defined (ARMA7)
#define TTBR_SETUP (TTBR_RGN_WRITEBACK|TTBR_IRGN_WRITEBACK|TTBR_SHARED)
#else
#error processor not supported
#endif
/*
* TTBCR: Translation Table Base Control register
*
* 31 3 2 0
* +----------+
* | zero | N |
* +----------+
*
* If N=0, always use translation table base register 0. Otherwise, if
* bits [31:32-N] of the address are all zero use base register 0. Otherwise,
* use base register 1.
*
* Reading from this register also returns the page table boundary for TTB0.
* Writing to it updates the boundary for TTB0. (0=16KB, 1=8KB, 2=4KB, etc...)
*/
#define TTBCR_N_1GB_TTB0 0x2 /* 1 GB TTB0, 3GB TTB1 */
#define TTBCR_N_2GB_TTB0 0x1 /* 2 GB TTB0, 2GB TTB1 */
#define TTBCR_N_4GB_TTB0 0x0 /* 4 GB TTB0 */
#define TTBCR_N_MASK 0x3
/*
* ARM Page Granule
*/
#define ARM_PGSHIFT 12
#define ARM_PGBYTES (1 << ARM_PGSHIFT)
#define ARM_PGMASK (ARM_PGBYTES-1)
/*
* DACR: Domain Access Control register
*/
#define DAC_FAULT 0x0 /* invalid domain - everyone loses */
#define DAC_CLIENT 0x1 /* client domain - use AP bits */
#define DAC_RESERVE 0x2 /* reserved domain - undefined */
#define DAC_MANAGER 0x3 /* manager domain - all access */
#define DACR_SET(dom, x) ((x)<<((dom)<<1))
#define ARM_DOM_DEFAULT 0 /* domain that forces AP use */
#define ARM_DAC_SETUP 0x1
/*
* ARM 2-level Page Table support
*/
/*
* Memory Attribute Index
*/
#define CACHE_ATTRINDX_WRITEBACK 0x0 /* cache enabled, buffer enabled */
#define CACHE_ATTRINDX_WRITECOMB 0x1 /* no cache, buffered writes */
#define CACHE_ATTRINDX_WRITETHRU 0x2 /* cache enabled, buffer disabled */
#define CACHE_ATTRINDX_DISABLE 0x3 /* no cache, no buffer */
#define CACHE_ATTRINDX_INNERWRITEBACK 0x4 /* inner cache enabled, buffer enabled, write allocate */
#define CACHE_ATTRINDX_POSTED CACHE_ATTRINDX_DISABLE
#define CACHE_ATTRINDX_DEFAULT CACHE_ATTRINDX_WRITEBACK
/*
* Access protection bit values
*/
#define AP_RWNA 0x0 /* priv=read-write, user=no-access */
#define AP_RWRW 0x1 /* priv=read-write, user=read-write */
#define AP_RONA 0x2 /* priv=read-only , user=no-access */
#define AP_RORO 0x3 /* priv=read-only , user=read-only */
/*
* L1 Translation table
*
* Each translation table is up to 16KB
* 4096 32-bit entries of 1MB of address space.
*/
#define ARM_TT_L1_SIZE 0x00100000 /* size of area covered by a tte */
#define ARM_TT_L1_OFFMASK 0x000FFFFF /* offset within an L1 entry */
#define ARM_TT_L1_TABLE_OFFMASK 0x000FFFFF /* offset within an L1 entry */
#define ARM_TT_L1_BLOCK_OFFMASK 0x000FFFFF /* offset within an L1 entry */
#define ARM_TT_L1_SUPER_OFFMASK 0x00FFFFFF /* offset within an L1 entry */
#define ARM_TT_L1_SHIFT 20 /* page descriptor shift */
#define ARM_TT_L1_INDEX_MASK 0xfff00000 /* mask for getting index in L1 table from virtual address */
#define ARM_TT_L1_PT_SIZE (4 * ARM_TT_L1_SIZE) /* 4 L1 table entries required to consume 1 L2 pagetable page */
#define ARM_TT_L1_PT_OFFMASK (ARM_TT_L1_PT_SIZE - 1)
/*
* L2 Translation table
*
* Each translation table is up to 1KB
* 4096 32-bit entries of 1MB (2^30) of address space.
*/
#define ARM_TT_L2_SIZE 0x00001000 /* size of area covered by a tte */
#define ARM_TT_L2_OFFMASK 0x00000FFF /* offset within an L2 entry */
#define ARM_TT_L2_SHIFT 12 /* page descriptor shift */
#define ARM_TT_L2_INDEX_MASK 0x000ff000 /* mask for getting index in L2 table from virtual address */
/*
* Convenience definitions for:
* ARM_TT_LEAF: The last level of the configured page table format.
* ARM_TT_TWIG: The second to last level of the configured page table format.
* ARM_TT_ROOT: The first level of the configured page table format.
*
* My apologies to any botanists who may be reading this.
*/
#define ARM_TT_LEAF_SIZE ARM_TT_L2_SIZE
#define ARM_TT_LEAF_OFFMASK ARM_TT_L2_OFFMASK
#define ARM_TT_LEAF_SHIFT ARM_TT_L2_SHIFT
#define ARM_TT_LEAF_INDEX_MASK ARM_TT_L2_INDEX_MASK
#define ARM_TT_TWIG_SIZE ARM_TT_L1_SIZE
#define ARM_TT_TWIG_OFFMASK ARM_TT_L1_OFFMASK
#define ARM_TT_TWIG_SHIFT ARM_TT_L1_SHIFT
#define ARM_TT_TWIG_INDEX_MASK ARM_TT_L1_INDEX_MASK
#define ARM_TT_ROOT_SIZE ARM_TT_L1_SIZE
#define ARM_TT_ROOT_OFFMASK ARM_TT_L1_OFFMASK
#define ARM_TT_ROOT_SHIFT ARM_TT_L1_SHIFT
#define ARM_TT_ROOT_INDEX_MASK ARM_TT_L1_INDEX_MASK
/*
* Level 1 Translation Table Entry
*
* page table entry
*
* 31 10 9 8 5 4 2 0
* +----------------------+-+----+--+--+--+
* | page table base addr | |dom |XN|00|01|
* +----------------------+-+----+--+--+--+
*
* direct (1MB) section entry
*
* 31 20 18 15 12 10 9 8 5 4 2 0
* +------------+--+-+-+-+---+--+-+----+--+--+--+
* | base addr |00|G|S|A|TEX|AP| |dom |XN|CB|10|
* +------------+--+-+-+-+---+--+-+----+--+--+--+
*
* super (16MB) section entry
*
* 31 24 23 18 15 12 10 9 8 5 4 2 0
* +---------+------+-+-+-+---+--+-+----+--+--+--+
* |base addr|000001|G|S|A|TEX|AP| |dom |XN|CB|10|
* +---------+------+-+-+-+---+--+-+----+--+--+--+
*
* where:
* 'G' is the notGlobal bit
* 'S' is the shared bit
* 'A' in the access permission extension (APX) bit
* 'TEX' remap register control bits
* 'AP' is the access protection
* 'dom' is the domain for the translation
* 'XN' is the eXecute Never bit
* 'CB' is the cache/buffer attribute
*/
#define ARM_TTE_EMPTY 0x00000000 /* unasigned entry */
#define ARM_TTE_TYPE_FAULT 0x00000000 /* fault entry type */
#define ARM_TTE_TYPE_TABLE 0x00000001 /* page table type */
#define ARM_TTE_TYPE_BLOCK 0x00000002 /* section entry type */
#define ARM_TTE_TYPE_MASK 0x00000003 /* mask for extracting the type */
#define ARM_TTE_BLOCK_NGSHIFT 17
#define ARM_TTE_BLOCK_NG_MASK 0x00020000 /* mask to determine notGlobal bit */
#define ARM_TTE_BLOCK_NG 0x00020000 /* value for a per-process mapping */
#define ARM_TTE_BLOCK_SHSHIFT 16
#define ARM_TTE_BLOCK_SH_MASK 0x00010000 /* shared (SMP) mapping mask */
#define ARM_TTE_BLOCK_SH 0x00010000 /* shared (SMP) mapping */
#define ARM_TTE_BLOCK_CBSHIFT 2
#define ARM_TTE_BLOCK_CB(x) ((x) << ARM_TTE_BLOCK_CBSHIFT)
#define ARM_TTE_BLOCK_CB_MASK (3<< ARM_TTE_BLOCK_CBSHIFT)
#define ARM_TTE_BLOCK_AP0SHIFT 10
#define ARM_TTE_BLOCK_AP0 (1<<ARM_TTE_BLOCK_AP0SHIFT)
#define ARM_TTE_BLOCK_AP0_MASK (1<<ARM_TTE_BLOCK_AP0SHIFT)
#define ARM_TTE_BLOCK_AP1SHIFT 11
#define ARM_TTE_BLOCK_AP1 (1<<ARM_TTE_BLOCK_AP1SHIFT)
#define ARM_TTE_BLOCK_AP1_MASK (1<<ARM_TTE_BLOCK_AP1SHIFT)
#define ARM_TTE_BLOCK_AP2SHIFT 15
#define ARM_TTE_BLOCK_AP2 (1<<ARM_TTE_BLOCK_AP2SHIFT)
#define ARM_TTE_BLOCK_AP2_MASK (1<<ARM_TTE_BLOCK_AP2SHIFT)
/* access protections */
#define ARM_TTE_BLOCK_AP(ap) ((((ap)&0x1)<<ARM_TTE_BLOCK_AP1SHIFT) \
| ((((ap)>>1)&0x1)<<ARM_TTE_BLOCK_AP2SHIFT))
/* mask access protections */
#define ARM_TTE_BLOCK_APMASK (ARM_TTE_BLOCK_AP1_MASK \
| ARM_TTE_BLOCK_AP2_MASK)
#define ARM_TTE_BLOCK_AF ARM_TTE_BLOCK_AP0 /* value for access */
#define ARM_TTE_BLOCK_AFMASK ARM_TTE_BLOCK_AP0_MASK /* access mask */
#define ARM_TTE_TABLE_MASK 0xFFFFFC00 /* mask for a L2 page table entry */
#define ARM_TTE_TABLE_SHIFT 10 /* shift for L2 page table phys address */
#define ARM_TTE_BLOCK_L1_MASK 0xFFF00000 /* mask to extract phys address from L1 section entry */
#define ARM_TTE_BLOCK_L1_SHIFT 20 /* shift for 1MB section phys address */
#define ARM_TTE_SUPER_L1_MASK 0xFF000000 /* mask to extract phys address from L1 super entry */
#define ARM_TTE_SUPER_L1_SHIFT 24 /* shift for 16MB section phys address */
#define ARM_TTE_BLOCK_SUPER 0x00040000 /* make section a 16MB section */
#define ARM_TTE_BLOCK_SUPER_MASK 0x00F40000 /* make section a 16MB section */
#define ARM_TTE_BLOCK_NXSHIFT 4
#define ARM_TTE_BLOCK_NX 0x00000010 /* section is no execute */
#define ARM_TTE_BLOCK_NX_MASK 0x00000010 /* mask for extracting no execute bit */
#define ARM_TTE_BLOCK_PNX ARM_TTE_BLOCK_NX
#define ARM_TTE_BLOCK_TEX0SHIFT 12
#define ARM_TTE_BLOCK_TEX0 (1<<ARM_TTE_BLOCK_TEX0SHIFT)
#define ARM_TTE_BLOCK_TEX0_MASK (1<<ARM_TTE_BLOCK_TEX0SHIFT)
#define ARM_TTE_BLOCK_TEX1SHIFT 13
#define ARM_TTE_BLOCK_TEX1 (1<<ARM_TTE_BLOCK_TEX1SHIFT)
#define ARM_TTE_BLOCK_TEX1_MASK (1<<ARM_TTE_BLOCK_TEX1SHIFT)
#define ARM_TTE_BLOCK_TEX2SHIFT 14
#define ARM_TTE_BLOCK_TEX2 (1<<ARM_TTE_BLOCK_TEX2SHIFT)
#define ARM_TTE_BLOCK_TEX2_MASK (1<<ARM_TTE_BLOCK_TEX2SHIFT)
/* mask memory attributes index */
#define ARM_TTE_BLOCK_ATTRINDX(i) ((((i)&0x3)<<ARM_TTE_BLOCK_CBSHIFT) \
| ((((i)>>2)&0x1)<<ARM_TTE_BLOCK_TEX0SHIFT))
/* mask memory attributes index */
#define ARM_TTE_BLOCK_ATTRINDXMASK (ARM_TTE_BLOCK_CB_MASK \
| ARM_TTE_BLOCK_TEX0_MASK)
/*
* Level 2 Page table entries
*
* The following page table entry types are possible:
*
* fault page entry
* 31 2 0
* +----------------------------------------+--+
* | ignored |00|
* +----------------------------------------+--+
*
* large (64KB) page entry
* 31 16 15 12 9 6 4 3 2 0
* +----------------+--+---+-+-+-+---+--+-+-+--+
* | base phys addr |XN|TEX|G|S|A|000|AP|C|B|01|
* +----------------+--+---+-+-+-+---+--+-+-+--+
*
* small (4KB) page entry
* 31 12 9 6 4 3 2 1 0
* +-----------------------+-+-+-+---+--+-+-+-+--+
* | base phys addr |G|S|A|TEX|AP|C|B|1|XN|
* +-----------------------+-+-+-+---+--+-+-+-+--+
*
* also where:
* 'XN' is the eXecute Never bit
* 'G' is the notGlobal (process-specific) bit
* 'S' is the shared bit
* 'A' in the access permission extension (ATX) bit
* 'TEX' remap register control bits
* 'AP' is the access protection
* 'dom' is the domain for the translation
* 'C' is the cache attribute
* 'B' is the write buffer attribute
*/
#define PTE_SHIFT 2 /* shift width of a pte (sizeof(pte) == (1 << PTE_SHIFT)) */
#define PTE_PGENTRIES (1024 >> PTE_SHIFT) /* number of ptes per page */
#define ARM_PTE_EMPTY 0x00000000 /* unasigned - invalid entry */
/* markers for (invalid) PTE for a page sent to compressor */
#define ARM_PTE_COMPRESSED ARM_PTE_TEX1 /* compressed... */
#define ARM_PTE_COMPRESSED_ALT ARM_PTE_TEX2 /* ... and was "alt_acct" */
#define ARM_PTE_COMPRESSED_MASK (ARM_PTE_COMPRESSED | ARM_PTE_COMPRESSED_ALT)
#define ARM_PTE_IS_COMPRESSED(x) \
((((x) & 0x3) == 0) && /* PTE is not valid... */ \
((x) & ARM_PTE_COMPRESSED) && /* ...has "compressed" marker" */ \
((!((x) & ~ARM_PTE_COMPRESSED_MASK)) || /* ...no other bits */ \
(panic("compressed PTE %p 0x%x has extra bits 0x%x: corrupted?", \
&(x), (x), (x) & ~ARM_PTE_COMPRESSED_MASK), FALSE)))
#define ARM_PTE_TYPE_FAULT 0x00000000 /* fault entry type */
#define ARM_PTE_TYPE 0x00000002 /* small page entry type */
#define ARM_PTE_TYPE_MASK 0x00000002 /* mask to get pte type */
#define ARM_PTE_NG_MASK 0x00000800 /* mask to determine notGlobal bit */
#define ARM_PTE_NG 0x00000800 /* value for a per-process mapping */
#define ARM_PTE_SHSHIFT 10
#define ARM_PTE_SHMASK 0x00000400 /* shared (SMP) mapping mask */
#define ARM_PTE_SH 0x00000400 /* shared (SMP) mapping */
#define ARM_PTE_CBSHIFT 2
#define ARM_PTE_CB(x) ((x)<<ARM_PTE_CBSHIFT)
#define ARM_PTE_CB_MASK (0x3<<ARM_PTE_CBSHIFT)
#define ARM_PTE_AP0SHIFT 4
#define ARM_PTE_AP0 (1<<ARM_PTE_AP0SHIFT)
#define ARM_PTE_AP0_MASK (1<<ARM_PTE_AP0SHIFT)