2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Jack Lange <jarusl@cs.northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
22 #include <geekos/vmm_stubs.h>
24 #include <geekos/debug.h>
25 #include <geekos/serial.h>
26 #include <geekos/vm.h>
27 #include <geekos/screen.h>
29 #include <palacios/vmm.h>
30 #include <palacios/vmm_io.h>
34 #define SPEAKER_PORT 0x61
36 static inline void VM_Out_Byte(ushort_t port, uchar_t value)
38 __asm__ __volatile__ (
41 : "a" (value), "Nd" (port)
46 * Read a byte from an I/O port.
48 static inline uchar_t VM_In_Byte(ushort_t port)
52 __asm__ __volatile__ (
64 int IO_Read(ushort_t port, void * dst, uint_t length, void * priv_data) {
70 *(uchar_t*)dst = VM_In_Byte(port);
76 int IO_Write(ushort_t port, void * src, uint_t length, void * priv_data) {
82 VM_Out_Byte(port, *(uchar_t *)src);
88 int IO_Read_to_Serial(ushort_t port, void * dst, uint_t length, void * priv_data) {
89 PrintBoth("Input from Guest on port %d (0x%x) Length=%d\n", port, port, length);
95 char * bochs_debug_buf = NULL;
96 int bochs_debug_offset = 0;
98 char * bochs_info_buf = NULL;
99 int bochs_info_offset = 0;
102 int IO_BOCHS_debug(ushort_t port, void * src, uint_t length, void * priv_data) {
103 if (!bochs_debug_buf) {
104 bochs_debug_buf = (char*)Malloc(1024);
107 bochs_debug_buf[bochs_debug_offset++] = *(char*)src;
109 if ((*(char*)src == 0xa) || (bochs_debug_offset == 1023)) {
110 SerialPrint("BOCHSDEBUG>%s", bochs_debug_buf);
111 memset(bochs_debug_buf, 0, 1024);
112 bochs_debug_offset = 0;
118 int IO_BOCHS_info(ushort_t port, void * src, uint_t length, void * priv_data) {
119 if (!bochs_info_buf) {
120 bochs_info_buf = (char*)Malloc(1024);
123 bochs_info_buf[bochs_info_offset++] = *(char*)src;
125 if ((*(char*)src == 0xa) || (bochs_info_offset == 1023)) {
126 SerialPrint("BOCHSINFO>%s", bochs_info_buf);
127 memset(bochs_info_buf, 0, 1024);
128 bochs_info_offset = 0;
135 int IO_Write_to_Serial(ushort_t port, void * src, uint_t length, void * priv_data) {
136 SerialPrint("Output from Guest on port %d (0x%x) Length=%d\n", port, port, length);
140 SerialPrint(">0x%.2x\n", *(char*)src);
143 SerialPrint(">0x%.4x\n", *(ushort_t*)src);
146 SerialPrint(">0x%.8x\n", *(uint_t*)src);
152 // SerialMemDump(src, length);
165 __asm__ __volatile__ (
171 PrintBoth("Starting To Buzz\n");
173 init=VM_In_Byte(SPEAKER_PORT);
176 VM_Out_Byte(SPEAKER_PORT, init|0x2);
177 for (j=0;j<1000000;j++) {
180 VM_Out_Byte(SPEAKER_PORT, init);
181 for (j=0;j<1000000;j++) {
189 int passthrough_mem_read(void * guest_addr, void * dst, uint_t length, void * priv_data) {
190 memcpy(dst, (void*)guest_addr, length);
194 int passthrough_mem_write(void * guest_addr, void * src, uint_t length, void * priv_data) {
195 memcpy((void*)guest_addr, src, length);
201 /* We need a configuration mechanism, so we can wrap this completely inside the VMM code,
202 * with no pollution into the HOST OS
205 int RunVMM(struct Boot_Info * bootInfo) {
208 struct vmm_os_hooks os_hooks;
209 struct vmm_ctrl_ops vmm_ops;
210 struct guest_info * vm_info = 0;
215 memset(&os_hooks, 0, sizeof(struct vmm_os_hooks));
216 memset(&vmm_ops, 0, sizeof(struct vmm_ctrl_ops));
219 os_hooks.print_debug = &SerialPrint;
220 os_hooks.print_info = &Print;
221 os_hooks.print_trace = &SerialPrint;
222 os_hooks.allocate_pages = &Allocate_VMM_Pages;
223 os_hooks.free_page = &Free_VMM_Page;
224 os_hooks.malloc = &VMM_Malloc;
225 os_hooks.free = &VMM_Free;
226 os_hooks.vaddr_to_paddr = &Identity;
227 os_hooks.paddr_to_vaddr = &Identity;
228 os_hooks.hook_interrupt = &geekos_hook_interrupt_new;
229 os_hooks.ack_irq = &ack_irq;
230 os_hooks.get_cpu_khz = &get_cpu_khz;
234 Init_V3(&os_hooks, &vmm_ops);
236 extern char _binary_vm_kernel_start;
237 PrintBoth(" Guest Load Addr: 0x%x\n", &_binary_vm_kernel_start);
239 config_data = &_binary_vm_kernel_start;
241 vm_info = (vmm_ops).allocate_guest();
243 PrintBoth("Allocated Guest\n");
245 (vmm_ops).config_guest(vm_info, config_data);
247 PrintBoth("Configured guest\n");
249 v3_hook_io_port(vm_info, 0x61, &IO_Read, &IO_Write, NULL);
250 //v3_hook_io_port(&vm_info, 0x05, &IO_Read, &IO_Write_to_Serial, NULL);
253 v3_hook_io_port(vm_info, 0x400, &IO_Read, &IO_Write_to_Serial, NULL);
254 v3_hook_io_port(vm_info, 0x401, &IO_Read, &IO_Write_to_Serial, NULL);
255 v3_hook_io_port(vm_info, 0x402, &IO_Read, &IO_BOCHS_info, NULL);
256 v3_hook_io_port(vm_info, 0x403, &IO_Read, &IO_BOCHS_debug, NULL);
259 (vmm_ops).init_guest(vm_info);
260 PrintBoth("Starting Guest\n");
262 (vmm_ops).start_guest(vm_info);