1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// MIT License, Copyright (c) 2021 Marvin Borner
#include <cpu.h>
#include <log.h>
#include <panic.h>
#define PORT 0x3f8
void serial_install(void)
{
outb(PORT + 1, 0x00);
outb(PORT + 3, 0x80);
outb(PORT + 0, 0x03);
outb(PORT + 1, 0x00);
outb(PORT + 3, 0x03);
outb(PORT + 2, 0xc7);
// Test serial chip
outb(PORT + 4, 0x1e); // Enable loopback
outb(PORT + 0, 0xae); // Write
assert(inb(PORT + 0) == 0xae); // Verify receive
// Activate
outb(PORT + 4, 0x0f);
log("[LOG] Initiated\n");
}
static int serial_empty(void)
{
return inb(PORT + 5) & 0x20;
}
static void serial_put(char ch)
{
while (serial_empty() == 0)
;
outb(PORT, (u8)ch);
}
void serial_print(const char *data)
{
for (const char *p = data; *p; p++)
serial_put(*p);
}
void log(const char *format, ...)
{
char buf[1024] = { 0 };
va_list ap;
va_start(ap, format);
vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
serial_print(buf);
}
|