aboutsummaryrefslogtreecommitdiff
path: root/kernel/drivers/serial.c
blob: 95ac02d11dcbc5bbd3c5cdb25032e8349c88a288 (plain) (blame)
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
58
59
60
61
// MIT License, Copyright (c) 2020 Marvin Borner

#include <assert.h>
#include <drivers/cpu.h>
#include <def.h>
#include <drivers/serial.h>
#include <str.h>

#define PORT 0x3f8

PROTECTED static u8 serial_enabled = 0;

CLEAR void serial_disable(void)
{
	outb(PORT + 4, 0x1e); // Enable loopback
	serial_enabled = 0;
}

CLEAR void serial_enable(void)
{
	outb(PORT + 4, 0x0f);
	serial_enabled = 1;

	serial_print("Serial connected!\n");
}

CLEAR 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
}

static int is_transmit_empty(void)
{
	return inb(PORT + 5) & 0x20;
}

void serial_put(char ch)
{
	if (!serial_enabled)
		return;

	while (is_transmit_empty() == 0)
		;
	outb(PORT, (u8)ch);
}

void serial_print(const char *data)
{
	for (const char *p = data; p && *p; p++)
		serial_put(*p);
}