aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.h
blob: 9274dfb18f783e4ad36421aac77cafca9ab6ed64 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#ifndef MELVIX_IO_H
#define MELVIX_IO_H

#include <stdint.h>

/**
 * Receive from specified hardware port
 * @param port The hardware port
 * @return The hardware response
 */
u8 inb(u16 port);

/**
 * Receive from specified hardware port
 * @param port The hardware port
 * @return The hardware response
 */
u16 inw(u16 port);

/**
 * Receive from specified hardware port
 * @param port The hardware port
 * @return The hardware response
 */
u32 inl(u16 port);

int interrupts_enabled();
void interrupts_print();
void cli();
void sti();
void hlt();

/**
 * Send data to the specified hardware port
 * @param port The hardware port
 * @param data The data that should be sent
 */
void outb(u16 port, u8 data);

/**
 * Send data to the specified hardware port
 * @param port The hardware port
 * @param data The data that should be sent
 */
void outw(u16 port, u16 data);

/**
 * Send data to the specified hardware port
 * @param port The hardware port
 * @param data The data that should be sent
 */
void outl(u16 port, u32 data);

u32 cr3_get();
void cr3_set(u32 cr3);
u32 cr0_get();
void cr0_set(u32 cr0);
void invlpg(u32 addr);

/**
 * Initialize the serial conenction
 */
void serial_install();

/**
 * Write a single char to the serial port (QEMU logging)
 * @param ch The char
 */
void serial_put(char ch);

// Spinlock
static inline void spinlock(int *ptr)
{
	int prev;
	do
		asm volatile("lock xchgl %0,%1" : "=a"(prev) : "m"(*ptr), "a"(1));
	while (prev);
}

#endif