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
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file conf.c
* Runtime configuration sycall implementations.
*
* At the moment there are not runtime configuration parameters.
*/
#include <apos/power.h>
#include <apos/sizes.h>
#include <apos/uapi.h>
size_t __thread_stack_size = SZ_2M;
size_t __call_stack_size = SZ_2M;
/**
* Configuration parameter read syscall handler.
*
* \todo Implement parameters.
*
* @param param Parameter to read.
* @return \ref OK and parameter value.
*/
SYSCALL_DEFINE1(conf_get)(sys_arg_t param)
{
return (struct sys_ret){ OK, 0, 0, 0, 0, 0 };
}
/**
* Configuration parameter write syscall handler.
*
* \todo Implement parameters.
*
* @param param Parameter to write.
* @param val Value to set \c param to.
* @return \ref OK and \c 0.
*/
SYSCALL_DEFINE2(conf_set)(sys_arg_t param, sys_arg_t val)
{
UNUSED(param);
UNUSED(val);
/* no parameters supported atm */
return (struct sys_ret){ OK, 0, 0, 0, 0, 0 };
}
/**
* Poweroff syscall handler.
*
* @param type Type of poweroff.
* @return \ref ERR_INVAL and \c 0 if incorrect poweroff \c type give, otherwise
* does not return.
*/
SYSCALL_DEFINE1(poweroff)(sys_arg_t type)
{
switch (type) {
case SHUTDOWN:
case COLD_REBOOT:
case WARM_REBOOT:
return (struct sys_ret){ OK, poweroff(type), 0, 0, 0, 0 };
};
return (struct sys_ret){ ERR_INVAL, 0, 0, 0, 0, 0 };
}
|