staging: vc04_services: setup DMA and coherent mask
authorMichael Zoran <mzoran@crowfest.net>
Mon, 31 Oct 2016 21:02:03 +0000 (14:02 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Nov 2016 10:02:45 +0000 (11:02 +0100)
VCHI messages between the CPU and firmware use 32-bit
bus addresses. Explicitly set the DMA mask and coherent
on all platforms.

Signed-off-by: Michael Zoran <mzoran@crowfest.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c

index 7080757..9f9a7d6 100644 (file)
@@ -97,6 +97,15 @@ int vchiq_platform_init(struct platform_device *pdev, VCHIQ_STATE_T *state)
        int slot_mem_size, frag_mem_size;
        int err, irq, i;
 
+       /*
+        * VCHI messages between the CPU and firmware use
+        * 32-bit bus addresses.
+        */
+       err = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
+
+       if (err < 0)
+               return err;
+
        (void)of_property_read_u32(dev->of_node, "cache-line-size",
                                   &g_cache_line_size);
        g_fragments_size = 2 * g_cache_line_size;