File tree 14 files changed +74
-65
lines changed
03_hacky_hello_world/src/_arch/aarch64/cpu
04_safe_globals/src/_arch/aarch64/cpu
05_drivers_gpio_uart/src/_arch/aarch64/cpu
06_uart_chainloader/src/_arch/aarch64/cpu
07_timestamps/src/_arch/aarch64/cpu
08_hw_debug_JTAG/src/_arch/aarch64/cpu
16_virtual_mem_part4_higher_half_kernel
kernel/src/_arch/aarch64/cpu
17_kernel_symbols/kernel/src/_arch/aarch64/cpu
18_backtrace/kernel/src/_arch/aarch64/cpu
19_kernel_heap/kernel/src/_arch/aarch64/cpu
14 files changed +74
-65
lines changed Original file line number Diff line number Diff line change @@ -117,10 +117,10 @@ diff -uNr 01_wait_forever/src/_arch/aarch64/cpu/boot.s 02_runtime_init/src/_arch
117
117
//------------------------------------------------------------------------------
118
118
_start:
119
119
+ // Only proceed on the boot core. Park it otherwise.
120
- + mrs x1 , MPIDR_EL1
121
- + and x1, x1 , {CONST_CORE_ID_MASK}
122
- + ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/cpu.rs
123
- + cmp x1, x2
120
+ + mrs x0 , MPIDR_EL1
121
+ + and x0, x0 , {CONST_CORE_ID_MASK}
122
+ + ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/cpu.rs
123
+ + cmp x0, x1
124
124
+ b.ne .L_parking_loop
125
125
+
126
126
+ // If execution reaches here, it is the boot core.
Original file line number Diff line number Diff line change 28
28
// ------------------------------------------------------------------------------
29
29
_start:
30
30
// Only proceed on the boot core. Park it otherwise.
31
- mrs x1 , MPIDR_EL1
32
- and x1 , x1 , {CONST_CORE_ID_MASK}
33
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
- cmp x1 , x2
31
+ mrs x0 , MPIDR_EL1
32
+ and x0 , x0 , {CONST_CORE_ID_MASK}
33
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
+ cmp x0 , x1
35
35
b.ne .L_parking_loop
36
36
37
37
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change 28
28
// ------------------------------------------------------------------------------
29
29
_start:
30
30
// Only proceed on the boot core. Park it otherwise.
31
- mrs x1 , MPIDR_EL1
32
- and x1 , x1 , {CONST_CORE_ID_MASK}
33
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
- cmp x1 , x2
31
+ mrs x0 , MPIDR_EL1
32
+ and x0 , x0 , {CONST_CORE_ID_MASK}
33
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
+ cmp x0 , x1
35
35
b.ne .L_parking_loop
36
36
37
37
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change 28
28
// ------------------------------------------------------------------------------
29
29
_start:
30
30
// Only proceed on the boot core. Park it otherwise.
31
- mrs x1 , MPIDR_EL1
32
- and x1 , x1 , {CONST_CORE_ID_MASK}
33
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
- cmp x1 , x2
31
+ mrs x0 , MPIDR_EL1
32
+ and x0 , x0 , {CONST_CORE_ID_MASK}
33
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
+ cmp x0 , x1
35
35
b.ne .L_parking_loop
36
36
37
37
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change 28
28
// ------------------------------------------------------------------------------
29
29
_start:
30
30
// Only proceed on the boot core. Park it otherwise.
31
- mrs x1 , MPIDR_EL1
32
- and x1 , x1 , {CONST_CORE_ID_MASK}
33
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
- cmp x1 , x2
31
+ mrs x0 , MPIDR_EL1
32
+ and x0 , x0 , {CONST_CORE_ID_MASK}
33
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
+ cmp x0 , x1
35
35
b.ne .L_parking_loop
36
36
37
37
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change 39
39
// ------------------------------------------------------------------------------
40
40
_start:
41
41
// Only proceed on the boot core. Park it otherwise.
42
- mrs x1 , MPIDR_EL1
43
- and x1 , x1 , {CONST_CORE_ID_MASK}
44
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
45
- cmp x1 , x2
42
+ mrs x0 , MPIDR_EL1
43
+ and x0 , x0 , {CONST_CORE_ID_MASK}
44
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
45
+ cmp x0 , x1
46
46
b.ne .L_parking_loop
47
47
48
48
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change 28
28
// ------------------------------------------------------------------------------
29
29
_start:
30
30
// Only proceed on the boot core. Park it otherwise.
31
- mrs x1 , MPIDR_EL1
32
- and x1 , x1 , {CONST_CORE_ID_MASK}
33
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
- cmp x1 , x2
31
+ mrs x0 , MPIDR_EL1
32
+ and x0 , x0 , {CONST_CORE_ID_MASK}
33
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
+ cmp x0 , x1
35
35
b.ne .L_parking_loop
36
36
37
37
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change 28
28
// ------------------------------------------------------------------------------
29
29
_start:
30
30
// Only proceed on the boot core. Park it otherwise.
31
- mrs x1 , MPIDR_EL1
32
- and x1 , x1 , {CONST_CORE_ID_MASK}
33
- ldr x2 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
- cmp x1 , x2
31
+ mrs x0 , MPIDR_EL1
32
+ and x0 , x0 , {CONST_CORE_ID_MASK}
33
+ ldr x1 , BOOT_CORE_ID // provided by bsp/__board_name__/ cpu .rs
34
+ cmp x0 , x1
35
35
b.ne .L_parking_loop
36
36
37
37
// If execution reaches here , it is the boot core.
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ diff -uNr 08_hw_debug_JTAG/src/_arch/aarch64/cpu/boot.rs 09_privilege_level/src/
291
291
diff -uNr 08_hw_debug_JTAG/src/_arch/aarch64/cpu/boot.s 09_privilege_level/src/_arch/aarch64/cpu/boot.s
292
292
--- 08_hw_debug_JTAG/src/_arch/aarch64/cpu/boot.s
293
293
+++ 09_privilege_level/src/_arch/aarch64/cpu/boot.s
294
- @@ -27,6 +27,11 @@
294
+ @@ -27,11 +27,16 @@
295
295
// fn _start()
296
296
//------------------------------------------------------------------------------
297
297
_start:
@@ -301,8 +301,17 @@ diff -uNr 08_hw_debug_JTAG/src/_arch/aarch64/cpu/boot.s 09_privilege_level/src/_
301
301
+ b.ne .L_parking_loop
302
302
+
303
303
// Only proceed on the boot core. Park it otherwise.
304
- mrs x1, MPIDR_EL1
305
- and x1, x1, {CONST_CORE_ID_MASK}
304
+ - mrs x0, MPIDR_EL1
305
+ - and x0, x0, {CONST_CORE_ID_MASK}
306
+ - ldr x1, BOOT_CORE_ID // provided by bsp/__board_name__/cpu.rs
307
+ - cmp x0, x1
308
+ + mrs x1, MPIDR_EL1
309
+ + and x1, x1, {CONST_CORE_ID_MASK}
310
+ + ldr x2, BOOT_CORE_ID // provided by bsp/__board_name__/cpu.rs
311
+ + cmp x1, x2
312
+ b.ne .L_parking_loop
313
+
314
+ // If execution reaches here, it is the boot core.
306
315
@@ -48,7 +53,7 @@
307
316
308
317
// Prepare the jump to Rust code.
Original file line number Diff line number Diff line change @@ -432,20 +432,20 @@ diff -uNr 15_virtual_mem_part3_precomputed_tables/kernel/src/_arch/aarch64/cpu/b
432
432
+ // Setting the stack pointer to this value ensures that anything that still runs in EL2,
433
433
+ // until the kernel returns to EL1 with the MMU enabled, works as well. After the return to
434
434
+ // EL1, the virtual address of the stack retrieved above will be used.
435
- + ADR_REL x4 , __boot_core_stack_end_exclusive
436
- + mov sp, x4
435
+ + ADR_REL x3 , __boot_core_stack_end_exclusive
436
+ + mov sp, x3
437
437
438
438
// Read the CPU's timer counter frequency and store it in ARCH_TIMER_COUNTER_FREQUENCY.
439
439
// Abort if the frequency read back as 0.
440
440
- ADR_REL x2, ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
441
441
- mrs x3, CNTFRQ_EL0
442
442
- cmp x3, xzr
443
- + ADR_REL x5 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
444
- + mrs x6 , CNTFRQ_EL0
445
- + cmp x6 , xzr
443
+ + ADR_REL x4 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
444
+ + mrs x5 , CNTFRQ_EL0
445
+ + cmp x5 , xzr
446
446
b.eq .L_parking_loop
447
447
- str w3, [x2]
448
- + str w6 , [x5 ]
448
+ + str w5 , [x4 ]
449
449
450
450
- // Jump to Rust code. x0 and x1 hold the function arguments provided to _start_rust().
451
451
+ // Jump to Rust code. x0, x1 and x2 hold the function arguments provided to _start_rust().
Original file line number Diff line number Diff line change @@ -81,16 +81,16 @@ _start:
81
81
// Setting the stack pointer to this value ensures th at anything th at still runs in EL2 ,
82
82
// until the kernel returns to EL1 with the MMU enabled , works as well. After the return to
83
83
// EL1 , the virtual address of the stack retrieved above will be used.
84
- ADR_REL x4 , __boot_core_stack_end_exclusive
85
- mov sp , x4
84
+ ADR_REL x3 , __boot_core_stack_end_exclusive
85
+ mov sp , x3
86
86
87
87
// Read the CPU 's timer counter frequency and store it in ARCH_TIMER_COUNTER_FREQUENCY.
88
88
// Abort if the frequency read back as 0 .
89
- ADR_REL x5 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
- mrs x6 , CNTFRQ_EL0
91
- cmp x6 , xzr
89
+ ADR_REL x4 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
+ mrs x5 , CNTFRQ_EL0
91
+ cmp x5 , xzr
92
92
b.eq .L_parking_loop
93
- str w6 , [ x5 ]
93
+ str w5 , [ x4 ]
94
94
95
95
// Jump to Rust code. x0 , x1 and x2 hold the function arguments provided to _start_rust().
96
96
b _start_rust
Original file line number Diff line number Diff line change @@ -81,16 +81,16 @@ _start:
81
81
// Setting the stack pointer to this value ensures th at anything th at still runs in EL2 ,
82
82
// until the kernel returns to EL1 with the MMU enabled , works as well. After the return to
83
83
// EL1 , the virtual address of the stack retrieved above will be used.
84
- ADR_REL x4 , __boot_core_stack_end_exclusive
85
- mov sp , x4
84
+ ADR_REL x3 , __boot_core_stack_end_exclusive
85
+ mov sp , x3
86
86
87
87
// Read the CPU 's timer counter frequency and store it in ARCH_TIMER_COUNTER_FREQUENCY.
88
88
// Abort if the frequency read back as 0 .
89
- ADR_REL x5 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
- mrs x6 , CNTFRQ_EL0
91
- cmp x6 , xzr
89
+ ADR_REL x4 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
+ mrs x5 , CNTFRQ_EL0
91
+ cmp x5 , xzr
92
92
b.eq .L_parking_loop
93
- str w6 , [ x5 ]
93
+ str w5 , [ x4 ]
94
94
95
95
// Jump to Rust code. x0 , x1 and x2 hold the function arguments provided to _start_rust().
96
96
b _start_rust
Original file line number Diff line number Diff line change @@ -81,16 +81,16 @@ _start:
81
81
// Setting the stack pointer to this value ensures th at anything th at still runs in EL2 ,
82
82
// until the kernel returns to EL1 with the MMU enabled , works as well. After the return to
83
83
// EL1 , the virtual address of the stack retrieved above will be used.
84
- ADR_REL x4 , __boot_core_stack_end_exclusive
85
- mov sp , x4
84
+ ADR_REL x3 , __boot_core_stack_end_exclusive
85
+ mov sp , x3
86
86
87
87
// Read the CPU 's timer counter frequency and store it in ARCH_TIMER_COUNTER_FREQUENCY.
88
88
// Abort if the frequency read back as 0 .
89
- ADR_REL x5 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
- mrs x6 , CNTFRQ_EL0
91
- cmp x6 , xzr
89
+ ADR_REL x4 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
+ mrs x5 , CNTFRQ_EL0
91
+ cmp x5 , xzr
92
92
b.eq .L_parking_loop
93
- str w6 , [ x5 ]
93
+ str w5 , [ x4 ]
94
94
95
95
// Jump to Rust code. x0 , x1 and x2 hold the function arguments provided to _start_rust().
96
96
b _start_rust
Original file line number Diff line number Diff line change @@ -81,16 +81,16 @@ _start:
81
81
// Setting the stack pointer to this value ensures th at anything th at still runs in EL2 ,
82
82
// until the kernel returns to EL1 with the MMU enabled , works as well. After the return to
83
83
// EL1 , the virtual address of the stack retrieved above will be used.
84
- ADR_REL x4 , __boot_core_stack_end_exclusive
85
- mov sp , x4
84
+ ADR_REL x3 , __boot_core_stack_end_exclusive
85
+ mov sp , x3
86
86
87
87
// Read the CPU 's timer counter frequency and store it in ARCH_TIMER_COUNTER_FREQUENCY.
88
88
// Abort if the frequency read back as 0 .
89
- ADR_REL x5 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
- mrs x6 , CNTFRQ_EL0
91
- cmp x6 , xzr
89
+ ADR_REL x4 , ARCH_TIMER_COUNTER_FREQUENCY // provided by aarch64/time.rs
90
+ mrs x5 , CNTFRQ_EL0
91
+ cmp x5 , xzr
92
92
b.eq .L_parking_loop
93
- str w6 , [ x5 ]
93
+ str w5 , [ x4 ]
94
94
95
95
// Jump to Rust code. x0 , x1 and x2 hold the function arguments provided to _start_rust().
96
96
b _start_rust
You can’t perform that action at this time.
0 commit comments