a855a47434edd6982a1937b38d7f21defc37ae84
[tpg/acess2.git] / KernelLand / Kernel / arch / x86_64 / main.c
1 /*
2  * Acess2 Kernel x86_64
3  * - By John Hodge (thePowersGang)
4  *
5  * main.c
6  * - Kernel C entrypoint
7  */
8 #include <acess.h>
9 #include <mboot.h>
10 #include <init.h>
11 #include <archinit.h>
12 #include <pmemmap.h>
13
14 // === CONSTANTS ===
15 #define KERNEL_LOAD     0x100000
16 #define MAX_PMEMMAP_ENTS        16
17 #define MAX_ARGSTR_POS  (0x200000-0x2000)
18
19 // === IMPORTS ===
20 extern void     Desctab_Init(void);
21 extern void     MM_InitVirt(void);
22 extern void     Heap_Install(void);
23 extern int      Time_Setup(void);
24
25 extern char     gKernelEnd[];
26
27 // === PROTOTYPES ===
28 void    kmain(Uint MbMagic, void *MbInfoPtr);
29
30 // === GLOBALS ==
31 char    *gsBootCmdLine = NULL;
32 tBootModule     *gaArch_BootModules;
33  int    giArch_NumBootModules = 0;
34
35 // === CODE ===
36 void kmain(Uint MbMagic, void *MbInfoPtr)
37 {
38         tMBoot_Info     *mbInfo;
39         tPMemMapEnt     pmemmap[MAX_PMEMMAP_ENTS];
40          int    nPMemMapEnts;
41
42         LogF("%s\r\n", gsBuildInfo);
43         
44         Desctab_Init();
45
46         MM_InitVirt();
47         *(Uint16*)(KERNEL_BASE|0xB8000) = 0x1F00|'C';
48         
49         switch(MbMagic)
50         {
51         // Multiboot 1
52         case MULTIBOOT_MAGIC:
53                 // Adjust Multiboot structure address
54                 mbInfo = (void*)( (Uint)MbInfoPtr + KERNEL_BASE );
55                 gsBootCmdLine = (char*)( (Uint)mbInfo->CommandLine + KERNEL_BASE);
56                 // TODO: ref above?
57                 nPMemMapEnts = Multiboot_LoadMemoryMap(mbInfo, KERNEL_BASE, pmemmap, MAX_PMEMMAP_ENTS,
58                         KERNEL_LOAD, (tVAddr)&gKernelEnd - KERNEL_BASE
59                         );
60                 break;
61         default:
62                 Panic("Multiboot magic invalid %08x, expected %08x\n",
63                         MbMagic, MULTIBOOT_MAGIC);
64                 return ;
65         }
66         
67         MM_InitPhys( nPMemMapEnts, pmemmap );   // Set up physical memory manager
68         Log("gsBootCmdLine = '%s'", gsBootCmdLine);
69         
70         switch(MbMagic)
71         {
72         case MULTIBOOT_MAGIC:
73                 MM_RefPhys( mbInfo->CommandLine );
74                 break;
75         }
76
77         *(Uint16*)(KERNEL_BASE|0xB8000) = 0x1F00|'D';
78         Heap_Install();
79         
80         *(Uint16*)(KERNEL_BASE|0xB8000) = 0x1F00|'E';
81         Threads_Init();
82         
83         Time_Setup();
84         *(Uint16*)(KERNEL_BASE|0xB8000) = 0x1F00|'F';
85         
86         // Load Virtual Filesystem
87         Log_Log("Arch", "Starting VFS...");
88         VFS_Init();
89         
90         gaArch_BootModules = Multiboot_LoadModules(mbInfo, KERNEL_BASE, &giArch_NumBootModules);
91         
92         *(Uint16*)(KERNEL_BASE|0xB8000) = 0x1F00|'Z';
93         
94         // Pass on to Independent Loader
95         Log_Log("Arch", "Starting system");
96         System_Init(gsBootCmdLine);
97         
98         // Sleep forever (sleeping beauty)
99         for(;;)
100                 Threads_Sleep();
101 }
102
103 void Arch_LoadBootModules(void)
104 {
105          int    i, j, numPages;
106         Log("gsBootCmdLine = '%s'", gsBootCmdLine);
107         for( i = 0; i < giArch_NumBootModules; i ++ )
108         {
109                 Log_Log("Arch", "Loading '%s'", gaArch_BootModules[i].ArgString);
110                 
111                 if( !Module_LoadMem( gaArch_BootModules[i].Base,
112                         gaArch_BootModules[i].Size, gaArch_BootModules[i].ArgString
113                         ) )
114                 {
115                         Log_Warning("Arch", "Unable to load module");
116                 }
117                 
118                 // Unmap and free
119                 numPages = (gaArch_BootModules[i].Size + ((Uint)gaArch_BootModules[i].Base&0xFFF) + 0xFFF) >> 12;
120                 MM_UnmapHWPages( (tVAddr)gaArch_BootModules[i].Base, numPages );
121                 
122                 for( j = 0; j < numPages; j++ )
123                         MM_DerefPhys( gaArch_BootModules[i].PBase + (j << 12) );
124                 
125                 if( (tVAddr) gaArch_BootModules[i].ArgString < KERNEL_BASE )
126                         MM_UnmapHWPages( (tVAddr)gaArch_BootModules[i].ArgString, 2 );
127         }
128         Log_Log("Arch", "Boot modules loaded");
129         if( gaArch_BootModules )
130                 free( gaArch_BootModules );
131 }
132
133 void StartupPrint(const char *String)
134 {
135         
136 }

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