@@ -3,7 +3,7 @@
#
# Common objects
-obj-y := timer.o console.o
+obj-y := timer.o console.o cma-test.o
# CPU objects
obj-$(CONFIG_ARCH_SH7372) += setup-sh7372.o intc-sh7372.o pm-sh7372.o
@@ -0,0 +1,58 @@
+#include <linux/init.h>
+#include <linux/dma-mapping.h>
+#include <linux/dma-contiguous.h>
+#include <linux/platform_device.h>
+#include <linux/iommu.h>
+
+static int do_alloc(struct device *dev, unsigned int size, unsigned int align,
+ phys_addr_t *paddr)
+{
+ /* use CMA directly if one of the following is true
+ * - explicit alignment is required
+ * - no IOMMU is available (dma-mapping.c for ARM ignores attrs)
+ */
+ if (!iommu_present(&platform_bus_type) || (align != size)) {
+ struct page *p;
+
+ p = dma_alloc_from_contiguous(dev, size, align);
+ if (!p)
+ return -ENOMEM;
+
+ *paddr = page_to_phys(p);
+ } else {
+ DEFINE_DMA_ATTRS(attrs);
+ void *p;
+
+ /* a few lines derived from drivers/gpu/drm/msm/msm_drv.c */
+ dma_set_attr(DMA_ATTR_NO_KERNEL_MAPPING, &attrs);
+ dma_set_attr(DMA_ATTR_FORCE_CONTIGUOUS, &attrs);
+
+ /* note that for no-kernel-mapping, the vaddr returned
+ * is bogus, but non-null if allocation succeeded:
+ */
+ p = dma_alloc_attrs(dev, size, paddr, 0, &attrs);
+ if (!p)
+ return -ENOMEM;
+ }
+
+ return 0;
+}
+
+static int __init test_cma(void)
+{
+ unsigned int align_order = SZ_16M >> PAGE_SHIFT;
+ unsigned int size_pages = SZ_16M >> PAGE_SHIFT;
+ unsigned int k;
+ unsigned int success = 0;
+ phys_addr_t p;
+
+ for (k = 0; k < ((256 / 16) - 1); k++)
+ if (do_alloc(NULL, size_pages, align_order, &p) == 0)
+ success++;
+
+ pr_info("CMA test succeeded %d times\n", success);
+
+ return 0;
+}
+
+late_initcall(test_cma)
@@ -177,6 +177,9 @@ void __init rcar_gen2_reserve(void)
of_scan_flat_dt(rcar_gen2_scan_mem, &mrc);
#ifdef CONFIG_DMA_CMA
+ /* override default CMA area */
+ dma_contiguous_reserve_area(0x10000000, 0x70000000, 0xffffffff,
+ &dma_contiguous_default_area, true);
if (mrc.size)
dma_contiguous_reserve_area(mrc.size, mrc.base, 0,
&rcar_gen2_dma_contiguous, true);
From: Magnus Damm <damm+renesas@opensource.se> This is some basic prototype code that uses CMA to reserve a 256 MiB physically contiguous memory window at 0x7000000. It may be used on r8a7790 Lager, r8a7791 Koelsch or r8a7794 Alt. Through some hackish test code it then allocates several 16MiB chunks with 16MiB alignment from the CMA window. The following kernel configuration parameters are required: CONFIG_CMA=y CONFIG_DMA_CMA=y A couple of notes about known short comings: - The default CMA area is overriden - a new CMA area should be added instead - NULL is passed as struct device * - the driver model should be used - The test is allocating 15 times to keep some space in the default CMA area For information about the DMA API and the DMA attributes, please see: Documentation/DMA-API-HOWTO.txt Documentation/DMA-API.txt Documentation/DMA-attributes.txt Not for upstream merge. Written to show how CMA can be used to reserve and allocate memory. Not-Yet-Signed-off-by: Magnus Damm <damm+renesas@opensource.se> --- Based on "[PATCH] ARM: shmobile: CMA prototype test code for Koelsch" Written on top of renesas-devel-20140911-v3.17-rc4, tested on Lager. arch/arm/mach-shmobile/Makefile | 2 - arch/arm/mach-shmobile/cma-test.c | 58 ++++++++++++++++++++++++++++++ arch/arm/mach-shmobile/setup-rcar-gen2.c | 3 + 3 files changed, 62 insertions(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html