blob: 4273d02064fe817c272822a1147ff951e8482a7c (
plain) (
blame)
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
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file cpu.c
* riscv64 implementation of cpu handling.
*/
#include <apos/tcb.h>
#include <arch/cpu.h>
void cpu_assign(struct tcb *t)
{
__asm__ volatile ("mv tp, %0\n" : : "r" (t) :);
}
id_t cpu_id()
{
struct tcb *t = cur_tcb();
return t->cpu_id;
}
/* override cur_tcb() in common/tcb.c since on risc-v this is apparently the
* optimal strategy. */
/* @todo should this be the default for all arches? */
struct tcb *cur_tcb()
{
register struct tcb *t __asm__ ("tp");
return t;
}
|