Add fbdev for getting framebuffer information

This commit is contained in:
2025-10-05 15:56:16 +02:00
parent 933083ffeb
commit 247ef1bbd1
4 changed files with 46 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include "termdev.h"
#include "ps2kbdev.h"
#include "serialdev.h"
#include "fbdev.h"
DevTable DEVTABLE;
@ -17,4 +18,5 @@ void dev_init(void) {
termdev_init();
ps2kbdev_init();
serialdev_init();
fbdev_init();
}

29
kernel/dev/fbdev.c Normal file
View File

@ -0,0 +1,29 @@
#include <stdint.h>
#include <stddef.h>
#include "fbdev.h"
#include "dev.h"
#include "sysdefs/devctl.h"
#include "hshtb.h"
#include "spinlock/spinlock.h"
#include "util/util.h"
#include "hal/hal.h"
#include "bootinfo/bootinfo.h"
#include "errors.h"
int32_t fbdev_getinfo(uint8_t *buffer, size_t len, void *extra) {
FbDevGetInfo info = {
.w = BOOT_INFO.fb->width,
.h = BOOT_INFO.fb->height,
.margin = 20,
.fontw = 8,
.fonth = 16,
};
hal_memcpy(buffer, &info, sizeof(info));
return E_OK;
}
void fbdev_init(void) {
Dev *fbdev;
HSHTB_ALLOC(DEVTABLE.devs, ident, "fbdev", fbdev);
fbdev->fns[DEV_FBDEV_GETINFO] = &fbdev_getinfo;
}

7
kernel/dev/fbdev.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef DEV_FBDEV_H_
#define DEV_FBDEV_H_
int32_t fbdev_getinfo(uint8_t *buffer, size_t len, void *extra);
void fbdev_init(void);
#endif // DEV_FBDEV_H_