hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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
/*
 * Copyright (c) 2020 , Hewlett Packard Enterprise Development LP. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Western Digital Corporation or its affiliates.
 *
 */
 
#include <IndustryStandard/RiscVOpensbi.h>
#include <Base.h>
#include <RiscVImpl.h>
#include <sbi/riscv_asm.h>
#include <sbi/riscv_encoding.h>
#include <sbi/sbi_platform.h>
#include <sbi/sbi_scratch.h>
#include <sbi/sbi_trap.h>
 
#include <SecMain.h>
 
.text
.align 3
 
ASM_FUNC (_ModuleEntryPoint)
  /*
   * Jump to warm-boot if this is not the selected core booting,
   */
  csrr  a6, CSR_MHARTID
  li    a5, FixedPcdGet32 (PcdBootHartId)
  bne   a6, a5, _wait_for_boot_hart
 
  li    ra, 0
  call  _reset_regs
 
  /* Preload HART details
   * s7 -> HART Count
   * s8 -> HART Stack Size
   */
  li    s7, FixedPcdGet32 (PcdHartCount)
  li    s8, FixedPcdGet32 (PcdOpenSbiStackSize)
 
  /*
   * Setup scratch space for all the HARTs
   *
   * Scratch buffer is on the top of stack buffer
   * of each hart.
   *
   * tp : Base address of scratch buffer.
   * s7 : HART Count
   * s8 : HART Stack Size
  */
  li    tp, FixedPcdGet32 (PcdScratchRamBase)
  mul   a5, s7, s8
  add   tp, tp, a5
 
  /* Keep a copy of tp */
  add   t3, tp, zero
  /* Counter */
  li    t2, 1
  /* hartid 0 is mandated by ISA */
  li    t1, 0
_scratch_init:
  add   tp, t3, zero
  mul   a5, s8, t1
  sub   tp, tp, a5
  li    a5, SBI_SCRATCH_SIZE
  sub   tp, tp, a5
 
  /* Initialize scratch space */
 
  /* Firmware range and size */
  li    a4, FixedPcdGet32 (PcdFwStartAddress)
  li    a5, FixedPcdGet32 (PcdFwEndAddress)
  sub   a5, a5, a4
  sd    a4, SBI_SCRATCH_FW_START_OFFSET(tp)
  sd    a5, SBI_SCRATCH_FW_SIZE_OFFSET(tp)
 
  /*
   * Note: fw_next_arg1() uses a0, a1, and ra
  */
  call  fw_next_arg1
  sd    a0, SBI_SCRATCH_NEXT_ARG1_OFFSET(tp) /* Save agr1 in scratch buffer*/
  /*
   Note: fw_next_addr()uses a0, a1, and ra
  */
  call  fw_next_addr
  sd    a0, SBI_SCRATCH_NEXT_ADDR_OFFSET(tp) /* Save next address in scratch buffer*/
  li    a4, PRV_S
  sd    a4, SBI_SCRATCH_NEXT_MODE_OFFSET(tp) /* Save next mode in scratch buffer*/
  la    a4, _start_warm
  sd    a4, SBI_SCRATCH_WARMBOOT_ADDR_OFFSET(tp) /* Save warm boot address in scratch buffer*/
  la    a4, platform
  sd    a4, SBI_SCRATCH_PLATFORM_ADDR_OFFSET(tp) /* Save platfrom table in scratch buffer*/
  la    a4, _hartid_to_scratch
  sd    a4, SBI_SCRATCH_HARTID_TO_SCRATCH_OFFSET(tp) /* Save _hartid_to_scratch function in scratch buffer*/
  sd    zero, SBI_SCRATCH_TMP0_OFFSET(tp)
 
#ifdef FW_OPTIONS
  li    a4, FW_OPTIONS
  sd    a4, SBI_SCRATCH_OPTIONS_OFFSET(tp)
#else
  sd    zero, SBI_SCRATCH_OPTIONS_OFFSET(tp)
#endif
  add   t1, t1, t2
  /* Loop to next hart */
  blt   t1, s7, _scratch_init
 
  /* Fill-out temporary memory with 55aa*/
  li    a4, FixedPcdGet32 (PcdTemporaryRamBase)
  li    a5, FixedPcdGet32 (PcdTemporaryRamSize)
  add   a5, a4, a5
