ioapic.c (a27bd6c779badb8d76e4430d810ef710a1b98f4e) ioapic.c (46517dd4971fc1fdd5b379e72cc377626ad98160)
1/*
2 * ioapic.c IOAPIC emulation logic
3 *
4 * Copyright (c) 2004-2005 Fabrice Bellard
5 *
6 * Split the ioapic logic from apic.c
7 * Xiantao Zhang <xiantao.zhang@intel.com>
8 *

--- 16 unchanged lines hidden (view full) ---

25#include "monitor/monitor.h"
26#include "hw/i386/pc.h"
27#include "hw/i386/apic.h"
28#include "hw/i386/ioapic.h"
29#include "hw/i386/ioapic_internal.h"
30#include "hw/pci/msi.h"
31#include "hw/qdev-properties.h"
32#include "sysemu/kvm.h"
1/*
2 * ioapic.c IOAPIC emulation logic
3 *
4 * Copyright (c) 2004-2005 Fabrice Bellard
5 *
6 * Split the ioapic logic from apic.c
7 * Xiantao Zhang <xiantao.zhang@intel.com>
8 *

--- 16 unchanged lines hidden (view full) ---

25#include "monitor/monitor.h"
26#include "hw/i386/pc.h"
27#include "hw/i386/apic.h"
28#include "hw/i386/ioapic.h"
29#include "hw/i386/ioapic_internal.h"
30#include "hw/pci/msi.h"
31#include "hw/qdev-properties.h"
32#include "sysemu/kvm.h"
33#include "sysemu/sysemu.h"
33#include "hw/i386/apic-msidef.h"
34#include "hw/i386/x86-iommu.h"
35#include "trace.h"
36
37#define APIC_DELIVERY_MODE_SHIFT 8
38#define APIC_POLARITY_SHIFT 14
39#define APIC_TRIG_MODE_SHIFT 15
40

--- 453 unchanged lines hidden ---
34#include "hw/i386/apic-msidef.h"
35#include "hw/i386/x86-iommu.h"
36#include "trace.h"
37
38#define APIC_DELIVERY_MODE_SHIFT 8
39#define APIC_POLARITY_SHIFT 14
40#define APIC_TRIG_MODE_SHIFT 15
41

--- 453 unchanged lines hidden ---