aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/vesa.c
blob: 639ec2bfe9248f798e47dc8fe0294ae424a71e13 (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
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
#include <kernel/graphics/vesa.h>
#include <kernel/graphics/font.h>
#include <kernel/io/io.h>
#include <kernel/lib/lib.h>
#include <kernel/paging/paging.h>
#include <kernel/system.h>
#include <kernel/lib/alloc.h>
#include <kernel/commands/command.h>
#include <kernel/timer/timer.h>

void switch_to_vga() {
    serial_write("Force switch to VGA!\n");
    uint16_t *terminal_buffer = (uint16_t *) 0xB8000;
    char *error = "Melvix does not support this graphics hardware!";
    for (size_t i = 0; i < strlen(error); i++)
        terminal_buffer[24 * 80 + i] = (uint16_t) error[i] | (uint16_t) 0x700;
    panic("No VESA support!");
}

struct edid_data get_edid() {
    regs16_t regs;
    regs.ax = 0x4F15;
    regs.bx = 0x1; // BL
    regs.es = 0;
    regs.di = 0x7E00;
    paging_disable();
    int32(0x10, &regs);
    paging_enable();

    if ((regs.ax & 0xFF) != 0x4F) {
        warn("No EDID available!");
    }

    struct edid_data *edid = (struct edid_data *) 0x7E00;

    return *(struct edid_data *) edid;
}

void vbe_set_mode(unsigned short mode) {
    regs16_t regs;
    regs.ax = 0x4F02;
    regs.bx = mode;
    regs.bx |= 0x4000;
    paging_disable();
    int32(0x10, &regs);
    paging_enable();

    if (regs.ax != 0x004F)
        switch_to_vga();
}

uint16_t *vbe_get_modes() {
    char *info_address = (char *) 0x7E00;
    strcpy(info_address, "VBE2");
    for (int i = 4; i < 512; i++) *(info_address + i) = 0;

    regs16_t regs;
    regs.ax = 0x4F00;
    regs.es = 0;
    regs.di = 0x7E00;
    paging_disable();
    int32(0x10, &regs);
    paging_enable();

    struct vbe_info *info = (struct vbe_info *) info_address;

    if (regs.ax != 0x004F || strcmp(info->signature, "VESA") != 0) switch_to_vga();

    // Get number of modes
    uint16_t *mode_ptr = (uint16_t *) info->video_modes;
    size_t number_modes = 1;
    for (uint16_t *p = mode_ptr; *p != 0xFFFF; p++) number_modes++;

    return mode_ptr;
}

struct vbe_mode_info *vbe_get_mode_info(uint16_t mode) {
    regs16_t regs;
    regs.ax = 0x4F01;
    regs.cx = mode;
    regs.es = 0;
    regs.di = 0x7E00;
    paging_disable();
    int32(0x10, &regs);
    paging_enable();

    struct vbe_mode_info *mode_info = (struct vbe_mode_info *) 0x7E00;

    if (regs.ax != 0x004f) return 0;

    return mode_info;
}

void set_optimal_resolution() {
    vga_log("Switching to graphics mode", 9);
    vga_log("Trying to detect available modes", 10);
    uint16_t *video_modes = vbe_get_modes();

    uint16_t highest = 0;

    for (uint16_t *mode = video_modes; *mode != 0xFFFF; mode++) {
        struct vbe_mode_info *mode_info = vbe_get_mode_info(*mode);

        if (mode_info == 0 || (mode_info->attributes & 0x90) != 0x90 ||
            (mode_info->memory_model != 4 && mode_info->memory_model != 6))
            continue;

        serial_write("Found mode: (");
        serial_write_hex(*mode);
        serial_write(") ");
        serial_write_dec(mode_info->width);
        serial_write("x");
        serial_write_dec(mode_info->height);
        serial_write("x");
        serial_write_dec(mode_info->bpp);
        serial_write("\n");

        if (mode_info->width > vbe_width || (mode_info->width == vbe_width && (mode_info->bpp >> 3) > vbe_bpl)) {
            // if (mode_info->bpp == 32) { // Force specific bpp for debugging
            // (float) mode_info->width / (float) mode_info->height < 2.0 &&) {
            highest = *mode;
            vbe_width = mode_info->width;
            vbe_height = mode_info->height;
            vbe_pitch = mode_info->pitch;
            vbe_bpl = mode_info->bpp >> 3;
            fb = (unsigned char *) mode_info->framebuffer;
        }
    }

    if (highest == 0) {
        serial_write("Mode detection failed!\nTrying common modes...\n");
        vga_log("Mode detection failed!", 11);
        vga_log("Trying common modes...", 12);
        struct vbe_mode_info *mode_info;
        int modes[] = {
                322, 287, 286, 285, 284, // 1600x1200
                356, 355, 354, 353, 352, // 1440x900
                317, 283, 282, 281, 263, 262, // 1280x1024
                361, 360, 359, 358, 357, // 1152x720
                312, 280, 279, 278, 261, 260, // 1024x768
                366, 365, 364, 363, 362, // 1024x640
                307, 306, 305, 304, 303, // 896x672
                302, 277, 267, 275, 259, 258, 106, // 800x600
                371, 370, 369, 368, 367, // 800x500
                297, 274, 273, 272, 257, // 640x480
                292, 291, 290, 289, 256, // 640x400
                271, 270, 269, // 320x200
        };

        for (size_t i = 0; i < sizeof(modes) / sizeof(modes[0]); i++) {
            mode_info = vbe_get_mode_info(modes[i]);
            if (mode_info == 0 || (mode_info->attributes & 0x90) != 0x90 ||
                (mode_info->memory_model != 4 && mode_info->memory_model != 6))
                continue;

            if ((mode_info->width > vbe_width ||
                 (mode_info->width == vbe_width && (mode_info->bpp >> 3) > vbe_bpl))) {
                highest = modes[i];
                vbe_width = mode_info->width;
                vbe_height = mode_info->height;
                vbe_pitch = mode_info->pitch;
                vbe_bpl = mode_info->bpp >> 3;
                fb = (unsigned char *) mode_info->framebuffer;
            }
        }

        // Everything else failed :(
        if (highest == 0)
            switch_to_vga();
    } else vga_log("Mode detection succeeded", 11);

    vbe_set_mode(highest);

    if (vbe_height > 1440) vesa_set_font(32);
    else if (vbe_height > 720) vesa_set_font(24);
    else vesa_set_font(16);
    vesa_set_color(default_text_color);
    vesa_clear();

    vesa_set_color(vesa_blue);
    vesa_draw_string(vga_buffer);
    vesa_set_color(default_text_color);

    info("Successfully switched to video mode!");

    serial_write("Using mode: ");
    serial_write_hex(highest);
    log("Using mode: ");
    vesa_draw_number(vbe_width);
    vesa_draw_string("x");
    vesa_draw_number(vbe_height);
    vesa_draw_string("x");
    vesa_draw_number(vbe_bpl << 3);

    uint32_t fb_size = vbe_width * vbe_height * vbe_bpl;
    for (uint32_t z = 0; z < fb_size; z += 4096)
        paging_map((uint32_t) fb + z, (uint32_t) fb + z, PT_PRESENT | PT_RW | PT_USED);

}

const uint32_t default_text_color = vesa_white;
const uint32_t default_background_color = vesa_black;
uint32_t terminal_color[3] = {0xab, 0xb2, 0xbf};
uint32_t terminal_background[3] = {0x1d, 0x1f, 0x24};
uint16_t terminal_x = 0;
uint16_t terminal_y = 0;
int font_width;
int font_height;

void vesa_set_font(int height) {
    font_width = height / 2;
    font_height = height;
}

void vesa_convert_color(uint32_t *color_array, uint32_t color) {
    uint8_t red = (color >> 16) & 255;
    uint8_t green = (color >> 8) & 255;
    uint8_t blue = color & 255;

    if ((vbe_bpl << 3) == 8) {
        uint32_t new_color = ((red * 7 / 255) << 5) + ((green * 7 / 255) << 2) + (blue * 3 / 255);
        color_array[0] = (new_color >> 16) & 255;
        color_array[1] = (new_color >> 8) & 255;
        color_array[2] = new_color & 255;
    } else if ((vbe_bpl << 3) == 16) {
        uint32_t new_color = (((red & 0b11111000) << 8) + ((green & 0b11111100) << 3) + (blue >> 3));
        color_array[0] = (new_color >> 16) & 255;
        color_array[1] = (new_color >> 8) & 255;
        color_array[2] = new_color & 255;
    } else if ((vbe_bpl << 3) == 24 || (vbe_bpl << 3) == 32) {
        color_array[0] = red;
        color_array[1] = green;
        color_array[2] = blue;
    } else {
        panic("Unknown color bpp!");
    }
}

void vesa_set_pixel(uint16_t x, uint16_t y, const uint32_t color[3]) {
    unsigned pos = x * vbe_bpl + y * vbe_pitch;
    char *draw = (char *) &fb[pos];
    draw[pos] = color[2];
    draw[pos + 1] = color[1];
    draw[pos + 2] = color[0];
}

void vesa_draw_rectangle(int x1, int y1, int x2, int y2, const uint32_t color[3]) {
    int pos1 = x1 * vbe_bpl + y1 * vbe_pitch;
    char *draw = (char *) &fb[pos1];
    for (int i = 0; i <= y2 - y1; i++) {
        for (int j = 0; j <= x2 - x1; j++) {
            draw[vbe_bpl * j] = color[2];
            draw[vbe_bpl * j + 1] = color[1];
            draw[vbe_bpl * j + 2] = color[0];
        }
        draw += vbe_pitch;
    }
}

void vesa_clear() {
    vesa_draw_rectangle(0, 0, vbe_width, vbe_height, terminal_background);
    terminal_x = 0;
    terminal_y = 0;
}

void vesa_draw_char(char ch) {
    if (ch >= ' ') {
        int pos = terminal_x * vbe_bpl + terminal_y * vbe_pitch;
        char *draw = (char *) &fb[pos];
        uint16_t bitmap = 0;

        for (int cy = 0; cy <= font_height; cy++) {
            if (font_height == 16) bitmap = font_16[ch - 32][cy];
            else if (font_height == 24) bitmap = font_24[ch - 32][cy] >> 4;
            else if (font_height == 32) bitmap = font_32[ch - 32][cy];
            for (int cx = 0; cx <= font_width + 1; cx++) {
                if (bitmap & ((1 << font_width) >> cx)) { // Side effect: Smoothness factor!
                    draw[vbe_bpl * cx] = terminal_color[2];
                    draw[vbe_bpl * cx + 1] = terminal_color[1];
                    draw[vbe_bpl * cx + 2] = terminal_color[0];
                } else {
                    draw[vbe_bpl * cx] = terminal_background[2];
                    draw[vbe_bpl * cx + 1] = terminal_background[1];
                    draw[vbe_bpl * cx + 2] = terminal_background[0];
                }
            }
            draw += vbe_pitch;
        }

        terminal_x += font_width + 2;
    } else if (ch == '\n') {
        terminal_x = 0;
        terminal_y += font_height + 2;
    } else if (ch == '\t') {
        terminal_x += 4 * (font_width + 2);
    }

    if (terminal_x >= vbe_width) {
        terminal_x = 0;
        terminal_y += font_height + 2;
    }
}

void vesa_keyboard_char(char ch) {
    vesa_draw_rectangle(terminal_x, terminal_y, terminal_x + font_width, terminal_y + font_height,
                        terminal_background);

    if (ch == 0x08) {
        if (terminal_x != 0) terminal_x -= font_width + 2;
        text[strlen(text) - 1] = '\0';
    } else if (ch == 0x09) {
        terminal_x += 4 * (font_width + 2);
    } else if (ch == '\r') {
        terminal_x = 0;
    } else if (ch == '\n') {
        vesa_draw_char(ch);
        exec_command(text);
        memset(text, 0, sizeof(text));
        // terminal_scroll();
    } else if (ch >= ' ') {
        vesa_draw_char(ch);
        char tmp[2] = {ch};
        strcat(text, tmp);
    }

    // terminal_scroll();
    vesa_draw_rectangle(terminal_x, terminal_y, terminal_x + font_width, terminal_y + font_height,
                        terminal_color);
}

void vesa_draw_string(const char *data) {
    int i = 0;
    while (data[i] != '\0') {
        vesa_draw_char(data[i]);
        i++;
    }
}

void vesa_draw_number(int n) {
    char string[16];
    vesa_draw_string(itoa(n, string));
}

void vesa_set_color(uint32_t color) {
    vesa_convert_color(terminal_color, color);
    vesa_convert_color(terminal_background, default_background_color);
}