forked from nieklinnenbank/FreeNOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kernel.h
252 lines (215 loc) · 5.45 KB
/
Kernel.h
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
* Copyright (C) 2015 Niek Linnenbank
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __KERNEL_H
#define __KERNEL_H
#include <Macros.h>
#include <Types.h>
#include <Vector.h>
#include <List.h>
#include <Singleton.h>
#include <BootImage.h>
#include <Memory.h>
#include <CoreInfo.h>
/** Forward declarations. */
class API;
class BootImageStorage;
class MemoryContext;
class Process;
class ProcessManager;
class SplitAllocator;
class IntController;
class Timer;
struct CPUState;
/**
* @addtogroup kernel
* @{
*/
/**
* Function which is called when the CPU is interrupted.
*
* @param state State of the CPU on the moment the interrupt occurred.
* @param param Optional first parameter for the handler.
* @param vector Optional IRQ vector value. Used by some architectures.
*/
typedef void InterruptHandler(struct CPUState *state, ulong param, ulong vector);
/**
* Interrupt hook class.
*/
typedef struct InterruptHook
{
/**
* Constructor function.
*
* @param h Handler function for the hook.
* @param p Parameter to pass.
*/
InterruptHook(InterruptHandler *h, ulong p) : handler(h), param(p)
{
}
/**
* Comparision operator.
*
* @param i InterruptHook pointer.
* @return True if equal, false otherwise.
*/
bool operator == (InterruptHook *i)
{
return handler == i->handler && param == i->param;
}
/** Executed at time of interrupt. */
InterruptHandler *handler;
/** Passed to the handler. */
ulong param;
}
InterruptHook;
/**
* FreeNOS kernel implementation.
*/
class Kernel : public WeakSingleton<Kernel>
{
public:
/**
* Result codes.
*/
enum Result
{
Success,
InvalidBootImage,
ProcessError,
IOError
};
/**
* Constructor function.
*
* @param info CoreInfo structure for this core.
*/
Kernel(CoreInfo *info);
/**
* Initialize heap.
*
* This function sets up the kernel heap for
* dynamic memory allocation with new() and delete()
* operators. It must be called before any object
* is created using new().
*
* @return Zero on success or error code on failure.
*/
static Error initializeHeap();
/**
* Get physical memory allocator.
*
* @return SplitAllocator object pointer
*/
SplitAllocator * getAllocator();
/**
* Get process manager.
*
* @return Kernel ProcessManager object pointer.
*/
ProcessManager * getProcessManager();
/**
* Get API.
*
* @return Kernel API object pointer.
*/
API * getAPI();
/**
* Get the current MMU context.
*
* @return MemoryContext object pointer
*/
MemoryContext * getMemoryContext();
/**
* Get CoreInfo.
*
* @return CoreInfo object pointer
*/
CoreInfo * getCoreInfo();
/**
* Get Timer.
*
* @return Timer object pointer
*/
Timer * getTimer();
/**
* Execute the kernel.
*/
int run();
/**
* Enable or disable an hardware interrupt (IRQ).
*
* @param irq IRQ number.
* @param enabled True to enable, and false to disable.
*/
virtual void enableIRQ(u32 irq, bool enabled);
/**
* Send a inter-processor-interrupt (IPI) to another core.
*
* @param coreId Target Core to deliver the interrupt to.
* @param irq Interrupt number to deliver
*
* @return Result code
*/
virtual Result sendIRQ(const uint coreId, const uint irq);
/**
* Hooks a function to an hardware interrupt.
*
* @param vec Interrupt vector to hook on.
* @param h Handler function.
* @param p Parameter to pass to the handler function.
*/
virtual void hookIntVector(u32 vec, InterruptHandler h, ulong p);
/**
* Execute an interrupt handler.
*
* @param vec Interrupt vector.
* @param state CPU state.
*/
virtual void executeIntVector(u32 vec, CPUState *state);
/**
* Loads the boot image.
*/
virtual Result loadBootImage();
private:
/**
* Load a boot program.
*
* @param bootImage Reference to the BootImageStorage
* @param program Reference to the BootSymbol of the program to load.
*/
virtual Result loadBootProgram(const BootImageStorage &bootImage,
const BootSymbol &program);
protected:
/** Physical memory allocator */
SplitAllocator *m_alloc;
/** Process Manager */
ProcessManager *m_procs;
/** API handlers object */
API *m_api;
/** CoreInfo object for this core. */
CoreInfo *m_coreInfo;
/** Interrupt handlers. */
Vector<List<InterruptHook *> *> m_interrupts;
/** Interrupt Controller. */
IntController *m_intControl;
/** Timer device. */
Timer *m_timer;
};
/**
* @}
*/
#endif /* __KERNEL_H */