diff options
author | Prem Mallappa | 2018-05-04 19:05:51 +0200 |
---|---|---|
committer | Peter Maydell | 2018-05-04 19:49:10 +0200 |
commit | 10a83cb9887eddb1b504ecf3b189159db949178e (patch) | |
tree | c204cf4ae5099bae17c3631e269ba30bb5ee4a8d /hw/arm/Makefile.objs | |
parent | hw/arm/smmu-common: VMSAv8-64 page table walk (diff) | |
download | qemu-10a83cb9887eddb1b504ecf3b189159db949178e.tar.gz qemu-10a83cb9887eddb1b504ecf3b189159db949178e.tar.xz qemu-10a83cb9887eddb1b504ecf3b189159db949178e.zip |
hw/arm/smmuv3: Skeleton
This patch implements a skeleton for the smmuv3 device.
Datatypes and register definitions are introduced. The MMIO
region, the interrupts and the queue are initialized.
Only the MMIO read operation is implemented here.
Signed-off-by: Prem Mallappa <prem.mallappa@broadcom.com>
Signed-off-by: Eric Auger <eric.auger@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1524665762-31355-5-git-send-email-eric.auger@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/Makefile.objs')
-rw-r--r-- | hw/arm/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 558436f3a5..d51fcecaf2 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -35,4 +35,4 @@ obj-$(CONFIG_MPS2) += mps2-tz.o obj-$(CONFIG_MSF2) += msf2-soc.o msf2-som.o obj-$(CONFIG_IOTKIT) += iotkit.o obj-$(CONFIG_FSL_IMX7) += fsl-imx7.o mcimx7d-sabre.o -obj-$(CONFIG_ARM_SMMUV3) += smmu-common.o +obj-$(CONFIG_ARM_SMMUV3) += smmu-common.o smmuv3.o |