dma-buf: heaps: add rockchip heaps

Change-Id: If7dad5ace1164ff09bc5bc5bbc4589b63b7ac2f6
Signed-off-by: Simon Xue <xxm@rock-chips.com>
This commit is contained in:
Simon Xue
2022-02-19 20:36:58 +08:00
committed by Tao Huang
parent 6c93ab7f1d
commit b1cec75764
10 changed files with 1689 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
#include <linux/sizes.h>
#include <linux/stop_machine.h>
#include <linux/swiotlb.h>
#include <linux/rk-dma-heap.h>
#include <asm/cp15.h>
#include <asm/mach-types.h>
@@ -227,6 +228,7 @@ void __init arm_memblock_init(const struct machine_desc *mdesc)
/* reserve memory for DMA contiguous allocations */
dma_contiguous_reserve(arm_dma_limit);
rk_dma_heap_cma_setup();
arm_memblock_steal_permitted = false;
memblock_dump_all();

View File

@@ -30,6 +30,7 @@
#include <linux/crash_dump.h>
#include <linux/hugetlb.h>
#include <linux/acpi_iort.h>
#include <linux/rk-dma-heap.h>
#include <asm/boot.h>
#include <asm/fixmap.h>
@@ -470,6 +471,7 @@ void __init bootmem_init(void)
* Reserve the CMA area after arm64_dma_phys_limit was initialised.
*/
dma_contiguous_reserve(arm64_dma_phys_limit);
rk_dma_heap_cma_setup();
/*
* request_standard_resources() depends on crashkernel's memory being

View File

@@ -90,5 +90,6 @@ menuconfig DMABUF_SYSFS_STATS
<inode_number>.
source "drivers/dma-buf/heaps/Kconfig"
source "drivers/dma-buf/rk_heaps/Kconfig"
endmenu

View File

@@ -9,6 +9,7 @@ obj-$(CONFIG_SW_SYNC) += sw_sync.o
obj-$(CONFIG_SW_SYNC_DEBUG) += sync_debug.o
obj-$(CONFIG_UDMABUF) += udmabuf.o
obj-$(CONFIG_DMABUF_SYSFS_STATS) += dma-buf-sysfs-stats.o
obj-$(CONFIG_DMABUF_HEAPS_ROCKCHIP) += rk_heaps/
dmabuf_selftests-y := \
selftest.o \

View File

@@ -0,0 +1,23 @@
# SPDX-License-Identifier: GPL-2.0-only
menuconfig DMABUF_HEAPS_ROCKCHIP
bool "DMA-BUF Userland Memory Heaps for RockChip"
select DMA_SHARED_BUFFER
help
Choose this option to enable the RockChip DMA-BUF userland memory heaps.
This options creates per heap chardevs in /dev/rk_dma_heap/ which
allows userspace to allocate dma-bufs that can be shared
between drivers.
config DMABUF_HEAPS_ROCKCHIP_CMA_HEAP
tristate "DMA-BUF RockChip CMA Heap"
depends on DMABUF_HEAPS_ROCKCHIP
help
Choose this option to enable dma-buf RockChip CMA heap. This heap is backed
by the Contiguous Memory Allocator (CMA). If your system has these
regions, you should say Y here.
config DMABUF_RK_HEAPS_DEBUG
bool "DMA-BUF RockChip Heap Debug"
depends on DMABUF_HEAPS_ROCKCHIP
help
Choose this option to enable dma-buf RockChip heap debug.

View File

@@ -0,0 +1,3 @@
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_DMABUF_HEAPS_ROCKCHIP) += rk-dma-heap.o
obj-$(CONFIG_DMABUF_HEAPS_ROCKCHIP_CMA_HEAP) += rk-cma-heap.o

View File

@@ -0,0 +1,555 @@
// SPDX-License-Identifier: GPL-2.0
/*
* DMABUF CMA heap exporter
*
* Copyright (C) 2012, 2019, 2020 Linaro Ltd.
* Author: <benjamin.gaignard@linaro.org> for ST-Ericsson.
*
* Also utilizing parts of Andrew Davis' SRAM heap:
* Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/
* Andrew F. Davis <afd@ti.com>
*
* Copyright (C) 2022 Rockchip Electronics Co. Ltd.
* Author: Simon Xue <xxm@rock-chips.com>
*/
#include <linux/cma.h>
#include <linux/dma-buf.h>
#include <linux/rk-dma-heap.h>
#include <linux/dma-map-ops.h>
#include <linux/err.h>
#include <linux/highmem.h>
#include <linux/io.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/scatterlist.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <uapi/linux/rk-dma-heap.h>
struct rk_dma_heap_attachment {
struct device *dev;
struct sg_table table;
struct list_head list;
bool mapped;
};
static int rk_cma_heap_attach(struct dma_buf *dmabuf,
struct dma_buf_attachment *attachment)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_dma_heap_attachment *a;
struct sg_table *table;
size_t size = buffer->pagecount << PAGE_SHIFT;
int ret;
a = kzalloc(sizeof(*a), GFP_KERNEL);
if (!a)
return -ENOMEM;
table = &a->table;
ret = sg_alloc_table(table, 1, GFP_KERNEL);
if (ret) {
kfree(a);
return ret;
}
sg_set_page(table->sgl, buffer->cma_pages, PAGE_ALIGN(size), 0);
a->dev = attachment->dev;
INIT_LIST_HEAD(&a->list);
a->mapped = false;
attachment->priv = a;
buffer->attached = true;
mutex_lock(&buffer->lock);
list_add(&a->list, &buffer->attachments);
mutex_unlock(&buffer->lock);
return 0;
}
static void rk_cma_heap_detach(struct dma_buf *dmabuf,
struct dma_buf_attachment *attachment)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_dma_heap_attachment *a = attachment->priv;
mutex_lock(&buffer->lock);
list_del(&a->list);
mutex_unlock(&buffer->lock);
buffer->attached = false;
sg_free_table(&a->table);
kfree(a);
}
static struct sg_table *rk_cma_heap_map_dma_buf(struct dma_buf_attachment *attachment,
enum dma_data_direction direction)
{
struct rk_dma_heap_attachment *a = attachment->priv;
struct sg_table *table = &a->table;
int attrs = attachment->dma_map_attrs;
int ret;
ret = dma_map_sgtable(attachment->dev, table, direction, attrs);
if (ret)
return ERR_PTR(-ENOMEM);
a->mapped = true;
return table;
}
static void rk_cma_heap_unmap_dma_buf(struct dma_buf_attachment *attachment,
struct sg_table *table,
enum dma_data_direction direction)
{
struct rk_dma_heap_attachment *a = attachment->priv;
int attrs = attachment->dma_map_attrs;
a->mapped = false;
dma_unmap_sgtable(attachment->dev, table, direction, attrs);
}
static int rk_cma_heap_dma_buf_begin_cpu_access(struct dma_buf *dmabuf,
enum dma_data_direction direction)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_dma_heap_attachment *a;
if (buffer->vmap_cnt)
invalidate_kernel_vmap_range(buffer->vaddr, buffer->len);
mutex_lock(&buffer->lock);
list_for_each_entry(a, &buffer->attachments, list) {
if (!a->mapped)
continue;
dma_sync_sgtable_for_cpu(a->dev, &a->table, direction);
}
/* For userspace that not attach yet */
if (buffer->phys && !buffer->attached)
dma_sync_single_for_cpu(rk_dma_heap_get_dev(buffer->heap->heap),
buffer->phys,
buffer->pagecount * PAGE_SIZE,
direction);
mutex_unlock(&buffer->lock);
return 0;
}
static int rk_cma_heap_dma_buf_end_cpu_access(struct dma_buf *dmabuf,
enum dma_data_direction direction)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_dma_heap_attachment *a;
if (buffer->vmap_cnt)
flush_kernel_vmap_range(buffer->vaddr, buffer->len);
mutex_lock(&buffer->lock);
list_for_each_entry(a, &buffer->attachments, list) {
if (!a->mapped)
continue;
dma_sync_sgtable_for_device(a->dev, &a->table, direction);
}
/* For userspace that not attach yet */
if (buffer->phys && !buffer->attached)
dma_sync_single_for_device(rk_dma_heap_get_dev(buffer->heap->heap),
buffer->phys,
buffer->pagecount * PAGE_SIZE,
direction);
mutex_unlock(&buffer->lock);
return 0;
}
static int rk_cma_heap_mmap(struct dma_buf *dmabuf, struct vm_area_struct *vma)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
size_t size = vma->vm_end - vma->vm_start;
int ret;
ret = remap_pfn_range(vma, vma->vm_start, __phys_to_pfn(buffer->phys),
size, vma->vm_page_prot);
if (ret)
return -EAGAIN;
return 0;
}
static void *rk_cma_heap_do_vmap(struct rk_cma_heap_buffer *buffer)
{
void *vaddr;
pgprot_t pgprot = PAGE_KERNEL;
unsigned long pfn = page_to_pfn(buffer->cma_pages);
vaddr = rk_vmap_contig_pfn(pfn, buffer->pagecount, pgprot);
if (!vaddr)
return ERR_PTR(-ENOMEM);
return vaddr;
}
static void *rk_cma_heap_vmap(struct dma_buf *dmabuf)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
void *vaddr;
mutex_lock(&buffer->lock);
if (buffer->vmap_cnt) {
buffer->vmap_cnt++;
vaddr = buffer->vaddr;
goto out;
}
vaddr = rk_cma_heap_do_vmap(buffer);
if (IS_ERR(vaddr))
goto out;
buffer->vaddr = vaddr;
buffer->vmap_cnt++;
out:
mutex_unlock(&buffer->lock);
return vaddr;
}
static void rk_cma_heap_vunmap(struct dma_buf *dmabuf, void *vaddr)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
mutex_lock(&buffer->lock);
if (!--buffer->vmap_cnt) {
vunmap(buffer->vaddr);
buffer->vaddr = NULL;
}
mutex_unlock(&buffer->lock);
}
static void rk_cma_heap_remove_dmabuf_list(struct dma_buf *dmabuf)
{
struct rk_dma_heap_dmabuf *buf;
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_cma_heap *cma_heap = buffer->heap;
struct rk_dma_heap *heap = cma_heap->heap;
mutex_lock(&heap->dmabuf_lock);
list_for_each_entry(buf, &heap->dmabuf_list, node) {
if (buf->dmabuf == dmabuf) {
dma_heap_print("<%s> free dmabuf<ino-%ld>@[%pa-%pa] to heap-<%s>\n",
buf->orig_alloc,
dmabuf->file->f_inode->i_ino,
&buf->start, &buf->end,
rk_dma_heap_get_name(heap));
list_del(&buf->node);
kfree(buf->orig_alloc);
kfree(buf);
break;
}
}
mutex_unlock(&heap->dmabuf_lock);
}
static int rk_cma_heap_add_dmabuf_list(struct dma_buf *dmabuf, const char *name)
{
struct rk_dma_heap_dmabuf *buf;
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_cma_heap *cma_heap = buffer->heap;
struct rk_dma_heap *heap = cma_heap->heap;
const char *name_tmp;
buf = kzalloc(sizeof(*buf), GFP_KERNEL);
if (!buf)
return -ENOMEM;
INIT_LIST_HEAD(&buf->node);
buf->dmabuf = dmabuf;
if (!name)
name_tmp = current->comm;
else
name_tmp = name;
buf->orig_alloc = kstrndup(name_tmp, RK_DMA_HEAP_NAME_LEN, GFP_KERNEL);
if (!buf->orig_alloc) {
kfree(buf);
return -ENOMEM;
}
buf->start = buffer->phys;
buf->end = buf->start + buffer->len - 1;
mutex_lock(&heap->dmabuf_lock);
list_add_tail(&buf->node, &heap->dmabuf_list);
mutex_unlock(&heap->dmabuf_lock);
dma_heap_print("<%s> alloc dmabuf<ino-%ld>@[%pa-%pa] from heap-<%s>\n",
buf->orig_alloc, dmabuf->file->f_inode->i_ino,
&buf->start, &buf->end, rk_dma_heap_get_name(heap));
return 0;
}
static int rk_cma_heap_remove_contig_list(struct rk_dma_heap *heap,
struct page *page, const char *name)
{
struct rk_dma_heap_contig_buf *buf;
mutex_lock(&heap->contig_lock);
list_for_each_entry(buf, &heap->contig_list, node) {
if (buf->start == page_to_phys(page)) {
dma_heap_print("<%s> free contig-buf@[%pa-%pa] to heap-<%s>\n",
buf->orig_alloc, &buf->start, &buf->end,
rk_dma_heap_get_name(heap));
list_del(&buf->node);
kfree(buf->orig_alloc);
kfree(buf);
break;
}
}
mutex_unlock(&heap->contig_lock);
return 0;
}
static int rk_cma_heap_add_contig_list(struct rk_dma_heap *heap,
struct page *page, unsigned long size,
const char *name)
{
struct rk_dma_heap_contig_buf *buf;
const char *name_tmp;
buf = kzalloc(sizeof(*buf), GFP_KERNEL);
if (!buf)
return -ENOMEM;
INIT_LIST_HEAD(&buf->node);
if (!name)
name_tmp = current->comm;
else
name_tmp = name;
buf->orig_alloc = kstrndup(name_tmp, RK_DMA_HEAP_NAME_LEN, GFP_KERNEL);
if (!buf->orig_alloc) {
kfree(buf);
return -ENOMEM;
}
buf->start = page_to_phys(page);
buf->end = buf->start + size - 1;
mutex_lock(&heap->contig_lock);
list_add_tail(&buf->node, &heap->contig_list);
mutex_unlock(&heap->contig_lock);
dma_heap_print("<%s> alloc contig-buf@[%pa-%pa] from heap-<%s>\n",
buf->orig_alloc, &buf->start, &buf->end,
rk_dma_heap_get_name(heap));
return 0;
}
static void rk_cma_heap_dma_buf_release(struct dma_buf *dmabuf)
{
struct rk_cma_heap_buffer *buffer = dmabuf->priv;
struct rk_cma_heap *cma_heap = buffer->heap;
if (buffer->vmap_cnt > 0) {
WARN(1, "%s: buffer still mapped in the kernel\n", __func__);
vunmap(buffer->vaddr);
}
rk_cma_heap_remove_dmabuf_list(dmabuf);
/* release memory */
cma_release(cma_heap->cma, buffer->cma_pages, buffer->pagecount);
kfree(buffer);
}
static const struct dma_buf_ops rk_cma_heap_buf_ops = {
.attach = rk_cma_heap_attach,
.detach = rk_cma_heap_detach,
.map_dma_buf = rk_cma_heap_map_dma_buf,
.unmap_dma_buf = rk_cma_heap_unmap_dma_buf,
.begin_cpu_access = rk_cma_heap_dma_buf_begin_cpu_access,
.end_cpu_access = rk_cma_heap_dma_buf_end_cpu_access,
.mmap = rk_cma_heap_mmap,
.vmap = rk_cma_heap_vmap,
.vunmap = rk_cma_heap_vunmap,
.release = rk_cma_heap_dma_buf_release,
};
static struct dma_buf *rk_cma_heap_allocate(struct rk_dma_heap *heap,
unsigned long len,
unsigned long fd_flags,
unsigned long heap_flags,
const char *name)
{
struct rk_cma_heap *cma_heap = rk_dma_heap_get_drvdata(heap);
struct rk_cma_heap_buffer *buffer;
DEFINE_DMA_BUF_EXPORT_INFO(exp_info);
size_t size = PAGE_ALIGN(len);
pgoff_t pagecount = size >> PAGE_SHIFT;
unsigned long align = get_order(size);
struct page *cma_pages;
struct dma_buf *dmabuf;
int ret = -ENOMEM;
buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
if (!buffer)
return ERR_PTR(-ENOMEM);
INIT_LIST_HEAD(&buffer->attachments);
mutex_init(&buffer->lock);
buffer->len = size;
if (align > CONFIG_CMA_ALIGNMENT)
align = CONFIG_CMA_ALIGNMENT;
cma_pages = cma_alloc(cma_heap->cma, pagecount, align, GFP_KERNEL);
if (!cma_pages)
goto free_buffer;
/* Clear the cma pages */
if (PageHighMem(cma_pages)) {
unsigned long nr_clear_pages = pagecount;
struct page *page = cma_pages;
while (nr_clear_pages > 0) {
void *vaddr = kmap_atomic(page);
memset(vaddr, 0, PAGE_SIZE);
kunmap_atomic(vaddr);
/*
* Avoid wasting time zeroing memory if the process
* has been killed by SIGKILL
*/
if (fatal_signal_pending(current))
goto free_cma;
page++;
nr_clear_pages--;
}
} else {
memset(page_address(cma_pages), 0, size);
}
buffer->cma_pages = cma_pages;
buffer->heap = cma_heap;
buffer->pagecount = pagecount;
/* create the dmabuf */
exp_info.exp_name = rk_dma_heap_get_name(heap);
exp_info.ops = &rk_cma_heap_buf_ops;
exp_info.size = buffer->len;
exp_info.flags = fd_flags;
exp_info.priv = buffer;
dmabuf = dma_buf_export(&exp_info);
if (IS_ERR(dmabuf)) {
ret = PTR_ERR(dmabuf);
goto free_cma;
}
buffer->phys = page_to_phys(cma_pages);
dma_sync_single_for_cpu(rk_dma_heap_get_dev(heap), buffer->phys,
buffer->pagecount * PAGE_SIZE,
DMA_FROM_DEVICE);
ret = rk_cma_heap_add_dmabuf_list(dmabuf, name);
if (ret)
goto fail_dma_buf;
return dmabuf;
fail_dma_buf:
dma_buf_put(dmabuf);
free_cma:
cma_release(cma_heap->cma, cma_pages, pagecount);
free_buffer:
kfree(buffer);
return ERR_PTR(ret);
}
static struct page *rk_cma_heap_allocate_pages(struct rk_dma_heap *heap,
size_t len, const char *name)
{
struct rk_cma_heap *cma_heap = rk_dma_heap_get_drvdata(heap);
size_t size = PAGE_ALIGN(len);
pgoff_t pagecount = size >> PAGE_SHIFT;
unsigned long align = get_order(size);
struct page *page;
int ret;
if (align > CONFIG_CMA_ALIGNMENT)
align = CONFIG_CMA_ALIGNMENT;
page = cma_alloc(cma_heap->cma, pagecount, align, GFP_KERNEL);
if (!page)
return ERR_PTR(-ENOMEM);
ret = rk_cma_heap_add_contig_list(heap, page, size, name);
if (ret) {
cma_release(cma_heap->cma, page, pagecount);
return ERR_PTR(-EINVAL);
}
return page;
}
static void rk_cma_heap_free_pages(struct rk_dma_heap *heap,
struct page *page, size_t len,
const char *name)
{
struct rk_cma_heap *cma_heap = rk_dma_heap_get_drvdata(heap);
pgoff_t pagecount = len >> PAGE_SHIFT;
rk_cma_heap_remove_contig_list(heap, page, name);
cma_release(cma_heap->cma, page, pagecount);
}
static const struct rk_dma_heap_ops rk_cma_heap_ops = {
.allocate = rk_cma_heap_allocate,
.alloc_contig_pages = rk_cma_heap_allocate_pages,
.free_contig_pages = rk_cma_heap_free_pages,
};
static int __rk_add_cma_heap(struct cma *cma, void *data)
{
struct rk_cma_heap *cma_heap;
struct rk_dma_heap_export_info exp_info;
cma_heap = kzalloc(sizeof(*cma_heap), GFP_KERNEL);
if (!cma_heap)
return -ENOMEM;
cma_heap->cma = cma;
exp_info.name = cma_get_name(cma);
exp_info.ops = &rk_cma_heap_ops;
exp_info.priv = cma_heap;
exp_info.support_cma = true;
cma_heap->heap = rk_dma_heap_add(&exp_info);
if (IS_ERR(cma_heap->heap)) {
int ret = PTR_ERR(cma_heap->heap);
kfree(cma_heap);
return ret;
}
return 0;
}
static int rk_add_default_cma_heap(void)
{
struct cma *cma = rk_dma_heap_get_cma();
if (WARN_ON(!cma))
return -EINVAL;
return __rk_add_cma_heap(cma, NULL);
}
module_init(rk_add_default_cma_heap);
MODULE_DESCRIPTION("RockChip DMA-BUF CMA Heap");
MODULE_LICENSE("GPL v2");

