X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fgeekos%2Fvm.c;h=ebd41461848a238524eefbb6afd59c504f4e24cb;hb=091d8b1fcfc3a766f6603d4c1c69d9f8f4bf3031;hp=e23e64ea6ff1f9298d573974555de27a33ec59f3;hpb=a1e0475bbefa968791679c5e71232ddca522868b;p=palacios.git diff --git a/palacios/src/geekos/vm.c b/palacios/src/geekos/vm.c index e23e64e..ebd4146 100644 --- a/palacios/src/geekos/vm.c +++ b/palacios/src/geekos/vm.c @@ -1,3 +1,6 @@ +/* (c) 2008, Jack Lange */ +/* (c) 2008, The V3VEE Project */ + #include #include @@ -10,12 +13,6 @@ - -//test decoder -//#include - -extern int parse(); - #define SPEAKER_PORT 0x61 static inline void VM_Out_Byte(ushort_t port, uchar_t value) @@ -170,7 +167,7 @@ void BuzzVM() } - +/* int passthrough_mem_read(void * guest_addr, void * dst, uint_t length, void * priv_data) { memcpy(dst, (void*)guest_addr, length); return length; @@ -180,7 +177,7 @@ int passthrough_mem_write(void * guest_addr, void * src, uint_t length, void * p memcpy((void*)guest_addr, src, length); return length; } - +*/ /* We need a configuration mechanism, so we can wrap this completely inside the VMM code, @@ -192,7 +189,7 @@ int RunVMM(struct Boot_Info * bootInfo) { struct vmm_os_hooks os_hooks; struct vmm_ctrl_ops vmm_ops; - v3_guest_t* vm_info = 0; + struct guest_info * vm_info = 0; @@ -217,12 +214,6 @@ int RunVMM(struct Boot_Info * bootInfo) { Init_V3(&os_hooks, &vmm_ops); - - //test decoder - PrintBoth("testing decoder\n"); - parse(); - PrintBoth("testing decoder done\n"); - extern char _binary_vm_kernel_start; PrintBoth(" Guest Load Addr: 0x%x\n", &_binary_vm_kernel_start); @@ -237,14 +228,14 @@ int RunVMM(struct Boot_Info * bootInfo) { PrintBoth("Configured guest\n"); - v3_hook_io_port(vm_info, 0x61, &IO_Read, &IO_Write, NULL); + //v3_hook_io_port(&vm_info, 0x05, &IO_Read, &IO_Write_to_Serial, NULL); - - v3_hook_io_port(vm_info, 0x400, &IO_Read, &IO_Write_to_Serial, NULL); - v3_hook_io_port(vm_info, 0x401, &IO_Read, &IO_Write_to_Serial, NULL); - v3_hook_io_port(vm_info, 0x402, &IO_Read, &IO_BOCHS_info, NULL); - v3_hook_io_port(vm_info, 0x403, &IO_Read, &IO_BOCHS_debug, NULL); + //v3_hook_io_port(vm_info, 0x61, &IO_Read, &IO_Write, NULL); + //v3_hook_io_port(vm_info, 0x400, &IO_Read, &IO_Write_to_Serial, NULL); + //v3_hook_io_port(vm_info, 0x401, &IO_Read, &IO_Write_to_Serial, NULL); + //v3_hook_io_port(vm_info, 0x402, &IO_Read, &IO_BOCHS_info, NULL); + //v3_hook_io_port(vm_info, 0x403, &IO_Read, &IO_BOCHS_debug, NULL); (vmm_ops).init_guest(vm_info);