1:
  li    a3, 0x5AA55AA55AA55AA5
  sd    a3, (a4)
  add   a4, a4, __SIZEOF_POINTER__
  blt   a4, a5, 1b
 
  /* Update boot hart flag */
  la    a4, _boot_hart_done
  li    a5, 1
  sd    a5, (a4)
 
  /* Wait for boot hart */
_wait_for_boot_hart:
  la    a4, _boot_hart_done
  ld    a5, (a4)
 
  /* Reduce the bus traffic so that boot hart may proceed faster */
  nop
  nop
  nop
  beqz  a5, _wait_for_boot_hart
 
_start_warm:
  li    ra, 0
  call  _reset_regs
 
  /* Disable and clear all interrupts */
  csrw  CSR_MIE, zero
  csrw  CSR_MIP, zero
 
  li    s7, FixedPcdGet32 (PcdBootableHartNumber)
  li    s8, FixedPcdGet32 (PcdOpenSbiStackSize)
  la    a4, platform
 
  /* s9 is hart_index2id array */
  REG_L s9, SBI_PLATFORM_HART_INDEX2ID_OFFSET(a4)
 
  /* s6 is this hart ID */
  csrr  s6, CSR_MHARTID
 
  /*
   * Convert hart ID to scratch buffer
   * Because the hert ID maybe not in sequentially
   */
  beqz  s9, 3f
  li    a4, 0
1:
#if __riscv_xlen == 64
  lwu   a5, (s9)
#else
  lw    a5, (s9)
#endif
  /* Branch if hart ID is matched */
  beq   a5, s6, 2f
  add   s9, s9, 4
  add   a4, a4, 1
  /* Loop to next index */
  blt   a4, s7, 1b
  li    a4, -1
2:
  add   s6, a4, zero
3:
  /* Jump to UninitializedHartWait for the non-bootable harts.
     Be aware that the stack and scratch is not set
     at this moment for this hart even the resource
     is preserved eariler for it.
  */
  bltu  s6, s7, 4f
  csrr  a0, CSR_MHARTID
  j _uninitialized_hart_wait
4:
  li    s7, FixedPcdGet32 (PcdHartCount)
  /* Find the scratch space for this hart
   *
   * Scratch buffer is on the top of stack buffer
   * reserved for opensbi.
   *
   * tp: The base address of scratch buffer
   * s6: Index to scratch buffer fot this hart
   * s7: Total hart number
   * s8: Stack size for opebsbi.
  */
  li    tp, FixedPcdGet32 (PcdScratchRamBase)
  mul   a5, s7, s8
  add   tp, tp, a5
  mul   a5, s8, s6
  sub   tp, tp, a5
  li    a5, SBI_SCRATCH_SIZE
  sub   tp, tp, a5
 
  /* update the mscratch */
  csrw  CSR_MSCRATCH, tp
 
  /*make room for Hart specific Firmware Context*/
  li    a5, FIRMWARE_CONTEXT_HART_SPECIFIC_SIZE
  sub   tp, tp, a5
 
  /* Setup stack */
  add   sp, tp, zero
 
  /* Setup stack for the Hart executing EFI to top of temporary ram*/
  csrr  a6, CSR_MHARTID
  li    a5, FixedPcdGet32 (PcdBootHartId)
  bne   a6, a5, 1f
 
  li    a4, FixedPcdGet32(PcdTemporaryRamBase)
  li    a5, FixedPcdGet32(PcdTemporaryRamSize)
  add   sp, a4, a5
1:
 
  /* Setup trap handler */
  la    a4, _trap_handler
  csrw  CSR_MTVEC, a4
 
  /* Make sure that mtvec is updated */
  1:
  csrr  a5, CSR_MTVEC
  bne   a4, a5, 1b
 
  /* Call library constructors before jup to SEC core */
  call  ProcessLibraryConstructorList
 
  /* Jump to SEC Core C
   * a0: HART ID
   * a1: Scratch pointer
  */
  csrr  a0, CSR_MHARTID
  csrr  a1, CSR_MSCRATCH
  call  SecCoreStartUpWithStack
 
  /* We do not expect to reach here hence just hang */
  j     _start_hang
 
  .align 3
  .section .data, "aw"
