From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44246) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCaRF-0007bo-31 for qemu-devel@nongnu.org; Sat, 28 Apr 2018 20:43:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCaRC-0004T8-18 for qemu-devel@nongnu.org; Sat, 28 Apr 2018 20:43:37 -0400 Received: from mail-lf0-x244.google.com ([2a00:1450:4010:c07::244]:41505) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fCaRB-0004St-Oe for qemu-devel@nongnu.org; Sat, 28 Apr 2018 20:43:33 -0400 Received: by mail-lf0-x244.google.com with SMTP id o123-v6so7677636lfe.8 for ; Sat, 28 Apr 2018 17:43:33 -0700 (PDT) From: Francisco Iglesias Date: Sun, 29 Apr 2018 02:43:27 +0200 Message-Id: <20180429004329.21067-1-frasse.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v1 0/2] xlnx-zynqmp: Add emulation of the ZynqMP GDMA and ADMA List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: edgari@xilinx.com, sai.pavan.boddu@xilinx.com, alistair@alistair23.me, alistair23@gmail.com, francisco.iglesias@feimtech.se, peter.maydell@linaro.org Hi, The ZynqMP Soc contains two separate instances of a generic DMA, one located in the FPD (full power domain) called GDMA and a second one located in the LPD (low power domain) called ADMA. This patch series attempts to add emulation support for these two DMAs on the ZynqMP board. The first patch in the series adds a model of the ZynqMP generic DMA (the ZDMA). The second patch in the series connects the two instances of the ZDMA, the GDMA and the ADMA, to the ZynqMP board. Best regards, Francisco Iglesias Francisco Iglesias (2): xlnx-zdma: Add a model of the Xilinx ZynqMP generic DMA xlnx-zynqmp: Connect the ZynqMP GDMA and ADMA hw/arm/xlnx-zynqmp.c | 53 +++ hw/dma/Makefile.objs | 1 + hw/dma/xlnx-zdma.c | 833 +++++++++++++++++++++++++++++++++++++++++++ include/hw/arm/xlnx-zynqmp.h | 5 + include/hw/dma/xlnx-zdma.h | 84 +++++ 5 files changed, 976 insertions(+) create mode 100644 hw/dma/xlnx-zdma.c create mode 100644 include/hw/dma/xlnx-zdma.h -- 2.11.0