Kernel/x86 - Hacky multiboot->VESA hook
authorJohn Hodge <[email protected]>
Sat, 21 Dec 2013 07:36:52 +0000 (15:36 +0800)
committerJohn Hodge <[email protected]>
Sat, 21 Dec 2013 07:36:52 +0000 (15:36 +0800)
KernelLand/Kernel/arch/x86/main.c
KernelLand/Kernel/arch/x86/start.asm

index 8b85d06..822bf70 100644 (file)
@@ -23,6 +23,8 @@ extern void   MM_Install(int NPMemRanges, tPMemMapEnt *PMemRanges);
 extern void    MM_InstallVirtual(void);
 extern int     Time_Setup(void);
 extern int     ACPICA_Initialise(void);
+// - Modules/Display/VESA
+extern void    VBE_int_SetBootMode(Uint16 ModeID, const void *ModeInfo);
 
 // === PROTOTYPES ===
  int   kmain(Uint MbMagic, void *MbInfoPtr);
@@ -50,13 +52,26 @@ int kmain(Uint MbMagic, void *MbInfoPtr)
        // Multiboot 1
        case MULTIBOOT_MAGIC: {
                // TODO: Handle when this isn't in the mapped area
+               ASSERT( mbInfo->CommandLine < 4*1024*1024 );
                gsBootCmdLine = (char*)(mbInfo->CommandLine + KERNEL_BASE);
 
                // Adjust Multiboot structure address
                mbInfo = (void*)( (tVAddr)MbInfoPtr + KERNEL_BASE );
 
+               // Parse memory map
+               // - mbInfo->Flags is checked in this function
                nPMemMapEnts = Multiboot_LoadMemoryMap(mbInfo, KERNEL_BASE, pmemmap, MAX_PMEMMAP_ENTS,
                        KERNEL_LOAD, (tVAddr)&gKernelEnd - KERNEL_BASE);
+               
+               
+               // Get video mode
+               Debug("mbInfo->Flags = 0x%x", mbInfo->Flags);
+               if( mbInfo->Flags & (1 << 11) )
+               {
+                       // TODO: Ensure address is in mapped area
+                       ASSERT( mbInfo->vbe_mode_info < 4*1024*1024 );
+                       VBE_int_SetBootMode(mbInfo->vbe_mode, (void*)(mbInfo->vbe_mode_info + KERNEL_BASE));
+               }
 
                break; }
        
index 649c221..18b9f5f 100644 (file)
@@ -30,10 +30,10 @@ mboot:
        dd 0    ; bss_end_addr
        dd 0    ; entry_addr
        
-;      dd 0    ; Mode type (0: LFB)
-;      dd 1024 ; Width
-;      dd 768  ; Height
-;      dd 0    ; Depth (no preference)
+       dd 0    ; Mode type (0: LFB)
+       dd 0    ; Width (no preference)
+       dd 0    ; Height (no preference)
+       dd 32   ; Depth (32-bit preferred)
        
 ; Multiboot 2 Header
 ;mboot2:

UCC git Repository :: git.ucc.asn.au