diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-19 22:37:00 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-19 22:37:00 -0400 |
commit | 9cff7866d58bfd48cad3f32882b957499c06a649 (patch) | |
tree | d1360ef0d12717c319791c219a24186a3a040e0c /sys/include | |
parent | d13ff179e6c1fc418891e6f55943313f1cf2bdc8 (diff) |
kernel: Add reboot() and reboot syscall
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/machdep.h | 1 | ||||
-rw-r--r-- | sys/include/sys/reboot.h | 45 | ||||
-rw-r--r-- | sys/include/sys/syscall.h | 1 |
3 files changed, 47 insertions, 0 deletions
diff --git a/sys/include/sys/machdep.h b/sys/include/sys/machdep.h index 31385ce..0ecb83e 100644 --- a/sys/include/sys/machdep.h +++ b/sys/include/sys/machdep.h @@ -50,6 +50,7 @@ __weak void chips_init(void); __weak void pre_init(void); __weak void serial_dbgch(char c); __weak void cpu_halt_others(void); +__weak void cpu_reset(void); #endif /* defined(_KERNEL) */ #endif /* !_SYS_MACHDEP_H_ */ diff --git a/sys/include/sys/reboot.h b/sys/include/sys/reboot.h new file mode 100644 index 0000000..e09bd4f --- /dev/null +++ b/sys/include/sys/reboot.h @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of Hyra nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef _SYS_REBOOT_H_ +#define _SYS_REBOOT_H_ + +#if defined(_KERNEL) +#include <sys/syscall.h> +#endif + +#define REBOOT_DEFAULT 0x0000 + +int reboot(int type); + +#if defined(_KERNEL) +uint64_t sys_reboot(struct syscall_args *args); +#endif /* defined(_KERNEL) */ + +#endif /* !_SYS_REBOOT_H_ */ diff --git a/sys/include/sys/syscall.h b/sys/include/sys/syscall.h index 6a102aa..4ef3666 100644 --- a/sys/include/sys/syscall.h +++ b/sys/include/sys/syscall.h @@ -48,6 +48,7 @@ enum { SYS_ioctl, SYS_execv, SYS_mount, + SYS_reboot, __MAX_SYSCALLS }; |