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".
26 #include <palacios/vmm_types.h>
27 #include <palacios/vmm_list.h>
28 #include <palacios/vmm_lock.h>
31 typedef enum {V3_INVALID_INTR, V3_EXTERNAL_IRQ, V3_VIRTUAL_IRQ, V3_NMI, V3_SOFTWARE_INTR} v3_intr_type_t;
40 int (*handler)(struct v3_vm_info * vm, struct v3_interrupt * intr, void * priv_data);
47 struct v3_intr_routers {
48 struct list_head router_list;
52 /* some way to get the [A]PIC intr */
53 struct v3_irq_hook * hooks[256];
56 struct v3_intr_core_state {
62 uint8_t swintr_vector;
64 uint8_t virq_map[MAX_IRQ / 8];
68 struct list_head controller_list;
73 void v3_init_intr_controllers(struct guest_info * core);
74 void v3_init_intr_routers(struct v3_vm_info * vm);
76 void v3_deinit_intr_controllers(struct guest_info * core);
77 void v3_deinit_intr_routers(struct v3_vm_info * vm);
79 int v3_raise_virq(struct guest_info * info, int irq);
80 int v3_lower_virq(struct guest_info * info, int irq);
82 int v3_raise_irq(struct v3_vm_info * vm, int irq);
83 int v3_lower_irq(struct v3_vm_info * vm, int irq);
86 int v3_raise_swintr(struct guest_info * core, uint8_t vector);
89 struct intr_ctrl_ops {
90 int (*intr_pending)(struct guest_info * info, void * private_data);
91 int (*get_intr_number)(struct guest_info * info, void * private_data);
92 int (*begin_irq)(struct guest_info * info, void * private_data, int irq);
95 struct intr_router_ops {
96 int (*raise_intr)(struct v3_vm_info * vm, void * private_data, int irq);
97 int (*lower_intr)(struct v3_vm_info * vm, void * private_data, int irq);
100 void v3_clear_pending_intr(struct guest_info * core);
103 void * v3_register_intr_controller(struct guest_info * info, struct intr_ctrl_ops * ops, void * priv_data);
104 void * v3_register_intr_router(struct v3_vm_info * vm, struct intr_router_ops * ops, void * priv_data);
106 void v3_remove_intr_controller(struct guest_info * core, void * handle);
107 void v3_remove_intr_router(struct v3_vm_info * vm, void * handle);
109 v3_intr_type_t v3_intr_pending(struct guest_info * info);
110 uint32_t v3_get_intr(struct guest_info * info);
111 int v3_injecting_intr(struct guest_info * info, uint_t intr_num, v3_intr_type_t type);
116 int start_irq(struct vm_intr * intr);
117 int end_irq(struct vm_intr * intr, int irq);
122 int v3_hook_irq(struct v3_vm_info * vm,
124 int (*handler)(struct v3_vm_info * vm, struct v3_interrupt * intr, void * priv_data),
127 int v3_hook_passthrough_irq(struct v3_vm_info * vm, uint_t irq);