All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] uq/master: Introduce KVM PIT support
@ 2012-02-05 10:46 ` Jan Kiszka
  0 siblings, 0 replies; 23+ messages in thread
From: Jan Kiszka @ 2012-02-05 10:46 UTC (permalink / raw)
  To: Avi Kivity, Marcelo Tosatti; +Cc: kvm, qemu-devel, Anthony Liguori

This adds another piece of qemu-kvm to upstream: The accelerated
in-kernel model of the i8254. It does this in the same fashion as the
interrupt controllers were already introduced. And it even has one bug
less than qemu-kvm: PC speaker output still works with KVM acceleration
enabled.

Changes in v2:
 - Rebased over recent upstream master to reflect QOM changes

The patches depend on the follow upstream or uq/master patches:
 - pit, hpet, pcspk: fixes & preparation for KVM (v4, 7 patches)
   http://thread.gmane.org/gmane.comp.emulators.kvm.devel/86006
 - kvm: Implement kvm_irqchip_in_kernel
   http://thread.gmane.org/gmane.comp.emulators.qemu/134399
 - KVM: Fix breakages of QOM conversion
   http://permalink.gmane.org/gmane.comp.emulators.qemu/134844

It is based on upstream commit cb437e48ab (before the VGA breakage). The
series plus dependencies is also available at

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

Please review / merge.

Jan Kiszka (4):
  i8254: Factor out base class for KVM reuse
  i8254: Open-code timer restore
  kvm: Add kvm_has_pit_state2 helper
  kvm: x86: Add user space part for in-kernel i8254

 Makefile.objs       |    2 +-
 Makefile.target     |    2 +-
 hw/i8254.c          |  281 +++++++---------------------------------------
 hw/i8254.h          |   11 ++
 hw/i8254_common.c   |  307 +++++++++++++++++++++++++++++++++++++++++++++++++++
 hw/i8254_internal.h |   85 ++++++++++++++
 hw/kvm/i8254.c      |  241 ++++++++++++++++++++++++++++++++++++++++
 hw/pc.c             |   14 ++-
 kvm-all.c           |   10 ++
 kvm-stub.c          |    5 +
 kvm.h               |    1 +
 11 files changed, 717 insertions(+), 242 deletions(-)
 create mode 100644 hw/i8254_common.c
 create mode 100644 hw/i8254_internal.h
 create mode 100644 hw/kvm/i8254.c

-- 
1.7.3.4


^ permalink raw reply	[flat|nested] 23+ messages in thread
* [PATCH 0/4] uq/master: Introduce KVM PIT support
@ 2012-01-31 18:46 Jan Kiszka
  2012-01-31 18:46 ` [PATCH 3/4] kvm: Add kvm_has_pit_state2 helper Jan Kiszka
  0 siblings, 1 reply; 23+ messages in thread
From: Jan Kiszka @ 2012-01-31 18:46 UTC (permalink / raw)
  To: Avi Kivity, Marcelo Tosatti; +Cc: Anthony Liguori, qemu-devel, kvm

This adds another piece of qemu-kvm to upstream: The accelerated
in-kernel model of the i8254. It does this in the same fashion as the
interrupt controllers were already introduced. And it even has one bug
less than qemu-kvm: PC speaker output still works with KVM acceleration
enabled.

The patches depend on the follow upstream or uq/master patches:
- pit, hpet, pcspk: fixes & preparation for KVM (v7, 7 patches)
  http://thread.gmane.org/gmane.comp.emulators.qemu/134393
- Generic tick reinjection control (2 patches)
  http://thread.gmane.org/gmane.comp.emulators.qemu/133306
- kvm: Implement kvm_irqchip_in_kernel
  http://thread.gmane.org/gmane.comp.emulators.qemu/134399

The series plus dependencies is also available at

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

Please review / merge.

Jan Kiszka (4):
  i8254: Factor out base class for KVM reuse
  i8254: Open-code timer restore
  kvm: Add kvm_has_pit_state2 helper
  kvm: x86: Add user space part for in-kernel i8254

 Makefile.objs       |    2 +-
 Makefile.target     |    2 +-
 hw/i8254.c          |  289 ++++++++---------------------------------------
 hw/i8254.h          |   11 ++
 hw/i8254_common.c   |  311 +++++++++++++++++++++++++++++++++++++++++++++++++++
 hw/i8254_internal.h |   87 ++++++++++++++
 hw/kvm/i8254.c      |  237 +++++++++++++++++++++++++++++++++++++++
 hw/pc.c             |   14 ++-
 kvm-all.c           |   10 ++
 kvm-stub.c          |    5 +
 kvm.h               |    1 +
 11 files changed, 723 insertions(+), 246 deletions(-)
 create mode 100644 hw/i8254_common.c
 create mode 100644 hw/i8254_internal.h
 create mode 100644 hw/kvm/i8254.c

-- 
1.7.3.4

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

end of thread, other threads:[~2012-02-08 18:26 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-05 10:46 [PATCH 0/4] uq/master: Introduce KVM PIT support Jan Kiszka
2012-02-05 10:46 ` [Qemu-devel] " Jan Kiszka
2012-02-05 10:46 ` [PATCH 1/4] i8254: Factor out base class for KVM reuse Jan Kiszka
2012-02-05 10:46   ` [Qemu-devel] " Jan Kiszka
2012-02-05 10:46 ` [PATCH 2/4] i8254: Open-code timer restore Jan Kiszka
2012-02-05 10:46   ` [Qemu-devel] " Jan Kiszka
2012-02-05 11:23   ` Paolo Bonzini
2012-02-05 11:23     ` [Qemu-devel] " Paolo Bonzini
2012-02-05 11:33     ` Jan Kiszka
2012-02-05 11:33       ` [Qemu-devel] " Jan Kiszka
2012-02-05 12:03   ` [PATCH 2/4 v3] " Jan Kiszka
2012-02-05 12:03     ` [Qemu-devel] " Jan Kiszka
2012-02-05 10:46 ` [PATCH 3/4] kvm: Add kvm_has_pit_state2 helper Jan Kiszka
2012-02-05 10:46   ` [Qemu-devel] " Jan Kiszka
2012-02-05 20:03   ` Juan Quintela
2012-02-05 20:03     ` [Qemu-devel] " Juan Quintela
2012-02-05 20:36     ` Jan Kiszka
2012-02-05 20:36       ` [Qemu-devel] " Jan Kiszka
2012-02-05 10:46 ` [PATCH 4/4] kvm: x86: Add user space part for in-kernel i8254 Jan Kiszka
2012-02-05 10:46   ` [Qemu-devel] " Jan Kiszka
2012-02-08 18:24 ` [PATCH 0/4] uq/master: Introduce KVM PIT support Marcelo Tosatti
2012-02-08 18:24   ` [Qemu-devel] " Marcelo Tosatti
  -- strict thread matches above, loose matches on Subject: below --
2012-01-31 18:46 Jan Kiszka
2012-01-31 18:46 ` [PATCH 3/4] kvm: Add kvm_has_pit_state2 helper Jan Kiszka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.