2 * Copyright (C) 2001 MandrakeSoft S.A.
7 * http://www.linux-mandrake.com/
8 * http://www.mandrakesoft.com/
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * Yunhong Jiang <yunhong.jiang@intel.com>
25 * Yaozu (Eddie) Dong <eddie.dong@intel.com>
26 * Based on Xen 3.1 code.
29 #include <linux/kvm_host.h>
30 #include <linux/kvm.h>
32 #include <linux/highmem.h>
33 #include <linux/smp.h>
34 #include <linux/hrtimer.h>
36 #include <asm/processor.h>
38 #include <asm/current.h>
45 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
47 #define ioapic_debug(fmt, arg...)
49 static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
51 static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
55 unsigned long result = 0;
57 switch (ioapic->ioregsel) {
58 case IOAPIC_REG_VERSION:
59 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
60 | (IOAPIC_VERSION_ID & 0xff));
63 case IOAPIC_REG_APIC_ID:
64 case IOAPIC_REG_ARB_ID:
65 result = ((ioapic->id & 0xf) << 24);
70 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
73 ASSERT(redir_index < IOAPIC_NUM_PINS);
75 redir_content = ioapic->redirtbl[redir_index].bits;
76 result = (ioapic->ioregsel & 0x1) ?
77 (redir_content >> 32) & 0xffffffff :
78 redir_content & 0xffffffff;
86 static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
88 union kvm_ioapic_redirect_entry *pent;
91 pent = &ioapic->redirtbl[idx];
93 if (!pent->fields.mask) {
94 injected = ioapic_deliver(ioapic, idx);
95 if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
96 pent->fields.remote_irr = 1;
98 if (!pent->fields.trig_mode)
99 ioapic->irr &= ~(1 << idx);
104 static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
107 bool mask_before, mask_after;
109 switch (ioapic->ioregsel) {
110 case IOAPIC_REG_VERSION:
111 /* Writes are ignored. */
114 case IOAPIC_REG_APIC_ID:
115 ioapic->id = (val >> 24) & 0xf;
118 case IOAPIC_REG_ARB_ID:
122 index = (ioapic->ioregsel - 0x10) >> 1;
124 ioapic_debug("change redir index %x val %x\n", index, val);
125 if (index >= IOAPIC_NUM_PINS)
127 mask_before = ioapic->redirtbl[index].fields.mask;
128 if (ioapic->ioregsel & 1) {
129 ioapic->redirtbl[index].bits &= 0xffffffff;
130 ioapic->redirtbl[index].bits |= (u64) val << 32;
132 ioapic->redirtbl[index].bits &= ~0xffffffffULL;
133 ioapic->redirtbl[index].bits |= (u32) val;
134 ioapic->redirtbl[index].fields.remote_irr = 0;
136 mask_after = ioapic->redirtbl[index].fields.mask;
137 if (mask_before != mask_after)
138 kvm_fire_mask_notifiers(ioapic->kvm, index, mask_after);
139 if (ioapic->irr & (1 << index))
140 ioapic_service(ioapic, index);
145 static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
147 union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
148 struct kvm_lapic_irq irqe;
150 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
151 "vector=%x trig_mode=%x\n",
152 entry->fields.dest, entry->fields.dest_mode,
153 entry->fields.delivery_mode, entry->fields.vector,
154 entry->fields.trig_mode);
156 irqe.dest_id = entry->fields.dest_id;
157 irqe.vector = entry->fields.vector;
158 irqe.dest_mode = entry->fields.dest_mode;
159 irqe.trig_mode = entry->fields.trig_mode;
160 irqe.delivery_mode = entry->fields.delivery_mode << 8;
165 /* Always delivery PIT interrupt to vcpu 0 */
167 irqe.dest_mode = 0; /* Physical mode. */
168 irqe.dest_id = ioapic->kvm->vcpus[0]->vcpu_id;
171 return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe);
174 int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
176 u32 old_irr = ioapic->irr;
178 union kvm_ioapic_redirect_entry entry;
181 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
182 entry = ioapic->redirtbl[irq];
183 level ^= entry.fields.polarity;
185 ioapic->irr &= ~mask;
188 if ((!entry.fields.trig_mode && old_irr != ioapic->irr)
189 || !entry.fields.remote_irr)
190 ret = ioapic_service(ioapic, irq);
196 static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin,
199 union kvm_ioapic_redirect_entry *ent;
201 ent = &ioapic->redirtbl[pin];
203 kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
205 if (trigger_mode == IOAPIC_LEVEL_TRIG) {
206 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
207 ent->fields.remote_irr = 0;
208 if (!ent->fields.mask && (ioapic->irr & (1 << pin)))
209 ioapic_service(ioapic, pin);
213 void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode)
215 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
218 for (i = 0; i < IOAPIC_NUM_PINS; i++)
219 if (ioapic->redirtbl[i].fields.vector == vector)
220 __kvm_ioapic_update_eoi(ioapic, i, trigger_mode);
223 static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr,
224 int len, int is_write)
226 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
228 return ((addr >= ioapic->base_address &&
229 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
232 static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
235 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
238 ioapic_debug("addr %lx\n", (unsigned long)addr);
239 ASSERT(!(addr & 0xf)); /* check alignment */
243 case IOAPIC_REG_SELECT:
244 result = ioapic->ioregsel;
247 case IOAPIC_REG_WINDOW:
248 result = ioapic_read_indirect(ioapic, addr, len);
257 *(u64 *) val = result;
262 memcpy(val, (char *)&result, len);
265 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
269 static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
272 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
275 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
276 (void*)addr, len, val);
277 ASSERT(!(addr & 0xf)); /* check alignment */
278 if (len == 4 || len == 8)
281 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
287 case IOAPIC_REG_SELECT:
288 ioapic->ioregsel = data;
291 case IOAPIC_REG_WINDOW:
292 ioapic_write_indirect(ioapic, data);
296 kvm_ioapic_update_eoi(ioapic->kvm, data, IOAPIC_LEVEL_TRIG);
305 void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
309 for (i = 0; i < IOAPIC_NUM_PINS; i++)
310 ioapic->redirtbl[i].fields.mask = 1;
311 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
312 ioapic->ioregsel = 0;
317 int kvm_ioapic_init(struct kvm *kvm)
319 struct kvm_ioapic *ioapic;
321 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
324 kvm->arch.vioapic = ioapic;
325 kvm_ioapic_reset(ioapic);
326 ioapic->dev.read = ioapic_mmio_read;
327 ioapic->dev.write = ioapic_mmio_write;
328 ioapic->dev.in_range = ioapic_in_range;
329 ioapic->dev.private = ioapic;
331 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);