Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
  1/*
  2 *  Copyright (C) 2001  MandrakeSoft S.A.
  3 *  Copyright 2010 Red Hat, Inc. and/or its affiliates.
  4 *
  5 *    MandrakeSoft S.A.
  6 *    43, rue d'Aboukir
  7 *    75002 Paris - France
  8 *    http://www.linux-mandrake.com/
  9 *    http://www.mandrakesoft.com/
 10 *
 11 *  This library is free software; you can redistribute it and/or
 12 *  modify it under the terms of the GNU Lesser General Public
 13 *  License as published by the Free Software Foundation; either
 14 *  version 2 of the License, or (at your option) any later version.
 15 *
 16 *  This library is distributed in the hope that it will be useful,
 17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 19 *  Lesser General Public License for more details.
 20 *
 21 *  You should have received a copy of the GNU Lesser General Public
 22 *  License along with this library; if not, write to the Free Software
 23 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 24 *
 25 *  Yunhong Jiang <yunhong.jiang@intel.com>
 26 *  Yaozu (Eddie) Dong <eddie.dong@intel.com>
 27 *  Based on Xen 3.1 code.
 28 */
 29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 30
 31#include <linux/kvm_host.h>
 32#include <linux/kvm.h>
 33#include <linux/mm.h>
 34#include <linux/highmem.h>
 35#include <linux/smp.h>
 36#include <linux/hrtimer.h>
 37#include <linux/io.h>
 38#include <linux/slab.h>
 39#include <linux/export.h>
 40#include <linux/nospec.h>
 41#include <asm/processor.h>
 42#include <asm/page.h>
 43#include <asm/current.h>
 44#include <trace/events/kvm.h>
 45
 46#include "ioapic.h"
 47#include "lapic.h"
 48#include "irq.h"
 49
 50static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
 51		bool line_status);
 52
 53static void kvm_ioapic_update_eoi_one(struct kvm_vcpu *vcpu,
 54				      struct kvm_ioapic *ioapic,
 55				      int trigger_mode,
 56				      int pin);
 57
 58static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic)
 59{
 60	unsigned long result = 0;
 61
 62	switch (ioapic->ioregsel) {
 63	case IOAPIC_REG_VERSION:
 64		result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
 65			  | (IOAPIC_VERSION_ID & 0xff));
 66		break;
 67
 68	case IOAPIC_REG_APIC_ID:
 69	case IOAPIC_REG_ARB_ID:
 70		result = ((ioapic->id & 0xf) << 24);
 71		break;
 72
 73	default:
 74		{
 75			u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
 76			u64 redir_content = ~0ULL;
 77
 78			if (redir_index < IOAPIC_NUM_PINS) {
 79				u32 index = array_index_nospec(
 80					redir_index, IOAPIC_NUM_PINS);
 81
 82				redir_content = ioapic->redirtbl[index].bits;
 83			}
 
 
 
 84
 85			result = (ioapic->ioregsel & 0x1) ?
 86			    (redir_content >> 32) & 0xffffffff :
 87			    redir_content & 0xffffffff;
 88			break;
 89		}
 90	}
 91
 92	return result;
 93}
 94
 95static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
 96{
 97	ioapic->rtc_status.pending_eoi = 0;
 98	bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPU_IDS);
 99}
