staging: fsl-mc: set cacheable flag for added devices if applicable
authorItai Katz <itai.katz@nxp.com>
Mon, 11 Apr 2016 16:55:48 +0000 (11:55 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Apr 2016 01:00:45 +0000 (18:00 -0700)
Some DPAA2 devices have mmio regions that should be mapped as
cacheable by drivers.  Set IORESOURCE_CACHEABLE in the region's
flags if applicable.

Signed-off-by: Itai Katz <itai.katz@nxp.com>
[Stuart: update subject and commit message]
Signed-off-by: Stuart Yoder <stuart.yoder@nxp.com>
Acked-by: German Rivera <german.rivera@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fsl-mc/bus/mc-bus.c

index 8bf76d7..2075597 100644 (file)
@@ -354,6 +354,8 @@ static int fsl_mc_device_get_mmio_regions(struct fsl_mc_device *mc_dev,
                regions[i].end = regions[i].start + region_desc.size - 1;
                regions[i].name = "fsl-mc object MMIO region";
                regions[i].flags = IORESOURCE_IO;
+               if (region_desc.flags & DPRC_REGION_CACHEABLE)
+                       regions[i].flags |= IORESOURCE_CACHEABLE;
        }
 
        mc_dev->regions = regions;