diff options
author | Marvin Borner | 2019-11-01 01:42:55 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-01 01:42:55 +0100 |
commit | c0fc7e35191ca9edf13958e12c4eb79e5c49e21c (patch) | |
tree | fc3ff586b53b21a1f2c68d1cd2d12800c9ac97c8 /src/kernel/graphics | |
parent | ae3b264c17e25325fb91831494f459bd6b1c4b7a (diff) |
Tried implementing better logging system
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r-- | src/kernel/graphics/vesa.c | 20 | ||||
-rw-r--r-- | src/kernel/graphics/vesa.h | 3 |
2 files changed, 13 insertions, 10 deletions
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index ba8d84b..1cc508f 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -18,18 +18,20 @@ void switch_to_vga() { } struct edid_data get_edid() { - struct edid_data *edid = (struct edid_data *) kmalloc(sizeof(struct edid_data)); - regs16_t regs; regs.ax = 0x4F15; - regs.bx = 0x01; // BL + regs.bx = 0x1; // BL regs.es = 0; - regs.di = (uintptr_t) &edid; + regs.di = 0x7E00; paging_disable(); int32(0x10, ®s); paging_enable(); - kfree(edid); + if ((regs.ax & 0xFF) != 0x4F) { + warn("No EDID available!"); + } + + struct edid_data *edid = (struct edid_data *) 0x7E00; return *(struct edid_data *) edid; } @@ -167,10 +169,10 @@ void set_optimal_resolution() { switch_to_vga(); } else vga_log("Mode detection succeeded", 11); - // timer_wait(500); - vbe_set_mode(highest); + vesa_draw_string(vga_buffer); + if (vbe_height > 1440) vesa_set_font(32); else if (vbe_height > 720) vesa_set_font(24); else vesa_set_font(16); @@ -198,8 +200,8 @@ 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 = 1; -uint16_t terminal_y = 1; +uint16_t terminal_x = 0; +uint16_t terminal_y = 0; int font_width; int font_height; diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index 3fcef24..8a16516 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -17,7 +17,7 @@ struct edid_data { uint8_t max_horizontal_size; uint8_t max_vertical_size; uint8_t gamma_factor; - uint8_t dpms_flags; + uint8_t dpms_flags; // power management features uint8_t chroma_information[10]; uint8_t timings_1; uint8_t timings_2; @@ -160,6 +160,7 @@ void vesa_set_color(uint32_t color); /** * An enum with vesa colors + * From https://github.com/joshdick/onedark.vim/ License: MIT */ enum vesa_color { vesa_black = 0x1d1f24, |