]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
dma-buf: heaps: cma: Register list of CMA regions at boot
authorMaxime Ripard <mripard@kernel.org>
Mon, 13 Oct 2025 08:35:17 +0000 (10:35 +0200)
committerSumit Semwal <sumit.semwal@linaro.org>
Sat, 18 Oct 2025 16:01:21 +0000 (21:31 +0530)
In order to create a CMA heap instance for each CMA region found in the
system, we need to register each of these instances.

While it would appear trivial, the CMA regions are created super early
in the kernel boot process, before most of the subsystems are
initialized. Thus, we can't just create an exported function to create a
heap from the CMA region being initialized.

What we can do however is create a two-step process, where we collect
all the CMA regions into an array early on, and then when we initialize
the heaps we iterate over that array and create the heaps from the CMA
regions we collected.

Reviewed-by: T.J. Mercier <tjmercier@google.com>
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
Link: https://lore.kernel.org/r/20251013-dma-buf-ecc-heap-v8-2-04ce150ea3d9@kernel.org
MAINTAINERS
drivers/dma-buf/heaps/cma_heap.c
include/linux/dma-buf/heaps/cma.h [new file with mode: 0644]

index f9f985c7d74796938560148ffab7d3838dc02942..cbfbdf722dc8f058c2ae3b0d640e296f9ca94d39 100644 (file)
@@ -7308,6 +7308,7 @@ F:        Documentation/userspace-api/dma-buf-alloc-exchange.rst
 F:     drivers/dma-buf/
 F:     include/linux/*fence.h
 F:     include/linux/dma-buf.h
+F:     include/linux/dma-buf/
 F:     include/linux/dma-resv.h
 K:     \bdma_(?:buf|fence|resv)\b
 
index 0df007111975447d555714d61ead9699287fd65a..2a901af635ed76cdb085915c03258c235e302792 100644 (file)
@@ -14,6 +14,7 @@
 
 #include <linux/cma.h>
 #include <linux/dma-buf.h>
+#include <linux/dma-buf/heaps/cma.h>
 #include <linux/dma-heap.h>
 #include <linux/dma-map-ops.h>
 #include <linux/err.h>
 
 #define DEFAULT_CMA_NAME "default_cma_region"
 
+static struct cma *dma_areas[MAX_CMA_AREAS] __initdata;
+static unsigned int dma_areas_num __initdata;
+
+int __init dma_heap_cma_register_heap(struct cma *cma)
+{
+       if (dma_areas_num >= ARRAY_SIZE(dma_areas))
+               return -EINVAL;
+
+       dma_areas[dma_areas_num++] = cma;
+
+       return 0;
+}
+
 struct cma_heap {
        struct dma_heap *heap;
        struct cma *cma;
diff --git a/include/linux/dma-buf/heaps/cma.h b/include/linux/dma-buf/heaps/cma.h
new file mode 100644 (file)
index 0000000..e751479
--- /dev/null
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef DMA_BUF_HEAP_CMA_H_
+#define DMA_BUF_HEAP_CMA_H_
+
+struct cma;
+
+#ifdef CONFIG_DMABUF_HEAPS_CMA
+int dma_heap_cma_register_heap(struct cma *cma);
+#else
+static inline int dma_heap_cma_register_heap(struct cma *cma)
+{
+       return 0;
+}
+#endif // CONFIG_DMABUF_HEAPS_CMA
+
+#endif // DMA_BUF_HEAP_CMA_H_