source: mainline/kernel/arch/arm64/src/arm64.c

Last change on this file was 3fcea34, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 10 months ago

Simplify the SYS_THREAD_CREATE syscall interface

Removed the beefy uarg structure. Instead, the syscall gets two
parameters: %pc (program counter) and %sp (stack pointer). It starts
a thread with those values in corresponding registers, with no other
fuss whatsoever.

libc initializes threads by storing any other needed arguments on
the stack and retrieving them in thread_entry. Importantly, this
includes the address of the
thread_main function which is now
called indirectly to fix dynamic linking issues on some archs.

There's a bit of weirdness on SPARC and IA-64, because of their
stacked register handling. The current solution is that we require
some space *above* the stack pointer to be available for those
architectures. I think for SPARC, it can be made more normal.

For the remaining ones, we can (probably) just set the initial
%sp to the top edge of the stack. There's some lingering offsets
on some archs just because I didn't want to accidentally break
anything. The initial thread bringup should be functionally
unchanged from the previous state, and no binaries are currently
multithreaded except thread1 test, so there should be minimal
risk of breakage. Naturally, I tested all available emulator
builds, save for msim.

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[84176f3]1/*
2 * Copyright (c) 2015 Petr Pavlu
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup kernel_arm64
30 * @{
31 */
32/** @file
33 * @brief ARM64 architecture specific functions.
34 */
35
36#include <abi/errno.h>
37#include <arch.h>
38#include <arch/arch.h>
39#include <arch/asm.h>
40#include <arch/exception.h>
41#include <arch/machine_func.h>
[ebb3538]42#include <console/console.h>
[84176f3]43#include <interrupt.h>
44#include <proc/scheduler.h>
45#include <syscall/syscall.h>
46#include <sysinfo/sysinfo.h>
47#include <userspace.h>
48
49static void arm64_post_mm_init(void);
50static void arm64_post_smp_init(void);
51
52arch_ops_t arm64_ops = {
53 .post_mm_init = arm64_post_mm_init,
54 .post_smp_init = arm64_post_smp_init,
55};
56
57arch_ops_t *arch_ops = &arm64_ops;
58
59/** Perform ARM64 specific initialization before main_bsp() is called. */
60void arm64_pre_main(void *entry __attribute__((unused)), bootinfo_t *bootinfo)
61{
62 /* Copy init task info. */
63 init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS,
64 CONFIG_INIT_TASKS);
65
66 size_t i;
67 for (i = 0; i < init.cnt; i++) {
68 init.tasks[i].paddr =
69 (uintptr_t) bootinfo->taskmap.tasks[i].addr;
70 init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
71 str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
72 bootinfo->taskmap.tasks[i].name);
73 }
74
75 /* Copy physical memory map. */
76 memmap.cnt = min(bootinfo->memmap.cnt, MEMMAP_MAX_RECORDS);
77 for (i = 0; i < memmap.cnt; i++) {
78 memmap.zones[i].type = bootinfo->memmap.zones[i].type;
79 memmap.zones[i].start = bootinfo->memmap.zones[i].start;
80 memmap.zones[i].size = bootinfo->memmap.zones[i].size;
81 }
82
83 /* Initialize machine_ops pointer. */
84 machine_ops_init();
85}
86
87/** Perform ARM64 specific tasks needed before the memory management is
88 * initialized.
89 */
90void arm64_post_mm_init(void)
91{
92 if (config.cpu_active != 1)
93 return;
94
95 /* Do machine-specific initialization. */
96 machine_init();
97
98 /* Initialize exception dispatch table. */
99 exception_init();
100 interrupt_init();
101
102 /* Merge all memory zones to 1 big zone. */
103 zone_merge_all();
104
105 /* Initialize output device. */
106 machine_output_init();
107}
108
109/** Perform ARM64 specific tasks needed after the multiprocessing is
110 * initialized.
111 */
112void arm64_post_smp_init(void)
113{
114 /* Set platform name. */
115 const char *platform = machine_get_platform_name();
116
117 sysinfo_set_item_data("platform", NULL, (void *) platform,
118 str_size(platform));
119
120 /* Initialize input device. */
121 machine_input_init();
122}
123
124/** Calibrate delay loop.
125 *
126 * On ARM64, we implement delay() by waiting for the CNTVCT_EL0 register to
127 * reach a pre-computed value, as opposed to performing some pre-computed amount
128 * of instructions of known duration. We set the delay_loop_const to 1 in order
129 * to neutralize the multiplication done by delay().
130 */
131void calibrate_delay_loop(void)
132{
133 CPU->delay_loop_const = 1;
134}
135
136/** Wait several microseconds.
137 *
138 * @param t Microseconds to wait.
139 */
140void asm_delay_loop(uint32_t usec)
141{
142 uint64_t stop = CNTVCT_EL0_read() + usec * CNTFRQ_EL0_read() / 1000000;
143
144 while (CNTVCT_EL0_read() < stop)
145 ;
146}
147
[3fcea34]148uintptr_t arch_get_initial_sp(uintptr_t stack_base, uintptr_t stack_size)
149{
150 return stack_base + stack_size;
151}
152
[84176f3]153/** Change processor mode.
154 *
155 * @param kernel_uarg Userspace settings (entry point, stack, ...).
156 */
[3fcea34]157void userspace(uintptr_t pc, uintptr_t sp)
[84176f3]158{
159 /* Prepare return to EL0. */
160 SPSR_EL1_write((SPSR_EL1_read() & ~SPSR_MODE_MASK) |
161 SPSR_MODE_ARM64_EL0T);
162
163 /* Set program entry. */
[3fcea34]164 ELR_EL1_write(pc);
[84176f3]165
166 /* Set user stack. */
[3fcea34]167 SP_EL0_write(sp);
[84176f3]168
169 /* Clear Thread ID register. */
170 TPIDR_EL0_write(0);
171
172 asm volatile (
173 /*
[14b5c30f]174 * Reset the kernel stack to its base value.
175 *
[3fcea34]176 * Clear all general-purpose registers.
[84176f3]177 */
[14b5c30f]178 "mov sp, %[kstack]\n"
[3fcea34]179 "mov x0, #0\n"
[84176f3]180 "mov x1, #0\n"
181 "mov x2, #0\n"
182 "mov x3, #0\n"
183 "mov x4, #0\n"
184 "mov x5, #0\n"
185 "mov x6, #0\n"
186 "mov x7, #0\n"
187 "mov x8, #0\n"
188 "mov x9, #0\n"
189 "mov x10, #0\n"
190 "mov x11, #0\n"
191 "mov x12, #0\n"
192 "mov x13, #0\n"
193 "mov x14, #0\n"
194 "mov x15, #0\n"
195 "mov x16, #0\n"
196 "mov x17, #0\n"
197 "mov x18, #0\n"
198 "mov x19, #0\n"
199 "mov x20, #0\n"
200 "mov x21, #0\n"
201 "mov x22, #0\n"
202 "mov x23, #0\n"
203 "mov x24, #0\n"
204 "mov x25, #0\n"
205 "mov x26, #0\n"
206 "mov x27, #0\n"
207 "mov x28, #0\n"
208 "mov x29, #0\n"
209 "mov x30, #0\n"
210 "eret\n"
[3fcea34]211 :: [kstack] "r" (((uint64_t) (THREAD->kstack)) +
[db17889]212 MEM_STACK_SIZE - SP_DELTA)
[84176f3]213 );
214
215 unreachable();
216}
217
218/** Perform ARM64 specific tasks needed before the new task is run. */
219void before_task_runs_arch(void)
220{
221}
222
223/** Perform ARM64 specific tasks needed before the new thread is scheduled.
224 */
225void before_thread_runs_arch(void)
226{
227}
228
229/** Perform ARM64 specific tasks before a thread stops running. */
230void after_thread_ran_arch(void)
231{
232}
233
234/** Reboot the system. */
235void arch_reboot(void)
236{
237 /* Not implemented. */
238 while (true)
239 ;
240}
241
242/** Construct function pointer.
243 *
244 * @param fptr Function pointer structure.
245 * @param addr Function address.
246 * @param caller Calling function address.
247 *
248 * @return Address of the function pointer.
249 */
250void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
251{
252 return addr;
253}
254
255/** Perform ARM64 specific tasks to initialize IRQ processing. */
256void irq_initialize_arch(irq_t *irq __attribute__((unused)))
257{
258}
259
[ebb3538]260void early_putuchar(char32_t c)
261{
262#ifdef CONFIG_DEBUG_EARLY_PRINT
263 if (c == '\n')
264 machine_early_uart_output('\r');
265
266 machine_early_uart_output(c);
267#endif
268}
269
[84176f3]270/** @}
271 */
Note: See TracBrowser for help on using the repository browser.