100
101static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic);
102
103static void rtc_status_pending_eoi_check_valid(struct kvm_ioapic *ioapic)
104{
105	if (WARN_ON(ioapic->rtc_status.pending_eoi < 0))
106		kvm_rtc_eoi_tracking_restore_all(ioapic);
107}
108
109static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
110{
111	bool new_val, old_val;
112	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
113	struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
114	union kvm_ioapic_redirect_entry *e;
115
116	e = &ioapic->redirtbl[RTC_GSI];
117	if (!kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
118				 e->fields.dest_id,
119				 kvm_lapic_irq_dest_mode(!!e->fields.dest_mode)))
120		return;
121
122	new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
123	old_val = test_bit(vcpu->vcpu_id, dest_map->map);
124
125	if (new_val == old_val)
126		return;
127
128	if (new_val) {
129		__set_bit(vcpu->vcpu_id, dest_map->map);
130		dest_map->vectors[vcpu->vcpu_id] = e->fields.vector;
131		ioapic->rtc_status.pending_eoi++;
132	} else {
133		__clear_bit(vcpu->vcpu_id, dest_map->map);
134		ioapic->rtc_status.pending_eoi--;
135		rtc_status_pending_eoi_check_valid(ioapic);
136	}
137}
138
139void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
140{
141	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
142
143	spin_lock(&ioapic->lock);
144	__rtc_irq_eoi_tracking_restore_one(vcpu);
145	spin_unlock(&ioapic->lock);
146}
147
148static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
149{
150	struct kvm_vcpu *vcpu;
151	unsigned long i;
152
153	if (RTC_GSI >= IOAPIC_NUM_PINS)
154		return;
155
156	rtc_irq_eoi_tracking_reset(ioapic);
157	kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
158	    __rtc_irq_eoi_tracking_restore_one(vcpu);
159}
160
161static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu,
162			int vector)
163{
164	struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
165
166	/* RTC special handling */
167	if (test_bit(vcpu->vcpu_id, dest_map->map) &&
168	    (vector == dest_map->vectors[vcpu->vcpu_id]) &&
169	    (test_and_clear_bit(vcpu->vcpu_id,
170				ioapic->rtc_status.dest_map.map))) {
171		--ioapic->rtc_status.pending_eoi;
172		rtc_status_pending_eoi_check_valid(ioapic);
173	}
174}
175
176static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
177{
178	if (ioapic->rtc_status.pending_eoi > 0)
179		return true; /* coalesced */
180
181	return false;
182}
183
184static void ioapic_lazy_update_eoi(struct kvm_ioapic *ioapic, int irq)
185{
186	unsigned long i;
187	struct kvm_vcpu *vcpu;
188	union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
189
190	kvm_for_each_vcpu(i, vcpu, ioapic->kvm) {
191		if (!kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
192					 entry->fields.dest_id,
193					 entry->fields.dest_mode) ||
194		    kvm_apic_pending_eoi(vcpu, entry->fields.vector))
195			continue;
196
197		/*
198		 * If no longer has pending EOI in LAPICs, update
199		 * EOI for this vector.
200		 */
201		rtc_irq_eoi(ioapic, vcpu, entry->fields.vector);
202		break;
203	}
204}
205
206static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
207		int irq_level, bool line_status)
208{
209	union kvm_ioapic_redirect_entry entry;
210	u32 mask = 1 << irq;
211	u32 old_irr;
212	int edge, ret;
213
214	entry = ioapic->redirtbl[irq];
215	edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
216
217	if (!irq_level) {
218		ioapic->irr &= ~mask;
219		ret = 1;
220		goto out;
221	}
222
223	/*
224	 * AMD SVM AVIC accelerate EOI write iff the interrupt is edge
225	 * triggered, in which case the in-kernel IOAPIC will not be able
226	 * to receive the EOI.  In this case, we do a lazy update of the
227	 * pending EOI when trying to set IOAPIC irq.
228	 */
229	if (edge && kvm_apicv_activated(ioapic->kvm))
230		ioapic_lazy_update_eoi(ioapic, irq);
231
232	/*
233	 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
234	 * this only happens if a previous edge has not been delivered due
235	 * to masking.  For level interrupts, the remote_irr field tells
236	 * us if the interrupt is waiting for an EOI.
237	 *
238	 * RTC is special: it is edge-triggered, but userspace likes to know
239	 * if it has been already ack-ed via EOI because coalesced RTC
240	 * interrupts lead to time drift in Windows guests.  So we track
241	 * EOI manually for the RTC interrupt.
242	 */
243	if (irq == RTC_GSI && line_status &&
244		rtc_irq_check_coalesced(ioapic)) {
245		ret = 0;
246		goto out;
247	}
248
249	old_irr = ioapic->irr;
250	ioapic->irr |= mask;
251	if (edge) {
252		ioapic->irr_delivered &= ~mask;
253		if (old_irr == ioapic->irr) {
254			ret = 0;
255			goto out;
256		}
257	}
258
259	ret = ioapic_service(ioapic, irq, line_status);
260
261out:
262	trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
263	return ret;
264}
265
266static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
267{
268	u32 idx;
269
270	rtc_irq_eoi_tracking_reset(ioapic);
271	for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
272		ioapic_set_irq(ioapic, idx, 1, true);
273
274	kvm_rtc_eoi_tracking_restore_all(ioapic);
275}
276
277
278void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
279{
280	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
281	struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
282	union kvm_ioapic_redirect_entry *e;
283	int index;
284
285	spin_lock(&ioapic->lock);
286
287	/* Make sure we see any missing RTC EOI */
288	if (test_bit(vcpu->vcpu_id, dest_map->map))
289		__set_bit(dest_map->vectors[vcpu->vcpu_id],
290			  ioapic_handled_vectors);
291
292	for (index = 0; index < IOAPIC_NUM_PINS; index++) {
293		e = &ioapic->redirtbl[index];
294		if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
295		    kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
296		    index == RTC_GSI) {
297			u16 dm = kvm_lapic_irq_dest_mode(!!e->fields.dest_mode);
298
299			if (kvm_apic_match_dest(vcpu, NULL, APIC_DEST_NOSHORT,
300						e->fields.dest_id, dm) ||
301			    kvm_apic_pending_eoi(vcpu, e->fields.vector))
302				__set_bit(e->fields.vector,
303					  ioapic_handled_vectors);
304		}
305	}
306	spin_unlock(&ioapic->lock);
307}
308
309void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
310{
311	if (!ioapic_in_kernel(kvm))
312		return;
313	kvm_make_scan_ioapic_request(kvm);
314}
315
316static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
317{
318	unsigned index;
319	bool mask_before, mask_after;
 
320	union kvm_ioapic_redirect_entry *e;
321	int old_remote_irr, old_delivery_status, old_dest_id, old_dest_mode;
322	DECLARE_BITMAP(vcpu_bitmap, KVM_MAX_VCPUS);
323
324	switch (ioapic->ioregsel) {
325	case IOAPIC_REG_VERSION:
326		/* Writes are ignored. */
327		break;
328
329	case IOAPIC_REG_APIC_ID:
330		ioapic->id = (val >> 24) & 0xf;
331		break;
332
333	case IOAPIC_REG_ARB_ID:
334		break;
335
336	default:
337		index = (ioapic->ioregsel - 0x10) >> 1;
338
339		if (index >= IOAPIC_NUM_PINS)
340			return;
341		index = array_index_nospec(index, IOAPIC_NUM_PINS);
342		e = &ioapic->redirtbl[index];
343		mask_before = e->fields.mask;
344		/* Preserve read-only fields */
345		old_remote_irr = e->fields.remote_irr;
346		old_delivery_status = e->fields.delivery_status;
347		old_dest_id = e->fields.dest_id;
348		old_dest_mode = e->fields.dest_mode;
349		if (ioapic->ioregsel & 1) {
350			e->bits &= 0xffffffff;
351			e->bits |= (u64) val << 32;
352		} else {
353			e->bits &= ~0xffffffffULL;
354			e->bits |= (u32) val;
355		}
356		e->fields.remote_irr = old_remote_irr;
357		e->fields.delivery_status = old_delivery_status;
358
359		/*
360		 * Some OSes (Linux, Xen) assume that Remote IRR bit will
361		 * be cleared by IOAPIC hardware when the entry is configured
362		 * as edge-triggered. This behavior is used to simulate an
363		 * explicit EOI on IOAPICs that don't have the EOI register.
364		 */
365		if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
366			e->fields.remote_irr = 0;
367
368		mask_after = e->fields.mask;
369		if (mask_before != mask_after)
370			kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
371		if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG &&
372		    ioapic->irr & (1 << index) && !e->fields.mask && !e->fields.remote_irr) {
373			/*
374			 * Pending status in irr may be outdated: the IRQ line may have
375			 * already been deasserted by a device while the IRQ was masked.
376			 * This occurs, for instance, if the interrupt is handled in a
377			 * Linux guest as a oneshot interrupt (IRQF_ONESHOT). In this
378			 * case the guest acknowledges the interrupt to the device in
379			 * its threaded irq handler, i.e. after the EOI but before
380			 * unmasking, so at the time of unmasking the IRQ line is
381			 * already down but our pending irr bit is still set. In such
382			 * cases, injecting this pending interrupt to the guest is
383			 * buggy: the guest will receive an extra unwanted interrupt.
384			 *
385			 * So we need to check here if the IRQ is actually still pending.
386			 * As we are generally not able to probe the IRQ line status
387			 * directly, we do it through irqfd resampler. Namely, we clear
388			 * the pending status and notify the resampler that this interrupt
389			 * is done, without actually injecting it into the guest. If the
390			 * IRQ line is actually already deasserted, we are done. If it is
391			 * still asserted, a new interrupt will be shortly triggered
392			 * through irqfd and injected into the guest.
393			 *
394			 * If, however, it's not possible to resample (no irqfd resampler
395			 * registered for this irq), then unconditionally inject this
396			 * pending interrupt into the guest, so the guest will not miss
397			 * an interrupt, although may get an extra unwanted interrupt.
398			 */
399			if (kvm_notify_irqfd_resampler(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index))
400				ioapic->irr &= ~(1 << index);
401			else
402				ioapic_service(ioapic, index, false);
403		}
404		if (e->fields.delivery_mode == APIC_DM_FIXED) {
405			struct kvm_lapic_irq irq;
406
407			irq.vector = e->fields.vector;
408			irq.delivery_mode = e->fields.delivery_mode << 8;
409			irq.dest_mode =
410			    kvm_lapic_irq_dest_mode(!!e->fields.dest_mode);
411			irq.level = false;
412			irq.trig_mode = e->fields.trig_mode;
413			irq.shorthand = APIC_DEST_NOSHORT;
414			irq.dest_id = e->fields.dest_id;
415			irq.msi_redir_hint = false;
416			bitmap_zero(vcpu_bitmap, KVM_MAX_VCPUS);
417			kvm_bitmap_or_dest_vcpus(ioapic->kvm, &irq,
418						 vcpu_bitmap);
419			if (old_dest_mode != e->fields.dest_mode ||
420			    old_dest_id != e->fields.dest_id) {
421				/*
422				 * Update vcpu_bitmap with vcpus specified in
423				 * the previous request as well. This is done to
424				 * keep ioapic_handled_vectors synchronized.
425				 */
426				irq.dest_id = old_dest_id;
427				irq.dest_mode =
428				    kvm_lapic_irq_dest_mode(
429					!!e->fields.dest_mode);
430				kvm_bitmap_or_dest_vcpus(ioapic->kvm, &irq,
431							 vcpu_bitmap);
432			}
433			kvm_make_scan_ioapic_request_mask(ioapic->kvm,
434							  vcpu_bitmap);
435		} else {
436			kvm_make_scan_ioapic_request(ioapic->kvm);
437		}
438		break;
439	}
440}
441
442static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
443{
444	union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
445	struct kvm_lapic_irq irqe;
446	int ret;
447
448	if (entry->fields.mask ||
449	    (entry->fields.trig_mode == IOAPIC_LEVEL_TRIG &&
450	    entry->fields.remote_irr))
451		return -1;
452
453	irqe.dest_id = entry->fields.dest_id;
454	irqe.vector = entry->fields.vector;
455	irqe.dest_mode = kvm_lapic_irq_dest_mode(!!entry->fields.dest_mode);
456	irqe.trig_mode = entry->fields.trig_mode;
457	irqe.delivery_mode = entry->fields.delivery_mode << 8;
458	irqe.level = 1;
459	irqe.shorthand = APIC_DEST_NOSHORT;
460	irqe.msi_redir_hint = false;
461
462	if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
463		ioapic->irr_delivered |= 1 << irq;
464
465	if (irq == RTC_GSI && line_status) {
466		/*
467		 * pending_eoi cannot ever become negative (see
468		 * rtc_status_pending_eoi_check_valid) and the caller
469		 * ensures that it is only called if it is >= zero, namely
470		 * if rtc_irq_check_coalesced returns false).
471		 */
472		BUG_ON(ioapic->rtc_status.pending_eoi != 0);
473		ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
474					       &ioapic->rtc_status.dest_map);
475		ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
476	} else
477		ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
478
479	if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
480		entry->fields.remote_irr = 1;
481
482	return ret;
483}
484
485int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
486		       int level, bool line_status)
487{
488	int ret, irq_level;
489
490	BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
491
492	spin_lock(&ioapic->lock);
493	irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
494					 irq_source_id, level);
495	ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
496
497	spin_unlock(&ioapic->lock);
498
499	return ret;
500}
501
502void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
503{
504	int i;
505
506	spin_lock(&ioapic->lock);
507	for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
508		__clear_bit(irq_source_id, &ioapic->irq_states[i]);
509	spin_unlock(&ioapic->lock);
510}
511
512static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
513{
514	int i;
515	struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
516						 eoi_inject.work);
517	spin_lock(&ioapic->lock);
518	for (i = 0; i < IOAPIC_NUM_PINS; i++) {
519		union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
520
521		if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
522			continue;
523
524		if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
525			ioapic_service(ioapic, i, false);
526	}
527	spin_unlock(&ioapic->lock);
528}
529
530#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
531static void kvm_ioapic_update_eoi_one(struct kvm_vcpu *vcpu,
532				      struct kvm_ioapic *ioapic,
533				      int trigger_mode,
534				      int pin)
535{
 
536	struct kvm_lapic *apic = vcpu->arch.apic;
537	union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[pin];
538
539	/*
540	 * We are dropping lock while calling ack notifiers because ack
541	 * notifier callbacks for assigned devices call into IOAPIC
542	 * recursively. Since remote_irr is cleared only after call
543	 * to notifiers if the same vector will be delivered while lock
544	 * is dropped it will be put into irr and will be delivered
545	 * after ack notifier returns.
546	 */
547	spin_unlock(&ioapic->lock);
548	kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, pin);
549	spin_lock(&ioapic->lock);
550
551	if (trigger_mode != IOAPIC_LEVEL_TRIG ||
552	    kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
553		return;
 
 
554
555	ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
556	ent->fields.remote_irr = 0;
557	if (!ent->fields.mask && (ioapic->irr & (1 << pin))) {
558		++ioapic->irq_eoi[pin];
559		if (ioapic->irq_eoi[pin] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
560			/*
561			 * Real hardware does not deliver the interrupt
562			 * immediately during eoi broadcast, and this
563			 * lets a buggy guest make slow progress
564			 * even if it does not correctly handle a
565			 * level-triggered interrupt.  Emulate this
566			 * behavior if we detect an interrupt storm.
567			 */
568			schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
569			ioapic->irq_eoi[pin] = 0;
570			trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571		} else {
572			ioapic_service(ioapic, pin, false);
573		}
574	} else {
575		ioapic->irq_eoi[pin] = 0;
576	}
577}
578
579void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
580{
581	int i;
582	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
583
584	spin_lock(&ioapic->lock);
585	rtc_irq_eoi(ioapic, vcpu, vector);
586	for (i = 0; i < IOAPIC_NUM_PINS; i++) {
587		union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
588
589		if (ent->fields.vector != vector)
590			continue;
591		kvm_ioapic_update_eoi_one(vcpu, ioapic, trigger_mode, i);
592	}
593	spin_unlock(&ioapic->lock);
594}
595
596static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
597{
598	return container_of(dev, struct kvm_ioapic, dev);
599}
600
601static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
602{
603	return ((addr >= ioapic->base_address &&
604		 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
605}
606
607static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
608				gpa_t addr, int len, void *val)
609{
610	struct kvm_ioapic *ioapic = to_ioapic(this);
611	u32 result;
612	if (!ioapic_in_range(ioapic, addr))
613		return -EOPNOTSUPP;
614
615	ASSERT(!(addr & 0xf));	/* check alignment */
616
617	addr &= 0xff;
618	spin_lock(&ioapic->lock);
619	switch (addr) {
620	case IOAPIC_REG_SELECT:
621		result = ioapic->ioregsel;
622		break;
623
624	case IOAPIC_REG_WINDOW:
625		result = ioapic_read_indirect(ioapic);
626		break;
627
628	default:
629		result = 0;
630		break;
631	}
632	spin_unlock(&ioapic->lock);
633
634	switch (len) {
635	case 8:
636		*(u64 *) val = result;
637		break;
638	case 1:
639	case 2:
640	case 4:
641		memcpy(val, (char *)&result, len);
642		break;
643	default:
644		printk(KERN_WARNING "ioapic: wrong length %d\n", len);
645	}
646	return 0;
647}
648
649static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
650				 gpa_t addr, int len, const void *val)
651{
652	struct kvm_ioapic *ioapic = to_ioapic(this);
653	u32 data;
654	if (!ioapic_in_range(ioapic, addr))
655		return -EOPNOTSUPP;
656
657	ASSERT(!(addr & 0xf));	/* check alignment */
658
659	switch (len) {
660	case 8:
661	case 4:
662		data = *(u32 *) val;
663		break;
664	case 2:
665		data = *(u16 *) val;
666		break;
667	case 1:
668		data = *(u8  *) val;
669		break;
670	default:
671		printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
672		return 0;
673	}
674
675	addr &= 0xff;
676	spin_lock(&ioapic->lock);
677	switch (addr) {
678	case IOAPIC_REG_SELECT:
679		ioapic->ioregsel = data & 0xFF; /* 8-bit register */
680		break;
681
682	case IOAPIC_REG_WINDOW:
683		ioapic_write_indirect(ioapic, data);
684		break;
685
686	default:
687		break;
688	}
689	spin_unlock(&ioapic->lock);
690	return 0;
691}
692
693static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
694{
695	int i;
696
697	cancel_delayed_work_sync(&ioapic->eoi_inject);
698	for (i = 0; i < IOAPIC_NUM_PINS; i++)
699		ioapic->redirtbl[i].fields.mask = 1;
700	ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
701	ioapic->ioregsel = 0;
702	ioapic->irr = 0;
703	ioapic->irr_delivered = 0;
704	ioapic->id = 0;
705	memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
706	rtc_irq_eoi_tracking_reset(ioapic);
707}
708
709static const struct kvm_io_device_ops ioapic_mmio_ops = {
710	.read     = ioapic_mmio_read,
711	.write    = ioapic_mmio_write,
712};
713
714int kvm_ioapic_init(struct kvm *kvm)
715{
716	struct kvm_ioapic *ioapic;
717	int ret;
718
719	ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL_ACCOUNT);
720	if (!ioapic)
721		return -ENOMEM;
722	spin_lock_init(&ioapic->lock);
723	INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
724	kvm->arch.vioapic = ioapic;
725	kvm_ioapic_reset(ioapic);
726	kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
727	ioapic->kvm = kvm;
728	mutex_lock(&kvm->slots_lock);
729	ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
730				      IOAPIC_MEM_LENGTH, &ioapic->dev);
731	mutex_unlock(&kvm->slots_lock);
732	if (ret < 0) {
733		kvm->arch.vioapic = NULL;
734		kfree(ioapic);
735	}
736
737	return ret;
738}
739
740void kvm_ioapic_destroy(struct kvm *kvm)
741{
742	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
743
744	if (!ioapic)
745		return;
746
747	cancel_delayed_work_sync(&ioapic->eoi_inject);
748	mutex_lock(&kvm->slots_lock);
749	kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
750	mutex_unlock(&kvm->slots_lock);
751	kvm->arch.vioapic = NULL;
752	kfree(ioapic);
753}
754
755void kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
756{
757	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
758
759	spin_lock(&ioapic->lock);
760	memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
761	state->irr &= ~ioapic->irr_delivered;
762	spin_unlock(&ioapic->lock);
763}
764
765void kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
766{
767	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
768
769	spin_lock(&ioapic->lock);
770	memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
771	ioapic->irr = 0;
772	ioapic->irr_delivered = 0;
773	kvm_make_scan_ioapic_request(kvm);
774	kvm_ioapic_inject_all(ioapic, state->irr);
775	spin_unlock(&ioapic->lock);
776}
  1/*
  2 *  Copyright (C) 2001  MandrakeSoft S.A.
  3 *  Copyright 2010 Red Hat, Inc. and/or its affiliates.
  4 *
  5 *    MandrakeSoft S.A.
  6 *    43, rue d'Aboukir
  7 *    75002 Paris - France
  8 *    http://www.linux-mandrake.com/
  9 *    http://www.mandrakesoft.com/
 10 *
 11 *  This library is free software; you can redistribute it and/or
 12 *  modify it under the terms of the GNU Lesser General Public
 13 *  License as published by the Free Software Foundation; either
 14 *  version 2 of the License, or (at your option) any later version.
 15 *
 16 *  This library is distributed in the hope that it will be useful,
 17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 19 *  Lesser General Public License for more details.
 20 *
 21 *  You should have received a copy of the GNU Lesser General Public
 22 *  License along with this library; if not, write to the Free Software
 23 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 24 *
 25 *  Yunhong Jiang <yunhong.jiang@intel.com>
 26 *  Yaozu (Eddie) Dong <eddie.dong@intel.com>
 27 *  Based on Xen 3.1 code.
 28 */
 
 29
 30#include <linux/kvm_host.h>
 31#include <linux/kvm.h>
 32#include <linux/mm.h>
 33#include <linux/highmem.h>
 34#include <linux/smp.h>
 35#include <linux/hrtimer.h>
 36#include <linux/io.h>
 37#include <linux/slab.h>
 38#include <linux/export.h>
 
 39#include <asm/processor.h>
 40#include <asm/page.h>
 41#include <asm/current.h>
 42#include <trace/events/kvm.h>
 43
 44#include "ioapic.h"
 45#include "lapic.h"
 46#include "irq.h"
 47
 48static int ioapic_service(struct kvm_ioapic *vioapic, int irq,
 49		bool line_status);
 50
 51static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic,
 52					  unsigned long addr,
 53					  unsigned long length)
 
 
 
 54{
 55	unsigned long result = 0;
 56
 57	switch (ioapic->ioregsel) {
 58	case IOAPIC_REG_VERSION:
 59		result = ((((IOAPIC_NUM_PINS - 1) & 0xff) << 16)
 60			  | (IOAPIC_VERSION_ID & 0xff));
 61		break;
 62
 63	case IOAPIC_REG_APIC_ID:
 64	case IOAPIC_REG_ARB_ID:
 65		result = ((ioapic->id & 0xf) << 24);
 66		break;
 67
 68	default:
 69		{
 70			u32 redir_index = (ioapic->ioregsel - 0x10) >> 1;
 71			u64 redir_content;
 
 
 
 
 72
 73			if (redir_index < IOAPIC_NUM_PINS)
 74				redir_content =
 75					ioapic->redirtbl[redir_index].bits;
 76			else
 77				redir_content = ~0ULL;
 78
 79			result = (ioapic->ioregsel & 0x1) ?
 80			    (redir_content >> 32) & 0xffffffff :
 81			    redir_content & 0xffffffff;
 82			break;
 83		}
 84	}
 85
 86	return result;
 87}
 88
 89static void rtc_irq_eoi_tracking_reset(struct kvm_ioapic *ioapic)
 90{
 91	ioapic->rtc_status.pending_eoi = 0;
 92	bitmap_zero(ioapic->rtc_status.dest_map.map, KVM_MAX_VCPU_ID);
 93}
 94
 95static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic);
 96
 97static void rtc_status_pending_eoi_check_valid(struct kvm_ioapic *ioapic)
 98{
 99	if (WARN_ON(ioapic->rtc_status.pending_eoi < 0))
100		kvm_rtc_eoi_tracking_restore_all(ioapic);
101}
102
103static void __rtc_irq_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
104{
105	bool new_val, old_val;
106	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
107	struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
108	union kvm_ioapic_redirect_entry *e;
109
110	e = &ioapic->redirtbl[RTC_GSI];
111	if (!kvm_apic_match_dest(vcpu, NULL, 0,	e->fields.dest_id,
112				e->fields.dest_mode))
 
113		return;
114
115	new_val = kvm_apic_pending_eoi(vcpu, e->fields.vector);
116	old_val = test_bit(vcpu->vcpu_id, dest_map->map);
117
118	if (new_val == old_val)
119		return;
120
121	if (new_val) {
122		__set_bit(vcpu->vcpu_id, dest_map->map);
123		dest_map->vectors[vcpu->vcpu_id] = e->fields.vector;
124		ioapic->rtc_status.pending_eoi++;
125	} else {
126		__clear_bit(vcpu->vcpu_id, dest_map->map);
127		ioapic->rtc_status.pending_eoi--;
128		rtc_status_pending_eoi_check_valid(ioapic);
129	}
130}
131
132void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu)
133{
134	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
135
136	spin_lock(&ioapic->lock);
137	__rtc_irq_eoi_tracking_restore_one(vcpu);
138	spin_unlock(&ioapic->lock);
139}
140
141static void kvm_rtc_eoi_tracking_restore_all(struct kvm_ioapic *ioapic)
142{
143	struct kvm_vcpu *vcpu;
144	int i;
145
146	if (RTC_GSI >= IOAPIC_NUM_PINS)
147		return;
148
149	rtc_irq_eoi_tracking_reset(ioapic);
150	kvm_for_each_vcpu(i, vcpu, ioapic->kvm)
151	    __rtc_irq_eoi_tracking_restore_one(vcpu);
152}
153
154static void rtc_irq_eoi(struct kvm_ioapic *ioapic, struct kvm_vcpu *vcpu)
 
