8 #include <multiboot2.h>
15 #define MAX_ARGSTR_POS (0x400000-0x2000)
18 extern void Heap_Install(void);
19 extern void Desctab_Install(void);
20 extern void MM_PreinitVirtual(void);
21 extern void MM_Install(tMBoot_Info *MBoot);
22 extern void MM_InstallVirtual(void);
23 extern void Threads_Init(void);
24 extern int Time_Setup(void);
26 extern void System_Init(char *Commandline);
29 int kmain(Uint MbMagic, void *MbInfoPtr);
32 char *gsBootCmdLine = NULL;
38 } *gaArch_BootModules;
39 int giArch_NumBootModules = 0;
42 int kmain(Uint MbMagic, void *MbInfoPtr)
48 LogF("Acess2 x86-"PLATFORM" v"EXPAND_STR(KERNEL_VERSION)"\r\n");
49 LogF(" Build %i, Git Hash %s\r\n", BUILD_NUM, gsGitHash);
51 Log("MbMagic = %08x, MbInfoPtr = %p", MbMagic, MbInfoPtr);
53 // Set up non-boot info dependent stuff
54 Desctab_Install(); // Set up GDT and IDT
55 MM_PreinitVirtual(); // Initialise virtual mappings
61 // Adjust Multiboot structure address
62 mbInfo = (void*)( (Uint)MbInfoPtr + KERNEL_BASE );
63 gsBootCmdLine = (char*)(mbInfo->CommandLine + KERNEL_BASE);
65 MM_Install( mbInfo ); // Set up physical memory manager
69 case MULTIBOOT2_MAGIC:
70 Panic("Multiboot 2 not yet supported");
71 //MM_InstallMBoot2( MbInfo ); // Set up physical memory manager
76 Panic("Multiboot magic invalid %08x, expected %08x or %08x\n",
77 MbMagic, MULTIBOOT_MAGIC, MULTIBOOT2_MAGIC);
81 MM_InstallVirtual(); // Clean up virtual address space
82 Heap_Install(); // Create initial heap
90 Log_Log("Arch", "Starting VFS...");
91 // Load Virtual Filesystem
94 // Load initial modules
95 mods = (void*)( mbInfo->Modules + KERNEL_BASE );
96 giArch_NumBootModules = mbInfo->ModuleCount;
97 gaArch_BootModules = malloc( giArch_NumBootModules * sizeof(*gaArch_BootModules) );
98 for( i = 0; i < mbInfo->ModuleCount; i ++ )
102 Log_Log("Arch", "Multiboot Module at 0x%08x, 0x%08x bytes (String at 0x%08x)",
103 mods[i].Start, mods[i].End-mods[i].Start, mods[i].String);
105 gaArch_BootModules[i].PBase = mods[i].Start;
106 gaArch_BootModules[i].Size = mods[i].End - mods[i].Start;
108 // Always HW map the module data
109 ofs = mods[i].Start&0xFFF;
110 gaArch_BootModules[i].Base = (void*)( MM_MapHWPages(mods[i].Start,
111 (gaArch_BootModules[i].Size+ofs+0xFFF) / 0x1000
114 // Only map the string if needed
115 if( (tVAddr)mods[i].String > MAX_ARGSTR_POS )
117 // Assumes the string is < 4096 bytes long)
118 gaArch_BootModules[i].ArgString = (void*)(
119 MM_MapHWPages(mods[i].String, 2) + (mods[i].String&0xFFF)
123 gaArch_BootModules[i].ArgString = (char *)mods[i].String + KERNEL_BASE;
126 // Pass on to Independent Loader
127 Log_Log("Arch", "Starting system");
128 System_Init(gsBootCmdLine);
130 // Sleep forever (sleeping beauty)
136 void Arch_LoadBootModules(void)
139 for( i = 0; i < giArch_NumBootModules; i ++ )
141 Log_Log("Arch", "Loading '%s'", gaArch_BootModules[i].ArgString);
143 if( !Module_LoadMem( gaArch_BootModules[i].Base, gaArch_BootModules[i].Size, gaArch_BootModules[i].ArgString ) )
145 Log_Warning("Arch", "Unable to load module");
149 numPages = (gaArch_BootModules[i].Size + ((Uint)gaArch_BootModules[i].Base&0xFFF) + 0xFFF) >> 12;
150 MM_UnmapHWPages( (tVAddr)gaArch_BootModules[i].Base, numPages );
152 for( j = 0; j < numPages; j++ )
153 MM_DerefPhys( gaArch_BootModules[i].PBase + (j << 12) );
155 if( (tVAddr) gaArch_BootModules[i].ArgString > MAX_ARGSTR_POS )
156 MM_UnmapHWPages( (tVAddr)gaArch_BootModules[i].ArgString, 2 );
158 Log_Log("Arch", "Boot modules loaded");
159 free( gaArch_BootModules );