From 4546c75d685475d8b9f215b588364e1d1bbd0b79 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 29 Apr 2020 19:21:29 +0200 Subject: MUCH work in libc Also cleaned up some syscalls etc --- src/kernel/graphics/vesa.c | 36 ++++++++---------------------------- 1 file changed, 8 insertions(+), 28 deletions(-) (limited to 'src/kernel/graphics/vesa.c') diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index b92f171..8213c12 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -6,32 +6,11 @@ #include #include -void switch_to_vga() +void vbe_error() { - log("Force switch to VGA!"); - 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 *edid; + log("Error in VESA detection script!"); + warn(RED "Melvix can't work without VESA Support!" RES); + halt_loop(); } void vbe_set_mode(unsigned short mode) @@ -43,7 +22,7 @@ void vbe_set_mode(unsigned short mode) v86(0x10, ®s); if (regs.ax != 0x004F) - switch_to_vga(); + vbe_error(); } uint16_t *vbe_get_modes() @@ -62,7 +41,7 @@ uint16_t *vbe_get_modes() struct vbe_info *info = (struct vbe_info *)info_address; if (regs.ax != 0x004F || strcmp(info->signature, "VESA") != 0) - switch_to_vga(); + vbe_error(); // Get number of modes uint16_t *mode_ptr = (uint16_t *)info->video_modes; @@ -178,7 +157,7 @@ void set_optimal_resolution() // Everything else failed :( if (highest == 0) - switch_to_vga(); + vbe_error(); } else { log("Mode detection succeeded"); } @@ -248,6 +227,7 @@ void vesa_draw_rectangle(int x1, int y1, int x2, int y2, const uint32_t color[3] void vesa_clear() { + log("%dx%dx%d at %x", vbe_width, vbe_height, vbe_bpl << 3, fb); vesa_draw_rectangle(0, 0, vbe_width - 1, vbe_height - 1, terminal_background); terminal_x = 0; terminal_y = 0; -- cgit v1.2.3