155{
156	if (test_and_clear_bit(vcpu->vcpu_id,
157			       ioapic->rtc_status.dest_map.map)) {
 
 
 
 
 
158		--ioapic->rtc_status.pending_eoi;
159		rtc_status_pending_eoi_check_valid(ioapic);
160	}
161}
162
163static bool rtc_irq_check_coalesced(struct kvm_ioapic *ioapic)
164{
165	if (ioapic->rtc_status.pending_eoi > 0)
166		return true; /* coalesced */
167
168	return false;
169}
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq,
172		int irq_level, bool line_status)
173{
174	union kvm_ioapic_redirect_entry entry;
175	u32 mask = 1 << irq;
176	u32 old_irr;
177	int edge, ret;
178
179	entry = ioapic->redirtbl[irq];
180	edge = (entry.fields.trig_mode == IOAPIC_EDGE_TRIG);
181
182	if (!irq_level) {
183		ioapic->irr &= ~mask;
184		ret = 1;
185		goto out;
186	}
187
188	/*
 
 
 
 
 
 
 
 
 
189	 * Return 0 for coalesced interrupts; for edge-triggered interrupts,
190	 * this only happens if a previous edge has not been delivered due
191	 * do masking.  For level interrupts, the remote_irr field tells
192	 * us if the interrupt is waiting for an EOI.
193	 *
194	 * RTC is special: it is edge-triggered, but userspace likes to know
195	 * if it has been already ack-ed via EOI because coalesced RTC
196	 * interrupts lead to time drift in Windows guests.  So we track
197	 * EOI manually for the RTC interrupt.
198	 */
199	if (irq == RTC_GSI && line_status &&
200		rtc_irq_check_coalesced(ioapic)) {
201		ret = 0;
202		goto out;
203	}
204
205	old_irr = ioapic->irr;
206	ioapic->irr |= mask;
207	if (edge) {
208		ioapic->irr_delivered &= ~mask;
209		if (old_irr == ioapic->irr) {
210			ret = 0;
211			goto out;
212		}
213	}
214
215	ret = ioapic_service(ioapic, irq, line_status);
216
217out:
218	trace_kvm_ioapic_set_irq(entry.bits, irq, ret == 0);
219	return ret;
220}
221
222static void kvm_ioapic_inject_all(struct kvm_ioapic *ioapic, unsigned long irr)
223{
224	u32 idx;
225
226	rtc_irq_eoi_tracking_reset(ioapic);
227	for_each_set_bit(idx, &irr, IOAPIC_NUM_PINS)
228		ioapic_set_irq(ioapic, idx, 1, true);
229
230	kvm_rtc_eoi_tracking_restore_all(ioapic);
231}
232
233
234void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu, ulong *ioapic_handled_vectors)
235{
236	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
237	struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
238	union kvm_ioapic_redirect_entry *e;
239	int index;
240
241	spin_lock(&ioapic->lock);
242
243	/* Make sure we see any missing RTC EOI */
244	if (test_bit(vcpu->vcpu_id, dest_map->map))
245		__set_bit(dest_map->vectors[vcpu->vcpu_id],
246			  ioapic_handled_vectors);
247
248	for (index = 0; index < IOAPIC_NUM_PINS; index++) {
249		e = &ioapic->redirtbl[index];
250		if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG ||
251		    kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index) ||
252		    index == RTC_GSI) {
253			if (kvm_apic_match_dest(vcpu, NULL, 0,
254			             e->fields.dest_id, e->fields.dest_mode) ||
 
 
255			    kvm_apic_pending_eoi(vcpu, e->fields.vector))
256				__set_bit(e->fields.vector,
257					  ioapic_handled_vectors);
258		}
259	}
260	spin_unlock(&ioapic->lock);
261}
262
263void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
264{
265	if (!ioapic_in_kernel(kvm))
266		return;
267	kvm_make_scan_ioapic_request(kvm);
268}
269
270static void ioapic_write_indirect(struct kvm_ioapic *ioapic, u32 val)
271{
272	unsigned index;
273	bool mask_before, mask_after;
274	int old_remote_irr, old_delivery_status;
275	union kvm_ioapic_redirect_entry *e;
 
 
276
277	switch (ioapic->ioregsel) {
278	case IOAPIC_REG_VERSION:
279		/* Writes are ignored. */
280		break;
281
282	case IOAPIC_REG_APIC_ID:
283		ioapic->id = (val >> 24) & 0xf;
284		break;
285
286	case IOAPIC_REG_ARB_ID:
287		break;
288
289	default:
290		index = (ioapic->ioregsel - 0x10) >> 1;
291
292		if (index >= IOAPIC_NUM_PINS)
293			return;
 
294		e = &ioapic->redirtbl[index];
295		mask_before = e->fields.mask;
296		/* Preserve read-only fields */
297		old_remote_irr = e->fields.remote_irr;
298		old_delivery_status = e->fields.delivery_status;
 
 
299		if (ioapic->ioregsel & 1) {
300			e->bits &= 0xffffffff;
301			e->bits |= (u64) val << 32;
302		} else {
303			e->bits &= ~0xffffffffULL;
304			e->bits |= (u32) val;
305		}
306		e->fields.remote_irr = old_remote_irr;
307		e->fields.delivery_status = old_delivery_status;
308
309		/*
310		 * Some OSes (Linux, Xen) assume that Remote IRR bit will
311		 * be cleared by IOAPIC hardware when the entry is configured
312		 * as edge-triggered. This behavior is used to simulate an
313		 * explicit EOI on IOAPICs that don't have the EOI register.
314		 */
315		if (e->fields.trig_mode == IOAPIC_EDGE_TRIG)
316			e->fields.remote_irr = 0;
317
318		mask_after = e->fields.mask;
319		if (mask_before != mask_after)
320			kvm_fire_mask_notifiers(ioapic->kvm, KVM_IRQCHIP_IOAPIC, index, mask_after);
321		if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG
322		    && ioapic->irr & (1 << index))
323			ioapic_service(ioapic, index, false);
324		kvm_make_scan_ioapic_request(ioapic->kvm);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325		break;
326	}
327}
328
329static int ioapic_service(struct kvm_ioapic *ioapic, int irq, bool line_status)
330{
331	union kvm_ioapic_redirect_entry *entry = &ioapic->redirtbl[irq];
332	struct kvm_lapic_irq irqe;
333	int ret;
334
335	if (entry->fields.mask ||
336	    (entry->fields.trig_mode == IOAPIC_LEVEL_TRIG &&
337	    entry->fields.remote_irr))
338		return -1;
339
340	irqe.dest_id = entry->fields.dest_id;
341	irqe.vector = entry->fields.vector;
342	irqe.dest_mode = entry->fields.dest_mode;
343	irqe.trig_mode = entry->fields.trig_mode;
344	irqe.delivery_mode = entry->fields.delivery_mode << 8;
345	irqe.level = 1;
346	irqe.shorthand = 0;
347	irqe.msi_redir_hint = false;
348
349	if (irqe.trig_mode == IOAPIC_EDGE_TRIG)
350		ioapic->irr_delivered |= 1 << irq;
351
352	if (irq == RTC_GSI && line_status) {
353		/*
354		 * pending_eoi cannot ever become negative (see
355		 * rtc_status_pending_eoi_check_valid) and the caller
356		 * ensures that it is only called if it is >= zero, namely
357		 * if rtc_irq_check_coalesced returns false).
358		 */
359		BUG_ON(ioapic->rtc_status.pending_eoi != 0);
360		ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe,
361					       &ioapic->rtc_status.dest_map);
362		ioapic->rtc_status.pending_eoi = (ret < 0 ? 0 : ret);
363	} else
364		ret = kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe, NULL);
365
366	if (ret && irqe.trig_mode == IOAPIC_LEVEL_TRIG)
367		entry->fields.remote_irr = 1;
368
369	return ret;
370}
371
372int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
373		       int level, bool line_status)
374{
375	int ret, irq_level;
376
377	BUG_ON(irq < 0 || irq >= IOAPIC_NUM_PINS);
378
379	spin_lock(&ioapic->lock);
380	irq_level = __kvm_irq_line_state(&ioapic->irq_states[irq],
381					 irq_source_id, level);
382	ret = ioapic_set_irq(ioapic, irq, irq_level, line_status);
383
384	spin_unlock(&ioapic->lock);
385
386	return ret;
387}
388
389void kvm_ioapic_clear_all(struct kvm_ioapic *ioapic, int irq_source_id)
390{
391	int i;
392
393	spin_lock(&ioapic->lock);
394	for (i = 0; i < KVM_IOAPIC_NUM_PINS; i++)
395		__clear_bit(irq_source_id, &ioapic->irq_states[i]);
396	spin_unlock(&ioapic->lock);
397}
398
399static void kvm_ioapic_eoi_inject_work(struct work_struct *work)
400{
401	int i;
402	struct kvm_ioapic *ioapic = container_of(work, struct kvm_ioapic,
403						 eoi_inject.work);
404	spin_lock(&ioapic->lock);
405	for (i = 0; i < IOAPIC_NUM_PINS; i++) {
406		union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
407
408		if (ent->fields.trig_mode != IOAPIC_LEVEL_TRIG)
409			continue;
410
411		if (ioapic->irr & (1 << i) && !ent->fields.remote_irr)
412			ioapic_service(ioapic, i, false);
413	}
414	spin_unlock(&ioapic->lock);
415}
416
417#define IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT 10000
418
419static void __kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu,
420			struct kvm_ioapic *ioapic, int vector, int trigger_mode)
 
