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.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/kernel/inc/io.h b/kernel/inc/io.h
new file mode 100644
index 0000000..e05a419
--- /dev/null
+++ b/kernel/inc/io.h
@@ -0,0 +1,30 @@
+// MIT License, Copyright (c) 2021 Marvin Borner
+
+#ifndef DEV_H
+#define DEV_H
+
+#include <def.h>
+#include <sys.h>
+
+enum io_type {
+ IO_MIN,
+ IO_FRAMEBUFFER,
+ IO_NETWORK,
+ IO_KEYBOARD,
+ IO_MOUSE,
+ IO_BUS,
+ IO_MAX,
+};
+
+struct io_dev {
+ const char *name;
+};
+
+void io_install(void);
+
+res io_control();
+res io_write(enum io_type io, void *buf, u32 offset, u32 count);
+res io_read(enum io_type io, void *buf, u32 offset, u32 count);
+res io_poll();
+
+#endif