qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Kiarie <davidkiarie4@gmail.com>
To: qemu-devel@nongnu.org, jan.kiszka@web.de,
	valentine.sinitsyn@gmail.com, mst@redhat.com
Cc: David <davidkiarie4@gmail.com>
Subject: [Qemu-devel] [PATCH 1/4] hw/core: Add iommu to machine properties
Date: Fri,  9 Oct 2015 05:53:54 +0300	[thread overview]
Message-ID: <1444359237-27224-2-git-send-email-davidkiarie4@gmail.com> (raw)
In-Reply-To: <1444359237-27224-1-git-send-email-davidkiarie4@gmail.com>

From: David <davidkiarie4@gmail.com>

 Add iommu to machine properties in preparation of introducing
 AMD IOMMU

Signed-off-by: David Kiarie <davidkiarie4@gmail.com>
---
 hw/core/machine.c   | 25 +++++++++++++++++++++++++
 include/hw/boards.h |  2 ++
 2 files changed, 27 insertions(+)

diff --git a/hw/core/machine.c b/hw/core/machine.c
index 51ed6b2..8cc7461 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -269,6 +269,20 @@ static void machine_set_iommu(Object *obj, bool value, Error **errp)
     ms->iommu = value;
 }
 
+static bool machine_get_amd_iommu(Object *obj, Error **errp)
+{
+    MachineState *ms = MACHINE(obj);
+
+    return ms->amd_iommu;
+}
+
+static void machine_set_amd_iommu(Object *obj, bool value, Error **errp)
+{
+    MachineState *ms = MACHINE(obj);
+
+    ms->amd_iommu = value;
+}
+
 static void machine_set_suppress_vmdesc(Object *obj, bool value, Error **errp)
 {
     MachineState *ms = MACHINE(obj);
@@ -420,6 +434,12 @@ static void machine_initfn(Object *obj)
     object_property_set_description(obj, "iommu",
                                     "Set on/off to enable/disable Intel IOMMU (VT-d)",
                                     NULL);
+    object_property_add_bool(obj, "amd-iommu",
+                             machine_get_amd_iommu,
+                             machine_set_amd_iommu, NULL);
+    object_property_set_description(obj, "amd-iommu",
+                                    "Set on/off to enable/disable AMD-Vi",
+                                    NULL);
     object_property_add_bool(obj, "suppress-vmdesc",
                              machine_get_suppress_vmdesc,
                              machine_set_suppress_vmdesc, NULL);
@@ -456,6 +476,11 @@ bool machine_iommu(MachineState *machine)
     return machine->iommu;
 }
 
+bool machine_amd_iommu(MachineState *machine)
+{
+    return machine->amd_iommu;
+}
+
 bool machine_kernel_irqchip_allowed(MachineState *machine)
 {
     return machine->kernel_irqchip_allowed;
diff --git a/include/hw/boards.h b/include/hw/boards.h
index 566a5ca..c8424f7 100644
--- a/include/hw/boards.h
+++ b/include/hw/boards.h
@@ -54,6 +54,7 @@ extern MachineState *current_machine;
 
 bool machine_usb(MachineState *machine);
 bool machine_iommu(MachineState *machine);
+bool machine_amd_iommu(MachineState *machine);
 bool machine_kernel_irqchip_allowed(MachineState *machine);
 bool machine_kernel_irqchip_required(MachineState *machine);
 int machine_kvm_shadow_mem(MachineState *machine);
@@ -140,6 +141,7 @@ struct MachineState {
     bool igd_gfx_passthru;
     char *firmware;
     bool iommu;
+    bool amd_iommu;
     bool suppress_vmdesc;
 
     ram_addr_t ram_size;
-- 
2.1.4

  reply	other threads:[~2015-10-08 11:53 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-09  2:53 [Qemu-devel] [PATCH 0/4] AMD IOMMU v1 David Kiarie
2015-10-09  2:53 ` David Kiarie [this message]
2015-10-08 18:10   ` [Qemu-devel] [PATCH 1/4] hw/core: Add iommu to machine properties Marcel Apfelbaum
2015-10-09 12:17     ` David kiarie
2015-10-09 17:16       ` Peter Crosthwaite
2015-10-09  2:53 ` [Qemu-devel] [PATCH 2/4] hw/pci-host: Add AMD IOMMU to PIIX and Q35 pcs David Kiarie
2015-10-08 12:11   ` Michael S. Tsirkin
2015-10-08 14:40   ` Marcel Apfelbaum
2015-10-09  2:53 ` [Qemu-devel] [PATCH 3/4] hw/i386: Introduce AMD IOMMU David Kiarie
2015-10-08 18:24   ` Marcel Apfelbaum
2015-10-09 12:20     ` David kiarie
2015-10-09  2:53 ` [Qemu-devel] [PATCH 4/4] hw/acpi: ACPI table for " David Kiarie
2015-10-09  7:17 ` [Qemu-devel] [PATCH 0/4] AMD IOMMU v1 Valentine Sinitsyn
2015-10-09 12:22   ` David kiarie
2015-10-09 12:24     ` Valentine Sinitsyn
2015-10-09 12:27       ` David kiarie
2015-10-09 12:30         ` Valentine Sinitsyn

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=1444359237-27224-2-git-send-email-davidkiarie4@gmail.com \
    --to=davidkiarie4@gmail.com \
    --cc=jan.kiszka@web.de \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=valentine.sinitsyn@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 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).