421{
422	struct dest_map *dest_map = &ioapic->rtc_status.dest_map;
423	struct kvm_lapic *apic = vcpu->arch.apic;
424	int i;
425
426	/* RTC special handling */
427	if (test_bit(vcpu->vcpu_id, dest_map->map) &&
428	    vector == dest_map->vectors[vcpu->vcpu_id])
429		rtc_irq_eoi(ioapic, vcpu);
 
 
 
 
 
 
 
430
431	for (i = 0; i < IOAPIC_NUM_PINS; i++) {
432		union kvm_ioapic_redirect_entry *ent = &ioapic->redirtbl[i];
433
434		if (ent->fields.vector != vector)
435			continue;
436
437		/*
438		 * We are dropping lock while calling ack notifiers because ack
439		 * notifier callbacks for assigned devices call into IOAPIC
440		 * recursively. Since remote_irr is cleared only after call
441		 * to notifiers if the same vector will be delivered while lock
442		 * is dropped it will be put into irr and will be delivered
443		 * after ack notifier returns.
444		 */
445		spin_unlock(&ioapic->lock);
446		kvm_notify_acked_irq(ioapic->kvm, KVM_IRQCHIP_IOAPIC, i);
447		spin_lock(&ioapic->lock);
448
449		if (trigger_mode != IOAPIC_LEVEL_TRIG ||
450		    kvm_lapic_get_reg(apic, APIC_SPIV) & APIC_SPIV_DIRECTED_EOI)
451			continue;
452
453		ASSERT(ent->fields.trig_mode == IOAPIC_LEVEL_TRIG);
454		ent->fields.remote_irr = 0;
455		if (!ent->fields.mask && (ioapic->irr & (1 << i))) {
456			++ioapic->irq_eoi[i];
457			if (ioapic->irq_eoi[i] == IOAPIC_SUCCESSIVE_IRQ_MAX_COUNT) {
458				/*
459				 * Real hardware does not deliver the interrupt
460				 * immediately during eoi broadcast, and this
461				 * lets a buggy guest make slow progress
462				 * even if it does not correctly handle a
463				 * level-triggered interrupt.  Emulate this
464				 * behavior if we detect an interrupt storm.
465				 */
466				schedule_delayed_work(&ioapic->eoi_inject, HZ / 100);
467				ioapic->irq_eoi[i] = 0;
468				trace_kvm_ioapic_delayed_eoi_inj(ent->bits);
469			} else {
470				ioapic_service(ioapic, i, false);
471			}
472		} else {
473			ioapic->irq_eoi[i] = 0;
474		}
 
 
475	}
476}
477
478void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector, int trigger_mode)
479{
 
480	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
481
482	spin_lock(&ioapic->lock);
483	__kvm_ioapic_update_eoi(vcpu, ioapic, vector, trigger_mode);
 
 
 
 
 
 
 
484	spin_unlock(&ioapic->lock);
485}
486
487static inline struct kvm_ioapic *to_ioapic(struct kvm_io_device *dev)
488{
489	return container_of(dev, struct kvm_ioapic, dev);
490}
491
492static inline int ioapic_in_range(struct kvm_ioapic *ioapic, gpa_t addr)
493{
494	return ((addr >= ioapic->base_address &&
495		 (addr < ioapic->base_address + IOAPIC_MEM_LENGTH)));
496}
497
498static int ioapic_mmio_read(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
499				gpa_t addr, int len, void *val)
500{
501	struct kvm_ioapic *ioapic = to_ioapic(this);
502	u32 result;
503	if (!ioapic_in_range(ioapic, addr))
504		return -EOPNOTSUPP;
505
506	ASSERT(!(addr & 0xf));	/* check alignment */
507
508	addr &= 0xff;
509	spin_lock(&ioapic->lock);
510	switch (addr) {
511	case IOAPIC_REG_SELECT:
512		result = ioapic->ioregsel;
513		break;
514
515	case IOAPIC_REG_WINDOW:
516		result = ioapic_read_indirect(ioapic, addr, len);
517		break;
518
519	default:
520		result = 0;
521		break;
522	}
523	spin_unlock(&ioapic->lock);
524
525	switch (len) {
526	case 8:
527		*(u64 *) val = result;
528		break;
529	case 1:
530	case 2:
531	case 4:
532		memcpy(val, (char *)&result, len);
533		break;
534	default:
535		printk(KERN_WARNING "ioapic: wrong length %d\n", len);
536	}
537	return 0;
538}
539
540static int ioapic_mmio_write(struct kvm_vcpu *vcpu, struct kvm_io_device *this,
541				 gpa_t addr, int len, const void *val)
542{
543	struct kvm_ioapic *ioapic = to_ioapic(this);
544	u32 data;
545	if (!ioapic_in_range(ioapic, addr))
546		return -EOPNOTSUPP;
547
548	ASSERT(!(addr & 0xf));	/* check alignment */
549
550	switch (len) {
551	case 8:
552	case 4:
553		data = *(u32 *) val;
554		break;
555	case 2:
556		data = *(u16 *) val;
557		break;
558	case 1:
559		data = *(u8  *) val;
560		break;
561	default:
562		printk(KERN_WARNING "ioapic: Unsupported size %d\n", len);
563		return 0;
564	}
565
566	addr &= 0xff;
567	spin_lock(&ioapic->lock);
568	switch (addr) {
569	case IOAPIC_REG_SELECT:
570		ioapic->ioregsel = data & 0xFF; /* 8-bit register */
571		break;
572
573	case IOAPIC_REG_WINDOW:
574		ioapic_write_indirect(ioapic, data);
575		break;
576
577	default:
578		break;
579	}
580	spin_unlock(&ioapic->lock);
581	return 0;
582}
583
584static void kvm_ioapic_reset(struct kvm_ioapic *ioapic)
585{
586	int i;
587
588	cancel_delayed_work_sync(&ioapic->eoi_inject);
589	for (i = 0; i < IOAPIC_NUM_PINS; i++)
590		ioapic->redirtbl[i].fields.mask = 1;
591	ioapic->base_address = IOAPIC_DEFAULT_BASE_ADDRESS;
592	ioapic->ioregsel = 0;
593	ioapic->irr = 0;
594	ioapic->irr_delivered = 0;
595	ioapic->id = 0;
596	memset(ioapic->irq_eoi, 0x00, sizeof(ioapic->irq_eoi));
597	rtc_irq_eoi_tracking_reset(ioapic);
598}
599
600static const struct kvm_io_device_ops ioapic_mmio_ops = {
601	.read     = ioapic_mmio_read,
602	.write    = ioapic_mmio_write,
603};
604
605int kvm_ioapic_init(struct kvm *kvm)
606{
607	struct kvm_ioapic *ioapic;
608	int ret;
609
610	ioapic = kzalloc(sizeof(struct kvm_ioapic), GFP_KERNEL_ACCOUNT);
611	if (!ioapic)
612		return -ENOMEM;
613	spin_lock_init(&ioapic->lock);
614	INIT_DELAYED_WORK(&ioapic->eoi_inject, kvm_ioapic_eoi_inject_work);
615	kvm->arch.vioapic = ioapic;
616	kvm_ioapic_reset(ioapic);
617	kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops);
618	ioapic->kvm = kvm;
619	mutex_lock(&kvm->slots_lock);
620	ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, ioapic->base_address,
621				      IOAPIC_MEM_LENGTH, &ioapic->dev);
622	mutex_unlock(&kvm->slots_lock);
623	if (ret < 0) {
624		kvm->arch.vioapic = NULL;
625		kfree(ioapic);
626	}
627
628	return ret;
629}
630
631void kvm_ioapic_destroy(struct kvm *kvm)
632{
633	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
634
635	if (!ioapic)
636		return;
637
638	cancel_delayed_work_sync(&ioapic->eoi_inject);
639	mutex_lock(&kvm->slots_lock);
640	kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS, &ioapic->dev);
641	mutex_unlock(&kvm->slots_lock);
642	kvm->arch.vioapic = NULL;
643	kfree(ioapic);
644}
645
646void kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
647{
648	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
649
650	spin_lock(&ioapic->lock);
651	memcpy(state, ioapic, sizeof(struct kvm_ioapic_state));
652	state->irr &= ~ioapic->irr_delivered;
653	spin_unlock(&ioapic->lock);
654}
655
656void kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
657{
658	struct kvm_ioapic *ioapic = kvm->arch.vioapic;
659
660	spin_lock(&ioapic->lock);
661	memcpy(ioapic, state, sizeof(struct kvm_ioapic_state));
662	ioapic->irr = 0;
663	ioapic->irr_delivered = 0;
664	kvm_make_scan_ioapic_request(kvm);
665	kvm_ioapic_inject_all(ioapic, state->irr);
666	spin_unlock(&ioapic->lock);
667}