banan-os/kernel/arch/i386/VESA.cpp

319 lines
7.4 KiB
C++
Raw Normal View History

#include <kernel/kmalloc.h>
2022-12-15 19:05:07 +02:00
#include <kernel/multiboot.h>
#include <kernel/panic.h>
2022-12-15 19:05:07 +02:00
#include <kernel/Serial.h>
#include <kernel/VESA.h>
#include "font.h"
#include <string.h>
2022-12-15 19:05:07 +02:00
#define MULTIBOOT_FLAGS_FRAMEBUFFER (1 << 12)
#define MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS 1
#define MULTIBOOT_FRAMEBUFFER_TYPE_TEXT 2
2022-12-15 19:05:07 +02:00
extern multiboot_info_t* s_multiboot_info;
extern const struct bitmap_font font;
2022-12-15 19:05:07 +02:00
namespace VESA
{
static void* s_buffer = nullptr;
2022-12-15 19:05:07 +02:00
static void* s_addr = nullptr;
static uint8_t s_bpp = 0;
static uint32_t s_pitch = 0;
2022-12-15 19:05:07 +02:00
static uint32_t s_width = 0;
static uint32_t s_height = 0;
static uint8_t s_mode = 0;
2022-12-16 03:53:55 +02:00
static void GraphicsPutCharAt(uint16_t ch, uint32_t x, uint32_t y, Color fg, Color bg);
2022-12-15 19:05:07 +02:00
static void GraphicsClear(Color color);
static void GraphicsScroll();
2022-12-15 19:05:07 +02:00
2022-12-16 03:53:55 +02:00
static void TextPutCharAt(uint16_t ch, uint32_t x, uint32_t y, Color fg, Color bg);
2022-12-15 19:05:07 +02:00
static void TextClear(Color color);
static void TextScroll();
2022-12-15 19:05:07 +02:00
2022-12-16 03:53:55 +02:00
void PutEntryAt(uint16_t ch, uint32_t x, uint32_t y, Color fg, Color bg)
2022-12-15 19:05:07 +02:00
{
if (x >= s_width)
return;
if (y >= s_height)
return;
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS)
return GraphicsPutCharAt(ch, x, y, fg, bg);
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT)
return TextPutCharAt(ch, x, y, fg, bg);
}
void Clear(Color color)
{
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS)
return GraphicsClear(color);
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT)
return TextClear(color);
}
void Scroll()
2022-12-15 19:05:07 +02:00
{
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS)
return GraphicsScroll();
2022-12-15 19:05:07 +02:00
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT)
return TextScroll();
2022-12-15 19:05:07 +02:00
}
uint32_t GetTerminalWidth()
2022-12-15 19:05:07 +02:00
{
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS)
return s_width / font.Width;
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT)
return s_width;
return 0;
2022-12-15 19:05:07 +02:00
}
uint32_t GetTerminalHeight()
2022-12-15 19:05:07 +02:00
{
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS)
return s_height / font.Height;
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT)
return s_height;
return 0;
2022-12-15 19:05:07 +02:00
}
2022-12-23 15:55:45 +02:00
bool Initialize()
2022-12-15 19:05:07 +02:00
{
if (!(s_multiboot_info->flags & MULTIBOOT_FLAGS_FRAMEBUFFER))
return false;
auto& framebuffer = s_multiboot_info->framebuffer;
s_addr = (void*)framebuffer.addr;
s_bpp = framebuffer.bpp;
s_pitch = framebuffer.pitch;
2022-12-15 19:05:07 +02:00
s_width = framebuffer.width;
s_height = framebuffer.height;
s_mode = framebuffer.type;
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_GRAPHICS)
{
if (s_bpp != 24 && s_bpp != 32)
{
dprintln("Unsupported bpp {}", s_bpp);
return false;
}
2022-12-15 19:05:07 +02:00
GraphicsClear(Color::BLACK);
return true;
2022-12-15 19:05:07 +02:00
}
if (s_mode == MULTIBOOT_FRAMEBUFFER_TYPE_TEXT)
{
TextClear(Color::BLACK);
return true;
}
dprintln("Unsupported type for VESA framebuffer");
return false;
}
static uint32_t s_graphics_colors[]
2022-12-15 19:05:07 +02:00
{
0x00'00'00'00,
0x00'00'00'AA,
0x00'00'AA'00,
0x00'00'AA'AA,
0x00'AA'00'00,
0x00'AA'00'AA,
0x00'AA'55'00,
0x00'AA'AA'AA,
0x00'55'55'55,
0x00'55'55'FF,
0x00'55'FF'55,
0x00'55'FF'FF,
0x00'FF'55'55,
0x00'FF'55'FF,
0x00'FF'FF'55,
0x00'FF'FF'FF,
};
2022-12-15 19:05:07 +02:00
static void GraphicsSetPixel(uint32_t offset, uint32_t color)
{
uint32_t* address = (uint32_t*)((uint32_t)s_addr + offset);
if (s_buffer)
{
uint32_t* buffer = (uint32_t*)((uint32_t)s_buffer + offset);
switch (s_bpp)
{
case 24:
*buffer = (*buffer & 0xFF000000) | (color & 0x00FFFFFF);
*address = *buffer;
break;
case 32:
*buffer = color;
*address = color;
break;
}
}
else
2022-12-16 03:53:55 +02:00
{
switch (s_bpp)
{
case 24:
*address = (*address & 0xFF000000) | (color & 0x00FFFFFF);
break;
case 32:
*address = color;
break;
}
2022-12-16 03:53:55 +02:00
}
}
2022-12-15 19:05:07 +02:00
2022-12-16 03:53:55 +02:00
static void GraphicsPutCharAt(uint16_t ch, uint32_t x, uint32_t y, Color fg, Color bg)
2022-12-15 19:05:07 +02:00
{
// find correct bitmap
uint32_t index = 0;
for (uint32_t i = 0; i < font.Chars; i++)
{
if (font.Index[i] == ch)
{
index = i;
break;
}
}
const unsigned char* glyph = font.Bitmap + index * font.Height;
2022-12-15 19:05:07 +02:00
uint32_t u32_fg = s_graphics_colors[(uint8_t)fg];
uint32_t u32_bg = s_graphics_colors[(uint8_t)bg];
2022-12-16 03:53:55 +02:00
uint32_t fx = x * font.Width;
uint32_t fy = y * font.Height;
uint32_t row_offset = (fy * s_pitch) + (fx * (s_bpp / 8));
2022-12-16 03:53:55 +02:00
for (uint32_t gy = 0; gy < font.Height; gy++)
{
if (fy + gy >= s_height) break;
uint32_t pixel_offset = row_offset;
2022-12-16 03:53:55 +02:00
for (uint32_t gx = 0; gx < font.Width; gx++)
{
if (fx + gx >= s_width) break;
GraphicsSetPixel(pixel_offset, (glyph[gy] & (1 << (font.Width - gx - 1))) ? u32_fg : u32_bg);
pixel_offset += s_bpp / 8;
2022-12-16 03:53:55 +02:00
}
row_offset += s_pitch;
2022-12-16 03:53:55 +02:00
}
2022-12-15 19:05:07 +02:00
}
static void GraphicsClear(Color color)
2022-12-15 19:05:07 +02:00
{
uint32_t u32_color = s_graphics_colors[(uint8_t)color];
2022-12-16 03:53:55 +02:00
if (s_bpp == 32)
{
2022-12-23 15:55:45 +02:00
uint32_t bytes_per_row = s_pitch / 4;
for (uint32_t y = 0; y < s_height; y++)
for (uint32_t x = 0; x < s_width; x++)
((uint32_t*)s_addr)[y * bytes_per_row + x] = u32_color;
if (s_buffer)
for (uint32_t y = 0; y < s_height; y++)
for (uint32_t x = 0; x < s_width; x++)
((uint32_t*)s_buffer)[y * bytes_per_row + x] = u32_color;
return;
}
uint32_t row_offset = 0;
for (uint32_t y = 0; y < s_height; y++)
2022-12-16 03:53:55 +02:00
{
uint32_t pixel_offset = row_offset;
for (uint32_t x = 0; x < s_width; x++)
2022-12-16 03:53:55 +02:00
{
GraphicsSetPixel(pixel_offset, u32_color);
pixel_offset += s_bpp / 8;
2022-12-16 03:53:55 +02:00
}
row_offset += s_pitch;
2022-12-16 03:53:55 +02:00
}
2022-12-15 19:05:07 +02:00
}
static void GraphicsScroll()
{
if (s_bpp == 32)
{
2022-12-23 15:55:45 +02:00
uint32_t bytes_per_row = s_pitch / 4;
for (uint32_t y = 0; y < s_height - font.Height; y++)
{
for (uint32_t x = 0; x < s_width; x++)
{
if (s_buffer)
{
((uint32_t*)s_buffer)[y * bytes_per_row + x] = ((uint32_t*)s_buffer)[(y + font.Height) * bytes_per_row + x];
((uint32_t*)s_addr )[y * bytes_per_row + x] = ((uint32_t*)s_buffer)[(y + font.Height) * bytes_per_row + x];
}
else
{
((uint32_t*)s_addr )[y * bytes_per_row + x] = ((uint32_t*)s_addr )[(y + font.Height) * bytes_per_row + x];
}
}
}
2022-12-16 03:53:55 +02:00
return;
}
2022-12-16 03:53:55 +02:00
uint32_t row_offset_out = 0;
uint32_t row_offset_in = font.Height * s_pitch;
2022-12-16 03:53:55 +02:00
for (uint32_t y = 0; y < s_height - 1; y++)
2022-12-16 03:53:55 +02:00
{
if (s_buffer)
{
memcpy((void*)((uint32_t)s_buffer + row_offset_out), (void*)((uint32_t)s_buffer + row_offset_in), s_width * s_bpp);
memcpy((void*)((uint32_t)s_addr + row_offset_out), (void*)((uint32_t)s_buffer + row_offset_in), s_width * s_bpp);
}
else
2022-12-16 03:53:55 +02:00
{
memcpy((void*)((uint32_t)s_addr + row_offset_out), (void*)((uint32_t)s_addr + row_offset_in), s_width * s_bpp);
2022-12-16 03:53:55 +02:00
}
row_offset_out += s_pitch;
row_offset_in += s_pitch;
2022-12-16 03:53:55 +02:00
}
}
2022-12-15 19:05:07 +02:00
static inline uint8_t TextColor(Color fg, Color bg)
{
return (((uint8_t)bg & 0x0F) << 4) | ((uint8_t)fg & 0x0F);
2022-12-15 19:05:07 +02:00
}
static inline uint16_t TextEntry(uint8_t ch, uint8_t color)
{
return ((uint16_t)color << 8) | ch;
}
2022-12-16 03:53:55 +02:00
static void TextPutCharAt(uint16_t ch, uint32_t x, uint32_t y, Color fg, Color bg)
2022-12-15 19:05:07 +02:00
{
uint32_t index = y * s_width + x;
((uint16_t*)s_addr)[index] = TextEntry(ch, TextColor(fg, bg));
2022-12-15 19:05:07 +02:00
}
static void TextClear(Color color)
{
for (uint32_t y = 0; y < s_height; y++)
for (uint32_t x = 0; x < s_width; x++)
TextPutCharAt(' ', x, y, Color::BRIGHT_WHITE, color);
2022-12-15 19:05:07 +02:00
}
static void TextScroll()
2022-12-15 19:05:07 +02:00
{
for (uint32_t y = 1; y < s_height; y++)
2022-12-15 19:05:07 +02:00
{
for (uint32_t x = 0; x < s_width; x++)
{
uint32_t index1 = (y - 0) * s_width + x;
uint32_t index2 = (y - 1) * s_width + x;
((uint16_t*)s_addr)[index2] = ((uint16_t*)s_addr)[index1];
}
2022-12-15 19:05:07 +02:00
}
}
}