blob: 629e2db2d2c3d0579f7168f1cdbd70349c8a1b39 (
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
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
|
/* 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 <kmi/tcb.h>
#include <kmi/atomic.h>
#include <arch/cpu.h>
#include "sbi.h"
/** Keeps track of initialized cpus. */
static atomic_long cpus = 0;
void cpu_assign(struct tcb *t)
{
/* bounce cpu id forward, or if first time here, get a cpu id */
struct tcb *c = cur_tcb();
if (likely(c))
t->cpu_id = c->cpu_id;
else
t->cpu_id = cpus++;
__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()
{
struct tcb *t;
__asm__ volatile ("mv %0, tp" : "=r" (t) ::);
return t;
}
/**
* Helper for cpu_send_ipi() to convert linear \p cpu_id to SBI \c
* hart_mask_base.
*
* @param cpu_id CPU id to convert.
* @return Corresponding \c hart_mask_base.
*/
static long __cpu_offset(id_t cpu_id)
{
return cpu_id / (sizeof(long) * 8);
}
/**
* Helper for cpu_send_ipi() to convert linear \p cpu_id to SBI \c
* hart_mask.
*
* @param cpu_id CPU id to convert.
* @param offset Offset from __cpu_offset().
* @return Corresponding \c hart_mask.
*/
static long __cpu_mask(id_t cpu_id, long offset)
{
return cpu_id - offset * sizeof(long) * 8;
}
void cpu_send_ipi(id_t cpu_id)
{
long offset = __cpu_offset(cpu_id);
long mask = __cpu_mask(cpu_id, offset);
sbi_send_ipi(mask, offset);
}
|