#include #include #include #include #include #include #include #include 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; v86(0x10, ®s); 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; v86(0x10, ®s); 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; v86(0x10, ®s); 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++; uint16_t *ret = kmalloc(sizeof(uint16_t) * number_modes); for (size_t i = 0; i < number_modes; i++) ret[i] = ((uint16_t *) info->video_modes)[i]; 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; v86(0x10, ®s); if (regs.ax != 0x004f) return 0; struct vbe_mode_info_all *mode_info = (struct vbe_mode_info_all *) 0x7E00; struct vbe_mode_info *ret = (struct vbe_mode_info *) kmalloc(sizeof(struct vbe_mode_info)); ret->attributes = mode_info->attributes; ret->pitch = mode_info->pitch; ret->width = mode_info->width; ret->height = mode_info->height; ret->bpp = mode_info->bpp; ret->memory_model = mode_info->memory_model; ret->framebuffer = mode_info->framebuffer; return ret; } void set_optimal_resolution() { asm volatile ("sti"); 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)) { kfree(mode_info); 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; } kfree(mode_info); } kfree(video_modes); 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)) { kfree(mode_info); 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; } kfree(mode_info); } // Everything else failed :( if (highest == 0) switch_to_vga(); } else vga_log("Mode detection succeeded", 11); vbe_set_mode(highest); 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); 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); } 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 - 1, vbe_height - 1, 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) { vesa_draw_string(itoa(n)); } char *prev = 0; int prev_coords[2] = {}; void vesa_draw_cursor(int x, int y) { // Reset previous area if (prev != 0) { char *reset = (char *) &fb[prev_coords[0] * vbe_bpl + prev_coords[1] * vbe_pitch]; for (int cy = 0; cy <= 19; cy++) { for (int cx = 0; cx <= 12; cx++) { reset[vbe_bpl * cx] = prev[vbe_bpl * cx]; reset[vbe_bpl * cx + 1] = prev[vbe_bpl * cx + 1]; reset[vbe_bpl * cx + 2] = prev[vbe_bpl * cx + 2]; } reset += vbe_pitch; } kfree(prev); } prev = kmalloc(19 * 12 * vbe_bpl); // Draw cursor char *draw = (char *) &fb[x * vbe_bpl + y * vbe_pitch]; prev_coords[0] = x; prev_coords[1] = y; for (int cy = 0; cy <= 19; cy++) { for (int cx = 0; cx <= 12; cx++) { // Performance issue? prev[vbe_bpl * cx] = draw[vbe_bpl * cx]; prev[vbe_bpl * cx + 1] = draw[vbe_bpl * cx + 1]; prev[vbe_bpl * cx + 2] = draw[vbe_bpl * cx + 2]; if (cursor[cy] & ((1 << 12) >> cx)) { 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; } } void vesa_set_color(uint32_t color) { vesa_convert_color(terminal_color, color); vesa_convert_color(terminal_background, default_background_color); }