12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #include "video.h"
- #include <mm/mm.h>
- #include <common/printk.h>
- #include <driver/multiboot2/multiboot2.h>
- #include <driver/timers/timer.h>
- #include <common/kprint.h>
- #include <mm/mm.h>
- #include <mm/slab.h>
- #define REFRESH_INTERVAL 15
- ul VBE_FB_phys_addr;
- struct screen_info_t
- {
- int width, height;
- uint64_t length;
- uint64_t fb_vaddr, fb_paddr;
- uint64_t double_fb_vaddr;
- } sc_info;
- void init_frame_buffer(bool level)
- {
- kinfo("Re-mapping VBE frame buffer...");
- uint64_t global_CR3 = (uint64_t)get_CR3();
- if (level == false)
- {
- struct multiboot_tag_framebuffer_info_t info;
- int reserved;
- multiboot2_iter(multiboot2_get_Framebuffer_info, &info, &reserved);
- sc_info.fb_vaddr = SPECIAL_MEMOEY_MAPPING_VIRT_ADDR_BASE + FRAME_BUFFER_MAPPING_OFFSET;
- sc_info.fb_paddr = info.framebuffer_addr;
- sc_info.width = info.framebuffer_width;
- sc_info.height = info.framebuffer_height;
- sc_info.length = 1UL * sc_info.width * sc_info.height;
- mm_map_proc_page_table(global_CR3, true, sc_info.fb_vaddr, sc_info.fb_paddr, get_VBE_FB_length() << 2, PAGE_KERNEL_PAGE | PAGE_PWT | PAGE_PCD, false);
- set_pos_VBE_FB_addr((uint *)sc_info.fb_vaddr);
- }
- else
- {
-
- struct Page *p = alloc_pages(ZONE_NORMAL, PAGE_2M_ALIGN(sc_info.length << 2) / PAGE_2M_SIZE, 0);
- sc_info.double_fb_vaddr = (uint64_t)phys_2_virt(p->addr_phys);
- mm_map_proc_page_table(global_CR3, true, sc_info.double_fb_vaddr, p->addr_phys, PAGE_2M_ALIGN(sc_info.length << 2), PAGE_KERNEL_PAGE, false);
-
- memcpy((void *)sc_info.double_fb_vaddr, (void *)sc_info.fb_vaddr, sc_info.length << 2);
- set_pos_VBE_FB_addr((uint *)sc_info.double_fb_vaddr);
- }
- flush_tlb();
- kinfo("VBE frame buffer successfully Re-mapped!");
- }
- static void video_refresh_framebuffer()
- {
- memcpy((void *)sc_info.fb_vaddr, (void *)sc_info.double_fb_vaddr, (sc_info.length << 2));
-
- struct timer_func_list_t *tmp = (struct timer_func_list_t *)kmalloc(sizeof(struct timer_func_list_t), 0);
- timer_func_init(tmp, &video_refresh_framebuffer, NULL, REFRESH_INTERVAL);
- timer_func_add(tmp);
- }
- int video_init(bool level)
- {
- init_frame_buffer(level);
- if (level)
- {
-
-
-
- struct timer_func_list_t *tmp = (struct timer_func_list_t *)kmalloc(sizeof(struct timer_func_list_t), 0);
- timer_func_init(tmp, &video_refresh_framebuffer, NULL, REFRESH_INTERVAL);
- timer_func_add(tmp);
- }
- }
|