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 <palacios/vmm.h>
23 #include <palacios/vmm_dev_mgr.h>
24 #include <palacios/vmm_io.h>
28 #define BOCHS_PORT1 0x400
29 #define BOCHS_PORT2 0x401
30 #define BOCHS_INFO_PORT 0x402
31 #define BOCHS_DEBUG_PORT 0x403
33 #define BOCHS_CONSOLE_PORT 0xe9
37 char debug_buf[BUF_SIZE];
40 char info_buf[BUF_SIZE];
43 char cons_buf[BUF_SIZE];
47 static int handle_info_write(struct guest_info * core, ushort_t port, void * src, uint_t length, void * priv_data) {
48 struct debug_state * state = (struct debug_state *)priv_data;
50 state->info_buf[state->info_offset++] = *(char*)src;
52 if ((*(char*)src == 0xa) || (state->info_offset == (BUF_SIZE - 1))) {
53 PrintDebug("BOCHSINFO>%s", state->info_buf);
54 memset(state->info_buf, 0, BUF_SIZE);
55 state->info_offset = 0;
62 static int handle_debug_write(struct guest_info * core, ushort_t port, void * src, uint_t length, void * priv_data) {
63 struct debug_state * state = (struct debug_state *)priv_data;
65 state->debug_buf[state->debug_offset++] = *(char*)src;
67 if ((*(char*)src == 0xa) || (state->debug_offset == (BUF_SIZE - 1))) {
68 PrintDebug("BOCHSDEBUG>%s", state->debug_buf);
69 memset(state->debug_buf, 0, BUF_SIZE);
70 state->debug_offset = 0;
77 static int handle_console_write(struct guest_info * core, ushort_t port, void * src, uint_t length, void * priv_data) {
78 struct debug_state * state = (struct debug_state *)priv_data;
80 state->cons_buf[state->cons_offset++] = *(char *)src;
82 if ((*(char *)src == 0xa) || (state->cons_offset == (BUF_SIZE - 1))) {
83 V3_Print("BOCHSCONSOLE>%s", state->cons_buf);
84 memset(state->cons_buf, 0, BUF_SIZE);
85 state->cons_offset = 0;
92 static int handle_gen_write(struct guest_info * core, ushort_t port, void * src, uint_t length, void * priv_data) {
96 PrintDebug(">0x%.2x\n", *(uchar_t*)src);
99 PrintDebug(">0x%.4x\n", *(ushort_t*)src);
102 PrintDebug(">0x%.8x\n", *(uint_t*)src);
105 PrintError("Invalid length in handle_gen_write\n");
116 static int debug_free(struct debug_state * state) {
125 static struct v3_device_ops dev_ops = {
126 .free = (int (*)(void *))debug_free,
133 static int debug_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
134 struct debug_state * state = NULL;
135 char * dev_id = v3_cfg_val(cfg, "ID");
138 state = (struct debug_state *)V3_Malloc(sizeof(struct debug_state));
141 PrintError("Could not allocate bochs debug state\n");
145 PrintDebug("Creating Bochs Debug Device\n");
146 struct vm_device * dev = v3_add_device(vm, dev_id, &dev_ops, state);
149 PrintError("Could not attach device %s\n", dev_id);
154 state->debug_offset = 0;
155 state->info_offset = 0;
156 state->cons_offset = 0;
157 memset(state->debug_buf, 0, BUF_SIZE);
158 memset(state->info_buf, 0, BUF_SIZE);
159 memset(state->cons_buf, 0, BUF_SIZE);
162 ret |= v3_dev_hook_io(dev, BOCHS_PORT1, NULL, &handle_gen_write);
163 ret |= v3_dev_hook_io(dev, BOCHS_PORT2, NULL, &handle_gen_write);
164 ret |= v3_dev_hook_io(dev, BOCHS_INFO_PORT, NULL, &handle_info_write);
165 ret |= v3_dev_hook_io(dev, BOCHS_DEBUG_PORT, NULL, &handle_debug_write);
166 ret |= v3_dev_hook_io(dev, BOCHS_CONSOLE_PORT, NULL, &handle_console_write);
169 PrintError("Could not hook Bochs Debug IO Ports\n");
170 v3_remove_device(dev);
178 device_register("BOCHS_DEBUG", debug_init);