# Makefile for GeekOS kernel, userspace, and tools
# Copyright (c) 2004,2005 David H. Hovemeyer <daveho@cs.umd.edu>
-# $Revision: 1.50 $
+# $Revision: 1.51 $
# This is free software. You are permitted to use,
# redistribute, and modify it as specified in the file "COPYING".
ifeq ($(DEBUG_PIC),1)
DEBUG_SECTIONS := $(DEBUG_SECTIONS) -DDEBUG_PIC
endif
-ifeq ($(DEBUG_DEBUG_PIT),1)
+ifeq ($(DEBUG_PIT),1)
DEBUG_SECTIONS := $(DEBUG_SECTIONS) -DDEBUG_PIT
endif
ifeq ($(DEBUG_NVRAM),1)
struct guest_info;
+/* We need a way to allow the APIC/PIC to decide when they are supposed to receive interrupts...
+ * Maybe a notification call when they have been turned on, to deliver irqs to them...
+ * We can rehook the guest raise_irq op, to the appropriate controller
+ */
+struct vm_intr {
+ /* We need to rework the exception state, to handle stacking */
+ uint_t excp_pending;
+ uint_t excp_num;
+ uint_t excp_error_code_valid : 1;
+ uint_t excp_error_code;
+
+ struct intr_ctrl_ops * controller;
+ void * controller_state;
+ /* some way to get the [A]PIC intr */
+};
+
+
+
+void init_interrupt_state(struct guest_info * info);
int v3_raise_irq(struct guest_info * info, int irq);
-void init_interrupt_state(struct guest_info * info);
-
-/* We need a way to allow the APIC/PIC to decide when they are supposed to receive interrupts...
- * Maybe a notification call when they have been turned on, to deliver irqs to them...
- * We can rehook the guest raise_irq op, to the appropriate controller
- */
-struct vm_intr {
- /* We need to rework the exception state, to handle stacking */
- uint_t excp_pending;
- uint_t excp_num;
- uint_t excp_error_code_valid : 1;
- uint_t excp_error_code;
-
- struct intr_ctrl_ops * controller;
- void * controller_state;
-
- /* some way to get the [A]PIC intr */
-
-};
struct vmm_intr_state;
int v3_hook_irq(uint_t irq,
- void (*handler)(struct vmm_intr_state *state),
- void *opaque);
+ void (*handler)(struct vmm_intr_state *state),
+ void *opaque);
int v3_hook_irq_for_guest_injection(struct guest_info *info, int irq);
struct guest_info;
-struct vmm_io_hook;
-
-struct vmm_io_map {
- uint_t num_ports;
- struct vmm_io_hook * head;
-
-};
-
int v3_unhook_io_port(struct guest_info * info, uint_t port);
int (*write)(ushort_t port, void * src, uint_t length, void * priv_data),
void * priv_data);
-void init_vmm_io_map(struct guest_info * info);
+
#ifdef __V3VEE__
+struct vmm_io_hook;
+
+struct vmm_io_map {
+ uint_t num_ports;
+ struct vmm_io_hook * head;
+
+};
+
+
+void init_vmm_io_map(struct guest_info * info);
// FOREACH_IO_HOOK(vmm_io_map_t * io_map, vmm_io_hook_t * io_hook)
#define FOREACH_IO_HOOK(io_map, io_hook) for (io_hook = (io_map).head; io_hook != NULL; io_hook = (io_hook)->next)
struct guest_mem_layout * layout = (struct guest_mem_layout *)config_ptr;
extern v3_cpu_arch_t v3_cpu_type;
void * region_start;
+ int i;
- PrintDebug("Time Init\n");
+
v3_init_time(info);
-
- PrintDebug("Shadow map Init\n");
init_shadow_map(info);
if (v3_cpu_type == V3_SVM_REV3_CPU) {
dev_mgr_init(info);
-
- int i;
-
-
+
// SerialPrint("Guest Mem Dump at 0x%x\n", 0x100000);
//PrintDebugMemDump((unsigned char *)(0x100000), 261 * 1024);
if (layout->magic != MAGIC_CODE) {