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>
44 #define ioapic_debug(fmt,arg...) printk(KERN_WARNING fmt,##arg)
46 #define ioapic_debug(fmt, arg...)
48 static int ioapic_deliver(struct kvm_ioapic
*vioapic
, int irq
);
50 static unsigned long ioapic_read_indirect(struct kvm_ioapic
*ioapic
,
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));
62 case IOAPIC_REG_APIC_ID
:
63 case IOAPIC_REG_ARB_ID
:
64 result
= ((ioapic
->id
& 0xf) << 24);
69 u32 redir_index
= (ioapic
->ioregsel
- 0x10) >> 1;
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;
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
)
104 switch (ioapic
->ioregsel
) {
105 case IOAPIC_REG_VERSION
:
106 /* Writes are ignored. */
109 case IOAPIC_REG_APIC_ID
:
110 ioapic
->id
= (val
>> 24) & 0xf;
113 case IOAPIC_REG_ARB_ID
:
117 index
= (ioapic
->ioregsel
- 0x10) >> 1;
119 ioapic_debug("change redir index %x val %x\n", index
, val
);
120 if (index
>= IOAPIC_NUM_PINS
)
122 if (ioapic
->ioregsel
& 1) {
123 ioapic
->redirtbl
[index
].bits
&= 0xffffffff;
124 ioapic
->redirtbl
[index
].bits
|= (u64
) val
<< 32;
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
);
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
,
143 ASSERT((delivery_mode
== IOAPIC_FIXED
) ||
144 (delivery_mode
== IOAPIC_LOWEST_PRIORITY
));
146 return kvm_apic_set_irq(vcpu
, vector
, trig_mode
);
149 static void ioapic_inj_nmi(struct kvm_vcpu
*vcpu
)
151 kvm_inject_nmi(vcpu
);
154 static u32
ioapic_get_delivery_bitmask(struct kvm_ioapic
*ioapic
, u8 dest
,
159 struct kvm
*kvm
= ioapic
->kvm
;
160 struct kvm_vcpu
*vcpu
;
162 ioapic_debug("dest %d dest_mode %d\n", dest
, dest_mode
);
164 if (dest_mode
== 0) { /* Physical mode. */
165 if (dest
== 0xFF) { /* Broadcast. */
166 for (i
= 0; i
< KVM_MAX_VCPUS
; ++i
)
167 if (kvm
->vcpus
[i
] && kvm
->vcpus
[i
]->arch
.apic
)
171 for (i
= 0; i
< KVM_MAX_VCPUS
; ++i
) {
172 vcpu
= kvm
->vcpus
[i
];
175 if (kvm_apic_match_physical_addr(vcpu
->arch
.apic
, dest
)) {
181 } else if (dest
!= 0) /* Logical mode, MDA non-zero. */
182 for (i
= 0; i
< KVM_MAX_VCPUS
; ++i
) {
183 vcpu
= kvm
->vcpus
[i
];
186 if (vcpu
->arch
.apic
&&
187 kvm_apic_match_logical_addr(vcpu
->arch
.apic
, dest
))
188 mask
|= 1 << vcpu
->vcpu_id
;
190 ioapic_debug("mask %x\n", mask
);
194 static int ioapic_deliver(struct kvm_ioapic
*ioapic
, int irq
)
196 u8 dest
= ioapic
->redirtbl
[irq
].fields
.dest_id
;
197 u8 dest_mode
= ioapic
->redirtbl
[irq
].fields
.dest_mode
;
198 u8 delivery_mode
= ioapic
->redirtbl
[irq
].fields
.delivery_mode
;
199 u8 vector
= ioapic
->redirtbl
[irq
].fields
.vector
;
200 u8 trig_mode
= ioapic
->redirtbl
[irq
].fields
.trig_mode
;
202 struct kvm_vcpu
*vcpu
;
205 ioapic_debug("dest=%x dest_mode=%x delivery_mode=%x "
206 "vector=%x trig_mode=%x\n",
207 dest
, dest_mode
, delivery_mode
, vector
, trig_mode
);
209 deliver_bitmask
= ioapic_get_delivery_bitmask(ioapic
, dest
, dest_mode
);
210 if (!deliver_bitmask
) {
211 ioapic_debug("no target on destination\n");
215 switch (delivery_mode
) {
216 case IOAPIC_LOWEST_PRIORITY
:
217 vcpu
= kvm_get_lowest_prio_vcpu(ioapic
->kvm
, vector
,
221 vcpu
= ioapic
->kvm
->vcpus
[0];
224 r
= ioapic_inj_irq(ioapic
, vcpu
, vector
,
225 trig_mode
, delivery_mode
);
227 ioapic_debug("null lowest prio vcpu: "
228 "mask=%x vector=%x delivery_mode=%x\n",
229 deliver_bitmask
, vector
, IOAPIC_LOWEST_PRIORITY
);
236 for (vcpu_id
= 0; deliver_bitmask
!= 0; vcpu_id
++) {
237 if (!(deliver_bitmask
& (1 << vcpu_id
)))
239 deliver_bitmask
&= ~(1 << vcpu_id
);
240 vcpu
= ioapic
->kvm
->vcpus
[vcpu_id
];
242 r
= ioapic_inj_irq(ioapic
, vcpu
, vector
,
243 trig_mode
, delivery_mode
);
248 for (vcpu_id
= 0; deliver_bitmask
!= 0; vcpu_id
++) {
249 if (!(deliver_bitmask
& (1 << vcpu_id
)))
251 deliver_bitmask
&= ~(1 << vcpu_id
);
252 vcpu
= ioapic
->kvm
->vcpus
[vcpu_id
];
254 ioapic_inj_nmi(vcpu
);
256 ioapic_debug("NMI to vcpu %d failed\n",
261 printk(KERN_WARNING
"Unsupported delivery mode %d\n",
268 void kvm_ioapic_set_irq(struct kvm_ioapic
*ioapic
, int irq
, int level
)
270 u32 old_irr
= ioapic
->irr
;
272 union ioapic_redir_entry entry
;
274 if (irq
>= 0 && irq
< IOAPIC_NUM_PINS
) {
275 entry
= ioapic
->redirtbl
[irq
];
276 level
^= entry
.fields
.polarity
;
278 ioapic
->irr
&= ~mask
;
281 if ((!entry
.fields
.trig_mode
&& old_irr
!= ioapic
->irr
)
282 || !entry
.fields
.remote_irr
)
283 ioapic_service(ioapic
, irq
);
288 static void __kvm_ioapic_update_eoi(struct kvm_ioapic
*ioapic
, int gsi
)
290 union ioapic_redir_entry
*ent
;
292 ent
= &ioapic
->redirtbl
[gsi
];
293 ASSERT(ent
->fields
.trig_mode
== IOAPIC_LEVEL_TRIG
);
295 ent
->fields
.remote_irr
= 0;
296 if (!ent
->fields
.mask
&& (ioapic
->irr
& (1 << gsi
)))
297 ioapic_service(ioapic
, gsi
);
300 void kvm_ioapic_update_eoi(struct kvm
*kvm
, int vector
)
302 struct kvm_ioapic
*ioapic
= kvm
->arch
.vioapic
;
305 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++)
306 if (ioapic
->redirtbl
[i
].fields
.vector
== vector
)
307 __kvm_ioapic_update_eoi(ioapic
, i
);
310 static int ioapic_in_range(struct kvm_io_device
*this, gpa_t addr
,
311 int len
, int is_write
)
313 struct kvm_ioapic
*ioapic
= (struct kvm_ioapic
*)this->private;
315 return ((addr
>= ioapic
->base_address
&&
316 (addr
< ioapic
->base_address
+ IOAPIC_MEM_LENGTH
)));
319 static void ioapic_mmio_read(struct kvm_io_device
*this, gpa_t addr
, int len
,
322 struct kvm_ioapic
*ioapic
= (struct kvm_ioapic
*)this->private;
325 ioapic_debug("addr %lx\n", (unsigned long)addr
);
326 ASSERT(!(addr
& 0xf)); /* check alignment */
330 case IOAPIC_REG_SELECT
:
331 result
= ioapic
->ioregsel
;
334 case IOAPIC_REG_WINDOW
:
335 result
= ioapic_read_indirect(ioapic
, addr
, len
);
344 *(u64
*) val
= result
;
349 memcpy(val
, (char *)&result
, len
);
352 printk(KERN_WARNING
"ioapic: wrong length %d\n", len
);
356 static void ioapic_mmio_write(struct kvm_io_device
*this, gpa_t addr
, int len
,
359 struct kvm_ioapic
*ioapic
= (struct kvm_ioapic
*)this->private;
362 ioapic_debug("ioapic_mmio_write addr=%p len=%d val=%p\n",
363 (void*)addr
, len
, val
);
364 ASSERT(!(addr
& 0xf)); /* check alignment */
365 if (len
== 4 || len
== 8)
368 printk(KERN_WARNING
"ioapic: Unsupported size %d\n", len
);
374 case IOAPIC_REG_SELECT
:
375 ioapic
->ioregsel
= data
;
378 case IOAPIC_REG_WINDOW
:
379 ioapic_write_indirect(ioapic
, data
);
383 kvm_ioapic_update_eoi(ioapic
->kvm
, data
);
392 void kvm_ioapic_reset(struct kvm_ioapic
*ioapic
)
396 for (i
= 0; i
< IOAPIC_NUM_PINS
; i
++)
397 ioapic
->redirtbl
[i
].fields
.mask
= 1;
398 ioapic
->base_address
= IOAPIC_DEFAULT_BASE_ADDRESS
;
399 ioapic
->ioregsel
= 0;
404 int kvm_ioapic_init(struct kvm
*kvm
)
406 struct kvm_ioapic
*ioapic
;
408 ioapic
= kzalloc(sizeof(struct kvm_ioapic
), GFP_KERNEL
);
411 kvm
->arch
.vioapic
= ioapic
;
412 kvm_ioapic_reset(ioapic
);
413 ioapic
->dev
.read
= ioapic_mmio_read
;
414 ioapic
->dev
.write
= ioapic_mmio_write
;
415 ioapic
->dev
.in_range
= ioapic_in_range
;
416 ioapic
->dev
.private = ioapic
;
418 kvm_io_bus_register_dev(&kvm
->mmio_bus
, &ioapic
->dev
);