/* $NetBSD: dma-buf.h,v 1.4 2018/08/27 15:25:13 riastradh Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Taylor R. Campbell. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef _LINUX_DMA_BUF_H_ #define _LINUX_DMA_BUF_H_ #include #include #include #include struct device; struct dma_buf; struct dma_buf_attachment; struct dma_buf_export_info; struct dma_buf_ops; struct file; struct module; struct reservation_object; struct sg_table; struct uvm_object; enum dma_data_direction { DMA_NONE = 0, DMA_TO_DEVICE = 1, DMA_FROM_DEVICE = 2, DMA_BIDIRECTIONAL = 3, }; struct dma_buf_ops { int (*attach)(struct dma_buf *, struct device *, struct dma_buf_attachment *); void (*detach)(struct dma_buf *, struct dma_buf_attachment *); struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *, enum dma_data_direction); void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); void (*release)(struct dma_buf *); int (*begin_cpu_access)(struct dma_buf *, size_t, size_t, enum dma_data_direction); int (*end_cpu_access)(struct dma_buf *, size_t, size_t, enum dma_data_direction); void * (*kmap_atomic)(struct dma_buf *, unsigned long); void (*kunmap_atomic)(struct dma_buf *, unsigned long, void *); void * (*kmap)(struct dma_buf *, unsigned long); void (*kunmap)(struct dma_buf *, unsigned long, void *); int (*mmap)(struct dma_buf *, off_t *, size_t, int, int *, int *, struct uvm_object **, int *); void * (*vmap)(struct dma_buf *); void (*vunmap)(struct dma_buf *, void *); }; struct dma_buf { void *priv; const struct dma_buf_ops *ops; size_t size; struct reservation_object *resv; kmutex_t db_lock; volatile unsigned db_refcnt; struct reservation_poll db_resv_poll; struct reservation_object db_resv_int[]; }; struct dma_buf_attachment { void *priv; struct dma_buf *dmabuf; }; struct dma_buf_export_info { #if 0 const char *exp_name; struct module *owner; #endif const struct dma_buf_ops *ops; size_t size; int flags; struct reservation_object *resv; void *priv; }; #define DEFINE_DMA_BUF_EXPORT_INFO(info) \ struct dma_buf_export_info info = { .priv = NULL } #define dma_buf_attach linux_dma_buf_attach #define dma_buf_detach linux_dma_buf_detach #define dma_buf_export linux_dma_buf_export #define dma_buf_fd linux_dma_buf_fd #define dma_buf_get linux_dma_buf_get #define dma_buf_map_attachment linux_dma_buf_map_attachment #define dma_buf_put linux_dma_buf_put #define dma_buf_unmap_attachment linux_dma_buf_unmap_attachment #define get_dma_buf linux_get_dma_buf struct dma_buf * dma_buf_export(struct dma_buf_export_info *); int dma_buf_fd(struct dma_buf *, int); struct dma_buf * dma_buf_get(int); void get_dma_buf(struct dma_buf *); void dma_buf_put(struct dma_buf *); struct dma_buf_attachment * dma_buf_attach(struct dma_buf *, struct device *); void dma_buf_detach(struct dma_buf *, struct dma_buf_attachment *); struct sg_table * dma_buf_map_attachment(struct dma_buf_attachment *, enum dma_data_direction); void dma_buf_unmap_attachment(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); #endif /* _LINUX_DMA_BUF_H_ */