aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.h
blob: a145319079cfd6defa84b53f580f5e00076d7351 (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
#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
 */
uint8_t receive_b(uint16_t port);

/**
 * Receive from specified hardware port
 * @param port The hardware port
 * @return The hardware response
 */
uint16_t receive_w(uint16_t port);

/**
 * Receive from specified hardware port
 * @param port The hardware port
 * @return The hardware response
 */
uint32_t receive_l(uint16_t port);

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

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

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

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

/**
 * Write a string to the serial port (QEMU logging)
 * @param data The string that should get transmitted
 */
void serial_write(const char *data);

/**
 * Write a hex number to the serial port (QEMU logging)
 * @param n The hex number that should get transmitted
 */
void serial_write_hex(int n);

/**
 * Write a dec number to the serial port (QEMU logging)
 * @param n The dec number that should get transmitted
 */
void serial_write_dec(int n);

#endif