]> Git Repo - qemu.git/commitdiff
i.mx7d: Add no-op/unimplemented APBH DMA module
authorAndrey Smirnov <[email protected]>
Mon, 1 Jul 2019 16:26:14 +0000 (17:26 +0100)
committerPeter Maydell <[email protected]>
Mon, 1 Jul 2019 16:28:59 +0000 (17:28 +0100)
Instantiate no-op APBH DMA module. Needed to boot latest Linux kernel.

Signed-off-by: Andrey Smirnov <[email protected]>
Cc: Peter Maydell <[email protected]>
Cc: Michael S. Tsirkin <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Peter Maydell <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
hw/arm/fsl-imx7.c
include/hw/arm/fsl-imx7.h

index b7e3526b4f3acd39641b3cec0ce021835de59629..803fe94c0343a72f7c75d59b1c462e03a62a1aa3 100644 (file)
@@ -526,6 +526,12 @@ static void fsl_imx7_realize(DeviceState *dev, Error **errp)
      */
     create_unimplemented_device("lcdif", FSL_IMX7_LCDIF_ADDR,
                                 FSL_IMX7_LCDIF_SIZE);
+
+    /*
+     * DMA APBH
+     */
+    create_unimplemented_device("dma-apbh", FSL_IMX7_DMA_APBH_ADDR,
+                                FSL_IMX7_DMA_APBH_SIZE);
 }
 
 static void fsl_imx7_class_init(ObjectClass *oc, void *data)
index 4101f80251e032eefe01563a9c8aea636d2ae50d..dcd73603c33c856d9797fb07689c03d293e5f784 100644 (file)
@@ -179,6 +179,9 @@ enum FslIMX7MemoryMap {
     FSL_IMX7_PCIE_REG_SIZE        = 16 * 1024,
 
     FSL_IMX7_GPR_ADDR             = 0x30340000,
+
+    FSL_IMX7_DMA_APBH_ADDR        = 0x33000000,
+    FSL_IMX7_DMA_APBH_SIZE        = 0x2000,
 };
 
 enum FslIMX7IRQs {
This page took 0.028302 seconds and 4 git commands to generate.