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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* -------------------------------------------
Copyright Zeta Electronics Corporation
------------------------------------------- */
/* -------------------------------------------
Revision History:
31/01/24: Add kDeviceCnt (amlel)
------------------------------------------- */
#pragma once
/* NewOS device interface manager. */
/* @file KernelKit/DeviceManager.hpp */
/* @brief Device abstraction and I/O buffer. */
#include <NewKit/ErrorOr.hpp>
#include <NewKit/Ref.hpp>
// Last Rev
// Wed, Apr 3, 2024 9:09:41 AM
namespace NewOS
{
template <typename T>
class DeviceInterface;
template <typename T>
class DeviceInterface
{
public:
explicit DeviceInterface(void (*Out)(T), void (*In)(T))
: fOut(Out), fIn(In)
{
}
virtual ~DeviceInterface() = default;
public:
DeviceInterface& operator=(const DeviceInterface<T>&) = default;
DeviceInterface(const DeviceInterface<T>&) = default;
public:
virtual DeviceInterface<T>& operator<<(T Data)
{
fOut(Data);
return *this;
}
virtual DeviceInterface<T>& operator>>(T Data)
{
fIn(Data);
return *this;
}
virtual const char* Name() const
{
return "DeviceInterface";
}
operator bool()
{
return fOut && fIn;
}
bool operator!()
{
return !fOut || !fIn;
}
private:
void (*fOut)(T Data);
void (*fIn)(T Data);
};
///
/// @brief Input Output Buffer
/// Used mainly to communicate between hardware.
///
template <typename T>
class IOBuf final
{
public:
explicit IOBuf(T Dat)
: fData(Dat)
{
// at least pass something valid when instancating this struct.
MUST_PASS(Dat);
}
IOBuf& operator=(const IOBuf<T>&) = default;
IOBuf(const IOBuf<T>&) = default;
~IOBuf() = default;
public:
template <typename R>
R operator->() const
{
return fData;
}
template <typename R>
R& operator[](Size index) const
{
return fData[index];
}
private:
T fData;
};
///! @brief Device enum types.
enum
{
kDeviceTypeIDE,
kDeviceTypeEthernet,
kDeviceTypeWiFi,
kDeviceTypeRS232,
kDeviceTypeSCSI,
kDeviceTypeSHCI,
kDeviceTypeUSB,
kDeviceTypeMedia,
kDeviceTypeCount,
};
} // namespace NewOS
|