blob: a02b1ff6488ef8c672c5f1dff17cf0a15fdc49d6 [file] [log] [blame]
Sumit Semwald15bd7e2011-12-26 14:53:15 +05301/*
2 * Header file for dma buffer sharing framework.
3 *
4 * Copyright(C) 2011 Linaro Limited. All rights reserved.
5 * Author: Sumit Semwal <sumit.semwal@ti.com>
6 *
7 * Many thanks to linaro-mm-sig list, and specially
8 * Arnd Bergmann <arnd@arndb.de>, Rob Clark <rob@ti.com> and
9 * Daniel Vetter <daniel@ffwll.ch> for their support in creation and
10 * refining of this idea.
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License version 2 as published by
14 * the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program. If not, see <http://www.gnu.org/licenses/>.
23 */
24#ifndef __DMA_BUF_H__
25#define __DMA_BUF_H__
26
27#include <linux/file.h>
28#include <linux/err.h>
Sumit Semwald15bd7e2011-12-26 14:53:15 +053029#include <linux/scatterlist.h>
30#include <linux/list.h>
31#include <linux/dma-mapping.h>
Rob Clarkf9a24d12012-03-16 11:04:41 -050032#include <linux/fs.h>
Sumit Semwald15bd7e2011-12-26 14:53:15 +053033
Paul Gortmaker313162d2012-01-30 11:46:54 -050034struct device;
Sumit Semwald15bd7e2011-12-26 14:53:15 +053035struct dma_buf;
36struct dma_buf_attachment;
37
38/**
39 * struct dma_buf_ops - operations possible on struct dma_buf
40 * @attach: [optional] allows different devices to 'attach' themselves to the
41 * given buffer. It might return -EBUSY to signal that backing storage
42 * is already allocated and incompatible with the requirements
43 * of requesting device.
44 * @detach: [optional] detach a given device from this buffer.
45 * @map_dma_buf: returns list of scatter pages allocated, increases usecount
46 * of the buffer. Requires atleast one attach to be called
47 * before. Returned sg list should already be mapped into
48 * _device_ address space. This call may sleep. May also return
49 * -EINTR. Should return -EINVAL if attach hasn't been called yet.
50 * @unmap_dma_buf: decreases usecount of buffer, might deallocate scatter
51 * pages.
52 * @release: release this buffer; to be called after the last dma_buf_put.
Daniel Vetterfc130202012-03-20 00:02:37 +010053 * @begin_cpu_access: [optional] called before cpu access to invalidate cpu
54 * caches and allocate backing storage (if not yet done)
55 * respectively pin the objet into memory.
56 * @end_cpu_access: [optional] called after cpu access to flush cashes.
57 * @kmap_atomic: maps a page from the buffer into kernel address
58 * space, users may not block until the subsequent unmap call.
59 * This callback must not sleep.
60 * @kunmap_atomic: [optional] unmaps a atomically mapped page from the buffer.
61 * This Callback must not sleep.
62 * @kmap: maps a page from the buffer into kernel address space.
63 * @kunmap: [optional] unmaps a page from the buffer.
Daniel Vetter4c785132012-04-24 14:38:52 +053064 * @mmap: used to expose the backing storage to userspace. Note that the
65 * mapping needs to be coherent - if the exporter doesn't directly
66 * support this, it needs to fake coherency by shooting down any ptes
67 * when transitioning away from the cpu domain.
Sumit Semwald15bd7e2011-12-26 14:53:15 +053068 */
69struct dma_buf_ops {
70 int (*attach)(struct dma_buf *, struct device *,
71 struct dma_buf_attachment *);
72
73 void (*detach)(struct dma_buf *, struct dma_buf_attachment *);
74
75 /* For {map,unmap}_dma_buf below, any specific buffer attributes
76 * required should get added to device_dma_parameters accessible
77 * via dev->dma_params.
78 */
79 struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *,
80 enum dma_data_direction);
81 void (*unmap_dma_buf)(struct dma_buf_attachment *,
Sumit Semwal33ea2dc2012-01-27 15:09:27 +053082 struct sg_table *,
83 enum dma_data_direction);
Sumit Semwald15bd7e2011-12-26 14:53:15 +053084 /* TODO: Add try_map_dma_buf version, to return immed with -EBUSY
85 * if the call would block.
86 */
87
88 /* after final dma_buf_put() */
89 void (*release)(struct dma_buf *);
90
Daniel Vetterfc130202012-03-20 00:02:37 +010091 int (*begin_cpu_access)(struct dma_buf *, size_t, size_t,
92 enum dma_data_direction);
93 void (*end_cpu_access)(struct dma_buf *, size_t, size_t,
94 enum dma_data_direction);
95 void *(*kmap_atomic)(struct dma_buf *, unsigned long);
96 void (*kunmap_atomic)(struct dma_buf *, unsigned long, void *);
97 void *(*kmap)(struct dma_buf *, unsigned long);
98 void (*kunmap)(struct dma_buf *, unsigned long, void *);
Daniel Vetter4c785132012-04-24 14:38:52 +053099
100 int (*mmap)(struct dma_buf *, struct vm_area_struct *vma);
Dave Airlie98f86c92012-05-20 12:33:56 +0530101
102 void *(*vmap)(struct dma_buf *);
103 void (*vunmap)(struct dma_buf *, void *vaddr);
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530104};
105
106/**
107 * struct dma_buf - shared buffer object
108 * @size: size of the buffer
109 * @file: file pointer used for sharing buffers across, and for refcounting.
110 * @attachments: list of dma_buf_attachment that denotes all devices attached.
111 * @ops: dma_buf_ops associated with this buffer object.
112 * @priv: exporter specific private data for this buffer object.
113 */
114struct dma_buf {
115 size_t size;
116 struct file *file;
117 struct list_head attachments;
118 const struct dma_buf_ops *ops;
Daniel Vetter6b607e32012-03-19 00:34:25 +0100119 /* mutex to serialize list manipulation and attach/detach */
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530120 struct mutex lock;
121 void *priv;
122};
123
124/**
125 * struct dma_buf_attachment - holds device-buffer attachment data
126 * @dmabuf: buffer for this attachment.
127 * @dev: device attached to the buffer.
128 * @node: list of dma_buf_attachment.
129 * @priv: exporter specific attachment data.
130 *
131 * This structure holds the attachment information between the dma_buf buffer
132 * and its user device(s). The list contains one attachment struct per device
133 * attached to the buffer.
134 */
135struct dma_buf_attachment {
136 struct dma_buf *dmabuf;
137 struct device *dev;
138 struct list_head node;
139 void *priv;
140};
141
Rob Clarkf9a24d12012-03-16 11:04:41 -0500142/**
143 * get_dma_buf - convenience wrapper for get_file.
144 * @dmabuf: [in] pointer to dma_buf
145 *
146 * Increments the reference count on the dma-buf, needed in case of drivers
147 * that either need to create additional references to the dmabuf on the
148 * kernel side. For example, an exporter that needs to keep a dmabuf ptr
149 * so that subsequent exports don't create a new dmabuf.
150 */
151static inline void get_dma_buf(struct dma_buf *dmabuf)
152{
153 get_file(dmabuf->file);
154}
155
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530156#ifdef CONFIG_DMA_SHARED_BUFFER
157struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
158 struct device *dev);
159void dma_buf_detach(struct dma_buf *dmabuf,
160 struct dma_buf_attachment *dmabuf_attach);
Laurent Pinchart53757642012-01-26 12:27:22 +0100161struct dma_buf *dma_buf_export(void *priv, const struct dma_buf_ops *ops,
162 size_t size, int flags);
Dave Airlie55c1c4c2012-03-16 10:34:02 +0000163int dma_buf_fd(struct dma_buf *dmabuf, int flags);
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530164struct dma_buf *dma_buf_get(int fd);
165void dma_buf_put(struct dma_buf *dmabuf);
166
167struct sg_table *dma_buf_map_attachment(struct dma_buf_attachment *,
168 enum dma_data_direction);
Sumit Semwal33ea2dc2012-01-27 15:09:27 +0530169void dma_buf_unmap_attachment(struct dma_buf_attachment *, struct sg_table *,
170 enum dma_data_direction);
Daniel Vetterfc130202012-03-20 00:02:37 +0100171int dma_buf_begin_cpu_access(struct dma_buf *dma_buf, size_t start, size_t len,
172 enum dma_data_direction dir);
173void dma_buf_end_cpu_access(struct dma_buf *dma_buf, size_t start, size_t len,
174 enum dma_data_direction dir);
175void *dma_buf_kmap_atomic(struct dma_buf *, unsigned long);
176void dma_buf_kunmap_atomic(struct dma_buf *, unsigned long, void *);
177void *dma_buf_kmap(struct dma_buf *, unsigned long);
178void dma_buf_kunmap(struct dma_buf *, unsigned long, void *);
Daniel Vetter4c785132012-04-24 14:38:52 +0530179
180int dma_buf_mmap(struct dma_buf *, struct vm_area_struct *,
181 unsigned long);
Dave Airlie98f86c92012-05-20 12:33:56 +0530182void *dma_buf_vmap(struct dma_buf *);
183void dma_buf_vunmap(struct dma_buf *, void *vaddr);
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530184#else
185
186static inline struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
187 struct device *dev)
188{
189 return ERR_PTR(-ENODEV);
190}
191
192static inline void dma_buf_detach(struct dma_buf *dmabuf,
193 struct dma_buf_attachment *dmabuf_attach)
194{
195 return;
196}
197
198static inline struct dma_buf *dma_buf_export(void *priv,
Laurent Pinchart53757642012-01-26 12:27:22 +0100199 const struct dma_buf_ops *ops,
200 size_t size, int flags)
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530201{
202 return ERR_PTR(-ENODEV);
203}
204
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530205static inline int dma_buf_fd(struct dma_buf *dmabuf, int flags)
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530206{
207 return -ENODEV;
208}
209
210static inline struct dma_buf *dma_buf_get(int fd)
211{
212 return ERR_PTR(-ENODEV);
213}
214
215static inline void dma_buf_put(struct dma_buf *dmabuf)
216{
217 return;
218}
219
220static inline struct sg_table *dma_buf_map_attachment(
221 struct dma_buf_attachment *attach, enum dma_data_direction write)
222{
223 return ERR_PTR(-ENODEV);
224}
225
226static inline void dma_buf_unmap_attachment(struct dma_buf_attachment *attach,
Sumit Semwal33ea2dc2012-01-27 15:09:27 +0530227 struct sg_table *sg, enum dma_data_direction dir)
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530228{
229 return;
230}
231
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530232static inline int dma_buf_begin_cpu_access(struct dma_buf *dmabuf,
233 size_t start, size_t len,
234 enum dma_data_direction dir)
Daniel Vetterfc130202012-03-20 00:02:37 +0100235{
236 return -ENODEV;
237}
238
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530239static inline void dma_buf_end_cpu_access(struct dma_buf *dmabuf,
240 size_t start, size_t len,
241 enum dma_data_direction dir)
Daniel Vetterfc130202012-03-20 00:02:37 +0100242{
243}
244
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530245static inline void *dma_buf_kmap_atomic(struct dma_buf *dmabuf,
246 unsigned long pnum)
Daniel Vetterfc130202012-03-20 00:02:37 +0100247{
248 return NULL;
249}
250
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530251static inline void dma_buf_kunmap_atomic(struct dma_buf *dmabuf,
252 unsigned long pnum, void *vaddr)
Daniel Vetterfc130202012-03-20 00:02:37 +0100253{
254}
255
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530256static inline void *dma_buf_kmap(struct dma_buf *dmabuf, unsigned long pnum)
Daniel Vetterfc130202012-03-20 00:02:37 +0100257{
258 return NULL;
259}
260
Sumit Semwal3e0b2a12012-03-26 11:29:19 +0530261static inline void dma_buf_kunmap(struct dma_buf *dmabuf,
262 unsigned long pnum, void *vaddr)
Daniel Vetterfc130202012-03-20 00:02:37 +0100263{
264}
Daniel Vetter4c785132012-04-24 14:38:52 +0530265
266static inline int dma_buf_mmap(struct dma_buf *dmabuf,
267 struct vm_area_struct *vma,
268 unsigned long pgoff)
269{
270 return -ENODEV;
271}
Dave Airlie98f86c92012-05-20 12:33:56 +0530272
273static inline void *dma_buf_vmap(struct dma_buf *dmabuf)
274{
275 return NULL;
276}
277
278static inline void dma_buf_vunmap(struct dma_buf *dmabuf, void *vaddr)
279{
280}
Sumit Semwald15bd7e2011-12-26 14:53:15 +0530281#endif /* CONFIG_DMA_SHARED_BUFFER */
282
283#endif /* __DMA_BUF_H__ */