qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v8 00/18] uq/master: Introduce basic irqchip support
@ 2012-01-19 11:24 Jan Kiszka
  2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 01/18] msi: Generalize msix_supported to msi_supported Jan Kiszka
                   ` (17 more replies)
  0 siblings, 18 replies; 26+ messages in thread
From: Jan Kiszka @ 2012-01-19 11:24 UTC (permalink / raw)
  To: Avi Kivity, Marcelo Tosatti
  Cc: Anthony Liguori, Lai Jiangshan, kvm, Michael S. Tsirkin,
	qemu-devel, Blue Swirl

Changes in v8:
- rebased over uq/master
- fixed build issue of patch 16 with !CONFIG_KVM
- converted forgotten container_of to DO_UPCAST

You can pull this from

git://git.kiszka.org/qemu-kvm.git queues/kvm-irqchip

CC: Lai Jiangshan <laijs@cn.fujitsu.com>

Jan Kiszka (18):
  msi: Generalize msix_supported to msi_supported
  kvm: Move kvmclock into hw/kvm folder
  apic: Stop timer on reset
  apic: Inject external NMI events via LINT1
  apic: Introduce apic_report_irq_delivered
  apic: Factor out base class for KVM reuse
  apic: Open-code timer save/restore
  i8259: Completely privatize PicState
  i8259: Factor out base class for KVM reuse
  ioapic: Drop post-load irr initialization
  ioapic: Factor out base class for KVM reuse
  memory: Introduce memory_region_init_reservation
  kvm: Introduce core services for in-kernel irqchip support
  kvm: x86: Establish IRQ0 override control
  kvm: x86: Add user space part for in-kernel APIC
  kvm: x86: Add user space part for in-kernel i8259
  kvm: x86: Add user space part for in-kernel IOAPIC
  kvm: Activate in-kernel irqchip support

 Makefile.objs                  |    2 +-
 Makefile.target                |    6 +-
 configure                      |    1 +
 cpus.c                         |    6 +-
 hw/apic.c                      |  356 ++++++----------------------------------
 hw/apic.h                      |    1 +
 hw/apic_common.c               |  302 ++++++++++++++++++++++++++++++++++
 hw/apic_internal.h             |  115 +++++++++++++
 hw/i8259.c                     |  163 ++++--------------
 hw/i8259_common.c              |  147 +++++++++++++++++
 hw/i8259_internal.h            |   76 +++++++++
 hw/ioapic.c                    |  142 ++--------------
 hw/ioapic_common.c             |  104 ++++++++++++
 hw/ioapic_internal.h           |   97 +++++++++++
 hw/kvm/apic.c                  |  138 ++++++++++++++++
 hw/{kvmclock.c => kvm/clock.c} |    4 +-
 hw/{kvmclock.h => kvm/clock.h} |    0
 hw/kvm/i8259.c                 |  128 ++++++++++++++
 hw/kvm/ioapic.c                |  114 +++++++++++++
 hw/msi.c                       |    8 +
 hw/msi.h                       |    2 +
 hw/msix.c                      |    9 +-
 hw/msix.h                      |    2 -
 hw/pc.c                        |   20 ++-
 hw/pc.h                        |    8 +-
 hw/pc_piix.c                   |   69 +++++++-
 kvm-all.c                      |  154 +++++++++++++++++
 kvm-stub.c                     |    5 +
 kvm.h                          |   14 ++
 memory.c                       |   36 ++++
 memory.h                       |   16 ++
 qemu-config.c                  |    4 +
 qemu-options.hx                |    5 +-
 sysemu.h                       |    1 -
 target-i386/kvm.c              |   49 ++++++
 trace-events                   |    2 +-
 vl.c                           |    1 -
 37 files changed, 1716 insertions(+), 591 deletions(-)
 create mode 100644 hw/apic_common.c
 create mode 100644 hw/apic_internal.h
 create mode 100644 hw/i8259_common.c
 create mode 100644 hw/i8259_internal.h
 create mode 100644 hw/ioapic_common.c
 create mode 100644 hw/ioapic_internal.h
 create mode 100644 hw/kvm/apic.c
 rename hw/{kvmclock.c => kvm/clock.c} (98%)
 rename hw/{kvmclock.h => kvm/clock.h} (100%)
 create mode 100644 hw/kvm/i8259.c
 create mode 100644 hw/kvm/ioapic.c

-- 
1.7.3.4

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2012-01-24 15:35 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-19 11:24 [Qemu-devel] [PATCH v8 00/18] uq/master: Introduce basic irqchip support Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 01/18] msi: Generalize msix_supported to msi_supported Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 02/18] kvm: Move kvmclock into hw/kvm folder Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 03/18] apic: Stop timer on reset Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 04/18] apic: Inject external NMI events via LINT1 Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 05/18] apic: Introduce apic_report_irq_delivered Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 06/18] apic: Factor out base class for KVM reuse Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] [PATCH v8 07/18] apic: Open-code timer save/restore Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 08/18] i8259: Completely privatize PicState Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 09/18] i8259: Factor out base class for KVM reuse Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 10/18] ioapic: Drop post-load irr initialization Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 11/18] ioapic: Factor out base class for KVM reuse Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 12/18] memory: Introduce memory_region_init_reservation Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 13/18] kvm: Introduce core services for in-kernel irqchip support Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 14/18] kvm: x86: Establish IRQ0 override control Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 15/18] kvm: x86: Add user space part for in-kernel APIC Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 16/18] kvm: x86: Add user space part for in-kernel i8259 Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 17/18] kvm: x86: Add user space part for in-kernel IOAPIC Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] [PATCH v8 18/18] kvm: Activate in-kernel irqchip support Jan Kiszka
2012-01-19 18:08   ` Marcelo Tosatti
2012-01-19 18:54     ` Jan Kiszka
2012-01-24 14:05       ` Avi Kivity
2012-01-24 14:10         ` Jan Kiszka
2012-01-24 14:13           ` Avi Kivity
2012-01-24 15:34             ` Anthony Liguori
2012-01-24 15:33         ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).