_boot_hart_done:
  RISCV_PTR 0
 
  .align 3
  .section .entry, "ax", %progbits
  .globl _hartid_to_scratch
 
  /*
   * a0 -> HART id (Obsoleted, keep this for the backward compatible)
   * a1 -> HART index (0-based) of this hart id
   */
_hartid_to_scratch:
  add   sp, sp, -(3 * __SIZEOF_POINTER__)
  sd    s0, (sp)
  sd    s1, (__SIZEOF_POINTER__)(sp)
  sd    s2, (__SIZEOF_POINTER__ * 2)(sp)
 
  /*
   * s0 -> HART Stack Size
   * s1 -> HART Stack End
   * s2 -> Temporary
   */
  la    s2, platform
#if __riscv_xlen == 64
  lwu   s0, SBI_PLATFORM_HART_STACK_SIZE_OFFSET(s2)
#else
  lw    s0, SBI_PLATFORM_HART_STACK_SIZE_OFFSET(s2)
#endif
  li    s2, FixedPcdGet32 (PcdHartCount)
 
  mul   s2, s2, s0
  li    s1, FixedPcdGet32 (PcdScratchRamBase)
  add   s1, s1, s2
  mul   s2, s0, a1
  sub   s1, s1, s2
  li    s2, SBI_SCRATCH_SIZE
  sub   a0, s1, s2
  ld    s0, (sp)
  ld    s1, (__SIZEOF_POINTER__)(sp)
  ld    s2, (__SIZEOF_POINTER__ * 2)(sp)
  add   sp, sp, (3 * __SIZEOF_POINTER__)
  ret
 
  .align 3
  .section .entry, "ax", %progbits
  .globl _start_hang
_start_hang:
  wfi
  j     _start_hang
 
  /*
   * Uninitialized hart comes here and wait
   * for the further process.
   * a0: hart ID.
  */
_uninitialized_hart_wait:
  wfi
  j     _uninitialized_hart_wait
 
  .align 3
  .section .entry, "ax", %progbits
  .align 3
  .globl _trap_handler
_trap_handler:
 
  /* Swap TP and MSCRATCH */
  csrrw tp, CSR_MSCRATCH, tp
 
  /* Save T0 in scratch space */
  REG_S t0, SBI_SCRATCH_TMP0_OFFSET(tp)
 
  /* Check which mode we came from */
  csrr  t0, CSR_MSTATUS
  srl   t0, t0, MSTATUS_MPP_SHIFT
  and   t0, t0, PRV_M
  xori  t0, t0, PRV_M
  beq   t0, zero, _trap_handler_m_mode
 
  /* We came from S-mode or U-mode */
_trap_handler_s_mode:
  /* Set T0 to original SP */
  add   t0, sp, zero
 
  /* Setup exception stack */
  add   sp, tp, -(SBI_TRAP_REGS_SIZE)
 
  /* Jump to code common for all modes */
  j     _trap_handler_all_mode
 
  /* We came from M-mode */
_trap_handler_m_mode:
  /* Set T0 to original SP */
  add   t0, sp, zero
 
  /* Re-use current SP as exception stack */
  add   sp, sp, -(SBI_TRAP_REGS_SIZE)
 
_trap_handler_all_mode:
  /* Save original SP (from T0) on stack */
  REG_S t0, SBI_TRAP_REGS_OFFSET(sp)(sp)
 
  /* Restore T0 from scratch space */
  REG_L t0, SBI_SCRATCH_TMP0_OFFSET(tp)
 
  /* Save T0 on stack */
  REG_S t0, SBI_TRAP_REGS_OFFSET(t0)(sp)
 
  /* Swap TP and MSCRATCH */
  csrrw tp, CSR_MSCRATCH, tp
 
  /* Save MEPC and MSTATUS CSRs */
  csrr  t0, CSR_MEPC
  REG_S t0, SBI_TRAP_REGS_OFFSET(mepc)(sp)
  csrr  t0, CSR_MSTATUS
  REG_S t0, SBI_TRAP_REGS_OFFSET(mstatus)(sp)
  REG_S zero, SBI_TRAP_REGS_OFFSET(mstatusH)(sp)
