net: fix sk_mem_reclaim_partial()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / media / videobuf-dma-sg.h
CommitLineData
7a7d9a89 1/*
0705135e 2 * helper functions for SG DMA video4linux capture buffers
7a7d9a89 3 *
5d6aaf50 4 * The functions expect the hardware being able to scatter gather
7a7d9a89
MCC
5 * (i.e. the buffers are not linear in physical memory, but fragmented
6 * into PAGE_SIZE chunks). They also assume the driver does not need
7 * to touch the video data.
8 *
9 * (c) 2007 Mauro Carvalho Chehab, <mchehab@infradead.org>
10 *
11 * Highly based on video-buf written originally by:
12 * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
13 * (c) 2006 Mauro Carvalho Chehab, <mchehab@infradead.org>
14 * (c) 2006 Ted Walther and John Sokol
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2
19 */
7a02264c
PO
20#ifndef _VIDEOBUF_DMA_SG_H
21#define _VIDEOBUF_DMA_SG_H
7a7d9a89
MCC
22
23#include <media/videobuf-core.h>
24
25/* --------------------------------------------------------------------- */
26
7a7d9a89
MCC
27/*
28 * A small set of helper functions to manage buffers (both userland
29 * and kernel) for DMA.
30 *
31 * videobuf_dma_init_*()
32 * creates a buffer. The userland version takes a userspace
33 * pointer + length. The kernel version just wants the size and
34 * does memory allocation too using vmalloc_32().
35 *
36 * videobuf_dma_*()
395cf969 37 * see Documentation/DMA-API-HOWTO.txt, these functions to
7a7d9a89
MCC
38 * basically the same. The map function does also build a
39 * scatterlist for the buffer (and unmap frees it ...)
40 *
41 * videobuf_dma_free()
42 * no comment ...
43 *
44 */
45
46struct videobuf_dmabuf {
47 u32 magic;
48
49 /* for userland buffer */
50 int offset;
2fc11536 51 size_t size;
7a7d9a89
MCC
52 struct page **pages;
53
54 /* for kernel buffers */
bb6dbe74 55 void *vaddr;
7a7d9a89 56
7a7d9a89
MCC
57 /* for overlay buffers (pci-pci dma) */
58 dma_addr_t bus_addr;
59
60 /* common */
61 struct scatterlist *sglist;
62 int sglen;
63 int nr_pages;
64 int direction;
65};
66
7a02264c 67struct videobuf_dma_sg_memory {
7a7d9a89
MCC
68 u32 magic;
69
70 /* for mmap'ed buffers */
7a7d9a89
MCC
71 struct videobuf_dmabuf dma;
72};
73
95268403
LP
74/*
75 * Scatter-gather DMA buffer API.
76 *
77 * These functions provide a simple way to create a page list and a
78 * scatter-gather list from a kernel, userspace of physical address and map the
79 * memory for DMA operation.
80 *
81 * Despite the name, this is totally unrelated to videobuf, except that
82 * videobuf-dma-sg uses the same API internally.
83 */
7a7d9a89
MCC
84void videobuf_dma_init(struct videobuf_dmabuf *dma);
85int videobuf_dma_init_user(struct videobuf_dmabuf *dma, int direction,
86 unsigned long data, unsigned long size);
87int videobuf_dma_init_kernel(struct videobuf_dmabuf *dma, int direction,
88 int nr_pages);
89int videobuf_dma_init_overlay(struct videobuf_dmabuf *dma, int direction,
90 dma_addr_t addr, int nr_pages);
91int videobuf_dma_free(struct videobuf_dmabuf *dma);
92
95268403
LP
93int videobuf_dma_map(struct device *dev, struct videobuf_dmabuf *dma);
94int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma);
7a02264c 95struct videobuf_dmabuf *videobuf_to_dma(struct videobuf_buffer *buf);
7a7d9a89 96
0705135e 97void *videobuf_sg_alloc(size_t size);
7a7d9a89 98
7a02264c 99void videobuf_queue_sg_init(struct videobuf_queue *q,
38a54f35 100 const struct videobuf_queue_ops *ops,
0705135e 101 struct device *dev,
7a7d9a89
MCC
102 spinlock_t *irqlock,
103 enum v4l2_buf_type type,
104 enum v4l2_field field,
105 unsigned int msize,
08bff03e
HV
106 void *priv,
107 struct mutex *ext_lock);
7a7d9a89 108
7a02264c
PO
109#endif /* _VIDEOBUF_DMA_SG_H */
110