aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics
diff options
context:
space:
mode:
authorMarvin Borner2019-09-30 22:41:39 +0200
committerMarvin Borner2019-09-30 22:42:02 +0200
commit682c47a98844ffec3f3129160e9cdb98ba129989 (patch)
treee673ace5ef65c83907cbd6575ec3a1a7e49b0fd6 /src/kernel/graphics
parent2fb0965a68dd232a70d1616bfbd7281fc65c2b0a (diff)
Added paging and fixed several bugs
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r--src/kernel/graphics/vesa.c21
-rw-r--r--src/kernel/graphics/vesa.h4
2 files changed, 13 insertions, 12 deletions
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c
index f6bdba0..32bc0e9 100644
--- a/src/kernel/graphics/vesa.c
+++ b/src/kernel/graphics/vesa.c
@@ -2,6 +2,7 @@
#include "graphics.h"
#include "../input/input.h"
#include "../system.h"
+#include "../paging/kheap.h"
void switch_to_vga() {
regs16_t regs;
@@ -56,15 +57,11 @@ struct vbe_mode_info *vbe_set_mode(unsigned short mode) {
}
void set_optimal_resolution() {
- init();
- terminal_write_string("SUCCESS!\n");
- keyboard_install();
-
struct vbe_info *info;
struct vbe_mode_info *mode_info;
- // info = lmalloc(sizeof(struct vbe_info));
- // mode_info = lmalloc(sizeof(struct vbe_mode_info));
+ info = kmalloc(sizeof(struct vbe_info));
+ mode_info = kmalloc(sizeof(struct vbe_mode_info));
info->signature[0] = 'V';
info->signature[1] = 'B';
@@ -83,7 +80,8 @@ void set_optimal_resolution() {
uint16_t *mode_ptr = get_ptr(info->video_modes);
uint16_t mode;
- struct vbe_mode_info *highest;
+ uint16_t highest = 0x11B;
+ uint16_t highest_height = 0;
while ((mode = *mode_ptr++) != 0xFFFF) {
mode &= 0x1FF;
regs16_t regs2;
@@ -94,12 +92,15 @@ void set_optimal_resolution() {
int32(0x10, &regs2);
if ((mode_info->attributes & 0x90) != 0x90) continue;
- if (mode_info->height >= highest->height) {
- highest = mode_info;
+ if (mode_info->height >= highest_height) {
+ highest = mode;
+ highest_height = mode_info->height;
}
}
- // lfree(info);
+ vbe_set_mode(0x11B);
+
+ kfree(info);
/*if (strcmp((const char *) info->version, (const char *) 0x300) == 0) {
init();
diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h
index 33272f8..eff74ea 100644
--- a/src/kernel/graphics/vesa.h
+++ b/src/kernel/graphics/vesa.h
@@ -11,9 +11,9 @@
struct vbe_info {
char signature[4];
uint32_t version;
- far_ptr_t oem;
+ struct far_ptr oem;
uint32_t capabilities;
- far_ptr_t video_modes;
+ struct far_ptr video_modes;
uint32_t video_memory;
uint32_t software_rev;
uint32_t vendor;