aboutsummaryrefslogtreecommitdiff
path: root/lib/inc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/inc')
-rw-r--r--lib/inc/cpu.h29
-rw-r--r--lib/inc/mem.h7
-rw-r--r--lib/inc/print.h1
-rw-r--r--lib/inc/serial.h9
4 files changed, 43 insertions, 3 deletions
diff --git a/lib/inc/cpu.h b/lib/inc/cpu.h
new file mode 100644
index 0000000..eb09291
--- /dev/null
+++ b/lib/inc/cpu.h
@@ -0,0 +1,29 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef CPU_H
+#define CPU_H
+
+#include <def.h>
+
+u8 inb(u16 port);
+u16 inw(u16 port);
+u32 inl(u16 port);
+void insl(u16 port, void *addr, int n);
+
+void outb(u16 port, u8 data);
+void outw(u16 port, u16 data);
+void outl(u16 port, u32 data);
+void cli();
+void sti();
+void hlt();
+void idle();
+
+static inline void spinlock(int *ptr)
+{
+ int prev;
+ do
+ __asm__ volatile("lock xchgl %0,%1" : "=a"(prev) : "m"(*ptr), "a"(1));
+ while (prev);
+}
+
+#endif
diff --git a/lib/inc/mem.h b/lib/inc/mem.h
index e700e42..e2d574f 100644
--- a/lib/inc/mem.h
+++ b/lib/inc/mem.h
@@ -5,12 +5,13 @@
#include <def.h>
-u32 HEAP;
-u32 HEAP_START;
-
#define malloc(n) ((void *)((HEAP += n) - n)) // TODO: Implement real/better malloc/free
#define free(x)
+// TODO: Use malloc as syscall
+u32 HEAP;
+u32 HEAP_START;
+
void *memcpy(void *dst, const void *src, u32 n);
void *memset(void *dst, int c, u32 n);
int memcmp(const void *s1, const void *s2, u32 n);
diff --git a/lib/inc/print.h b/lib/inc/print.h
index 925a5bd..04668b2 100644
--- a/lib/inc/print.h
+++ b/lib/inc/print.h
@@ -9,5 +9,6 @@
int printf(const char *format, ...);
int vprintf(const char *format, va_list ap);
int vsprintf(char *str, const char *format, va_list ap);
+int print(const char *str);
#endif
diff --git a/lib/inc/serial.h b/lib/inc/serial.h
new file mode 100644
index 0000000..6511952
--- /dev/null
+++ b/lib/inc/serial.h
@@ -0,0 +1,9 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef SERIAL_H
+#define SERIAL_H
+
+void serial_install();
+void serial_print(const char *data);
+
+#endif