diff options
author | Marvin Borner | 2019-10-16 18:45:24 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-16 18:45:24 +0200 |
commit | df44843bdf2c8bc5a784541511f0473a58547c79 (patch) | |
tree | cccaaf2776f99e98b788b48279e2eb146154c3eb /src/kernel/graphics/vesa.h | |
parent | 2e988c84fc9b282e7618ba89a5c3b2ef9406121e (diff) |
Added some VGA fallback features
Diffstat (limited to 'src/kernel/graphics/vesa.h')
-rw-r--r-- | src/kernel/graphics/vesa.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index 4c78219..f58dcf4 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -99,11 +99,9 @@ struct vbe_mode_info_all { */ struct vbe_mode_info { uint16_t attributes; - uint16_t pitch; uint16_t width; uint16_t height; uint8_t bpp; - uint8_t memory_model; uint32_t framebuffer; } __attribute__ ((packed)); @@ -114,6 +112,12 @@ struct vbe_mode_info { */ struct edid_data get_edid(); + +/** + * Forces switch to VGA, displays an error and halts the CPU + */ +void switch_to_vga(); + /** * Set the video mode to a specified resolution using * a video mode code @@ -149,18 +153,13 @@ int vbe_width; int vbe_height; /** - * The bits per pixel (pixel width) of the current video mode + * The bytes per pixel (pixel width) of the current video mode */ int vbe_bpp; /** - * The pitch (bytes per line) of the current video mode - */ -int vbe_pitch; - -/** * The framebuffer interface */ -char *fb; +uint32_t fb; #endif |