-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcache_asm.S
971 lines (663 loc) · 23 KB
/
cache_asm.S
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
//
// cache_asm.S - assembly language cache management routines
//
// $Id: //depot/rel/Boreal/Xtensa/OS/hal/cache_asm.S#2 $
// Copyright (c) 1999-2010 Tensilica 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>
#define GBL(x) .global x
#define TYP(x) .type x,@function
#define ALN(x) .align x
#define SYMT(x) GBL(x); TYP(x); ALN(4); x:
#define SYM(x) GBL(x); ALN(4); x:
/* For Call0 ABI, the xthal... and xthal..._nw versions are identical,
* so we define both labels for the same function body. The Makefile
* does not define any of the __SPLIT__..._nw macros if Call0 ABI.
* Use SYM() when we don't want .type information. */
#if defined (__XTENSA_CALL0_ABI__)
# define SYMBOL(x) SYMT(x); SYMT(x ## _nw)
#else
# define SYMBOL(x) SYMT(x)
#endif
.text
//----------------------------------------------------------------------
// Read CACHEATTR register
//----------------------------------------------------------------------
#if defined(__SPLIT__get_cacheattr)
// unsigned xthal_get_cacheattr(void);
SYMBOL(xthal_get_cacheattr)
SYMBOL(xthal_get_dcacheattr)
# if XCHAL_HAVE_CACHEATTR /* single CACHEATTR register used for both I and D */
SYMBOL(xthal_get_icacheattr)
# endif
abi_entry
dcacheattr_get
abi_return
#elif defined(__SPLIT__get_cacheattr_nw)
SYM(xthal_get_cacheattr_nw)
SYM(xthal_get_dcacheattr_nw)
# if XCHAL_HAVE_CACHEATTR /* single CACHEATTR register used for both I and D */
SYM(xthal_get_icacheattr_nw)
# endif
dcacheattr_get
ret
#elif defined(__SPLIT__get_icacheattr)
// unsigned xthal_get_icacheattr(void);
# if !XCHAL_HAVE_CACHEATTR /* possibly independent CACHEATTR states used for I and D */
SYMBOL(xthal_get_icacheattr)
abi_entry
icacheattr_get
abi_return
# endif
#elif defined(__SPLIT__get_icacheattr_nw)
# if !XCHAL_HAVE_CACHEATTR /* possibly independent CACHEATTR states used for I and D */
SYM(xthal_get_icacheattr_nw)
icacheattr_get
ret
# 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)
# if XCHAL_HAVE_CACHEATTR /* single CACHEATTR register used for both I and D accesses */
SYMBOL(xthal_set_icacheattr)
SYMBOL(xthal_set_dcacheattr)
# endif
SYMBOL(xthal_set_cacheattr)
abi_entry
cacheattr_set
abi_return
#elif defined(__SPLIT__set_cacheattr_nw)
#if XCHAL_HAVE_CACHEATTR /* single CACHEATTR register used for both Instruction and Data accesses */
SYM(xthal_set_icacheattr_nw)
SYM(xthal_set_dcacheattr_nw)
#endif
SYM(xthal_set_cacheattr_nw)
cacheattr_set
ret
#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
# if defined(__SPLIT__set_icacheattr)
SYMBOL(xthal_set_icacheattr)
abi_entry
icacheattr_set
isync_retw_nop
abi_return
# elif defined(__SPLIT__set_icacheattr_nw)
SYM(xthal_set_icacheattr_nw)
icacheattr_set
ret
# elif defined(__SPLIT__set_dcacheattr)
SYMBOL(xthal_set_dcacheattr)
abi_entry
dcacheattr_set
abi_return
# elif defined(__SPLIT__set_dcacheattr_nw)
.align 4
SYM(xthal_set_dcacheattr_nw)
dcacheattr_set
ret
# endif /*split*/
#else /* full MMU: */
# if defined(__SPLIT__set_idcacheattr)
// These functions aren't applicable to arbitrary MMU configurations.
// Do nothing in this case.
SYMBOL(xthal_set_icacheattr)
SYMBOL(xthal_set_dcacheattr)
abi_entry
abi_return
# elif defined(__SPLIT__set_idcacheattr_nw)
SYM(xthal_set_icacheattr_nw)
SYM(xthal_set_dcacheattr_nw)
ret
# 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)
SYMBOL(xthal_icache_is_enabled)
SYMBOL(xthal_dcache_is_enabled)
abi_entry
cacheattr_is_enabled 2f
movi a2, 0
abi_return
2: movi a2, 1
abi_return
# elif defined(__SPLIT__idcache_is_enabled_nw)
SYM(xthal_icache_is_enabled_nw)
SYM(xthal_dcache_is_enabled_nw)
cacheattr_is_enabled 2f
movi a2, 0
ret
2: movi a2, 1
ret
# endif /*split*/
#elif XCHAL_HAVE_MIMIC_CACHEATTR || XCHAL_HAVE_XLT_CACHEATTR
# if defined(__SPLIT__icache_is_enabled)
SYMBOL(xthal_icache_is_enabled)
abi_entry
icacheattr_is_enabled 2f
movi a2, 0
abi_return
2: movi a2, 1
abi_return
# elif defined(__SPLIT__icache_is_enabled_nw)
SYM(xthal_icache_is_enabled_nw)
icacheattr_is_enabled 2f
movi a2, 0
ret
2: movi a2, 1
ret
# elif defined(__SPLIT__dcache_is_enabled)
SYMBOL(xthal_dcache_is_enabled)
abi_entry
dcacheattr_is_enabled 2f
movi a2, 0
abi_return
2: movi a2, 1
abi_return
# elif defined(__SPLIT__dcache_is_enabled_nw)
SYM(xthal_dcache_is_enabled_nw)
dcacheattr_is_enabled 2f
movi a2, 0
ret
2: movi a2, 1
ret
# 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)
SYMBOL(xthal_icache_is_enabled)
SYMBOL(xthal_dcache_is_enabled)
abi_entry
movi a2, 1
abi_return
# elif defined(__SPLIT__idcache_is_enabled_nw)
SYM(xthal_icache_is_enabled_nw)
SYM(xthal_dcache_is_enabled_nw)
movi a2, 1
ret
# endif /*split*/
#endif
//----------------------------------------------------------------------
// invalidate the icache
//----------------------------------------------------------------------
#if defined(__SPLIT__icache_all_invalidate)
// void xthal_icache_all_invalidate(void);
SYMBOL(xthal_icache_all_invalidate)
abi_entry
icache_invalidate_all a2, a3
isync_retw_nop
abi_return
#elif defined(__SPLIT__icache_all_invalidate_nw)
// void xthal_icache_all_invalidate_nw(void);
SYM(xthal_icache_all_invalidate_nw)
icache_invalidate_all a2, a3
ret
//----------------------------------------------------------------------
// invalidate the dcache
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_all_invalidate)
// void xthal_dcache_all_invalidate(void);
SYMBOL(xthal_dcache_all_invalidate)
abi_entry
dcache_invalidate_all a2, a3
abi_return
#elif defined(__SPLIT__dcache_all_invalidate_nw)
// void xthal_dcache_all_invalidate_nw(void);
SYM(xthal_dcache_all_invalidate_nw)
dcache_invalidate_all a2, a3
ret
//----------------------------------------------------------------------
// write dcache dirty data
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_all_writeback)
// void xthal_dcache_all_writeback(void);
SYMBOL(xthal_dcache_all_writeback)
abi_entry
dcache_writeback_all a2, a3
abi_return
#elif defined(__SPLIT__dcache_all_writeback_nw)
// void xthal_dcache_all_writeback_nw(void);
SYM(xthal_dcache_all_writeback_nw)
dcache_writeback_all a2, a3
ret
//----------------------------------------------------------------------
// write dcache dirty data and invalidate
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_all_writeback_inv)
// void xthal_dcache_all_writeback_inv(void);
SYMBOL(xthal_dcache_all_writeback_inv)
abi_entry
dcache_writeback_inv_all a2, a3
abi_return
#elif defined(__SPLIT__dcache_all_writeback_inv_nw)
// void xthal_dcache_all_writeback_inv_nw(void);
SYM(xthal_dcache_all_writeback_inv_nw)
dcache_writeback_inv_all a2, a3
ret
//----------------------------------------------------------------------
// unlock instructions from icache
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_all_unlock)
// void xthal_icache_all_unlock(void);
SYMBOL(xthal_icache_all_unlock)
abi_entry
icache_unlock_all a2, a3
abi_return
#elif defined(__SPLIT__icache_all_unlock_nw)
// void xthal_icache_all_unlock_nw(void);
SYM(xthal_icache_all_unlock_nw)
icache_unlock_all a2, a3
ret
//----------------------------------------------------------------------
// unlock data from dcache
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_all_unlock)
// void xthal_dcache_all_unlock(void);
SYMBOL(xthal_dcache_all_unlock)
abi_entry
dcache_unlock_all a2, a3
abi_return
#elif defined(__SPLIT__dcache_all_unlock_nw)
// void xthal_dcache_all_unlock_nw(void);
SYM(xthal_dcache_all_unlock_nw)
dcache_unlock_all a2, a3
ret
//----------------------------------------------------------------------
// invalidate the address range in the icache
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_region_invalidate)
// void xthal_icache_region_invalidate( void *addr, unsigned size );
SYMBOL(xthal_icache_region_invalidate)
abi_entry
icache_invalidate_region a2, a3, a4
isync_retw_nop
abi_return
#elif defined(__SPLIT__icache_region_invalidate_nw)
// void xthal_icache_region_invalidate_nw( void *addr, unsigned size );
SYM(xthal_icache_region_invalidate_nw)
icache_invalidate_region a2, a3, a4
ret
//----------------------------------------------------------------------
// invalidate the address range in the dcache
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_region_invalidate)
// void xthal_dcache_region_invalidate( void *addr, unsigned size );
SYMBOL(xthal_dcache_region_invalidate)
abi_entry
dcache_invalidate_region a2, a3, a4
abi_return
#elif defined(__SPLIT__dcache_region_invalidate_nw)
// void xthal_dcache_region_invalidate_nw( void *addr, unsigned size );
SYM(xthal_dcache_region_invalidate_nw)
dcache_invalidate_region a2, a3, a4
ret
//----------------------------------------------------------------------
// write dcache region dirty data
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_region_writeback)
// void xthal_dcache_region_writeback( void *addr, unsigned size );
SYMBOL(xthal_dcache_region_writeback)
abi_entry
dcache_writeback_region a2, a3, a4
abi_return
#elif defined(__SPLIT__dcache_region_writeback_nw)
// void xthal_dcache_region_writeback_nw( void *addr, unsigned size );
SYM(xthal_dcache_region_writeback_nw)
dcache_writeback_region a2, a3, a4
ret
//----------------------------------------------------------------------
// write dcache region dirty data and invalidate
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_region_writeback_inv)
// void xthal_dcache_region_writeback_inv( void *addr, unsigned size );
SYMBOL(xthal_dcache_region_writeback_inv)
abi_entry
dcache_writeback_inv_region a2, a3, a4
abi_return
#elif defined(__SPLIT__dcache_region_writeback_inv_nw)
// void xthal_dcache_region_writeback_inv_nw( void *addr, unsigned size );
SYM(xthal_dcache_region_writeback_inv_nw)
dcache_writeback_inv_region a2, a3, a4
ret
//----------------------------------------------------------------------
// lock instructions in icache region
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_region_lock)
// void xthal_icache_region_lock(void);
SYMBOL(xthal_icache_region_lock)
abi_entry
icache_lock_region a2, a3, a4
abi_return
#elif defined(__SPLIT__icache_region_lock_nw)
// void xthal_icache_region_lock_nw(void);
SYM(xthal_icache_region_lock_nw)
icache_lock_region a2, a3, a4
ret
//----------------------------------------------------------------------
// lock data in dcache region
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_region_lock)
// void xthal_dcache_region_lock(void);
SYMBOL(xthal_dcache_region_lock)
abi_entry
dcache_lock_region a2, a3, a4
abi_return
#elif defined(__SPLIT__dcache_region_lock_nw)
// void xthal_dcache_region_lock_nw(void);
SYM(xthal_dcache_region_lock_nw)
dcache_lock_region a2, a3, a4
ret
//----------------------------------------------------------------------
// unlock instructions from icache region
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_region_unlock)
// void xthal_icache_region_unlock(void);
SYMBOL(xthal_icache_region_unlock)
abi_entry
icache_unlock_region a2, a3, a4
abi_return
#elif defined(__SPLIT__icache_region_unlock_nw)
// void xthal_icache_region_unlock_nw(void);
SYM(xthal_icache_region_unlock_nw)
icache_unlock_region a2, a3, a4
ret
//----------------------------------------------------------------------
// unlock data from dcache region
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_region_unlock)
// void xthal_dcache_region_unlock(void);
SYMBOL(xthal_dcache_region_unlock)
abi_entry
dcache_unlock_region a2, a3, a4
abi_return
#elif defined(__SPLIT__dcache_region_unlock_nw)
// void xthal_dcache_region_unlock_nw(void);
SYM(xthal_dcache_region_unlock_nw)
dcache_unlock_region a2, a3, a4
ret
//----------------------------------------------------------------------
// invalidate single icache line
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_line_invalidate)
// void xthal_icache_line_invalidate(void *addr);
SYMBOL(xthal_icache_line_invalidate)
abi_entry
icache_invalidate_line a2, 0
isync_retw_nop
abi_return
#elif defined(__SPLIT__icache_line_invalidate_nw)
// void xthal_icache_line_invalidate_nw(void *addr);
SYM(xthal_icache_line_invalidate_nw)
icache_invalidate_line a2, 0
ret
//----------------------------------------------------------------------
// invalidate single dcache line
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_line_invalidate)
// void xthal_dcache_line_invalidate(void *addr);
SYMBOL(xthal_dcache_line_invalidate)
abi_entry
dcache_invalidate_line a2, 0
abi_return
#elif defined(__SPLIT__dcache_line_invalidate_nw)
// void xthal_dcache_line_invalidate_nw(void *addr);
SYM(xthal_dcache_line_invalidate_nw)
dcache_invalidate_line a2, 0
ret
//----------------------------------------------------------------------
// write single dcache line dirty data
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_line_writeback)
// void xthal_dcache_line_writeback(void *addr);
SYMBOL(xthal_dcache_line_writeback)
abi_entry
dcache_writeback_line a2, 0
abi_return
#elif defined(__SPLIT__dcache_line_writeback_nw)
// void xthal_dcache_line_writeback_nw(void *addr);
SYM(xthal_dcache_line_writeback_nw)
dcache_writeback_line a2, 0
ret
//----------------------------------------------------------------------
// write single dcache line dirty data and invalidate
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_line_writeback_inv)
// void xthal_dcache_line_writeback_inv(void *addr);
SYMBOL(xthal_dcache_line_writeback_inv)
abi_entry
dcache_writeback_inv_line a2, 0
abi_return
#elif defined(__SPLIT__dcache_line_writeback_inv_nw)
// void xthal_dcache_line_writeback_inv_nw(void *addr);
SYM(xthal_dcache_line_writeback_inv_nw)
dcache_writeback_inv_line a2, 0
ret
//----------------------------------------------------------------------
// lock instructions in icache line
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_line_lock)
// void xthal_icache_line_lock(void);
SYMBOL(xthal_icache_line_lock)
abi_entry
icache_lock_line a2, 0
abi_return
#elif defined(__SPLIT__icache_line_lock_nw)
// void xthal_icache_line_lock_nw(void);
SYM(xthal_icache_line_lock_nw)
icache_lock_line a2, 0
ret
//----------------------------------------------------------------------
// lock data in dcache line
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_line_lock)
// void xthal_dcache_line_lock(void);
SYMBOL(xthal_dcache_line_lock)
abi_entry
dcache_lock_line a2, 0
abi_return
#elif defined(__SPLIT__dcache_line_lock_nw)
// void xthal_dcache_line_lock_nw(void);
SYM(xthal_dcache_line_lock_nw)
dcache_lock_line a2, 0
ret
//----------------------------------------------------------------------
// unlock instructions from icache line
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_line_unlock)
// void xthal_icache_line_unlock(void);
SYMBOL(xthal_icache_line_unlock)
abi_entry
icache_unlock_line a2, 0
abi_return
#elif defined(__SPLIT__icache_line_unlock_nw)
// void xthal_icache_line_unlock_nw(void);
SYM(xthal_icache_line_unlock_nw)
icache_unlock_line a2, 0
ret
//----------------------------------------------------------------------
// unlock data from dcache line
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_line_unlock)
// void xthal_dcache_line_unlock(void);
SYMBOL(xthal_dcache_line_unlock)
abi_entry
dcache_unlock_line a2, 0
abi_return
#elif defined(__SPLIT__dcache_line_unlock_nw)
// void xthal_dcache_line_unlock_nw(void);
SYM(xthal_dcache_line_unlock_nw)
dcache_unlock_line a2, 0
ret
//----------------------------------------------------------------------
// sync icache and memory (???)
//----------------------------------------------------------------------
#elif defined(__SPLIT__icache_sync)
// void xthal_icache_sync(void);
SYMBOL(xthal_icache_sync)
abi_entry
icache_sync a2
isync_retw_nop
abi_return
#elif defined(__SPLIT__icache_sync_nw)
// void xthal_icache_sync_nw(void);
SYM(xthal_icache_sync_nw)
icache_sync a2
ret
//----------------------------------------------------------------------
// sync dcache and memory (???)
//----------------------------------------------------------------------
#elif defined(__SPLIT__dcache_sync)
// void xthal_dcache_sync(void);
SYMBOL(xthal_dcache_sync)
abi_entry
dcache_sync a2
abi_return
#elif defined(__SPLIT__dcache_sync_nw)
// void xthal_dcache_sync_nw(void)
SYM(xthal_dcache_sync_nw)
dcache_sync a2
ret
//----------------------------------------------------------------------
// opt into and out of coherence
//----------------------------------------------------------------------
#elif defined(__SPLIT__cache_coherence_on)
// 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)
SYMBOL(xthal_cache_coherence_optin)
SYMBOL(xthal_cache_coherence_on)
abi_entry
cache_coherence_on a2, a3
abi_return
#elif defined(__SPLIT__cache_coherence_on_nw)
// void xthal_cache_coherence_on_nw(void)
SYM(xthal_cache_coherence_on_nw)
cache_coherence_on a2, a3
ret
#elif defined(__SPLIT__cache_coherence_off)
// 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
SYMBOL(xthal_cache_coherence_off)
abi_entry
cache_coherence_off a2, a3
abi_return
#elif defined(__SPLIT__cache_coherence_off_nw)
// void xthal_cache_coherence_on_nw
SYM(xthal_cache_coherence_off_nw)
cache_coherence_off a2, a3
ret
//----------------------------------------------------------------------
// Control cache prefetch
//----------------------------------------------------------------------
#elif defined(__SPLIT__set_cache_prefetch)
// #define XTHAL_PREFETCH_ENABLE -1
// #define XTHAL_PREFETCH_DISABLE 0
// Set cache prefetch state, and return previous one.
// int xthal_set_cache_prefetch( int )
SYMBOL(xthal_set_cache_prefetch)
abi_entry
# if XCHAL_HAVE_PREFETCH
movi a3, XCHAL_CACHE_PREFCTL_DEFAULT
movltz a2, a3, a2 // if a2==XTHAL_PREFETCH_ENABLE, set it to XCHAL_CACHE_PREFCTL_DEFAULT
xsr.prefctl a2
# else
movi a2, 0
# endif
abi_return
#elif defined(__SPLIT__set_cache_prefetch_nw)
// int xthal_set_cache_prefetch_nw( int )
SYM(xthal_set_cache_prefetch_nw)
# if XCHAL_HAVE_PREFETCH
movi a3, XCHAL_CACHE_PREFCTL_DEFAULT
movltz a2, a3, a2 // if a2==XTHAL_PREFETCH_ENABLE, set it to XCHAL_CACHE_PREFCTL_DEFAULT
xsr.prefctl a2
# else
movi a2, 0
# endif
ret
#elif defined(__SPLIT__get_cache_prefetch)
// Return current cache prefetch state.
// int xthal_get_cache_prefetch( void )
SYMBOL(xthal_get_cache_prefetch)
abi_entry
# if XCHAL_HAVE_PREFETCH
rsr.prefctl a2
# else
movi a2, 0
# endif
abi_return
#elif defined(__SPLIT__get_cache_prefetch_nw)
// int xthal_get_cache_prefetch_nw( void )
SYM(xthal_get_cache_prefetch_nw)
# if XCHAL_HAVE_PREFETCH
rsr.prefctl a2
# else
movi a2, 0
# endif
ret
//----------------------------------------------------------------------
// Misc configuration info
//----------------------------------------------------------------------
// Eventually these will move to their own file:
#elif defined(__SPLIT__hw_configid0)
.set xthals_hw_configid0, XCHAL_HW_CONFIGID0
#elif defined(__SPLIT__hw_configid1)
.set xthals_hw_configid1, XCHAL_HW_CONFIGID1
#elif defined(__SPLIT__release_major)
.set xthals_release_major, XTHAL_RELEASE_MAJOR
#elif defined(__SPLIT__release_minor)
.set xthals_release_minor, XTHAL_RELEASE_MINOR
#endif /*split*/
.global xthals_hw_configid0, xthals_hw_configid1
.global xthals_release_major, xthals_release_minor
//----------------------------------------------------------------------