aboutsummaryrefslogtreecommitdiff
path: root/kernel/drivers/serial.cc
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-01-31 00:32:26 -0500
committerRaghuram Subramani <raghus2247@gmail.com>2025-01-31 00:32:26 -0500
commitee16fdda814e381351578bb87696c572773df02a (patch)
treea0d54139615ea5dc10e9795d5e2e9c1f6f862fe0 /kernel/drivers/serial.cc
parenteadb94693002a2f5435722f2d967d7fa08866a1d (diff)
drivers: serial: C->C++
Diffstat (limited to 'kernel/drivers/serial.cc')
-rw-r--r--kernel/drivers/serial.cc80
1 files changed, 80 insertions, 0 deletions
diff --git a/kernel/drivers/serial.cc b/kernel/drivers/serial.cc
new file mode 100644
index 0000000..df40481
--- /dev/null
+++ b/kernel/drivers/serial.cc
@@ -0,0 +1,80 @@
+/*
+ * bubbl
+ * Copyright (C) 2024-2025 Raghuram Subramani <raghus2247@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <common.h>
+#include <drivers/serial.h>
+#include <kernel/io.h>
+#include <libk/string.h>
+#include <stdbool.h>
+
+/* Implementation adapted from
+ * https://wiki.osdev.org/Inline_Assembly/Examples */
+
+namespace Serial
+{
+
+bool
+initialize(void)
+{
+ outb(PORT + 1, 0x00); // Disable all interrupts
+ outb(PORT + 3, 0x80); // Enable DLAB (set baud rate divisor)
+ outb(PORT + 0, 0x03); // Set divisor to 3 (lo byte) 38400 baud
+ outb(PORT + 1, 0x00); // (hi byte)
+ outb(PORT + 3, 0x03); // 8 bits, no parity, one stop bit
+ outb(PORT + 2, 0xC7); // Enable FIFO, clear them, with 14-byte threshold
+ outb(PORT + 4, 0x0B); // IRQs enabled, RTS/DSR set
+ outb(PORT + 4, 0x1E); // Set in loopback mode, test the serial chip
+ outb(PORT + 0, 0xAE); // Test serial chip (send byte 0xAE and check if serial
+ // returns same byte)
+
+ // TODO: Check if serial is faulty (i.e: not same byte as sent)
+ if (inb(PORT + 0) != 0xAE) {
+ return false;
+ }
+
+ // If serial is not faulty set it in normal operation mode
+ // (not-loopback with IRQs enabled and OUT#1 and OUT#2 bits enabled)
+ outb(PORT + 4, 0x0F);
+
+ return true;
+}
+
+ALWAYS_INLINE static int
+is_transmit_empty(void)
+{
+ return inb(PORT + 5) & 0x20;
+}
+
+void
+write_char(const char chr)
+{
+ while (is_transmit_empty() == 0)
+ ;
+
+ outb(PORT, chr);
+}
+
+void
+write_string(const char *string)
+{
+ size_t size = strlen(string);
+ for (size_t i = 0; i < size; i++)
+ write_char(string[i]);
+}
+
+}