forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache_asm.S
More file actions
1073 lines (810 loc) · 28 KB
/
cache_asm.S
File metadata and controls
1073 lines (810 loc) · 28 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
//
// cache_asm.S - assembly language cache management routines
//
// $Id: //depot/rel/Foxhill/dot.8/Xtensa/OS/hal/cache_asm.S#1 $
// Copyright (c) 1999-2015 Cadence Design Systems, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <xtensa/cacheasm.h>
#include <xtensa/cacheattrasm.h>
#include <xtensa/xtensa-versions.h>
//----------------------------------------------------------------------
// Huge Range cache routines
//----------------------------------------------------------------------
// void xthal_dcache_hugerange_<name>(void *addr, unsigned size);
//
// Invalidate and/or writeback dcache entries for an arbitrary large
// virtual address range with a single scan of the dcache.
// Assumes no address translation, i.e. virtual = physical.
//
// a2 = ptr to range
// a3 = size of range
//
// Note: -128 is a valid immediate for ADDI, but +128 is not,
// and ADDI can relax to ADDMI for multiples of 256. So scanning
// cache backwards (from end to start) allows all cache line sizes
// without creating an extra instruction for the ADDI.
//
.macro dcache_hugefunc name, instruction
.text
.align 4
.type xthal_dcache_hugerange_\name,@function
.global xthal_dcache_hugerange_\name
xthal_dcache_hugerange_\name:
abi_entry
#if (!defined(XCHAL_HAVE_NX) || XCHAL_HAVE_NX == 0) && XCHAL_DCACHE_SIZE > 0 \
&& XCHAL_HAVE_DCACHE_TEST && XCHAL_HAVE_MINMAX && XCHAL_HAVE_LOOPS
movi a4, XCHAL_DCACHE_SIZE*2 // size at which to use huge algorithm
movi a7, -XCHAL_DCACHE_LINESIZE // for rounding to cache line size
bltu a3, a4, 7f // use normal (line-by-line hit) function
#if XCHAL_HAVE_PREFETCH
movi a11, 0
xsr.prefctl a11 // temporarily disable prefetch (invalidates prefetch bufs!)
#endif
add a5, a3, a2 // a5 = end of range
and a4, a2, a7 // a4 = low end, rounded to containing cache line
addi a5, a5, /*XCHAL_DCACHE_LINESIZE*/-1
and a5, a5, a7 // a5 = high end, rounded to containing cache line
movi a7, XCHAL_DCACHE_SIZE/XCHAL_DCACHE_LINESIZE // a7 = number of lines in dcache
movi a3, XCHAL_DCACHE_SIZE-XCHAL_DCACHE_LINESIZE // way index
mov a6, a5
//movi a8, -XCHAL_DCACHE_SETSIZE // use if LDCT gives non-zero index bits
movi a10, (XCHAL_DCACHE_SIZE/XCHAL_DCACHE_WAYS) - 1
loopgtz a7, 1f
ldct a7, a3 // a3 = cache tag for cache entry [a7]
\instruction a2, 0
.begin schedule
//extui a9, a3, 0, XCHAL_DCACHE_SETWIDTH+XCHAL_DCACHE_LINEWIDTH
and a9, a3, a10
addi a3, a3, -XCHAL_DCACHE_LINESIZE
.end schedule
.begin schedule
//and a7, a7, a8 // uncomment if LDCT reports non-zero index bits
maxu a6, a6, a4 // a4 = low end of range
minu a2, a6, a5 // a5 = high end of range
or a6, a7, a9
.end schedule
1:
\instruction a2, 0
maxu a6, a6, a4
minu a2, a6, a5
\instruction a2, 0
#if XCHAL_HAVE_PREFETCH
wsr.prefctl a11 // restore prefetch
#endif
isync_return_nop
abi_return
#endif /* dcache supports hugerange */
// Jump to non-huge routine
7: j.l xthal_dcache_region_\name + ABI_ENTRY_MINSIZE, a4
.size xthal_dcache_hugerange_\name, . - xthal_dcache_hugerange_\name
.endm
// void xthal_icache_hugerange_<name>(void *addr, unsigned size);
//
// Invalidate icache entries for an arbitrary large
// virtual address range with a single scan of the icache.
// Assumes no address translation, i.e. virtual = physical.
//
// a2 = ptr to range
// a3 = size of range
//
// Note: -128 is a valid immediate for ADDI, but +128 is not,
// and ADDI can relax to ADDMI for multiples of 256. So scanning
// cache backwards (from end to start) allows all cache line sizes
// without creating an extra instruction for the ADDI.
//
.macro icache_hugefunc name, instruction
.text
.align 4
.type xthal_icache_hugerange_\name,@function
.global xthal_icache_hugerange_\name
xthal_icache_hugerange_\name:
abi_entry
#if (!defined(XCHAL_HAVE_NX) || XCHAL_HAVE_NX == 0) &&XCHAL_ICACHE_SIZE > 0 && \
XCHAL_HAVE_ICACHE_TEST && XCHAL_HAVE_MINMAX && XCHAL_HAVE_LOOPS
movi a4, XCHAL_ICACHE_SIZE*2 // size at which to use huge algorithm
movi a7, -XCHAL_ICACHE_LINESIZE // for rounding to cache line size
bltu a3, a4, 7f // use normal (line-by-line hit) function
add a5, a3, a2 // a5 = end of range
and a4, a2, a7 // a4 = low end, rounded to containing cache line
addi a5, a5, XCHAL_ICACHE_LINESIZE-1
and a5, a5, a7 // a5 = high end, rounded to containing cache line
movi a7, XCHAL_ICACHE_SIZE/XCHAL_ICACHE_LINESIZE // a7 = number of lines in dcache
movi a3, XCHAL_ICACHE_SIZE-XCHAL_ICACHE_LINESIZE // way index
mov a6, a5
//movi a8, -XCHAL_ICACHE_SETSIZE // use if LICT gives non-zero index bits
movi a10, (XCHAL_ICACHE_SIZE/XCHAL_ICACHE_WAYS) - 1
loopgtz a7, 1f
lict a7, a3 // a3 = cache tag for cache entry [a7]
\instruction a2, 0
.begin schedule
//extui a9, a3, 0, XCHAL_ICACHE_SETWIDTH+XCHAL_ICACHE_LINEWIDTH
and a9, a3, a10
addi a3, a3, -XCHAL_ICACHE_LINESIZE
.end schedule
.begin schedule
//and a7, a7, a8 // uncomment if LDCT reports non-zero index bits
maxu a6, a6, a4 // a4 = low end of range
minu a2, a6, a5 // a5 = high end of range
or a6, a7, a9
.end schedule
1:
\instruction a2, 0
maxu a6, a6, a4
minu a2, a6, a5
\instruction a2, 0
isync_return_nop
abi_return
#endif /* icache supports hugerange */
7: j.l xthal_icache_region_\name + ABI_ENTRY_MINSIZE, a4
.size xthal_icache_hugerange_\name, . - xthal_icache_hugerange_\name
.endm
.text
//----------------------------------------------------------------------
// Read CACHEATTR register
//----------------------------------------------------------------------
#if defined(__SPLIT__get_cacheattr) ||\
defined(__SPLIT__get_cacheattr_nw)
// unsigned xthal_get_cacheattr(void);
DECLFUNC(xthal_get_cacheattr)
DECLFUNC(xthal_get_dcacheattr)
# if XCHAL_HAVE_CACHEATTR /* single CACHEATTR register used for both I and D */
DECLFUNC(xthal_get_icacheattr)
# endif
abi_entry
dcacheattr_get
abi_return
endfunc
#endif
#if defined(__SPLIT__get_icacheattr) ||\
defined(__SPLIT__get_icacheattr_nw)
// unsigned xthal_get_icacheattr(void);
# if !XCHAL_HAVE_CACHEATTR /* possibly independent CACHEATTR states used for I and D */
DECLFUNC(xthal_get_icacheattr)
abi_entry
icacheattr_get
abi_return
endfunc
# endif
#endif /*split*/
//----------------------------------------------------------------------
// Write CACHEATTR register, or equivalent.
//----------------------------------------------------------------------
/*
* Set CACHEATTR register in a safe manner.
*
* void xthal_set_cacheattr( unsigned new_cacheattr );
* void xthal_set_icacheattr( unsigned new_cacheattr );
* void xthal_set_dcacheattr( unsigned new_cacheattr );
*/
#if defined(__SPLIT__set_cacheattr) ||\
defined(__SPLIT__set_cacheattr_nw)
# if XCHAL_HAVE_CACHEATTR /* single CACHEATTR register used for both I and D accesses */
DECLFUNC(xthal_set_icacheattr)
DECLFUNC(xthal_set_dcacheattr)
# endif
DECLFUNC(xthal_set_cacheattr)
abi_entry
cacheattr_set
abi_return
endfunc
#endif /*split*/
#if XCHAL_HAVE_CACHEATTR
/*
* Already done above.
*
* Since we can't enable/disable the icache and dcache independently,
* and don't have a nice place to store a state which would enable
* us to only enable them both when both have been requested to be
* enabled, we simply enable both for any request to enable either,
* and disable both for any request to disable either cache.
*/
#elif XCHAL_HAVE_MIMIC_CACHEATTR || XCHAL_HAVE_XLT_CACHEATTR || (XCHAL_HAVE_PTP_MMU && XCHAL_HAVE_SPANNING_WAY)
# if defined(__SPLIT__set_icacheattr) \
|| defined(__SPLIT__set_icacheattr_nw)
DECLFUNC(xthal_set_icacheattr)
abi_entry
icacheattr_set
isync_return_nop
abi_return
endfunc
# endif
# if defined(__SPLIT__set_dcacheattr) \
|| defined(__SPLIT__set_dcacheattr_nw)
DECLFUNC(xthal_set_dcacheattr)
abi_entry
dcacheattr_set
abi_return
endfunc
# endif /*split*/
#else /* full MMU (pre-v3): */
# if defined(__SPLIT__set_idcacheattr) \
|| defined(__SPLIT__set_idcacheattr_nw)
// These functions aren't applicable to arbitrary MMU configurations.
// Do nothing in this case.
DECLFUNC(xthal_set_icacheattr)
DECLFUNC(xthal_set_dcacheattr)
abi_entry
abi_return
endfunc
# endif /*split*/
#endif /* cacheattr/MMU type */
//----------------------------------------------------------------------
// Determine (guess) whether caches are "enabled"
//----------------------------------------------------------------------
/*
* There is no "cache enable" bit in the Xtensa architecture,
* but we can use CACHEATTR (if it or its equivalent exists)
* as an indication that caches have been enabled.
*/
#if XCHAL_HAVE_CACHEATTR
# if defined(__SPLIT__idcache_is_enabled) || \
defined(__SPLIT__idcache_is_enabled_nw)
DECLFUNC(xthal_icache_is_enabled)
DECLFUNC(xthal_dcache_is_enabled)
abi_entry
cacheattr_is_enabled 2f
movi a2, 0
abi_return
2: movi a2, 1
abi_return
endfunc
# endif /*split*/
#elif XCHAL_HAVE_MIMIC_CACHEATTR || XCHAL_HAVE_XLT_CACHEATTR
# if defined(__SPLIT__icache_is_enabled) || \
defined(__SPLIT__icache_is_enabled_nw)
DECLFUNC(xthal_icache_is_enabled)
abi_entry
icacheattr_is_enabled 2f
movi a2, 0
abi_return
2: movi a2, 1
abi_return
endfunc
# endif
# if defined(__SPLIT__dcache_is_enabled) || \
defined(__SPLIT__dcache_is_enabled_nw)
DECLFUNC(xthal_dcache_is_enabled)
abi_entry
dcacheattr_is_enabled 2f
movi a2, 0
abi_return
2: movi a2, 1
abi_return
endfunc
# endif /*split*/
#else
// These functions aren't applicable to arbitrary MMU configurations.
// Assume caches are enabled in this case (!).
# if defined(__SPLIT__idcache_is_enabled) || \
defined(__SPLIT__idcache_is_enabled_nw)
DECLFUNC(xthal_icache_is_enabled)
DECLFUNC(xthal_dcache_is_enabled)
abi_entry
movi a2, 1
abi_return
endfunc
# endif /*split*/
#endif
//----------------------------------------------------------------------
// invalidate the icache
//----------------------------------------------------------------------
#if defined(__SPLIT__icache_all_invalidate) || \
defined(__SPLIT__icache_all_invalidate_nw)
// void xthal_icache_all_invalidate(void);
DECLFUNC(xthal_icache_all_invalidate)
abi_entry
icache_invalidate_all a2, a3
isync_return_nop
abi_return
endfunc
//----------------------------------------------------------------------
// invalidate the dcache
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_all_invalidate) || \
defined(__SPLIT__dcache_all_invalidate_nw)
// void xthal_dcache_all_invalidate(void);
DECLFUNC(xthal_dcache_all_invalidate)
abi_entry
dcache_invalidate_all a2, a3
abi_return
endfunc
//----------------------------------------------------------------------
// write dcache dirty data
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_all_writeback) || \
defined(__SPLIT__dcache_all_writeback_nw)
// void xthal_dcache_all_writeback(void);
DECLFUNC(xthal_dcache_all_writeback)
abi_entry
dcache_writeback_all a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// write dcache dirty data and invalidate
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_all_writeback_inv) || \
defined(__SPLIT__dcache_all_writeback_inv_nw)
// void xthal_dcache_all_writeback_inv(void);
DECLFUNC(xthal_dcache_all_writeback_inv)
abi_entry
dcache_writeback_inv_all a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// unlock instructions from icache
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_all_unlock) || \
defined(__SPLIT__icache_all_unlock_nw)
// void xthal_icache_all_unlock(void);
DECLFUNC(xthal_icache_all_unlock)
abi_entry
icache_unlock_all a2, a3
abi_return
endfunc
//----------------------------------------------------------------------
// unlock data from dcache
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_all_unlock) || \
defined(__SPLIT__dcache_all_unlock_nw)
// void xthal_dcache_all_unlock(void);
DECLFUNC(xthal_dcache_all_unlock)
abi_entry
dcache_unlock_all a2, a3
abi_return
endfunc
//----------------------------------------------------------------------
// invalidate the address range in the icache
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_region_invalidate) || \
defined(__SPLIT__icache_region_invalidate_nw)
// void xthal_icache_region_invalidate( void *addr, unsigned size );
DECLFUNC(xthal_icache_region_invalidate)
abi_entry
icache_invalidate_region a2, a3, a4
isync_return_nop
abi_return
endfunc
#endif
#if defined(__SPLIT__icache_hugerange_invalidate)
// void xthal_icache_hugerange_invalidate( void *addr, unsigned size );
icache_hugefunc invalidate, ihi
#endif
#if defined(__SPLIT__icache_hugerange_unlock)
# if XCHAL_ICACHE_LINE_LOCKABLE
// void xthal_icache_hugerange_unlock( void *addr, unsigned size );
icache_hugefunc unlock, ihu
# endif
#endif
#if defined(__SPLIT__dcache_hugerange_invalidate)
// void xthal_dcache_hugerange_invalidate( void *addr, unsigned size );
dcache_hugefunc invalidate, dhi
#endif
#if defined(__SPLIT__dcache_hugerange_unlock)
# if XCHAL_DCACHE_LINE_LOCKABLE
// void xthal_dcache_hugerange_unlock( void *addr, unsigned size );
dcache_hugefunc unlock, dhu
# endif
#endif
#if defined(__SPLIT__dcache_hugerange_writeback)
// void xthal_dcache_hugerange_writeback( void *addr, unsigned size );
dcache_hugefunc writeback, dhwb
#endif
#if defined(__SPLIT__dcache_hugerange_writeback_inv)
// void xthal_dcache_hugerange_writeback_inv( void *addr, unsigned size );
dcache_hugefunc writeback_inv, dhwbi
//----------------------------------------------------------------------
// invalidate the address range in the dcache
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_region_invalidate) || \
defined(__SPLIT__dcache_region_invalidate_nw)
// void xthal_dcache_region_invalidate( void *addr, unsigned size );
DECLFUNC(xthal_dcache_region_invalidate)
abi_entry
dcache_invalidate_region a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// write dcache region dirty data
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_region_writeback) || \
defined(__SPLIT__dcache_region_writeback_nw)
// void xthal_dcache_region_writeback( void *addr, unsigned size );
DECLFUNC(xthal_dcache_region_writeback)
abi_entry
dcache_writeback_region a2, a3, a4, a5
abi_return
endfunc
//----------------------------------------------------------------------
// write dcache region dirty data and invalidate
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_region_writeback_inv) || \
defined(__SPLIT__dcache_region_writeback_inv_nw)
// void xthal_dcache_region_writeback_inv( void *addr, unsigned size );
DECLFUNC(xthal_dcache_region_writeback_inv)
abi_entry
dcache_writeback_inv_region a2, a3, a4, a5
abi_return
endfunc
//----------------------------------------------------------------------
// lock instructions in icache region
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_region_lock) || \
defined(__SPLIT__icache_region_lock_nw)
// void xthal_icache_region_lock(void);
DECLFUNC(xthal_icache_region_lock)
abi_entry
icache_lock_region a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// lock data in dcache region
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_region_lock) || \
defined(__SPLIT__dcache_region_lock_nw)
// void xthal_dcache_region_lock(void);
DECLFUNC(xthal_dcache_region_lock)
abi_entry
dcache_lock_region a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// unlock instructions from icache region
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_region_unlock) || \
defined(__SPLIT__icache_region_unlock_nw)
// void xthal_icache_region_unlock(void);
DECLFUNC(xthal_icache_region_unlock)
abi_entry
icache_unlock_region a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// unlock data from dcache region
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_region_unlock) || \
defined(__SPLIT__dcache_region_unlock_nw)
// void xthal_dcache_region_unlock(void);
DECLFUNC(xthal_dcache_region_unlock)
abi_entry
dcache_unlock_region a2, a3, a4
abi_return
endfunc
//----------------------------------------------------------------------
// invalidate single icache line
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_line_invalidate) || \
defined(__SPLIT__icache_line_invalidate_nw)
// void xthal_icache_line_invalidate(void *addr);
DECLFUNC(xthal_icache_line_invalidate)
abi_entry
icache_invalidate_line a2, 0
isync_return_nop
abi_return
endfunc
//----------------------------------------------------------------------
// invalidate single dcache line
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_line_invalidate) || \
defined(__SPLIT__dcache_line_invalidate_nw)
// void xthal_dcache_line_invalidate(void *addr);
DECLFUNC(xthal_dcache_line_invalidate)
abi_entry
dcache_invalidate_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// write single dcache line dirty data
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_line_writeback) || \
defined(__SPLIT__dcache_line_writeback_nw)
// void xthal_dcache_line_writeback(void *addr);
DECLFUNC(xthal_dcache_line_writeback)
abi_entry
dcache_writeback_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// write single dcache line dirty data and invalidate
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_line_writeback_inv) || \
defined(__SPLIT__dcache_line_writeback_inv_nw)
// void xthal_dcache_line_writeback_inv(void *addr);
DECLFUNC(xthal_dcache_line_writeback_inv)
abi_entry
dcache_writeback_inv_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// lock instructions in icache line
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_line_lock) || \
defined(__SPLIT__icache_line_lock_nw)
// void xthal_icache_line_lock(void);
DECLFUNC(xthal_icache_line_lock)
abi_entry
icache_lock_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// lock data in dcache line
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_line_lock) || \
defined(__SPLIT__dcache_line_lock_nw)
// void xthal_dcache_line_lock(void);
DECLFUNC(xthal_dcache_line_lock)
abi_entry
dcache_lock_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// unlock instructions from icache line
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_line_unlock) || \
defined(__SPLIT__icache_line_unlock_nw)
// void xthal_icache_line_unlock(void);
DECLFUNC(xthal_icache_line_unlock)
abi_entry
icache_unlock_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// unlock data from dcache line
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_line_unlock) || \
defined(__SPLIT__dcache_line_unlock_nw)
// void xthal_dcache_line_unlock(void);
DECLFUNC(xthal_dcache_line_unlock)
abi_entry
dcache_unlock_line a2, 0
abi_return
endfunc
//----------------------------------------------------------------------
// sync icache and memory (???)
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__icache_sync) || \
defined(__SPLIT__icache_sync_nw)
// void xthal_icache_sync(void);
DECLFUNC(xthal_icache_sync)
abi_entry
icache_sync a2
isync_return_nop
abi_return
endfunc
//----------------------------------------------------------------------
// sync dcache and memory (???)
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__dcache_sync) || \
defined(__SPLIT__dcache_sync_nw)
// void xthal_dcache_sync(void);
DECLFUNC(xthal_dcache_sync)
abi_entry
dcache_sync a2
abi_return
endfunc
//----------------------------------------------------------------------
// Get/Set icache number of ways enabled
//----------------------------------------------------------------------
#endif
#if defined (__SPLIT__icache_get_ways) || \
defined (__SPLIT__icache_get_ways_nw)
// unsigned int xthal_icache_get_ways(void);
DECLFUNC(xthal_icache_get_ways)
abi_entry
icache_get_ways a2
abi_return
endfunc
#endif
#if defined (__SPLIT__icache_set_ways) || \
defined(__SPLIT__icache_set_ways_nw)
/// void xthal_icache_set_ways(unsigned int ways);
DECLFUNC(xthal_icache_set_ways)
abi_entry
icache_set_ways a2 a3 a4
abi_return
endfunc
//----------------------------------------------------------------------
// Get/Set dcache number of ways enabled
//----------------------------------------------------------------------
#endif
#if defined (__SPLIT__dcache_get_ways) || \
defined (__SPLIT__dcache_get_ways_nw)
// unsigned int xthal_dcache_get_ways(void);
DECLFUNC(xthal_dcache_get_ways)
abi_entry
dcache_get_ways a2
abi_return
endfunc
#endif
#if defined (__SPLIT__dcache_set_ways) || \
defined (__SPLIT__dcache_set_ways_nw)
// void xthal_dcache_set_ways(unsigned int ways);
DECLFUNC(xthal_dcache_set_ways)
abi_entry
dcache_set_ways a2 a3 a4
abi_return
endfunc
//----------------------------------------------------------------------
// opt into and out of coherence
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__cache_coherence_on) || \
defined(__SPLIT__cache_coherence_on_nw)
// The opt-in routine assumes cache was initialized at reset,
// so it's equivalent to the low-level coherence_on routine.
// void xthal_cache_coherence_optin(void)
// void xthal_cache_coherence_on(void)
DECLFUNC(xthal_cache_coherence_optin)
DECLFUNC(xthal_cache_coherence_on)
abi_entry
cache_coherence_on a2, a3
abi_return
endfunc
#endif
#if defined(__SPLIT__cache_coherence_off) || \
defined(__SPLIT__cache_coherence_off_nw)
// The coherence_off routines should not normally be called directly.
// Use the xthal_cache_coherence_optout() C routine instead
// (which first empties the cache).
// void xthal_cache_coherence_off
DECLFUNC(xthal_cache_coherence_off)
abi_entry
cache_coherence_off a2, a3
abi_return
endfunc
//----------------------------------------------------------------------
// Control cache prefetch
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__set_cache_prefetch_long) || \
defined(__SPLIT__set_cache_prefetch_long_nw)
# if XCHAL_HAVE_BE
# define aH a2 /* msb word = prefctl mask */
# define aL a3 /* lsb word = prefctl value */
# else
# define aH a3 /* msb word = prefctl mask */
# define aL a2 /* lsb word = prefctl value */
# endif
// Set cache prefetch state (-1=enable, 0=disable, and see XTHAL_*PREFETCH_*),
// and return previous one.
//
// int xthal_set_cache_prefetch_long( unsigned long long );
//
DECLFUNC(xthal_set_cache_prefetch_long)
abi_entry
# if XCHAL_HAVE_PREFETCH
movi a5, XCHAL_CACHE_PREFCTL_DEFAULT
addi a4, aL, 1 // does prefctl value aL == -1 ?
moveqz aL, a5, a4 // if yes (XTHAL_PREFETCH_ENABLE), set it to default
movgez a2, aL, aL // if the high bit is not set, then we want to transfer the contents of aL to prefctl
// so we move it to a2
bgez aL, 1f // high bit set indicates masked update
ssai 16 // 16-bit right shifts
src a5, aL, aH // get 16-bit-swapped 32-bit value
src a5, a5, a5 // get 32-bit value (rotate by 16)
rsr.prefctl a4
src a3, aH, aL // get 32-bit mask
or a4, a4, a3 // set masked bits
xor a4, a4, a3 // clear masked bits
and a5, a5, a3 // only use masked bits
or a2, a4, a5 // combine masked bits
1:
# if XCHAL_HW_MIN_VERSION <= XTENSA_HWVERSION_RC_2010_1 /* for erratum #325 */
j 1f ; .align 8 ; 1: xsr.prefctl a2 ; isync // ensure XSR.PREFCTL;ISYNC wholly within an icache line
# else
xsr.prefctl a2
# endif
# else
movi a2, 0
# endif
abi_return
endfunc
//----------------------------------------------------------------------
#endif
#if defined(__SPLIT__set_cache_prefetch) || \
defined(__SPLIT__set_cache_prefetch_nw)
// FOR BACKWARD COMPATIBILITY WITH PRE-RF RELEASE OBJECT CODE ONLY.
// Set cache prefetch state (-1=enable, 0=disable, and see the
// definitions of XTHAL_*PREFETCH_* with only the lower 32 bits set),
// and return previous one.
// int xthal_set_cache_prefetch( int )