We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c39e92f commit d4b9d48Copy full SHA for d4b9d48
libcpu/aarch64/cortex-a/entry_point.S
@@ -113,15 +113,15 @@ _start:
113
#endif
114
115
/* Now we are in the end of boot cpu process */
116
- ldr x8, =rtthread_startup
+ ldr x19, =rtthread_startup
117
b init_mmu_early
118
/* never come back */
119
120
kernel_start:
121
/* jump to the PE's system entry */
122
mov x29, xzr
123
- mov x30, x8
124
- br x8
+ mov x30, x19
+ br x19
125
126
cpu_idle:
127
wfe
@@ -169,7 +169,7 @@ _secondary_cpu_entry:
169
bl init_cpu_stack_early
170
171
/* secondary cpu start to startup */
172
- ldr x8, =rt_hw_secondary_cpu_bsp_start
+ ldr x19, =rt_hw_secondary_cpu_bsp_start
173
b enable_mmu_early
174
#endif /* RT_USING_SMP */
175
0 commit comments