#if __riscv_xlen == 32
   csrr    t0, CSR_MISA
   srli    t0, t0, ('H' - 'A')
   andi    t0, t0, 0x1
   beq    t0, zero, _skip_mstatush_save
   csrr    t0, CSR_MSTATUSH
   REG_S    t0, SBI_TRAP_REGS_OFFSET(mstatusH)(sp)
_skip_mstatush_save:
#endif
 
  /* Save all general registers except SP and T0 */
  REG_S zero, SBI_TRAP_REGS_OFFSET(zero)(sp)
  REG_S ra, SBI_TRAP_REGS_OFFSET(ra)(sp)
  REG_S gp, SBI_TRAP_REGS_OFFSET(gp)(sp)
  REG_S tp, SBI_TRAP_REGS_OFFSET(tp)(sp)
  REG_S t1, SBI_TRAP_REGS_OFFSET(t1)(sp)
  REG_S t2, SBI_TRAP_REGS_OFFSET(t2)(sp)
  REG_S s0, SBI_TRAP_REGS_OFFSET(s0)(sp)
  REG_S s1, SBI_TRAP_REGS_OFFSET(s1)(sp)
  REG_S a0, SBI_TRAP_REGS_OFFSET(a0)(sp)
  REG_S a1, SBI_TRAP_REGS_OFFSET(a1)(sp)
  REG_S a2, SBI_TRAP_REGS_OFFSET(a2)(sp)
  REG_S a3, SBI_TRAP_REGS_OFFSET(a3)(sp)
  REG_S a4, SBI_TRAP_REGS_OFFSET(a4)(sp)
  REG_S a5, SBI_TRAP_REGS_OFFSET(a5)(sp)
  REG_S a6, SBI_TRAP_REGS_OFFSET(a6)(sp)
  REG_S a7, SBI_TRAP_REGS_OFFSET(a7)(sp)
  REG_S s2, SBI_TRAP_REGS_OFFSET(s2)(sp)
  REG_S s3, SBI_TRAP_REGS_OFFSET(s3)(sp)
  REG_S s4, SBI_TRAP_REGS_OFFSET(s4)(sp)
  REG_S s5, SBI_TRAP_REGS_OFFSET(s5)(sp)
  REG_S s6, SBI_TRAP_REGS_OFFSET(s6)(sp)
  REG_S s7, SBI_TRAP_REGS_OFFSET(s7)(sp)
  REG_S s8, SBI_TRAP_REGS_OFFSET(s8)(sp)
  REG_S s9, SBI_TRAP_REGS_OFFSET(s9)(sp)
  REG_S s10, SBI_TRAP_REGS_OFFSET(s10)(sp)
  REG_S s11, SBI_TRAP_REGS_OFFSET(s11)(sp)
  REG_S t3, SBI_TRAP_REGS_OFFSET(t3)(sp)
  REG_S t4, SBI_TRAP_REGS_OFFSET(t4)(sp)
  REG_S t5, SBI_TRAP_REGS_OFFSET(t5)(sp)
  REG_S t6, SBI_TRAP_REGS_OFFSET(t6)(sp)
 
  /* Call C routine */
  add   a0, sp, zero
  call  sbi_trap_handler
 
  /* Restore all general registers except SP and T0 */
  REG_L ra, SBI_TRAP_REGS_OFFSET(ra)(sp)
  REG_L gp, SBI_TRAP_REGS_OFFSET(gp)(sp)
  REG_L tp, SBI_TRAP_REGS_OFFSET(tp)(sp)
  REG_L t1, SBI_TRAP_REGS_OFFSET(t1)(sp)
  REG_L t2, SBI_TRAP_REGS_OFFSET(t2)(sp)
  REG_L s0, SBI_TRAP_REGS_OFFSET(s0)(sp)
  REG_L s1, SBI_TRAP_REGS_OFFSET(s1)(sp)
  REG_L a0, SBI_TRAP_REGS_OFFSET(a0)(sp)
  REG_L a1, SBI_TRAP_REGS_OFFSET(a1)(sp)
  REG_L a2, SBI_TRAP_REGS_OFFSET(a2)(sp)
  REG_L a3, SBI_TRAP_REGS_OFFSET(a3)(sp)
  REG_L a4, SBI_TRAP_REGS_OFFSET(a4)(sp)
  REG_L a5, SBI_TRAP_REGS_OFFSET(a5)(sp)
  REG_L a6, SBI_TRAP_REGS_OFFSET(a6)(sp)
  REG_L a7, SBI_TRAP_REGS_OFFSET(a7)(sp)
  REG_L s2, SBI_TRAP_REGS_OFFSET(s2)(sp)
  REG_L s3, SBI_TRAP_REGS_OFFSET(s3)(sp)
  REG_L s4, SBI_TRAP_REGS_OFFSET(s4)(sp)
  REG_L s5, SBI_TRAP_REGS_OFFSET(s5)(sp)
  REG_L s6, SBI_TRAP_REGS_OFFSET(s6)(sp)
  REG_L s7, SBI_TRAP_REGS_OFFSET(s7)(sp)
  REG_L s8, SBI_TRAP_REGS_OFFSET(s8)(sp)
  REG_L s9, SBI_TRAP_REGS_OFFSET(s9)(sp)
  REG_L s10, SBI_TRAP_REGS_OFFSET(s10)(sp)
  REG_L s11, SBI_TRAP_REGS_OFFSET(s11)(sp)
  REG_L t3, SBI_TRAP_REGS_OFFSET(t3)(sp)
  REG_L t4, SBI_TRAP_REGS_OFFSET(t4)(sp)
  REG_L t5, SBI_TRAP_REGS_OFFSET(t5)(sp)
  REG_L t6, SBI_TRAP_REGS_OFFSET(t6)(sp)
 
  /* Restore MEPC and MSTATUS CSRs */
  REG_L t0, SBI_TRAP_REGS_OFFSET(mepc)(sp)
  csrw  CSR_MEPC, t0
  REG_L t0, SBI_TRAP_REGS_OFFSET(mstatus)(sp)
  csrw  CSR_MSTATUS, t0
