aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/inc/io.h')
-rw-r--r--kernel/inc/io.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/kernel/inc/io.h b/kernel/inc/io.h
deleted file mode 100644
index c20a6f7..0000000
--- a/kernel/inc/io.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// MIT License, Copyright (c) 2021 Marvin Borner
-
-#ifndef IO_H
-#define IO_H
-
-#include <def.h>
-#include <drivers/int.h>
-#include <proc.h>
-#include <sys.h>
-
-struct io_dev {
- res (*read)(void *buf, u32 offset, u32 count) NONNULL;
- res (*write)(const void *buf, u32 offset, u32 count) NONNULL;
- res (*control)(u32 request, void *arg1, void *arg2, void *arg3);
- res (*ready)(void);
-};
-
-void io_install(void);
-void io_add(enum io_type io, struct io_dev *dev) NONNULL;
-
-// No NONNULL on syscalls
-res io_control(enum io_type io, u32 request, void *arg1, void *arg2, void *arg3);
-res io_write(enum io_type io, const void *buf, u32 offset, u32 count);
-res io_read(enum io_type io, void *buf, u32 offset, u32 count);
-res io_poll(u32 *devs);
-res io_ready(enum io_type io);
-
-void io_block(enum io_type io, struct proc *proc) NONNULL;
-void io_unblock(enum io_type io);
-void io_unblock_pid(u32 pid);
-
-#endif