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>
39 #include <trace/events/kvm.h>
46 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
48 #define ioapic_debug(fmt, arg...)
50 static int ioapic_deliver(struct kvm_ioapic
*vioapic
, int irq
);
52 static unsigned long ioapic_read_indirect(struct kvm_ioapic
*ioapic
,
56 unsigned long result
= 0;
58 switch (ioapic
->ioregsel
) {
59 case IOAPIC_REG_VERSION
:
60 result
= ((((IOAPIC_NUM_PINS
- 1) & 0xff) << 16)
61 | (IOAPIC_VERSION_ID
& 0xff));
64 case IOAPIC_REG_APIC_ID
:
65 case IOAPIC_REG_ARB_ID
:
66 result
= ((ioapic
->id
& 0xf) << 24);
71 u32 redir_index
= (ioapic
->ioregsel
- 0x10) >> 1;
74 ASSERT(redir_index
< IOAPIC_NUM_PINS
);
76 redir_content
= ioapic
->redirtbl
[redir_index
].bits
;
77 result
= (ioapic
->ioregsel
& 0x1) ?
78 (redir_content
>> 32) & 0xffffffff :
79 redir_content
& 0xffffffff;
87 static int ioapic_service(struct kvm_ioapic
*ioapic
, unsigned int idx
)
89 union kvm_ioapic_redirect_entry
*pent
;
92 pent
= &ioapic
->redirtbl
[idx
];
94 if (!pent
->fields
.mask
) {
95 injected
= ioapic_deliver(ioapic
, idx
);
96 if (injected
&& pent
->fields
.trig_mode
== IOAPIC_LEVEL_TRIG
)
97 pent
->fields
.remote_irr
= 1;
103 static void ioapic_write_indirect(struct kvm_ioapic
*ioapic
, u32 val
)
106 bool mask_before
, mask_after
;
107 union kvm_ioapic_redirect_entry
*e
;
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 e
= &ioapic
->redirtbl
[index
];
128 mask_before
= e
->fields
.mask
;
129 if (ioapic
->ioregsel
& 1) {
130 e
->bits
&= 0xffffffff;
131 e
->bits
|= (u64
) val
<< 32;
133 e
->bits
&= ~0xffffffffULL
;
134 e
->bits
|= (u32
) val
;
135 e
->fields
.remote_irr
= 0;
137 mask_after
= e
->fields
.mask
;
138 if (mask_before
!= mask_after
)
139 kvm_fire_mask_notifiers(ioapic
->kvm
, index
, mask_after
);
140 if (e
->fields
.trig_mode
== IOAPIC_LEVEL_TRIG
141 && ioapic
->irr
& (1 << index
))
142 ioapic_service(ioapic
, index
);
147 static int ioapic_deliver(struct kvm_ioapic
*ioapic
, int irq
)
149 union kvm_ioapic_redirect_entry
*entry
= &ioapic
->redirtbl
[irq
];
150 struct kvm_lapic_irq irqe
;
152 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
153 "vector=%x trig_mode=%x\n",
154 entry
->fields
.dest
, entry
->fields
.dest_mode
,
155 entry
->fields
.delivery_mode
, entry
->fields
.vector
,
156 entry
->fields
.trig_mode
);
158 irqe
.dest_id
= entry
->fields
.dest_id
;
159 irqe
.vector
= entry
->fields
.vector
;
160 irqe
.dest_mode
= entry
->fields
.dest_mode
;
161 irqe
.trig_mode
= entry
->fields
.trig_mode
;
162 irqe
.delivery_mode
= entry
->fields
.delivery_mode
<< 8;
167 /* Always delivery PIT interrupt to vcpu 0 */
169 irqe
.dest_mode
= 0; /* Physical mode. */
170 /* need to read apic_id from apic regiest since
171 * it can be rewritten */
172 irqe
.dest_id
= ioapic
->kvm
->bsp_vcpu
->vcpu_id
;
175 return kvm_irq_delivery_to_apic(ioapic
->kvm
, NULL
, &irqe
);
178 int kvm_ioapic_set_irq(struct kvm_ioapic
*ioapic
, int irq
, int level
)
180 u32 old_irr
= ioapic
->irr
;
182 union kvm_ioapic_redirect_entry entry
;
185 mutex_lock(&ioapic
->lock
);
186 if (irq
>= 0 && irq
< IOAPIC_NUM_PINS
) {
187 entry
= ioapic
->redirtbl
[irq
];
188 level
^= entry
.fields
.polarity
;
190 ioapic
->irr
&= ~mask
;
192 int edge
= (entry
.fields
.trig_mode
== IOAPIC_EDGE_TRIG
);
194 if ((edge
&& old_irr
!= ioapic
->irr
) ||
195 (!edge
&& !entry
.fields
.remote_irr
))
196 ret
= ioapic_service(ioapic
, irq
);
198 ret
= 0; /* report coalesced interrupt */
200 trace_kvm_ioapic_set_irq(entry
.bits
, irq
, ret
== 0);
202 mutex_unlock(&ioapic
->lock
);
207 static void __kvm_ioapic_update_eoi(struct kvm_ioapic
*ioapic
, int vector
,
212 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++) {
213 union kvm_ioapic_redirect_entry
*ent
= &ioapic
->redirtbl
[i
];
215 if (ent
->fields
.vector
!= vector
)
219 * We are dropping lock while calling ack notifiers because ack
220 * notifier callbacks for assigned devices call into IOAPIC
221 * recursively. Since remote_irr is cleared only after call
222 * to notifiers if the same vector will be delivered while lock
223 * is dropped it will be put into irr and will be delivered
224 * after ack notifier returns.
226 mutex_unlock(&ioapic
->lock
);
227 kvm_notify_acked_irq(ioapic
->kvm
, KVM_IRQCHIP_IOAPIC
, i
);
228 mutex_lock(&ioapic
->lock
);
230 if (trigger_mode
!= IOAPIC_LEVEL_TRIG
)
233 ASSERT(ent
->fields
.trig_mode
== IOAPIC_LEVEL_TRIG
);
234 ent
->fields
.remote_irr
= 0;
235 if (!ent
->fields
.mask
&& (ioapic
->irr
& (1 << i
)))
236 ioapic_service(ioapic
, i
);
240 void kvm_ioapic_update_eoi(struct kvm
*kvm
, int vector
, int trigger_mode
)
242 struct kvm_ioapic
*ioapic
= kvm
->arch
.vioapic
;
244 mutex_lock(&ioapic
->lock
);
245 __kvm_ioapic_update_eoi(ioapic
, vector
, trigger_mode
);
246 mutex_unlock(&ioapic
->lock
);
249 static inline struct kvm_ioapic
*to_ioapic(struct kvm_io_device
*dev
)
251 return container_of(dev
, struct kvm_ioapic
, dev
);
254 static inline int ioapic_in_range(struct kvm_ioapic
*ioapic
, gpa_t addr
)
256 return ((addr
>= ioapic
->base_address
&&
257 (addr
< ioapic
->base_address
+ IOAPIC_MEM_LENGTH
)));
260 static int ioapic_mmio_read(struct kvm_io_device
*this, gpa_t addr
, int len
,
263 struct kvm_ioapic
*ioapic
= to_ioapic(this);
265 if (!ioapic_in_range(ioapic
, addr
))
268 ioapic_debug("addr %lx\n", (unsigned long)addr
);
269 ASSERT(!(addr
& 0xf)); /* check alignment */
272 mutex_lock(&ioapic
->lock
);
274 case IOAPIC_REG_SELECT
:
275 result
= ioapic
->ioregsel
;
278 case IOAPIC_REG_WINDOW
:
279 result
= ioapic_read_indirect(ioapic
, addr
, len
);
286 mutex_unlock(&ioapic
->lock
);
290 *(u64
*) val
= result
;
295 memcpy(val
, (char *)&result
, len
);
298 printk(KERN_WARNING
"ioapic: wrong length %d\n", len
);
303 static int ioapic_mmio_write(struct kvm_io_device
*this, gpa_t addr
, int len
,
306 struct kvm_ioapic
*ioapic
= to_ioapic(this);
308 if (!ioapic_in_range(ioapic
, addr
))
311 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
312 (void*)addr
, len
, val
);
313 ASSERT(!(addr
& 0xf)); /* check alignment */
315 if (len
== 4 || len
== 8)
318 printk(KERN_WARNING
"ioapic: Unsupported size %d\n", len
);
323 mutex_lock(&ioapic
->lock
);
325 case IOAPIC_REG_SELECT
:
326 ioapic
->ioregsel
= data
;
329 case IOAPIC_REG_WINDOW
:
330 ioapic_write_indirect(ioapic
, data
);
334 __kvm_ioapic_update_eoi(ioapic
, data
, IOAPIC_LEVEL_TRIG
);
341 mutex_unlock(&ioapic
->lock
);
345 void kvm_ioapic_reset(struct kvm_ioapic
*ioapic
)
349 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++)
350 ioapic
->redirtbl
[i
].fields
.mask
= 1;
351 ioapic
->base_address
= IOAPIC_DEFAULT_BASE_ADDRESS
;
352 ioapic
->ioregsel
= 0;
357 static const struct kvm_io_device_ops ioapic_mmio_ops
= {
358 .read
= ioapic_mmio_read
,
359 .write
= ioapic_mmio_write
,
362 int kvm_ioapic_init(struct kvm
*kvm
)
364 struct kvm_ioapic
*ioapic
;
367 ioapic
= kzalloc(sizeof(struct kvm_ioapic
), GFP_KERNEL
);
370 mutex_init(&ioapic
->lock
);
371 kvm
->arch
.vioapic
= ioapic
;
372 kvm_ioapic_reset(ioapic
);
373 kvm_iodevice_init(&ioapic
->dev
, &ioapic_mmio_ops
);
375 ret
= kvm_io_bus_register_dev(kvm
, &kvm
->mmio_bus
, &ioapic
->dev
);
382 int kvm_get_ioapic(struct kvm
*kvm
, struct kvm_ioapic_state
*state
)
384 struct kvm_ioapic
*ioapic
= ioapic_irqchip(kvm
);
388 mutex_lock(&ioapic
->lock
);
389 memcpy(state
, ioapic
, sizeof(struct kvm_ioapic_state
));
390 mutex_unlock(&ioapic
->lock
);
394 int kvm_set_ioapic(struct kvm
*kvm
, struct kvm_ioapic_state
*state
)
396 struct kvm_ioapic
*ioapic
= ioapic_irqchip(kvm
);
400 mutex_lock(&ioapic
->lock
);
401 memcpy(ioapic
, state
, sizeof(struct kvm_ioapic_state
));
402 mutex_unlock(&ioapic
->lock
);