ath5k: convert LED code to use mac80211 triggers
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / virt / kvm / ioapic.c
blob98778cb69c6ef923abb85a0dc464118a2d294dda
1 /*
2 * Copyright (C) 2001 MandrakeSoft S.A.
4 * MandrakeSoft S.A.
5 * 43, rue d'Aboukir
6 * 75002 Paris - France
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>
31 #include <linux/mm.h>
32 #include <linux/highmem.h>
33 #include <linux/smp.h>
34 #include <linux/hrtimer.h>
35 #include <linux/io.h>
36 #include <asm/processor.h>
37 #include <asm/page.h>
38 #include <asm/current.h>
40 #include "ioapic.h"
41 #include "lapic.h"
43 #if 0
44 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
45 #else
46 #define ioapic_debug(fmt, arg...)
47 #endif
48 static int ioapic_deliver(struct kvm_ioapic *vioapic, int irq);
50 static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
51 unsigned long addr,
52 unsigned long length)
54 unsigned long result = 0;
56 switch (ioapic->ioregsel) {
57 case IOAPIC_REG_VERSION:
58 result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
59 | (IOAPIC_VERSION_ID & 0xff));
60 break;
62 case IOAPIC_REG_APIC_ID:
63 case IOAPIC_REG_ARB_ID:
64 result = ((ioapic->id & 0xf) << 24);
65 break;
67 default:
69 u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
70 u64 redir_content;
72 ASSERT(redir_index < IOAPIC_NUM_PINS);
74 redir_content = ioapic->redirtbl[redir_index].bits;
75 result = (ioapic->ioregsel & 0x1) ?
76 (redir_content >> 32) & 0xffffffff :
77 redir_content & 0xffffffff;
78 break;
82 return result;
85 static void ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx)
87 union ioapic_redir_entry *pent;
89 pent = &ioapic->redirtbl[idx];
91 if (!pent->fields.mask) {
92 int injected = ioapic_deliver(ioapic, idx);
93 if (injected && pent->fields.trig_mode == IOAPIC_LEVEL_TRIG)
94 pent->fields.remote_irr = 1;
96 if (!pent->fields.trig_mode)
97 ioapic->irr &= ~(1 << idx);
100 static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
102 unsigned index;
104 switch (ioapic->ioregsel) {
105 case IOAPIC_REG_VERSION:
106 /* Writes are ignored. */
107 break;
109 case IOAPIC_REG_APIC_ID:
110 ioapic->id = (val >> 24) & 0xf;
111 break;
113 case IOAPIC_REG_ARB_ID:
114 break;
116 default:
117 index = (ioapic->ioregsel - 0x10) >> 1;
119 ioapic_debug("change redir index %x val %x\n", index, val);
120 if (index >= IOAPIC_NUM_PINS)
121 return;
122 if (ioapic->ioregsel & 1) {
123 ioapic->redirtbl[index].bits &= 0xffffffff;
124 ioapic->redirtbl[index].bits |= (u64) val << 32;
125 } else {
126 ioapic->redirtbl[index].bits &= ~0xffffffffULL;
127 ioapic->redirtbl[index].bits |= (u32) val;
128 ioapic->redirtbl[index].fields.remote_irr = 0;
130 if (ioapic->irr & (1 << index))
131 ioapic_service(ioapic, index);
132 break;
136 static int ioapic_inj_irq(struct kvm_ioapic *ioapic,
137 struct kvm_vcpu *vcpu,
138 u8 vector, u8 trig_mode, u8 delivery_mode)
140 ioapic_debug("irq %d trig %d deliv %d\n", vector, trig_mode,
141 delivery_mode);
143 ASSERT((delivery_mode == IOAPIC_FIXED) ||
144 (delivery_mode == IOAPIC_LOWEST_PRIORITY));
146 return kvm_apic_set_irq(vcpu, vector, trig_mode);
149 static u32 ioapic_get_delivery_bitmask(struct kvm_ioapic *ioapic, u8 dest,
150 u8 dest_mode)
152 u32 mask = 0;
153 int i;
154 struct kvm *kvm = ioapic->kvm;
155 struct kvm_vcpu *vcpu;
157 ioapic_debug("dest %d dest_mode %d\n", dest, dest_mode);
159 if (dest_mode == 0) { /* Physical mode. */
160 if (dest == 0xFF) { /* Broadcast. */
161 for (i = 0; i < KVM_MAX_VCPUS; ++i)
162 if (kvm->vcpus[i] && kvm->vcpus[i]->arch.apic)
163 mask |= 1 << i;
164 return mask;
166 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
167 vcpu = kvm->vcpus[i];
168 if (!vcpu)
169 continue;
170 if (kvm_apic_match_physical_addr(vcpu->arch.apic, dest)) {
171 if (vcpu->arch.apic)
172 mask = 1 << i;
173 break;
176 } else if (dest != 0) /* Logical mode, MDA non-zero. */
177 for (i = 0; i < KVM_MAX_VCPUS; ++i) {
178 vcpu = kvm->vcpus[i];
179 if (!vcpu)
180 continue;
181 if (vcpu->arch.apic &&
182 kvm_apic_match_logical_addr(vcpu->arch.apic, dest))
183 mask |= 1 << vcpu->vcpu_id;
185 ioapic_debug("mask %x\n", mask);
186 return mask;
189 static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq)
191 u8 dest = ioapic->redirtbl[irq].fields.dest_id;
192 u8 dest_mode = ioapic->redirtbl[irq].fields.dest_mode;
193 u8 delivery_mode = ioapic->redirtbl[irq].fields.delivery_mode;
194 u8 vector = ioapic->redirtbl[irq].fields.vector;
195 u8 trig_mode = ioapic->redirtbl[irq].fields.trig_mode;
196 u32 deliver_bitmask;
197 struct kvm_vcpu *vcpu;
198 int vcpu_id, r = 0;
200 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
201 "vector=%x trig_mode=%x\n",
202 dest, dest_mode, delivery_mode, vector, trig_mode);
204 deliver_bitmask = ioapic_get_delivery_bitmask(ioapic, dest, dest_mode);
205 if (!deliver_bitmask) {
206 ioapic_debug("no target on destination\n");
207 return 0;
210 switch (delivery_mode) {
211 case IOAPIC_LOWEST_PRIORITY:
212 vcpu = kvm_get_lowest_prio_vcpu(ioapic->kvm, vector,
213 deliver_bitmask);
214 #ifdef CONFIG_X86
215 if (irq == 0)
216 vcpu = ioapic->kvm->vcpus[0];
217 #endif
218 if (vcpu != NULL)
219 r = ioapic_inj_irq(ioapic, vcpu, vector,
220 trig_mode, delivery_mode);
221 else
222 ioapic_debug("null lowest prio vcpu: "
223 "mask=%x vector=%x delivery_mode=%x\n",
224 deliver_bitmask, vector, IOAPIC_LOWEST_PRIORITY);
225 break;
226 case IOAPIC_FIXED:
227 #ifdef CONFIG_X86
228 if (irq == 0)
229 deliver_bitmask = 1;
230 #endif
231 for (vcpu_id = 0; deliver_bitmask != 0; vcpu_id++) {
232 if (!(deliver_bitmask & (1 << vcpu_id)))
233 continue;
234 deliver_bitmask &= ~(1 << vcpu_id);
235 vcpu = ioapic->kvm->vcpus[vcpu_id];
236 if (vcpu) {
237 r = ioapic_inj_irq(ioapic, vcpu, vector,
238 trig_mode, delivery_mode);
241 break;
243 /* TODO: NMI */
244 default:
245 printk(KERN_WARNING "Unsupported delivery mode %d\n",
246 delivery_mode);
247 break;
249 return r;
252 void kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level)
254 u32 old_irr = ioapic->irr;
255 u32 mask = 1 << irq;
256 union ioapic_redir_entry entry;
258 if (irq >= 0 && irq < IOAPIC_NUM_PINS) {
259 entry = ioapic->redirtbl[irq];
260 level ^= entry.fields.polarity;
261 if (!level)
262 ioapic->irr &= ~mask;
263 else {
264 ioapic->irr |= mask;
265 if ((!entry.fields.trig_mode && old_irr != ioapic->irr)
266 || !entry.fields.remote_irr)
267 ioapic_service(ioapic, irq);
272 static int get_eoi_gsi(struct kvm_ioapic *ioapic, int vector)
274 int i;
276 for (i = 0; i < IOAPIC_NUM_PINS; i++)
277 if (ioapic->redirtbl[i].fields.vector == vector)
278 return i;
279 return -1;
282 void kvm_ioapic_update_eoi(struct kvm *kvm, int vector)
284 struct kvm_ioapic *ioapic = kvm->arch.vioapic;
285 union ioapic_redir_entry *ent;
286 int gsi;
288 gsi = get_eoi_gsi(ioapic, vector);
289 if (gsi == -1) {
290 printk(KERN_WARNING "Can't find redir item for %d EOI\n",
291 vector);
292 return;
295 ent = &ioapic->redirtbl[gsi];
296 ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
298 ent->fields.remote_irr = 0;
299 if (!ent->fields.mask && (ioapic->irr & (1 << gsi)))
300 ioapic_deliver(ioapic, gsi);
303 static int ioapic_in_range(struct kvm_io_device *this, gpa_t addr)
305 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
307 return ((addr >= ioapic->base_address &&
308 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
311 static void ioapic_mmio_read(struct kvm_io_device *this, gpa_t addr, int len,
312 void *val)
314 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
315 u32 result;
317 ioapic_debug("addr %lx\n", (unsigned long)addr);
318 ASSERT(!(addr & 0xf)); /* check alignment */
320 addr &= 0xff;
321 switch (addr) {
322 case IOAPIC_REG_SELECT:
323 result = ioapic->ioregsel;
324 break;
326 case IOAPIC_REG_WINDOW:
327 result = ioapic_read_indirect(ioapic, addr, len);
328 break;
330 default:
331 result = 0;
332 break;
334 switch (len) {
335 case 8:
336 *(u64 *) val = result;
337 break;
338 case 1:
339 case 2:
340 case 4:
341 memcpy(val, (char *)&result, len);
342 break;
343 default:
344 printk(KERN_WARNING "ioapic: wrong length %d\n", len);
348 static void ioapic_mmio_write(struct kvm_io_device *this, gpa_t addr, int len,
349 const void *val)
351 struct kvm_ioapic *ioapic = (struct kvm_ioapic *)this->private;
352 u32 data;
354 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
355 (void*)addr, len, val);
356 ASSERT(!(addr & 0xf)); /* check alignment */
357 if (len == 4 || len == 8)
358 data = *(u32 *) val;
359 else {
360 printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
361 return;
364 addr &= 0xff;
365 switch (addr) {
366 case IOAPIC_REG_SELECT:
367 ioapic->ioregsel = data;
368 break;
370 case IOAPIC_REG_WINDOW:
371 ioapic_write_indirect(ioapic, data);
372 break;
373 #ifdef CONFIG_IA64
374 case IOAPIC_REG_EOI:
375 kvm_ioapic_update_eoi(ioapic->kvm, data);
376 break;
377 #endif
379 default:
380 break;
384 void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
386 int i;
388 for (i = 0; i < IOAPIC_NUM_PINS; i++)
389 ioapic->redirtbl[i].fields.mask = 1;
390 ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
391 ioapic->ioregsel = 0;
392 ioapic->irr = 0;
393 ioapic->id = 0;
396 int kvm_ioapic_init(struct kvm *kvm)
398 struct kvm_ioapic *ioapic;
400 ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL);
401 if (!ioapic)
402 return -ENOMEM;
403 kvm->arch.vioapic = ioapic;
404 kvm_ioapic_reset(ioapic);
405 ioapic->dev.read = ioapic_mmio_read;
406 ioapic->dev.write = ioapic_mmio_write;
407 ioapic->dev.in_range = ioapic_in_range;
408 ioapic->dev.private = ioapic;
409 ioapic->kvm = kvm;
410 kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev);
411 return 0;