View File

@@ -0,0 +1,711 @@
// SPDX-License-Identifier: GPL-2.0
/*
* Framework for userspace DMA-BUF allocations
*
* Copyright (C) 2011 Google, Inc.
* Copyright (C) 2019 Linaro Ltd.
* Copyright (C) 2022 Rockchip Electronics Co. Ltd.
* Author: Simon Xue <xxm@rock-chips.com>
*/
#include <linux/cma.h>
#include <linux/cdev.h>
#include <linux/debugfs.h>
#include <linux/device.h>
#include <linux/dma-buf.h>
#include <linux/dma-resv.h>
#include <linux/dma-map-ops.h>
#include <linux/err.h>
#include <linux/xarray.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <linux/uaccess.h>
#include <linux/syscalls.h>
#include <linux/rk-dma-heap.h>
#include <uapi/linux/rk-dma-heap.h>
#define DEVNAME "rk_dma_heap"
#define NUM_HEAP_MINORS 128
static LIST_HEAD(rk_heap_list);
static DEFINE_MUTEX(rk_heap_list_lock);
static dev_t rk_dma_heap_devt;
static struct class *rk_dma_heap_class;
static DEFINE_XARRAY_ALLOC(rk_dma_heap_minors);
#define RK_DMA_HEAP_CMA_DEFAULT_SIZE SZ_32M
static unsigned long rk_dma_heap_size __initdata;
static unsigned long rk_dma_heap_base __initdata;
static struct cma *rk_dma_heap_cma;
static int __init early_dma_heap_cma(char *p)
{
if (!p) {
pr_err("Config string not provided\n");
return -EINVAL;
}
rk_dma_heap_size = memparse(p, &p);
if (*p != '@')
return 0;
rk_dma_heap_base = memparse(p + 1, &p);
return 0;
}
early_param("rk_dma_heap_cma", early_dma_heap_cma);
int __init rk_dma_heap_cma_setup(void)
{
unsigned long size;
int ret;
bool fix = false;
if (rk_dma_heap_size)
size = rk_dma_heap_size;
else
size = RK_DMA_HEAP_CMA_DEFAULT_SIZE;
if (rk_dma_heap_base)
fix = true;
ret = cma_declare_contiguous(rk_dma_heap_base, size, 0x0, 0, 0, fix,
"rk-dma-heap-cma", &rk_dma_heap_cma);
if (ret)
return ret;
/* Architecture specific contiguous memory fixup. */
dma_contiguous_early_fixup(cma_get_base(rk_dma_heap_cma),
cma_get_size(rk_dma_heap_cma));
return 0;
}
struct cma *rk_dma_heap_get_cma(void)
{
return rk_dma_heap_cma;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_get_cma);
static int rk_vmap_pfn_apply(pte_t *pte, unsigned long addr, void *private)
{
struct rk_vmap_pfn_data *data = private;
*pte = pte_mkspecial(pfn_pte(data->pfn++, data->prot));
return 0;
}
void *rk_vmap_contig_pfn(unsigned long pfn, unsigned int count, pgprot_t prot)
{
struct rk_vmap_pfn_data data = { .pfn = pfn, .prot = pgprot_nx(prot) };
struct vm_struct *area;
area = get_vm_area_caller(count * PAGE_SIZE, VM_MAP,
__builtin_return_address(0));
if (!area)
return NULL;
if (apply_to_page_range(&init_mm, (unsigned long)area->addr,
count * PAGE_SIZE, rk_vmap_pfn_apply, &data)) {
free_vm_area(area);
return NULL;
}
return area->addr;
}
EXPORT_SYMBOL_GPL(rk_vmap_contig_pfn);
int rk_dma_heap_set_dev(struct device *heap_dev)
{
int err = 0;
if (!heap_dev)
return -EINVAL;
dma_coerce_mask_and_coherent(heap_dev, DMA_BIT_MASK(64));
if (!heap_dev->dma_parms) {
heap_dev->dma_parms = devm_kzalloc(heap_dev,
sizeof(*heap_dev->dma_parms),
GFP_KERNEL);
if (!heap_dev->dma_parms)
return -ENOMEM;
err = dma_set_max_seg_size(heap_dev, (unsigned int)DMA_BIT_MASK(64));
if (err) {
devm_kfree(heap_dev, heap_dev->dma_parms);
dev_err(heap_dev, "Failed to set DMA segment size, err:%d\n", err);
return err;
}
}
return 0;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_set_dev);
struct rk_dma_heap *rk_dma_heap_find(const char *name)
{
struct rk_dma_heap *h;
mutex_lock(&rk_heap_list_lock);
list_for_each_entry(h, &rk_heap_list, list) {
if (!strcmp(h->name, name)) {
kref_get(&h->refcount);
mutex_unlock(&rk_heap_list_lock);
return h;
}
}
mutex_unlock(&rk_heap_list_lock);
return NULL;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_find);
void rk_dma_heap_buffer_free(struct dma_buf *dmabuf)
{
dma_buf_put(dmabuf);
}
EXPORT_SYMBOL_GPL(rk_dma_heap_buffer_free);
struct dma_buf *rk_dma_heap_buffer_alloc(struct rk_dma_heap *heap, size_t len,
unsigned int fd_flags,
unsigned int heap_flags,
const char *name)
{
if (fd_flags & ~RK_DMA_HEAP_VALID_FD_FLAGS)
return ERR_PTR(-EINVAL);
if (heap_flags & ~RK_DMA_HEAP_VALID_HEAP_FLAGS)
return ERR_PTR(-EINVAL);
/*
* Allocations from all heaps have to begin
* and end on page boundaries.
*/
len = PAGE_ALIGN(len);
if (!len)
return ERR_PTR(-EINVAL);
return heap->ops->allocate(heap, len, fd_flags, heap_flags, name);
}
EXPORT_SYMBOL_GPL(rk_dma_heap_buffer_alloc);
int rk_dma_heap_bufferfd_alloc(struct rk_dma_heap *heap, size_t len,
unsigned int fd_flags,
unsigned int heap_flags,
const char *name)
{
struct dma_buf *dmabuf;
int fd;
dmabuf = rk_dma_heap_buffer_alloc(heap, len, fd_flags, heap_flags,
name);
if (IS_ERR(dmabuf))
return PTR_ERR(dmabuf);
fd = dma_buf_fd(dmabuf, fd_flags);
if (fd < 0) {
dma_buf_put(dmabuf);
/* just return, as put will call release and that will free */
}
return fd;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_bufferfd_alloc);
struct page *rk_dma_heap_alloc_contig_pages(struct rk_dma_heap *heap,
size_t len, const char *name)
{
if (!heap->support_cma) {
WARN_ON(!heap->support_cma);
return ERR_PTR(-EINVAL);
}
len = PAGE_ALIGN(len);
if (!len)
return ERR_PTR(-EINVAL);
return heap->ops->alloc_contig_pages(heap, len, name);
}
EXPORT_SYMBOL_GPL(rk_dma_heap_alloc_contig_pages);
void rk_dma_heap_free_contig_pages(struct rk_dma_heap *heap,
struct page *pages, size_t len,
const char *name)
{
if (!heap->support_cma) {
WARN_ON(!heap->support_cma);
return;
}
return heap->ops->free_contig_pages(heap, pages, len, name);
}
EXPORT_SYMBOL_GPL(rk_dma_heap_free_contig_pages);
static int rk_dma_heap_open(struct inode *inode, struct file *file)
{
struct rk_dma_heap *heap;
heap = xa_load(&rk_dma_heap_minors, iminor(inode));
if (!heap) {
pr_err("dma_heap: minor %d unknown.\n", iminor(inode));
return -ENODEV;
}
/* instance data as context */
file->private_data = heap;
nonseekable_open(inode, file);
return 0;
}
static long rk_dma_heap_ioctl_allocate(struct file *file, void *data)
{
struct rk_dma_heap_allocation_data *heap_allocation = data;
struct rk_dma_heap *heap = file->private_data;
int fd;
if (heap_allocation->fd)
return -EINVAL;
fd = rk_dma_heap_bufferfd_alloc(heap, heap_allocation->len,
heap_allocation->fd_flags,
heap_allocation->heap_flags, NULL);
if (fd < 0)
return fd;
heap_allocation->fd = fd;
return 0;
}
static unsigned int rk_dma_heap_ioctl_cmds[] = {
RK_DMA_HEAP_IOCTL_ALLOC,
};
static long rk_dma_heap_ioctl(struct file *file, unsigned int ucmd,
unsigned long arg)
{
char stack_kdata[128];
char *kdata = stack_kdata;
unsigned int kcmd;
unsigned int in_size, out_size, drv_size, ksize;
int nr = _IOC_NR(ucmd);
int ret = 0;
if (nr >= ARRAY_SIZE(rk_dma_heap_ioctl_cmds))
return -EINVAL;
/* Get the kernel ioctl cmd that matches */
kcmd = rk_dma_heap_ioctl_cmds[nr];
/* Figure out the delta between user cmd size and kernel cmd size */
drv_size = _IOC_SIZE(kcmd);
out_size = _IOC_SIZE(ucmd);
in_size = out_size;
if ((ucmd & kcmd & IOC_IN) == 0)
in_size = 0;
if ((ucmd & kcmd & IOC_OUT) == 0)
out_size = 0;
ksize = max(max(in_size, out_size), drv_size);
/* If necessary, allocate buffer for ioctl argument */
if (ksize > sizeof(stack_kdata)) {
kdata = kmalloc(ksize, GFP_KERNEL);
if (!kdata)
return -ENOMEM;
}
if (copy_from_user(kdata, (void __user *)arg, in_size) != 0) {
ret = -EFAULT;
goto err;
}
/* zero out any difference between the kernel/user structure size */
if (ksize > in_size)
memset(kdata + in_size, 0, ksize - in_size);
switch (kcmd) {
case RK_DMA_HEAP_IOCTL_ALLOC:
ret = rk_dma_heap_ioctl_allocate(file, kdata);
break;
default:
ret = -ENOTTY;
goto err;
}
if (copy_to_user((void __user *)arg, kdata, out_size) != 0)
ret = -EFAULT;
err:
if (kdata != stack_kdata)
kfree(kdata);
return ret;
}
static const struct file_operations rk_dma_heap_fops = {
.owner = THIS_MODULE,
.open = rk_dma_heap_open,
.unlocked_ioctl = rk_dma_heap_ioctl,
#ifdef CONFIG_COMPAT
.compat_ioctl = rk_dma_heap_ioctl,
#endif
};
/**
* rk_dma_heap_get_drvdata() - get per-subdriver data for the heap
* @heap: DMA-Heap to retrieve private data for
*
* Returns:
* The per-subdriver data for the heap.
*/
void *rk_dma_heap_get_drvdata(struct rk_dma_heap *heap)
{
return heap->priv;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_get_drvdata);
static void rk_dma_heap_release(struct kref *ref)
{
struct rk_dma_heap *heap = container_of(ref, struct rk_dma_heap, refcount);
int minor = MINOR(heap->heap_devt);
/* Note, we already holding the rk_heap_list_lock here */
list_del(&heap->list);
device_destroy(rk_dma_heap_class, heap->heap_devt);
cdev_del(&heap->heap_cdev);
xa_erase(&rk_dma_heap_minors, minor);
kfree(heap);
}
void rk_dma_heap_put(struct rk_dma_heap *h)
{
/*
* Take the rk_heap_list_lock now to avoid racing with code
* scanning the list and then taking a kref.
*/
mutex_lock(&rk_heap_list_lock);
kref_put(&h->refcount, rk_dma_heap_release);
mutex_unlock(&rk_heap_list_lock);
}
EXPORT_SYMBOL_GPL(rk_dma_heap_put);
/**
* rk_dma_heap_get_dev() - get device struct for the heap
* @heap: DMA-Heap to retrieve device struct from
*
* Returns:
* The device struct for the heap.
*/
struct device *rk_dma_heap_get_dev(struct rk_dma_heap *heap)
{
return heap->heap_dev;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_get_dev);
/**
* rk_dma_heap_get_name() - get heap name
* @heap: DMA-Heap to retrieve private data for
*
* Returns:
* The char* for the heap name.
*/
const char *rk_dma_heap_get_name(struct rk_dma_heap *heap)
{
return heap->name;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_get_name);
struct rk_dma_heap *rk_dma_heap_add(const struct rk_dma_heap_export_info *exp_info)
{
struct rk_dma_heap *heap, *err_ret;
unsigned int minor;
int ret;
if (!exp_info->name || !strcmp(exp_info->name, "")) {
pr_err("rk_dma_heap: Cannot add heap without a name\n");
return ERR_PTR(-EINVAL);
}
if (!exp_info->ops || !exp_info->ops->allocate) {
pr_err("rk_dma_heap: Cannot add heap with invalid ops struct\n");
return ERR_PTR(-EINVAL);
}
/* check the name is unique */
heap = rk_dma_heap_find(exp_info->name);
if (heap) {
pr_err("rk_dma_heap: Already registered heap named %s\n",
exp_info->name);
rk_dma_heap_put(heap);
return ERR_PTR(-EINVAL);
}
heap = kzalloc(sizeof(*heap), GFP_KERNEL);
if (!heap)
return ERR_PTR(-ENOMEM);
kref_init(&heap->refcount);
heap->name = exp_info->name;
heap->ops = exp_info->ops;
heap->priv = exp_info->priv;
heap->support_cma = exp_info->support_cma;
INIT_LIST_HEAD(&heap->dmabuf_list);
INIT_LIST_HEAD(&heap->contig_list);
mutex_init(&heap->dmabuf_lock);
mutex_init(&heap->contig_lock);
/* Find unused minor number */
ret = xa_alloc(&rk_dma_heap_minors, &minor, heap,
XA_LIMIT(0, NUM_HEAP_MINORS - 1), GFP_KERNEL);
if (ret < 0) {
pr_err("rk_dma_heap: Unable to get minor number for heap\n");
err_ret = ERR_PTR(ret);
goto err0;
}
/* Create device */
heap->heap_devt = MKDEV(MAJOR(rk_dma_heap_devt), minor);
cdev_init(&heap->heap_cdev, &rk_dma_heap_fops);
ret = cdev_add(&heap->heap_cdev, heap->heap_devt, 1);
if (ret < 0) {
pr_err("dma_heap: Unable to add char device\n");
err_ret = ERR_PTR(ret);
goto err1;
}
heap->heap_dev = device_create(rk_dma_heap_class,
NULL,
heap->heap_devt,
NULL,
heap->name);
if (IS_ERR(heap->heap_dev)) {
pr_err("rk_dma_heap: Unable to create device\n");
err_ret = ERR_CAST(heap->heap_dev);
goto err2;
}
/* Make sure it doesn't disappear on us */
heap->heap_dev = get_device(heap->heap_dev);
/* Add heap to the list */
mutex_lock(&rk_heap_list_lock);
list_add(&heap->list, &rk_heap_list);
mutex_unlock(&rk_heap_list_lock);
return heap;
err2:
cdev_del(&heap->heap_cdev);
err1:
xa_erase(&rk_dma_heap_minors, minor);
err0:
kfree(heap);
return err_ret;
}
EXPORT_SYMBOL_GPL(rk_dma_heap_add);
static char *rk_dma_heap_devnode(struct device *dev, umode_t *mode)
{
return kasprintf(GFP_KERNEL, "rk_dma_heap/%s", dev_name(dev));
}
static int rk_dma_heap_dump_dmabuf(const struct dma_buf *dmabuf, void *data)
{
struct rk_dma_heap *heap = (struct rk_dma_heap *)data;
struct rk_dma_heap_dmabuf *buf;
struct dma_buf_attachment *a;
int attach_count;
int ret;
if (!strcmp(dmabuf->exp_name, heap->name)) {
seq_printf(heap->s, "dma-heap:<%s> -dmabuf", heap->name);
mutex_lock(&heap->dmabuf_lock);
list_for_each_entry(buf, &heap->dmabuf_list, node) {
if (buf->dmabuf->file->f_inode->i_ino ==
dmabuf->file->f_inode->i_ino) {
seq_printf(heap->s,
"\ti_ino = %ld\n",
dmabuf->file->f_inode->i_ino);
seq_printf(heap->s,
"\tAlloc by (%s)\t[%pa-%pa]\n",
buf->orig_alloc, &buf->start,
&buf->end);
seq_puts(heap->s, "\t\tAttached Devices:\n");
attach_count = 0;
ret = dma_resv_lock_interruptible(dmabuf->resv,
NULL);
if (ret)
goto error_unlock;
list_for_each_entry(a, &dmabuf->attachments,
node) {
seq_printf(heap->s, "\t\t%s\n",
dev_name(a->dev));
attach_count++;
}
dma_resv_unlock(dmabuf->resv);
seq_printf(heap->s,
"Total %d devices attached\n\n",
attach_count);
}
}
mutex_unlock(&heap->dmabuf_lock);
}
return 0;
error_unlock:
mutex_unlock(&heap->dmabuf_lock);
return ret;
}
static int rk_dma_heap_dump_contig(void *data)
{
struct rk_dma_heap *heap = (struct rk_dma_heap *)data;
struct rk_dma_heap_contig_buf *buf;
mutex_lock(&heap->contig_lock);
list_for_each_entry(buf, &heap->contig_list, node) {
seq_printf(heap->s, "dma-heap:<%s> -non dmabuf\n", heap->name);
seq_printf(heap->s, "\tAlloc by (%s)\t[%pa-%pa]\n",
buf->orig_alloc, &buf->start, &buf->end);
}
mutex_unlock(&heap->contig_lock);
return 0;
}
static ssize_t rk_total_pools_kb_show(struct kobject *kobj,
struct kobj_attribute *attr, char *buf)
{
struct rk_dma_heap *heap;
u64 total_pool_size = 0;
mutex_lock(&rk_heap_list_lock);
list_for_each_entry(heap, &rk_heap_list, list)
if (heap->ops->get_pool_size)
total_pool_size += heap->ops->get_pool_size(heap);
mutex_unlock(&rk_heap_list_lock);
return sysfs_emit(buf, "%llu\n", total_pool_size / 1024);
}
static struct kobj_attribute rk_total_pools_kb_attr =
__ATTR_RO(rk_total_pools_kb);
static struct attribute *rk_dma_heap_sysfs_attrs[] = {
&rk_total_pools_kb_attr.attr,
NULL,
};
ATTRIBUTE_GROUPS(rk_dma_heap_sysfs);
static struct kobject *rk_dma_heap_kobject;
static int rk_dma_heap_sysfs_setup(void)
{
int ret;
rk_dma_heap_kobject = kobject_create_and_add("rk_dma_heap",
kernel_kobj);
if (!rk_dma_heap_kobject)
return -ENOMEM;
ret = sysfs_create_groups(rk_dma_heap_kobject,
rk_dma_heap_sysfs_groups);
if (ret) {
kobject_put(rk_dma_heap_kobject);
return ret;
}
return 0;
}
static void rk_dma_heap_sysfs_teardown(void)
{
kobject_put(rk_dma_heap_kobject);
}
#ifdef CONFIG_DEBUG_FS
static struct dentry *rk_dma_heap_debugfs_dir;
static int rk_dma_heap_debug_show(struct seq_file *s, void *unused)
{
struct rk_dma_heap *heap;
mutex_lock(&rk_heap_list_lock);
list_for_each_entry(heap, &rk_heap_list, list) {
heap->s = s;
get_each_dmabuf(rk_dma_heap_dump_dmabuf, heap);
}
list_for_each_entry(heap, &rk_heap_list, list) {
heap->s = s;
rk_dma_heap_dump_contig(heap);
}
mutex_unlock(&rk_heap_list_lock);
return 0;
}
DEFINE_SHOW_ATTRIBUTE(rk_dma_heap_debug);
static int rk_dma_heap_init_debugfs(void)
{
struct dentry *d;
int err = 0;
d = debugfs_create_dir("rk_dma_heap", NULL);
if (IS_ERR(d))
return PTR_ERR(d);
rk_dma_heap_debugfs_dir = d;
d = debugfs_create_file("dma_heap_info", 0444,
rk_dma_heap_debugfs_dir, NULL,
&rk_dma_heap_debug_fops);
if (IS_ERR(d)) {
dma_heap_print("rk_dma_heap : debugfs: failed to create node bufinfo\n");
debugfs_remove_recursive(rk_dma_heap_debugfs_dir);
rk_dma_heap_debugfs_dir = NULL;
err = PTR_ERR(d);
}
return err;
}
#else
static inline int rk_dma_heap_init_debugfs(void)
{
return 0;
}
#endif
static int rk_dma_heap_init(void)
{
int ret;
ret = rk_dma_heap_sysfs_setup();
if (ret)
return ret;
ret = alloc_chrdev_region(&rk_dma_heap_devt, 0, NUM_HEAP_MINORS,
DEVNAME);
if (ret)
goto err_chrdev;
rk_dma_heap_class = class_create(THIS_MODULE, DEVNAME);
if (IS_ERR(rk_dma_heap_class)) {
ret = PTR_ERR(rk_dma_heap_class);
goto err_class;
}
rk_dma_heap_class->devnode = rk_dma_heap_devnode;
rk_dma_heap_init_debugfs();
return 0;
err_class:
unregister_chrdev_region(rk_dma_heap_devt, NUM_HEAP_MINORS);
err_chrdev:
rk_dma_heap_sysfs_teardown();
return ret;
}
subsys_initcall(rk_dma_heap_init);

