2 * GeekOS C code entry point
3 * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu>
4 * Copyright (c) 2003, Jeffrey K. Hollingsworth <hollings@cs.umd.edu>
5 * Copyright (c) 2004, Iulian Neamtiu <neamtiu@cs.umd.edu>
8 * This is free software. You are permitted to use,
9 * redistribute, and modify it as specified in the file "COPYING".
12 #include <geekos/bootinfo.h>
13 #include <geekos/string.h>
14 #include <geekos/screen.h>
15 #include <geekos/mem.h>
16 #include <geekos/crc32.h>
17 #include <geekos/tss.h>
18 #include <geekos/int.h>
19 #include <geekos/kthread.h>
20 #include <geekos/trap.h>
21 #include <geekos/timer.h>
22 #include <geekos/keyboard.h>
23 #include <geekos/io.h>
24 #include <geekos/serial.h>
25 #include <geekos/reboot.h>
26 #include <geekos/mem.h>
27 #include <geekos/paging.h>
28 #include <geekos/ide.h>
29 #include <geekos/malloc.h>
31 #include <geekos/debug.h>
34 #include <geekos/vm.h>
35 #include <geekos/gdt.h>
37 #include <geekos/vmm_stubs.h>
39 #include <geekos/pci.h>
41 #include <geekos/ne2k.h>
43 #include <uip/uip_arp.h>
45 #include <geekos/ring_buffer.h>
47 #define SPEAKER_PORT 0x61
49 #define BUF ((struct uip_eth_hdr *)&uip_buf[0])
52 u8_t uip_buf[UIP_BUFSIZE+2];
55 int Packet_Received(struct NE2K_Packet_Info* info, uchar_t *pkt) {
58 for(i = 0; i < info->size; i++) {
59 PrintBoth("%x ", *(pkt+i));
60 uip_buf[i] = *(pkt+i);
65 if(BUF->type == htons(UIP_ETHTYPE_ARP)) {
77 // hack - competing thread
83 void Buzz(unsigned delay, unsigned num)
89 init=In_Byte(SPEAKER_PORT);
92 Out_Byte(SPEAKER_PORT, init|0x2);
93 for (j=0;j<delay;j++) {
96 Out_Byte(SPEAKER_PORT, init);
97 for (j=0;j<delay;j++) {
103 inline void MyOut_Byte(ushort_t port, uchar_t value)
105 __asm__ __volatile__ (
108 : "a" (value), "Nd" (port)
113 * Read a byte from an I/O port.
115 inline uchar_t MyIn_Byte(ushort_t port)
119 __asm__ __volatile__ (
134 void Buzzer(ulong_t arg) {
135 ulong_t *doIBuzz = (ulong_t*)arg;
137 // Quick and dirty hack to save my hearing...
138 // I'm not too worried about timing, so I'll deal with concurrency later...
150 void Keyboard_Listener(ulong_t arg) {
151 ulong_t * doIBuzz = (ulong_t*)arg;
154 Print("Press F4 to turn on/off the speaker\n");
156 while ((key_press = Wait_For_Key())) {
157 if (key_press == KEY_F4) {
158 Print("\nToggling Speaker Port\n");
159 SerialPrintLevel(100,"\nToggling Speaker Port\n");
160 *doIBuzz = (*doIBuzz + 1) % 2;
161 } else if (key_press == KEY_F5) {
162 Print("\nMachine Restart\n");
163 SerialPrintLevel(100,"\nMachine Restart\n");
164 machine_real_restart();
172 extern char BSS_START, BSS_END;
177 /* This is an ugly hack to get at the VM memory */
178 ulong_t vm_range_start;
179 ulong_t vm_range_end;
180 ulong_t guest_kernel_start;
181 ulong_t guest_kernel_end;
185 int AllocateAndMapPagesForRange(uint_t start, uint_t length, pte_t template_pte)
189 for (address=start;address<start+length;address+=PAGE_SIZE) {
191 pte_t pte = template_pte;
196 pte.pageBaseAddr=PAGE_ALLIGNED_ADDR(page);
198 KASSERT(MapPage((void*)address,&pte,1));
207 * Kernel C code entry point.
208 * Initializes kernel subsystems, mounts filesystems,
209 * and spawns init process.
211 void Main(struct Boot_Info* bootInfo)
215 //Out_Byte(0x1234,5);
216 //Out_Byte(0x1234,5);
224 extern char BSS_START, BSS_END;
226 SerialPrint("BSS 0x%x->0x%x\n", &BSS_START, &BSS_END);
231 // SerialPrint("Guest Mem Dump at 0x%x\n", 0x100000);
232 //SerialMemDump((unsigned char *)(0x100000), 261 * 1024);
251 Init_Ne2k(&Packet_Received);
256 uip_ipaddr(ipaddr, 10,0,2,21); /* Local IP address */
257 uip_sethostaddr(ipaddr);
259 uip_ipaddr_t ripaddr;
260 uip_ipaddr(ripaddr, 10,0,2,20); /* Remote IP address */
262 /* Attempt a connection to port 8080 at address 10.0.2.20 */
263 struct uip_conn *conn;
264 conn = uip_connect(&ripaddr, HTONS(8080));
266 while(uip_len <= 0) {
267 uip_periodic_conn(conn);
269 NE2K_Transmit(uip_len+UIP_LLH_LEN); /* This will transmit an ARP packet */
272 while(l++ < 5000); /* When this is done, a response to the ARP should have been received. */
273 conn = uip_connect(&ripaddr, HTONS(8080));
275 while(uip_len <= 0) {
276 uip_periodic_conn(conn);
278 NE2K_Transmit(uip_len+UIP_LLH_LEN); /* This *should* transmit a SYN packet */
280 #endif /* TEST_NE2K */
284 // Print("Done; stalling\n");
289 SerialPrint("Dumping VM kernel Code (first 128 bytes @ 0x%x)\n", 0x100000);
290 SerialMemDump((unsigned char *)0x100000, 256);
292 SerialPrint("Dumping kernel Code (first 512 bytes @ 0x%x)\n",KERNEL_START);
293 SerialMemDump((unsigned char *)VM_KERNEL_START, 512);
299 struct Kernel_Thread *spin_thread;
301 spin_thread=Start_Kernel_Thread(Spin,0,PRIORITY_NORMAL,false);
308 struct Kernel_Thread * key_thread;
309 struct Kernel_Thread * spkr_thread;
313 SerialPrint("Dumping BIOS code ffff0-fffff\n\n");
314 SerialMemDump((unsigned char *)0x10fff0, 16);
316 SerialPrint("Dumping kernel Code (first 512 bytes @ 0x%x)\n",KERNEL_START);
317 SerialMemDump((unsigned char *)VM_KERNEL_START, 512);
320 SerialPrint("Noisemaker and keyboard listener threads\n");
321 key_thread = Start_Kernel_Thread(Keyboard_Listener, (ulong_t)&doIBuzz, PRIORITY_NORMAL, false);
322 spkr_thread = Start_Kernel_Thread(Buzzer, (ulong_t)&doIBuzz, PRIORITY_NORMAL, false);
333 SerialPrint("RunVMM returned, spinning\n");
337 TODO("Write a Virtual Machine Monitor");