All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Fedin <p.fedin@samsung.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Shlomo Pongratz <shlomopongratz@gmail.com>,
	Shlomo Pongratz <shlomo.pongratz@huawei.com>,
	Christoffer Dall <christoffer.dall@linaro.org>,
	Eric Auger <eric.auger@linaro.org>
Subject: [Qemu-devel] [PATCH v4 0/9] GIC-500 implementation, software + KVM
Date: Thu, 02 Jul 2015 17:13:58 +0300	[thread overview]
Message-ID: <cover.1435844519.git.p.fedin@samsung.com> (raw)

This is a complete GICv3 implementation, both software emulation and KVM
acceleration are supported.

This series is a consolidated and updated patch set, based on:
- GIC-500 implementation:
  http://lists.nongnu.org/archive/html/qemu-devel/2015-06/msg01512.html
- vGICv3 implementation:
  https://lists.gnu.org/archive/html/qemu-devel/2015-05/msg04496.html
I decided to repost because qemu development has progressed and it became
difficult to apply those series to current master.

Changes from previous versions:
- Removed RFC prefix
- Base class separated from the rest, as was requested in RFC v2 review
- Fixed small number of broken comments / code formatting issues, according
  to the same review
- Removed #if 0 in virt.c
- vGICv3 patch set restructured and more clearly separated into portions,
  according to old Eric's review
- Removed duplication of low-level vGICv3 code. Common helper routines are
  used instead.
- Put informative commit messages

Pavel Fedin (6):
  Add virt-v3 machine that uses GIC-500
  Extract some reusable vGIC code
  Set kernel_irqchip_type for the rest of ARM boards which use GIC
  Make use of kernel_irqchip_type in kvm_arch_irqchip_create()
  Initial implementation of vGICv3
  Enable KVM acceleration for GICv3

Shlomo Pongratz (3):
  Implement GIC-500 base class
  Implement GIC-500
  GICv3 support

 hw/arm/exynos4_boards.c            |    1 +
 hw/arm/realview.c                  |    1 +
 hw/arm/vexpress.c                  |    1 +
 hw/arm/virt.c                      |  141 ++-
 hw/intc/Makefile.objs              |    3 +
 hw/intc/arm_gic_kvm.c              |   84 +-
 hw/intc/arm_gicv3.c                | 2086 ++++++++++++++++++++++++++++++++++++
 hw/intc/arm_gicv3_common.c         |  216 ++++
 hw/intc/arm_gicv3_kvm.c            |  203 ++++
 hw/intc/gicv3_internal.h           |  159 +++
 hw/intc/vgic_common.h              |   43 +
 include/hw/arm/fdt.h               |    2 +-
 include/hw/arm/virt.h              |    6 +-
 include/hw/boards.h                |    1 +
 include/hw/intc/arm_gicv3.h        |   44 +
 include/hw/intc/arm_gicv3_common.h |  116 ++
 include/sysemu/kvm.h               |    3 +-
 kvm-all.c                          |    2 +-
 stubs/kvm.c                        |    2 +-
 target-arm/cpu.h                   |   12 +
 target-arm/cpu64.c                 |  105 ++
 target-arm/kvm.c                   |    8 +-
 22 files changed, 3164 insertions(+), 75 deletions(-)
 create mode 100644 hw/intc/arm_gicv3.c
 create mode 100644 hw/intc/arm_gicv3_common.c
 create mode 100644 hw/intc/arm_gicv3_kvm.c
 create mode 100644 hw/intc/gicv3_internal.h
 create mode 100644 hw/intc/vgic_common.h
 create mode 100644 include/hw/intc/arm_gicv3.h
 create mode 100644 include/hw/intc/arm_gicv3_common.h

-- 
1.9.5.msysgit.0

             reply	other threads:[~2015-07-02 14:14 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-02 14:13 Pavel Fedin [this message]
2015-07-02 14:13 ` [Qemu-devel] [PATCH v4 1/9] Implement GIC-500 base class Pavel Fedin
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 2/9] Implement GIC-500 Pavel Fedin
2015-07-02 14:19   ` Peter Maydell
2015-07-02 14:39     ` Pavel Fedin
2015-07-02 14:42       ` Peter Maydell
2015-07-02 14:45         ` Peter Maydell
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 3/9] GICv3 support Pavel Fedin
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 4/9] Add virt-v3 machine that uses GIC-500 Pavel Fedin
2015-07-02 14:25   ` Daniel P. Berrange
2015-07-02 14:47     ` Pavel Fedin
2015-07-02 15:06       ` Christoffer Dall
2015-07-02 15:30         ` Pavel Fedin
2015-07-02 15:54           ` Christoffer Dall
2015-07-03  6:52             ` Pavel Fedin
2015-07-03  7:42               ` Christoffer Dall
2015-07-03  8:47                 ` Pavel Fedin
2015-07-03 10:23                   ` Christoffer Dall
2015-07-02 16:21       ` Daniel P. Berrange
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 5/9] Extract some reusable vGIC code Pavel Fedin
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 6/9] Set kernel_irqchip_type for the rest of ARM boards which use GIC Pavel Fedin
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 7/9] Make use of kernel_irqchip_type in kvm_arch_irqchip_create() Pavel Fedin
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 8/9] Initial implementation of vGICv3 Pavel Fedin
2015-07-02 14:14 ` [Qemu-devel] [PATCH v4 9/9] Enable KVM acceleration for GICv3 Pavel Fedin
2015-07-07 10:20 ` [Qemu-devel] [PATCH v4 0/9] GIC-500 implementation, software + KVM Eric Auger
2015-07-07 12:45   ` Pavel Fedin
2015-07-07 13:27     ` Eric Auger
2015-07-07 14:15       ` Pavel Fedin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1435844519.git.p.fedin@samsung.com \
    --to=p.fedin@samsung.com \
    --cc=christoffer.dall@linaro.org \
    --cc=eric.auger@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=shlomo.pongratz@huawei.com \
    --cc=shlomopongratz@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.