336
include/linux/rk-dma-heap.h Normal file
View File

@@ -0,0 +1,336 @@
/* SPDX-License-Identifier: GPL-2.0 */
/*
* DMABUF Heaps Allocation Infrastructure
*
* Copyright (C) 2011 Google, Inc.
* Copyright (C) 2019 Linaro Ltd.
* Copyright (C) 2022 Rockchip Electronics Co. Ltd.
* Author: Simon Xue <xxm@rock-chips.com>
*/
#ifndef _DMA_HEAPS_H
#define _DMA_HEAPS_H
#include <linux/cdev.h>
#include <linux/types.h>
#include <linux/dma-buf.h>
#if defined(CONFIG_DMABUF_RK_HEAPS_DEBUG)
#define dma_heap_print(fmt, ...) \
printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
#else
#define dma_heap_print(fmt, ...) \
no_printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
#endif
#define RK_DMA_HEAP_NAME_LEN 16
struct rk_cma_heap {
struct rk_dma_heap *heap;
struct cma *cma;
};
struct rk_cma_heap_buffer {
struct rk_cma_heap *heap;
struct list_head attachments;
struct mutex lock;
unsigned long len;
struct page *cma_pages;
pgoff_t pagecount;
int vmap_cnt;
void *vaddr;
phys_addr_t phys;
bool attached;
};
struct rk_vmap_pfn_data {
unsigned long pfn; /* first pfn of contiguous */
pgprot_t prot;
};
/**
* struct rk_dma_heap_ops - ops to operate on a given heap
* @allocate: allocate dmabuf and return struct dma_buf ptr
* @get_pool_size: if heap maintains memory pools, get pool size in bytes
*
* allocate returns dmabuf on success, ERR_PTR(-errno) on error.
*/
struct rk_dma_heap_ops {
struct dma_buf *(*allocate)(struct rk_dma_heap *heap,
unsigned long len,
unsigned long fd_flags,
unsigned long heap_flags,
const char *name);
struct page *(*alloc_contig_pages)(struct rk_dma_heap *heap,
size_t len, const char *name);
void (*free_contig_pages)(struct rk_dma_heap *heap,
struct page *pages, size_t len,
const char *name);
long (*get_pool_size)(struct rk_dma_heap *heap);
};
/**
* struct rk_dma_heap_export_info - information needed to export a new dmabuf heap
* @name: used for debugging/device-node name
* @ops: ops struct for this heap
* @priv: heap exporter private data
*
* Information needed to export a new dmabuf heap.
*/
struct rk_dma_heap_export_info {
const char *name;
const struct rk_dma_heap_ops *ops;
void *priv;
bool support_cma;
};
/**
* struct rk_dma_heap - represents a dmabuf heap in the system
* @name: used for debugging/device-node name
* @ops: ops struct for this heap
* @heap_devt heap device node
* @list list head connecting to list of heaps
* @heap_cdev heap char device
* @heap_dev heap device struct
*
* Represents a heap of memory from which buffers can be made.
*/
struct rk_dma_heap {
const char *name;
const struct rk_dma_heap_ops *ops;
void *priv;
dev_t heap_devt;
struct list_head list;
struct list_head dmabuf_list; /* dmabuf attach to this node */
struct mutex dmabuf_lock;
struct list_head contig_list; /* contig buffer attach to this node */
struct mutex contig_lock;
struct cdev heap_cdev;
struct kref refcount;
struct device *heap_dev;
bool support_cma;
struct seq_file *s;
};
struct rk_dma_heap_dmabuf {
struct list_head node;
struct dma_buf *dmabuf;
const char *orig_alloc;
phys_addr_t start;
phys_addr_t end;
};
struct rk_dma_heap_contig_buf {
struct list_head node;
const char *orig_alloc;
phys_addr_t start;
phys_addr_t end;
};
#if defined(CONFIG_DMABUF_HEAPS_ROCKCHIP)
int rk_dma_heap_cma_setup(void);
/**
* rk_dma_heap_get_drvdata() - get per-heap driver data
* @heap: DMA-Heap to retrieve private data for
*
* Returns:
* The per-heap data for the heap.
*/
void *rk_dma_heap_get_drvdata(struct rk_dma_heap *heap);
/**
* rk_dma_heap_get_dev() - get device struct for the heap
* @heap: DMA-Heap to retrieve device struct from
*
* Returns:
* The device struct for the heap.
*/
struct device *rk_dma_heap_get_dev(struct rk_dma_heap *heap);
/**
* rk_dma_heap_get_name() - get heap name
* @heap: DMA-Heap to retrieve private data for
*
* Returns:
* The char* for the heap name.
*/
const char *rk_dma_heap_get_name(struct rk_dma_heap *heap);
/**
* rk_dma_heap_add - adds a heap to dmabuf heaps
* @exp_info: information needed to register this heap
*/
struct rk_dma_heap *rk_dma_heap_add(const struct rk_dma_heap_export_info *exp_info);
/**
* rk_dma_heap_put - drops a reference to a dmabuf heaps, potentially freeing it
* @heap: heap pointer
*/
void rk_dma_heap_put(struct rk_dma_heap *heap);
/**
* rk_dma_heap_set_dev - set heap dev dma param
* @heap: DMA-Heap to retrieve private data for
*
* Returns:
* Zero on success, ERR_PTR(-errno) on error
*/
int rk_dma_heap_set_dev(struct device *heap_dev);
/**
* rk_dma_heap_find - Returns the registered dma_heap with the specified name
* @name: Name of the heap to find
*
* NOTE: dma_heaps returned from this function MUST be released
* using rk_dma_heap_put() when the user is done.
*/
struct rk_dma_heap *rk_dma_heap_find(const char *name);
/**
* rk_dma_heap_buffer_alloc - Allocate dma-buf from a dma_heap
* @heap: dma_heap to allocate from
* @len: size to allocate
* @fd_flags: flags to set on returned dma-buf fd
* @heap_flags: flags to pass to the dma heap
*
* This is for internal dma-buf allocations only.
*/
struct dma_buf *rk_dma_heap_buffer_alloc(struct rk_dma_heap *heap, size_t len,
unsigned int fd_flags,
unsigned int heap_flags,
const char *name);
/** rk_dma_heap_buffer_free - Free dma_buf allocated by rk_dma_heap_buffer_alloc
* @dma_buf: dma_buf to free
*
* This is really only a simple wrapper to dma_buf_put()
*/
void rk_dma_heap_buffer_free(struct dma_buf *dmabuf);
/**
* rk_dma_heap_bufferfd_alloc - Allocate dma-buf fd from a dma_heap
* @heap: dma_heap to allocate from
* @len: size to allocate
* @fd_flags: flags to set on returned dma-buf fd
* @heap_flags: flags to pass to the dma heap
*/
int rk_dma_heap_bufferfd_alloc(struct rk_dma_heap *heap, size_t len,
unsigned int fd_flags,
unsigned int heap_flags,
const char *name);
/**
* rk_dma_heap_alloc_contig_pages - Allocate contiguous pages from a dma_heap
* @heap: dma_heap to allocate from
* @len: size to allocate
* @name: the name who allocate
*/
struct page *rk_dma_heap_alloc_contig_pages(struct rk_dma_heap *heap,
size_t len, const char *name);
/**
* rk_dma_heap_free_contig_pages - Free contiguous pages to a dma_heap
* @heap: dma_heap to free to
* @pages: pages to free to
* @len: size to free
* @name: the name who allocate
*/
void rk_dma_heap_free_contig_pages(struct rk_dma_heap *heap,
struct page *pages, size_t len, const char *name);
/**
* rk_vmap_contig_pfn - Map contiguous pfn to vm area
* @pfn: indicate the first pfn of contig
* @count: count of pfns
* @prot: for mapping
*/
void *rk_vmap_contig_pfn(unsigned long pfn, unsigned int count,
pgprot_t prot);
/**
* rk_dma_heap_get_cma - get cma structure
*/
struct cma *rk_dma_heap_get_cma(void);
#else
static inline int rk_dma_heap_cma_setup(void)
{
return -ENODEV;
}
static inline void *rk_dma_heap_get_drvdata(struct rk_dma_heap *heap)
{
return NULL;
}
static inline struct device *rk_dma_heap_get_dev(struct rk_dma_heap *heap)
{
return NULL;
}
static inline const char *rk_dma_heap_get_name(struct rk_dma_heap *heap)
{
return NULL;
}
static inline struct rk_dma_heap *rk_dma_heap_add(const struct rk_dma_heap_export_info *exp_info)
{
return NULL;
}
static inline void rk_dma_heap_put(struct rk_dma_heap *heap)
{
}
static inline int rk_dma_heap_set_dev(struct device *heap_dev)
{
return -ENODEV;
}
static inline struct rk_dma_heap *rk_dma_heap_find(const char *name)
{
return NULL;
}
static inline struct dma_buf *rk_dma_heap_buffer_alloc(struct rk_dma_heap *heap, size_t len,
unsigned int fd_flags,
unsigned int heap_flags,
const char *name)
{
return NULL;
}
static inline void rk_dma_heap_buffer_free(struct dma_buf *dmabuf)
{
}
static inline int rk_dma_heap_bufferfd_alloc(struct rk_dma_heap *heap, size_t len,
unsigned int fd_flags,
unsigned int heap_flags,
const char *name)
{
return -ENODEV;
}
static inline struct page *rk_dma_heap_alloc_contig_pages(struct rk_dma_heap *heap,
size_t len, const char *name)
{
return NULL;
}
static inline void rk_dma_heap_free_contig_pages(struct rk_dma_heap *heap,
struct page *pages, size_t len, const char *name)
{
}
static inline void *rk_vmap_contig_pfn(unsigned long pfn, unsigned int count,
pgprot_t prot)
{
return NULL;
}
static inline struct cma *rk_dma_heap_get_cma(void)
{
return NULL;
}
#endif
#endif /* _DMA_HEAPS_H */

