forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore-restore.S
More file actions
607 lines (552 loc) · 17.7 KB
/
core-restore.S
File metadata and controls
607 lines (552 loc) · 17.7 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
// core-restore.S -- core state restore routine (used by PSO)
// $Id: //depot/rel/Foxhill/dot.8/Xtensa/OS/xtos/core-restore.S#1 $
// Copyright (c) 2012-2013 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/coreasm.h>
#include <xtensa/corebits.h>
#include <xtensa/cacheasm.h>
#include <xtensa/cacheattrasm.h>
#include <xtensa/xdm-regs.h>
#include <xtensa/config/core-isa.h>
#include <xtensa/mpuasm.h>
#include <xtensa/xtruntime-core-state.h>
#include "xtos-internal.h"
#include <xtensa/idmaasm.h>
.text
// void _xtos_core_restore(unsigned retvalue, XtosCoreState *savearea)
//
// Restore processor state.
// If save area signature is bad, function just returns.
// Else, processor state is restored, and execution resumes
// according to that saved processor state.
//
// On entry:
// Caches are ready to use (initialized or warm, as the case may be).
//
.align 4
.global _xtos_core_restore
.type _xtos_core_restore,@function
_xtos_core_restore:
abi_entry
// Check the save area's signature:
movi a5, CORE_STATE_SIGNATURE
l32i a4, a3, CS_SA_signature
movi a6, 0
bne a4, a5, 1f // if bad, just return
#if XCHAL_HAVE_INTERRUPTS
rsil a4, 15 // disable interrupts...
wsr.intenable a6
#endif
// Here, call0 is used as an unlimited range jump. It does not return.
call0 _xtos_core_restore_nw
1: abi_return
.size _xtos_core_restore, . - _xtos_core_restore
// Restore processor state.
// On entry:
// Caches are ready to use (initialized or warm, as the case may be).
// a2 = return value passed to restored processor state
// a3 = pointer to save area to restore from
// INTENABLE = 0 (interrupts all disabled)
// LITBASE = initialized (per reset vector, not restored)
// touching a4..a7 won't overflow
// other registers are mostly undefined
//
.align 4
.global _xtos_core_restore_nw
.type _xtos_core_restore_nw,@function
_xtos_core_restore_nw:
#if XCHAL_HAVE_WINDOWED
s32i a2, a3, CS_SA_areg + 2*4 // save a2 thru rotation
wsr.excsave1 a3 // save a3 thru rotation
l32i a6, a3, CS_SA_windowstart // restore windowstart
l32i a5, a3, CS_SA_windowbase // restore windowbase
wsr.windowstart a6
wsr.windowbase a5
rsync
// a0-a15 have possibly all changed, so need to reload a3
rsr.excsave1 a3 // restore a3
l32i a2, a3, CS_SA_areg + 2*4 // restore a2 (return value)
#endif
//movi a0, 0
l32i a0, a3, CS_SA_restore_label // _xtos_core_save_common's return PC
// Just for consistency...
#if XCHAL_HAVE_INTERRUPTS || XCHAL_HAVE_EXCEPTIONS
movi a4, 0x11
wsr.ps a4
rsync
#endif
l32i a5, a3, CS_SA_sar // restore sar
wsr.sar a5
#if XCHAL_HAVE_PSO_CDM
// Restore PWRCTL (except ShutProcOffOnPWait, cleared when all is done).
movi a4, XDM_MISC_PWRCTL
movi a7, PWRCTL_CORE_SHUTOFF // aka ShutProcOffOnPWait
rer a6, a4 // read pwrctl
l32i a5, a3, CS_SA_pwrctl // get saved pwrctl
and a7, a7, a6 // keep just ShutProcOffOnPWait bit
or a5, a5, a7 // keep it set if already set (clear later)
wer a5, a4 // restore pwrctl (except ShutProcOffOnPWait)
#endif
.set _idx, 2
.rept XCHAL_NUM_INTLEVELS+XCHAL_HAVE_NMI-1
l32i a5, a3, CS_SA_epc + 4*(_idx-2)
INDEX_SR wsr.epc a5
l32i a5, a3, CS_SA_eps + 4*(_idx-2)
INDEX_SR wsr.eps a5
l32i a5, a3, CS_SA_excsave + 4*(_idx-2)
INDEX_SR wsr.excsave a5
.set _idx, _idx+1
.endr
#if XCHAL_HAVE_LOOPS
l32i a5, a3, CS_SA_lbeg
wsr.lbeg a5
l32i a5, a3, CS_SA_lend
wsr.lend a5
l32i a5, a3, CS_SA_lcount
wsr.lcount a5
#endif
#if XCHAL_HAVE_ABSOLUTE_LITERALS
l32i a5, a3, CS_SA_litbase
wsr.litbase a5
#endif
#if XCHAL_HAVE_VECBASE
l32i a5, a3, CS_SA_vecbase
wsr.vecbase a5
#endif
#if XCHAL_HAVE_S32C1I && (XCHAL_HW_MIN_VERSION >= XTENSA_HWVERSION_RC_2009_0) /* have ATOMCTL ? */
l32i a5, a3, CS_SA_atomctl
wsr.atomctl a5
#endif
#if XCHAL_HAVE_PREFETCH
l32i a5, a3, CS_SA_prefctl
wsr.prefctl a5
#endif
#if XCHAL_USE_MEMCTL
l32i a5, a3, CS_SA_memctl
wsr.memctl a5
#endif
#if XCHAL_HAVE_DEBUG
// NOTE: restore of debug state is conditional,
// as the power-down and wakeup code might be actively debugged.
rsr.icountlevel a5
bnez a5, 1f // skip if being single-stepped (not failsafe!)
l32i a5, a3, CS_SA_icount
wsr.icount a5
l32i a5, a3, CS_SA_icountlevel
wsr.icountlevel a5
1:
//l32i a5, a3, CS_SA_debugcause // (won't get restored?)
//wsr.debugcause a5
//l32i a5, a3, CS_SA_ddr
//wsr.ddr a5
# if XCHAL_NUM_IBREAK
rsr.ibreakenable a6
bnez a5, 1f // skip restore if already some ibreaks defined
.set _idx, 0
.rept XCHAL_NUM_IBREAK
l32i a5, a3, CS_SA_ibreaka + 4*_idx
INDEX_SR wsr.ibreaka a5
.set _idx, _idx+1
.endr
l32i a5, a3, CS_SA_ibreakenable
wsr.ibreakenable a5
1:
# endif
.set _idx, 0
.rept XCHAL_NUM_DBREAK
INDEX_SR rsr.dbreakc a6
bbsi.l a6, 30, 1f // skip restore of that dbreak if already active
bbsi.l a6, 31, 1f // ditto
l32i a5, a3, CS_SA_dbreaka + 4*_idx
INDEX_SR wsr.dbreaka a5
l32i a5, a3, CS_SA_dbreakc + 4*_idx
INDEX_SR wsr.dbreakc a5
1:
.set _idx, _idx+1
.endr
#endif
.set _idx, 0
.rept XCHAL_NUM_MISC_REGS
l32i a5, a3, CS_SA_misc + 4*_idx
INDEX_SR wsr.misc a5
.set _idx, _idx+1
.endr
#if XCHAL_HAVE_MEM_ECC_PARITY
l32i a5, a3, CS_SA_mepc
wsr.mepc a5
l32i a5, a3, CS_SA_meps
wsr.meps a5
l32i a5, a3, CS_SA_mesave
wsr.mesave a5
l32i a5, a3, CS_SA_mesr
wsr.mesr a5
l32i a5, a3, CS_SA_mecr
wsr.mecr a5
l32i a5, a3, CS_SA_mevaddr
wsr.mevaddr a5
#endif
/* TIE state */
addi a4, a3, CS_SA_ncp
xchal_ncp_load a4, a5,a6,a7,a8 // restore non-coprocessor state
#if XCHAL_HAVE_CP
movi a6, -1
wsr.cpenable a6 // enable all coprocessors
rsync
xchal_cp0_load a4, a5,a6,a7,a8 continue=1
xchal_cp1_load a4, a5,a6,a7,a8 continue=1
xchal_cp2_load a4, a5,a6,a7,a8 continue=1
xchal_cp3_load a4, a5,a6,a7,a8 continue=1
xchal_cp4_load a4, a5,a6,a7,a8 continue=1
xchal_cp5_load a4, a5,a6,a7,a8 continue=1
xchal_cp6_load a4, a5,a6,a7,a8 continue=1
xchal_cp7_load a4, a5,a6,a7,a8 continue=1
//xchal_cp8_load a4, a5,a6,a7,a8 continue=1
//xchal_cp9_load a4, a5,a6,a7,a8 continue=1
//xchal_cp10_load a4, a5,a6,a7,a8 continue=1
//xchal_cp11_load a4, a5,a6,a7,a8 continue=1
//xchal_cp12_load a4, a5,a6,a7,a8 continue=1
//xchal_cp13_load a4, a5,a6,a7,a8 continue=1
//xchal_cp14_load a4, a5,a6,a7,a8 continue=1
//xchal_cp15_load a4, a5,a6,a7,a8 continue=1
l32i a5, a3, CS_SA_cpenable
wsr.cpenable a5
#endif
/* TLB state (for known MMU types only, not internal custom) */
// FIXME FIXME FIXME TODO:
// This restore code does not work in the general case,
// for CaXLT or full MMU, in particular when any address mappings
// were active when saved, that don't match reset state and affect
// code and data currently being accessed for restore.
#if XCHAL_HAVE_MIMIC_CACHEATTR || XCHAL_HAVE_XLT_CACHEATTR
addi a4, a3, CS_SA_tlbs // where to start loading TLB entry info
movi a5, 0x20000000
movi a6, 0
1:
l32i a7, a4, 0
wdtlb a7, a6 // write DTLB entry PPN + CA
dsync
l32i a7, a4, 4
j 2f
// Ensure WITLB and ISYNC are in same cache line, when writing ITLB
// entry that maps this currently running code
// (micro-architecture defined sequence):
.begin no-transform
.align 16
2: witlb a7, a6 // write ITLB entry PPN + CA
isync
.end no-transform
nop
nop
addi a4, a4, 8
add a6, a6, a5
bnez a6, 1b
#elif XCHAL_HAVE_PTP_MMU
addi a4, a3, CS_SA_tlbs // where to start storing TLB entry info
movi a10, _xtos_pso_tlbmap
movi a11, _xtos_pso_tlbmap_end
l32i a14, a3, CS_SA_dtlbcfg
l32i a15, a3, CS_SA_itlbcfg
wsr.dtlbcfg a14 // page size index (0..3) for each DTLB way
wsr.itlbcfg a15 // page size index (0..3) for each ITLB way
l32i a5, a3, CS_SA_ptevaddr
wsr.ptevaddr a5
rsync
// Loop from last way to first (less register pressure that way).
.Loop_tlbmap_rest:
addi a11, a11, -8 // next way
l32i a8, a11, 0 // map of four (page size log2) per index for this way
// DTLB page size:
extui a12, a14, 0, 4 // page size index for this DTLB way
srli a14, a14, 4 // (for next way)
ssa8l a12 // prepare to shift right by 8*a12
srl a12, a8 // page size log2 for this DTLB way
ssl a12 // prepare to shift left by a12
movi a12, 1 // (to compute 1 << (page size log2))
sll a12, a12 // page size for this DTLB way
// Restore all entries of this DTLB way:
l32i a9, a11, 4 // number of entries for this way
sub a5, a11, a10 // way number * 8
srli a5, a5, 3 // way number
extui a9, a9, 0, 8
1:
l32i a6, a4, 0 // read entry VPN + ASID
extui a7, a6, 0, 8 // get ASID
bnez a7, 2f // if non-zero, need WDTLB
add a6, a6, a5 // zero, so need IDTLB - add way number
idtlb a6 // invalidate DTLB entry
j 5f
2: // Non-zero ASID. Put in RASID and adjust PS.RING accordingly.
bgeui a7, 5, 3f // branch if ASID >= 5
addi a7, a7, -1
slli a7, a7, 6 // PS.RING = ASID - 1
addi a7, a7, 0x11 // PS.EXCM=1, PS.INTLEVEL=1
movi a6, 0x04030201 // for ASID in {1 .. 4}
j 4f
3: // ASID >= 5, place it in RASID
movi a6, 0x00030201
slli a7, a7, 24
add a6, a7, a6 // RASID = 0x <ASID> 03 02 01
movi a7, 0xd1 // PS.RING=3, PS.EXCM=1, PS.INTLEVEL=1
4: wsr.rasid a6
wsr.ps a7
rsync
l32i a6, a4, 0 // read entry VPN + ASID
l32i a7, a4, 4 // read entry PPN + CA
srli a6, a6, 8 // replace ASID ...
slli a6, a6, 8 // ...
add a6, a6, a5 // ... with way number
wdtlb a7, a6 // write DTLB entry ...
5: dsync
addi a4, a4, 8
add a5, a5, a12 // next entry of this DTLB way
addi a9, a9, -1
bnez a9, 1b
// ITLB page size:
extui a12, a15, 0, 4 // page size index for this ITLB way
srli a15, a15, 4 // (for next way)
ssa8l a12 // prepare to shift right by 8*a12
srl a12, a8 // page size log2 for this ITLB way
ssl a12 // prepare to shift left by a12
movi a12, 1 // (to compute 1 << (page size log2))
sll a12, a12 // page size for this ITLB way
// Restore all entries of this ITLB way:
l32i a9, a11, 4 // number of entries for this way
sub a5, a11, a10 // way number * 8
srli a5, a5, 3 // way number
bbsi.l a9, 15, 6f // skip ITLB if is a DTLB-only way
extui a9, a9, 0, 8
1:
l32i a6, a4, 0 // read entry VPN + ASID
extui a7, a6, 0, 8 // get ASID
bnez a7, 2f // if non-zero, need WITLB
add a6, a6, a5 // zero, so need IITLB - add way number
iitlb a6 // invalidate ITLB entry
j 5f
2: // Non-zero ASID. Put in RASID and adjust PS.RING accordingly.
bgeui a7, 5, 3f // branch if ASID >= 5
addi a7, a7, -1
slli a7, a7, 6 // PS.RING = ASID - 1
addi a7, a7, 0x11 // PS.EXCM=1, PS.INTLEVEL=1
movi a6, 0x04030201 // for ASID in {1 .. 4}
j 4f
3: // ASID >= 5, place it in RASID
movi a6, 0x00030201
slli a7, a7, 24
add a6, a7, a6 // RASID = 0x <ASID> 03 02 01
movi a7, 0xd1 // PS.RING=3, PS.EXCM=1, PS.INTLEVEL=1
4: wsr.rasid a6
wsr.ps a7
rsync
l32i a6, a4, 0 // read entry VPN + ASID
l32i a7, a4, 4 // read entry PPN + CA
srli a6, a6, 8 // replace ASID ...
slli a6, a6, 8 // ...
add a6, a6, a5 // ... with way number
j 8f
.align 16 // ensure WITLB and ISYNC in same cache line
8: witlb a7, a6 // write ITLB entry ...
5: isync
addi a4, a4, 8
add a5, a5, a12 // next entry of this ITLB way
addi a9, a9, -1
bnez a9, 1b
6:
bne a11, a10, .Loop_tlbmap_rest // loop for next TLB way
l32i a5, a3, CS_SA_rasid
wsr.rasid a5
movi a6, 0x11
wsr.ps a6
rsync
// Done saving TLBs.
#endif
#if XCHAL_HAVE_MPU
addi a4, a3, CS_SA_mpuentry // MPU restore location
movi a5, XCHAL_MPU_ENTRIES
mpu_write_map a4, a5, a6, a7, a8, a9
l32i a4, a3, CS_SA_cacheadrdis
wsr.cacheadrdis a4
#endif
#if XCHAL_HAVE_IDMA
addi a4, a3, CS_SA_idmaregs // IDMA regs restore location
_idma_restore a4, a5, a6, a7
#endif
#if XCHAL_HAVE_WINDOWED
// All the stack frames (except for our own) are supposed to be spilled
// into the stack. So now we restore the saved registers for our caller
// (and its caller) into the correct locations in the stack. See the
// comments in core-save.S and also the Xtensa Programmers Guide for
// more information. Of course we only restore if there is valid saved
// state.
l32i a4, a3, CS_SA_caller_regs_saved // flag
beqz a4, .Lendcr // skip restore if 0
// Restore our caller's a0-a3
l32i a1, a3, CS_SA_areg + 1*4 // restore a1
addi a4, a1, -16
l32i a5, a3, CS_SA_caller_regs
l32i a6, a3, CS_SA_caller_regs + 4
s32i a5, a4, 0 // caller a0
s32i a6, a4, 4 // caller a1
l32i a5, a3, CS_SA_caller_regs + 8
l32i a6, a3, CS_SA_caller_regs + 12
s32i a5, a4, 8 // caller a2
s32i a6, a4, 12 // caller a3
// Now restore our callers caller's a0-a3
l32i a5, a3, CS_SA_caller_regs + 16
l32i a6, a3, CS_SA_caller_regs + 20
s32i a5, a1, 0 // caller caller a0
s32i a6, a1, 4 // caller caller a1
l32i a5, a3, CS_SA_caller_regs + 24
l32i a6, a3, CS_SA_caller_regs + 28
s32i a5, a1, 8 // caller caller a2
s32i a6, a1, 12 // caller caller a3
// Now restore caller's a4-a11 as required
// NOTE a0 is pointing to _xtos_core_save() not the actual caller
l32i a4, a3, CS_SA_areg // load actual return address
extui a4, a4, 30, 2 // top 2 bits of ret addr
blti a4, 2, .Lendcr
l32i a5, a1, 4 // a5 <- caller caller a1
slli a4, a4, 4
sub a4, a5, a4 // a4 <- bottom of extra save area
addi a5, a5, -16 // a5 <- top of extra save area
addi a6, a3, CS_SA_caller_regs + 32 // location to start restore from
.Lcrloop:
l32i a7, a6, 0 // Restore in groups of 4 registers
l32i a8, a6, 4
s32i a7, a4, 0
s32i a8, a4, 4
l32i a7, a6, 8
l32i a8, a6, 12
s32i a7, a4, 8
s32i a8, a4, 12
addi a4, a4, 16
addi a6, a6, 16
blt a4, a5, .Lcrloop
.Lendcr:
#endif
// Restore timers and CCOUNT right before enabling interrupts. We will
// try to restore any timer interrupts that were pending (as indicated
// by the INTERRUPT register) at the time of the state save.
#if XCHAL_HAVE_CCOUNT
.macro restore_timer num intr
l32i a5, a3, CS_SA_ccompare + 4*\num // Load CCOMPARE value
l32i a6, a3, CS_SA_interrupt // Load old INTERRUPT value
writesr ccompare \num a5 // Restore CCOMPARE
bbci.l a6, \intr, .Lrtdone\num // Intr not set for this timer
addi a5, a5, -1 // CCOUNT = CCOMPARE - 1
.Lrttry\num:
wsr.ccount a5 // Set CCOUNT and wait
esync
nop
rsr.interrupt a6
bbci.l a6, \intr, .Lrttry\num // If intr not set then retry
.Lrtdone\num:
.endm
#if XCHAL_NUM_TIMERS > 0
restore_timer 0 XCHAL_TIMER0_INTERRUPT
#endif
#if XCHAL_NUM_TIMERS > 1
restore_timer 1 XCHAL_TIMER1_INTERRUPT
#endif
#if XCHAL_NUM_TIMERS > 2
restore_timer 2 XCHAL_TIMER2_INTERRUPT
#endif
#if XCHAL_NUM_TIMERS > 3
restore_timer 3 XCHAL_TIMER3_INTERRUPT
#endif
// Attempt to clear any spurious timer interrupts caused by the CCOUNT
// dance above.
#if XCHAL_NUM_TIMERS > 0
l32i a5, a3, CS_SA_ccount // Restore CCOUNT
wsr.ccount a5
l32i a5, a3, CS_SA_interrupt // Load old intr value
bbsi.l a5, XCHAL_TIMER0_INTERRUPT, .Lx1 // Skip if timer0 intr set
rsr.ccompare0 a6 // Force timer0 intr clear
wsr.ccompare0 a6
.Lx1:
#if XCHAL_NUM_TIMERS > 1
bbsi.l a5, XCHAL_TIMER1_INTERRUPT, .Lx2 // Skip if timer1 intr set
rsr.ccompare1 a6 // Force timer1 intr clear
wsr.ccompare1 a6
.Lx2:
#endif
#if XCHAL_NUM_TIMERS > 2
bbsi.l a5, XCHAL_TIMER2_INTERRUPT, .Lx3 // Skip if timer2 intr set
rsr.ccompare2 a6 // Force timer2 intr clear
wsr.ccompare2 a6
.Lx3:
#endif
#if XCHAL_NUM_TIMERS > 3
bbsi.l a5, XCHAL_TIMER3_INTERRUPT, .Lx4 // Skip if timer3 intr set
rsr.ccompare3 a6 // Force timer3 intr clear
wsr.ccompare3 a6
.Lx4:
#endif
#endif
l32i a5, a3, CS_SA_ccount // Restore CCOUNT again
wsr.ccount a5
#endif
#if XCHAL_HAVE_INTERRUPTS
rsil a6, 15 // disable interrupts before enabling with INTENABLE
l32i a5, a3, CS_SA_intenable
wsr.intenable a5
movi a4, XCHAL_INTTYPE_MASK_SOFTWARE // restore any pending software interrupts
l32i a5, a3, CS_SA_interrupt
and a5, a5, a4
wsr.intset a5
rsync
#endif
//l32i a0, a3, CS_SA_restore_label // _xtos_core_save_common's return PC
#if XCHAL_HAVE_INTERRUPTS || XCHAL_HAVE_EXCEPTIONS
//l32i a4, a3, CS_SA_ps
l32i a5, a3, CS_SA_epc1
wsr.epc1 a5
l32i a5, a3, CS_SA_excsave1
wsr.excsave1 a5
# ifdef XCHAL_DOUBLEEXC_VECTOR_VADDR
l32i a5, a3, CS_SA_depc
wsr.depc a5
# endif
//wsr.ps a4 // PS restored by caller
//rsync
#endif
#if XCHAL_HAVE_PSO_CDM
// As late as possible, wait for debug to wakeup, and clear PWRCTL.ShutProcOffOnPWait.
movi a4, XDM_MISC_PWRCTL
rer a5, a4 // read pwrctl
// Wait for debug powerup to complete (if started):
bbci.l a5, PWRCTL_DEBUG_WAKEUP_SHIFT, 1f
movi a7, XDM_MISC_PWRSTAT
2: rer a6, a7 // read PWRSTAT
bbci.l a6, PWRSTAT_DEBUG_DOMAIN_ON_SHIFT, 2b // loop until debug is powered up
1:
movi a7, ~PWRCTL_CORE_SHUTOFF // aka ShutProcOffOnPWait
and a5, a5, a7 // clear ShutProcOffOnPWait bit
wer a5, a4 // update pwrctl
#endif
movi a4, 0
s32i a4, a3, CS_SA_signature // make sure save area is marked as no longer valid
#if XCHAL_DCACHE_IS_WRITEBACK
dhwb a3, CS_SA_signature
#endif
ret // return from _xtos_core_save_common
// NOTE: a2 holds return value as specified to
// _xtos_core_restore()
.size _xtos_core_restore_nw, . - _xtos_core_restore_nw