blob: 2bd925b7be74ba82a537c7885cf68244450bcb23 (
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
|
// MIT License, Copyright (c) 2021 Marvin Borner
#include <assert.h>
#include <def.h>
#include <io.h>
#include <list.h>
#include <mm.h>
#include <rand.h>
#include <str.h>
PROTECTED static struct io_dev *io_mappings[IO_MAX] = { 0 };
static u8 io_type_valid(enum io_type io)
{
return io > IO_MIN && io < IO_MAX;
}
static struct io_dev *io_get(enum io_type io)
{
if (!io_type_valid(io))
return NULL;
return io_mappings[io];
}
CLEAR void io_add(enum io_type io, struct io_dev *dev)
{
assert(io_type_valid(io) && !io_mappings[io]);
io_mappings[io] = dev;
}
res io_control(enum io_type io)
{
if (!io_get(io))
return -ENOENT;
return -ENOENT;
}
res io_write(enum io_type io, void *buf, u32 offset, u32 count)
{
if (!memory_readable(buf))
return -EFAULT;
if (!io_get(io))
return -ENOENT;
}
res io_read(enum io_type io, void *buf, u32 offset, u32 count)
{
if (!memory_readable(buf))
return -EFAULT;
if (!io_get(io))
return -ENOENT;
}
res io_poll(enum io_type io)
{
if (!io_get(io))
return -ENOENT;
}
CLEAR void io_install(void)
{
// TODO: Install I/O devices by selecting best working driver
}
|