#if __riscv_xlen == 32
  csrr  t0, CSR_MISA
  srli  t0, t0, ('H' - 'A')
  andi  t0, t0, 0x1
  beq   t0, zero, _skip_mstatush_restore
  REG_L t0, SBI_TRAP_REGS_OFFSET(mstatusH)(sp)
  csrw  CSR_MSTATUSH, t0
_skip_mstatush_restore:
#endif
 
  /* Restore T0 */
  REG_L   t0, SBI_TRAP_REGS_OFFSET(t0)(sp)
 
  /* Restore SP */
  REG_L   sp, SBI_TRAP_REGS_OFFSET(sp)(sp)
 
  mret
 
  .align 3
  .section .entry, "ax", %progbits
  .globl _reset_regs
_reset_regs:
 
  /* flush the instruction cache */
  fence.i
 
  /* Reset all registers except ra, a0,a1 */
  li    sp, 0
  li    gp, 0
  li    tp, 0
  li    t0, 0
  li    t1, 0
  li    t2, 0
  li    s0, 0
  li    s1, 0
  li    a2, 0
  li    a3, 0
  li    a4, 0
  li    a5, 0
  li    a6, 0
  li    a7, 0
  li    s2, 0
  li    s3, 0
  li    s4, 0
  li    s5, 0
  li    s6, 0
  li    s7, 0
  li    s8, 0
  li    s9, 0
  li    s10, 0
  li    s11, 0
  li    t3, 0
  li    t4, 0
  li    t5, 0
  li    t6, 0
  csrw  CSR_MSCRATCH, 0
  ret
 
  .align 3
  .section .entry, "ax", %progbits
  .global fw_prev_arg1
fw_prev_arg1:
 
  /* We return previous arg1 in 'a0' */
  add   a0, zero, zero
  ret
 
  .align 3
  .section .entry, "ax", %progbits
  .global fw_next_arg1
fw_next_arg1:
  /* We return next arg1 in 'a0' */
  li    a0, FixedPcdGet32(PcdRiscVPeiFvBase)
  ret
 
  .align 3
  .section .entry, "ax", %progbits
  .global fw_next_addr
fw_next_addr:
  /* We return next address in 'a0' */
   la   a0, _jump_addr
   ld   a0, (a0)
   ret
 
  .align 3
  .section .entry, "ax", %progbits
_jump_addr:
RISCV_PTR SecCoreStartUpWithStack