[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 3/4] hw/arm/virt: Update SMMU v3 creation to support non PCI/P
From: |
chunming |
Subject: |
[PATCH v6 3/4] hw/arm/virt: Update SMMU v3 creation to support non PCI/PCIe device connection |
Date: |
Thu, 2 Sep 2021 16:14:28 +0800 |
From: chunming <chunming.li@verisilicon.com>
. Add "smmuv3_sidmap" to set non PCI/PCIe devices SID value
. Pass non PCI/PCIe devices SID value to SMMU v3 model creation
Signed-off-by: chunming <chunming.li@verisilicon.com>
---
hw/arm/virt.c | 14 ++++++++++++++
include/hw/arm/virt.h | 1 +
2 files changed, 15 insertions(+)
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index 81eda46b0..9373d20e9 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -204,6 +204,9 @@ static const char *valid_cpus[] = {
ARM_CPU_TYPE_NAME("max"),
};
+static const uint16_t smmuv3_peri_sidmap[] = {
+};
+
static bool cpu_type_valid(const char *cpu)
{
int i;
@@ -1244,6 +1247,15 @@ static void create_smmu(const VirtMachineState *vms,
object_property_set_link(OBJECT(dev), "primary-bus", OBJECT(bus),
&error_abort);
+
+ qdev_prop_set_uint32(dev, "len-peri-sid-map",
+ ARRAY_SIZE(smmuv3_peri_sidmap));
+
+ for (i = 0; i < ARRAY_SIZE(smmuv3_peri_sidmap); i++) {
+ g_autofree char *propname = g_strdup_printf("peri-sid-map[%d]", i);
+ qdev_prop_set_uint16(dev, propname, smmuv3_peri_sidmap[i]);
+ }
+
sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, base);
for (i = 0; i < NUM_SMMU_IRQS; i++) {
@@ -2762,6 +2774,8 @@ static void virt_instance_init(Object *obj)
vms->irqmap = a15irqmap;
+ vms->peri_sidmap = smmuv3_peri_sidmap;
+
virt_flash_create(vms);
vms->oem_id = g_strndup(ACPI_BUILD_APPNAME6, 6);
diff --git a/include/hw/arm/virt.h b/include/hw/arm/virt.h
index 9661c4669..fb00118b3 100644
--- a/include/hw/arm/virt.h
+++ b/include/hw/arm/virt.h
@@ -167,6 +167,7 @@ struct VirtMachineState {
PCIBus *bus;
char *oem_id;
char *oem_table_id;
+ const uint16_t *peri_sidmap;
};
#define VIRT_ECAM_ID(high) (high ? VIRT_HIGH_PCIE_ECAM : VIRT_PCIE_ECAM)
--
2.30.2