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
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file irq.c
* IRQ request syscall handling implementation.
*/
#include <kmi/uapi.h>
#include <kmi/irq.h>
/**
* Actual IRQ handling request syscall handler.
*
* @param t Current tcb.
* @param id Which IRQ number to register.
*
* @return \ref OK on success, non-zero otherwise.
*/
SYSCALL_DEFINE1(irq_req)(struct tcb *t, sys_arg_t id)
{
if (!has_cap(t->caps, CAP_IRQ))
return_args1(t, ERR_PERM);
if (!t->callback || !t->notify_id)
return_args1(t, ERR_NF);
return_args1(t, register_irq(t, id));
}
/**
* Actual IRQ freeing syscall handler.
*
* @param t Current tcb.
* @param id ID of IRQ to free.
* @return \ref OK on success, non-zero otherwise.
*/
SYSCALL_DEFINE1(free_irq)(struct tcb *t, sys_arg_t id)
{
if (!has_cap(t->caps, CAP_IRQ))
return_args1(t, ERR_PERM);
return_args1(t, unregister_irq(t, id));
}
/**
* Actual notification handler setter.
*
* @param t Current tcb.
* @param tid Thread whose handler to set. Still not sure if this should just be
* the current thread, but I guess this might be a bit easier?
* @param pid Process that is willing to handle notifications for the thread.
*
* @return OK on success, non-zero otherwise.
*/
SYSCALL_DEFINE2(set_handler)(struct tcb *t, sys_arg_t tid, sys_arg_t pid)
{
if (!has_cap(t->caps, CAP_SIGNAL))
return_args1(t, ERR_PERM);
struct tcb *r = get_tcb(tid);
if (!r)
return_args1(t, ERR_INVAL);
t->notify_id = pid;
return_args1(t, OK);
}
|