[fb] Create fb driver

Create a new framebuffer driver. Also hackily passing frame buffer size
in the list of init handles to all processes and mapping the framebuffer
into all processes. Changed bootloader passing frame buffer as a module
to its own struct.
This commit is contained in:
2020-12-27 18:49:38 -08:00
committed by Justin C. Miller
parent e70eb5a926
commit 19cbf1ca67
15 changed files with 170 additions and 71 deletions

View File

@@ -28,6 +28,8 @@ enum class vm_flags : uint32_t
large_pages = 0x00000100,
huge_pages = 0x00000200,
mmio = 0x00010000,
user_mask = 0x0000ffff ///< flags allowed via syscall
};