View File

@@ -0,0 +1,55 @@
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
* DMABUF Heaps Userspace API
*
* Copyright (C) 2011 Google, Inc.
* Copyright (C) 2019 Linaro Ltd.
* Copyright (C) 2022 Rockchip Electronics Co. Ltd.
* Author: Simon Xue <xxm@rock-chips.com>
*/
#ifndef _UAPI_LINUX_DMABUF_POOL_H
#define _UAPI_LINUX_DMABUF_POOL_H
#include <linux/ioctl.h>
#include <linux/types.h>
/**
* DOC: DMABUF Heaps Userspace API
*/
/* Valid FD_FLAGS are O_CLOEXEC, O_RDONLY, O_WRONLY, O_RDWR */
#define RK_DMA_HEAP_VALID_FD_FLAGS (O_CLOEXEC | O_ACCMODE)
/* Currently no heap flags */
#define RK_DMA_HEAP_VALID_HEAP_FLAGS (0)
/**
* struct rk_dma_heap_allocation_data - metadata passed from userspace for
* allocations
* @len: size of the allocation
* @fd: will be populated with a fd which provides the
* handle to the allocated dma-buf
* @fd_flags: file descriptor flags used when allocating
* @heap_flags: flags passed to heap
*
* Provided by userspace as an argument to the ioctl
*/
struct rk_dma_heap_allocation_data {
__u64 len;
__u32 fd;
__u32 fd_flags;
__u64 heap_flags;
};
#define RK_DMA_HEAP_IOC_MAGIC 'R'
/**
* DOC: RK_DMA_HEAP_IOCTL_ALLOC - allocate memory from pool
*
* Takes a rk_dma_heap_allocation_data struct and returns it with the fd field
* populated with the dmabuf handle of the allocation.
*/
#define RK_DMA_HEAP_IOCTL_ALLOC _IOWR(RK_DMA_HEAP_IOC_MAGIC, 0x0,\
struct rk_dma_heap_allocation_data)
#endif /* _UAPI_LINUX_DMABUF_POOL_H */