aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorMarvin Borner2021-02-10 20:28:16 +0100
committerMarvin Borner2021-02-10 20:28:16 +0100
commite7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 (patch)
tree70984e3433c5de919d2be59c0ad633156213e30b /kernel
parentedc570a3552a7fdaaf89962e5374d98c2b3dfaa0 (diff)
Print to streams instead of serial console
Diffstat (limited to 'kernel')
-rw-r--r--kernel/drivers/mouse.c10
-rw-r--r--kernel/features/proc.c60
-rw-r--r--kernel/inc/proc.h12
3 files changed, 41 insertions, 41 deletions
diff --git a/kernel/drivers/mouse.c b/kernel/drivers/mouse.c
index b03ed50..1e7fd1a 100644
--- a/kernel/drivers/mouse.c
+++ b/kernel/drivers/mouse.c
@@ -136,8 +136,9 @@ void mouse_install(void)
mouse_serial_write(0xF2);
mouse_serial_read();
status = (u8)mouse_serial_read();
- if (status == 3)
- printf("Scrollwheel support!\n");
+ if (status == 3) {
+ };
+ /* printf("Scrollwheel support!\n"); */
// Activate 4th and 5th mouse buttons
mouse_serial_write(0xF2);
@@ -158,8 +159,9 @@ void mouse_install(void)
mouse_serial_write(0xF2);
mouse_serial_read();
status = (u8)mouse_serial_read();
- if (status == 4)
- printf("4th and 5th mouse button support!\n");
+ if (status == 4) {
+ };
+ /* printf("4th and 5th mouse button support!\n"); */
/* TODO: Fix mouse laggyness
mouse_serial_write(0xE8);
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 0f88e60..9c7fcdc 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -228,7 +228,6 @@ struct proc *proc_make(void)
}
// TODO: Procfs needs a simpler interface structure (memcmp and everything sucks)
-// TODO: Handle stream overflows
const char *procfs_parse_path(const char **path, u32 *pid)
{
@@ -248,19 +247,19 @@ const char *procfs_parse_path(const char **path, u32 *pid)
return *path;
}
-struct stream *procfs_get_stream(const char *path, struct proc *proc)
+enum stream_defaults procfs_stream(const char *path)
{
- struct stream *stream = NULL;
if (!memcmp(path, "in", 3)) {
- stream = &proc->streams[STREAM_IN];
+ return STREAM_IN;
} else if (!memcmp(path, "out", 4)) {
- stream = &proc->streams[STREAM_IN];
+ return STREAM_OUT;
} else if (!memcmp(path, "err", 4)) {
- stream = &proc->streams[STREAM_IN];
+ return STREAM_ERR;
} else if (!memcmp(path, "log", 4)) {
- stream = &proc->streams[STREAM_LOG];
+ return STREAM_LOG;
+ } else {
+ return STREAM_UNKNOWN;
}
- return stream;
}
s32 procfs_write(const char *path, void *buf, u32 offset, u32 count, struct device *dev)
@@ -279,15 +278,20 @@ s32 procfs_write(const char *path, void *buf, u32 offset, u32 count, struct devi
return count;
} else if (!memcmp(path, "io/", 3)) {
path += 3;
- struct stream *stream = procfs_get_stream(path, p);
- if (stream) {
- memcpy((char *)(stream->data + stream->pos), buf, count);
- stream->pos += count;
- proc_enable_waiting(dev->id, PROC_WAIT_DEV);
- return count;
- } else {
+ enum stream_defaults id = procfs_stream(path);
+ if (id == STREAM_UNKNOWN)
return -1;
- }
+
+ // Put proc log/err messages to serial console for debugging
+ if (id == STREAM_LOG || id == STREAM_ERR)
+ print_app(id, p->name, (char *)buf);
+
+ struct stream *stream = &p->streams[id];
+ assert(stream->offset_write + count < STREAM_MAX_SIZE); // TODO: Resize
+ memcpy((char *)(stream->data + stream->offset_write), buf, count);
+ stream->offset_write += count;
+ proc_enable_waiting(dev->id, PROC_WAIT_DEV);
+ return count;
}
}
@@ -329,15 +333,13 @@ s32 procfs_read(const char *path, void *buf, u32 offset, u32 count, struct devic
}
} else if (!memcmp(path, "io/", 3)) {
path += 3;
- struct stream *stream = procfs_get_stream(path, p);
-
- if (stream) {
- memcpy(buf, stream->data + stream->offset, count);
- stream->offset += count;
- return count;
- } else {
+ enum stream_defaults id = procfs_stream(path);
+ if (id == STREAM_UNKNOWN)
return -1;
- }
+ struct stream *stream = &p->streams[id];
+ memcpy(buf, stream->data + stream->offset_read, count);
+ stream->offset_read += count;
+ return count;
}
}
@@ -372,13 +374,11 @@ u8 procfs_ready(const char *path, struct device *dev)
return stack_empty(p->messages) == 0;
} else if (!memcmp(path, "io/", 3)) {
path += 3;
- struct stream *stream = procfs_get_stream(path, p);
-
- if (stream) {
- return stream->data[stream->offset] != 0;
- } else {
+ enum stream_defaults id = procfs_stream(path);
+ if (id == STREAM_UNKNOWN)
return -1;
- }
+ struct stream *stream = &p->streams[id];
+ return stream->data[stream->offset_read] != 0;
}
}
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h
index 9f78a3e..593141b 100644
--- a/kernel/inc/proc.h
+++ b/kernel/inc/proc.h
@@ -19,10 +19,8 @@
#define PROC_MAX_WAIT_IDS 16
-#define STREAM_IN 0
-#define STREAM_OUT 1
-#define STREAM_ERR 2
-#define STREAM_LOG 3
+#define STREAM_MAX_SIZE 4096
+enum stream_defaults { STREAM_IN, STREAM_OUT, STREAM_ERR, STREAM_LOG, STREAM_UNKNOWN = -1 };
enum proc_state { PROC_RUNNING, PROC_SLEEPING };
enum proc_wait_type { PROC_WAIT_DEV };
@@ -35,9 +33,9 @@ struct proc_wait {
};
struct stream {
- u32 offset;
- u32 pos;
- char data[4096];
+ u32 offset_read;
+ u32 offset_write;
+ char data[STREAM_MAX_SIZE];
};
struct proc {