aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.h
blob: ba5e7c1b3a9560cdcb3fc484963a454b4b14a02b (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
#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 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);

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

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

#endif