-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmonitor.c
226 lines (197 loc) · 3.82 KB
/
monitor.c
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
#include "monitor.h"
#include "system.h"
static uint16_t *fb = (uint16_t *) 0x000B8000;
static uint8_t cursor_x = 0;
static uint8_t cursor_y = 0;
static MONCOLOR color_fg = MONCOLOR_LGREY;
static MONCOLOR color_bg = MONCOLOR_BLACK;
// Blank character
static const uint16_t BLANK = 0x20 /*space*/ | (((MONCOLOR_BLACK << 4) | (MONCOLOR_WHITE & 0x0F)) << 8);
// Update the hardware framebuffer cursor
static void update_cursor(void)
{
uint16_t pos = cursor_y * FB_WIDTH + cursor_x;
// Write the high bits
outb(0x3D4, 14);
outb(0x3D5, ((pos >> 8) & 0x00FF));
// Write the low bits
outb(0x3D4, 15);
outb(0x3D5, pos & 0x00FF);
}
// Scroll the screen up by one line
static void scroll(void)
{
const uint16_t last_line_pos = (FB_HEIGHT - 1) * FB_WIDTH;
// Copy line_i to line_(i-1)
for (uint16_t i = 0; i < last_line_pos; i++)
{
fb[i] = fb[i + FB_WIDTH];
}
// Clear last line
for (uint16_t i = last_line_pos; i < FB_HEIGHT * FB_WIDTH; i++)
{
fb[i] = BLANK;
}
// Set cursor to last line
cursor_y = FB_HEIGHT - 1;
}
void monitor_put(char c)
{
// Backspace => move back one
if (c == 0x08 && cursor_x > 0)
{
cursor_x--;
}
// Tab => move forward TAB_SIZE
else if (c == '\t')
{
cursor_x = (cursor_x + TAB_SIZE) & ~(TAB_SIZE - 1);
}
// Carriage return => move cursor to start of line
else if (c == '\r')
{
cursor_x = 0;
}
// Line feed => move to next row
else if (c == '\n')
{
cursor_y++;
}
// Backspace => move to previous column
else if (c == '\b')
{
cursor_x = cursor_x == 0 ? 0 : cursor_x - 1;
}
// All other printable characters
else if (c >= ' ')
{
// Calculate the position and colour bits
uint8_t color = (color_bg << 4) | (color_fg & 0x0F);
uint16_t pos = cursor_y * FB_WIDTH + cursor_x;
// Write character to framebuffer
fb[pos] = c | (color << 8);
// Advance cursor
cursor_x++;
}
// Wrap to a new line if we hit the end of the row
if (cursor_x >= FB_WIDTH)
{
cursor_x = 0;
cursor_y++;
}
// Scroll the screen if needed
if (cursor_y >= 25)
{
scroll();
}
// Update the cursor location
update_cursor();
}
void monitor_write(char *str)
{
// TODO: handle str longer than 32-bits
// and/or a non-null terminated string
uint32_t i = 0;
while(str[i])
{
monitor_put(str[i++]);
}
}
void monitor_writeline(char *str)
{
monitor_write(str);
monitor_write("\r\n");
}
static void monitor_write_hex(uint64_t i)
{
// Display 8 chars if only 32-bit value or less
uint8_t len = 7;
if (i > 0xFFFFFFFF)
{
len = 15;
}
monitor_write("0x");
for (int8_t j = len; j >= 0; j--)
{
uint32_t digit = (i >> j*4) & 0xF;
if (digit < 0xA)
{
monitor_put(digit + '0');
}
else
{
monitor_put(digit - 0xA + 'a');
}
// Add separator between DWORDs
if (j == 8)
{
monitor_put('_');
}
}
}
// TODO: implement 64-bit version (need to link to libgcc)
static void monitor_write_dec(uint32_t i)
{
if (i == 0)
{
monitor_put('0');
return;
}
int32_t acc = i;
int32_t j;
char c[64];
for (j = 0; acc > 0; j++)
{
c[j] = '0' + acc % 10;
acc /= 10;
}
c[j] = 0;
int32_t k = 0;
char c2[64];
c2[j--] = 0;
while (j >= 0)
{
c2[j--] = c[k++];
}
monitor_write(c2);
}
void monitor_writei(uint64_t i, char fmt)
{
switch (fmt)
{
case 'd':
monitor_write_dec(i);
break;
case 'x':
monitor_write_hex(i);
break;
default:
PANIC("Invalid format option");
}
}
void monitor_writelinei(uint64_t i, char fmt)
{
monitor_writei(i, fmt);
monitor_write("\r\n");
}
void monitor_clear(void)
{
// Fill the entire screen with the 'blank' character
for (uint64_t i = 0; i < FB_HEIGHT * FB_WIDTH; i++)
{
fb[i] = BLANK;
}
// Reset cursor to (0, 0)
cursor_x = 0;
cursor_y = 0;
update_cursor();
}
void monitor_color_set(MONCOLOR fg, MONCOLOR bg)
{
color_fg = fg;
color_bg = bg;
}
void monitor_color_reset(void)
{
monitor_color_set(MONCOLOR_LGREY, MONCOLOR_BLACK);
}