videobuf2-dma-contig.c 4.3 KB
Newer Older
1 2 3 4 5
/*
 * videobuf2-dma-contig.c - DMA contig memory allocator for videobuf2
 *
 * Copyright (C) 2010 Samsung Electronics
 *
6
 * Author: Pawel Osciak <pawel@osciak.com>
7 8 9 10 11 12 13 14 15 16 17
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/slab.h>
#include <linux/dma-mapping.h>

#include <media/videobuf2-core.h>
18
#include <media/videobuf2-dma-contig.h>
19 20 21 22 23 24 25
#include <media/videobuf2-memops.h>

struct vb2_dc_conf {
	struct device		*dev;
};

struct vb2_dc_buf {
26
	struct device			*dev;
27 28
	void				*vaddr;
	unsigned long			size;
29 30 31
	dma_addr_t			dma_addr;

	/* MMAP related */
32
	struct vb2_vmarea_handler	handler;
33 34 35 36
	atomic_t			refcount;

	/* USERPTR related */
	struct vm_area_struct		*vma;
37 38
};

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
/*********************************************/
/*         callbacks for all buffers         */
/*********************************************/

static void *vb2_dc_cookie(void *buf_priv)
{
	struct vb2_dc_buf *buf = buf_priv;

	return &buf->dma_addr;
}

static void *vb2_dc_vaddr(void *buf_priv)
{
	struct vb2_dc_buf *buf = buf_priv;

	return buf->vaddr;
}

static unsigned int vb2_dc_num_users(void *buf_priv)
{
	struct vb2_dc_buf *buf = buf_priv;

	return atomic_read(&buf->refcount);
}

/*********************************************/
/*        callbacks for MMAP buffers         */
/*********************************************/

static void vb2_dc_put(void *buf_priv)
{
	struct vb2_dc_buf *buf = buf_priv;

	if (!atomic_dec_and_test(&buf->refcount))
		return;

	dma_free_coherent(buf->dev, buf->size, buf->vaddr, buf->dma_addr);
	kfree(buf);
}
78

79
static void *vb2_dc_alloc(void *alloc_ctx, unsigned long size)
80 81
{
	struct vb2_dc_conf *conf = alloc_ctx;
82
	struct device *dev = conf->dev;
83 84 85 86 87 88
	struct vb2_dc_buf *buf;

	buf = kzalloc(sizeof *buf, GFP_KERNEL);
	if (!buf)
		return ERR_PTR(-ENOMEM);

89
	buf->vaddr = dma_alloc_coherent(dev, size, &buf->dma_addr, GFP_KERNEL);
90
	if (!buf->vaddr) {
91
		dev_err(dev, "dma_alloc_coherent of size %ld failed\n", size);
92 93 94 95
		kfree(buf);
		return ERR_PTR(-ENOMEM);
	}

96
	buf->dev = dev;
97 98 99
	buf->size = size;

	buf->handler.refcount = &buf->refcount;
100
	buf->handler.put = vb2_dc_put;
101 102 103 104 105 106 107
	buf->handler.arg = buf;

	atomic_inc(&buf->refcount);

	return buf;
}

108
static int vb2_dc_mmap(void *buf_priv, struct vm_area_struct *vma)
109 110 111 112 113 114 115 116
{
	struct vb2_dc_buf *buf = buf_priv;

	if (!buf) {
		printk(KERN_ERR "No buffer to map\n");
		return -EINVAL;
	}

117
	return vb2_mmap_pfn_range(vma, buf->dma_addr, buf->size,
118 119 120
				  &vb2_common_vm_ops, &buf->handler);
}

121 122 123 124
/*********************************************/
/*       callbacks for USERPTR buffers       */
/*********************************************/

125
static void *vb2_dc_get_userptr(void *alloc_ctx, unsigned long vaddr,
126 127 128 129
					unsigned long size, int write)
{
	struct vb2_dc_buf *buf;
	struct vm_area_struct *vma;
130
	dma_addr_t dma_addr = 0;
131 132 133 134 135 136
	int ret;

	buf = kzalloc(sizeof *buf, GFP_KERNEL);
	if (!buf)
		return ERR_PTR(-ENOMEM);

137
	ret = vb2_get_contig_userptr(vaddr, size, &vma, &dma_addr);
138 139 140 141 142 143 144 145
	if (ret) {
		printk(KERN_ERR "Failed acquiring VMA for vaddr 0x%08lx\n",
				vaddr);
		kfree(buf);
		return ERR_PTR(ret);
	}

	buf->size = size;
146
	buf->dma_addr = dma_addr;
147 148 149 150 151
	buf->vma = vma;

	return buf;
}

152
static void vb2_dc_put_userptr(void *mem_priv)
153 154 155 156 157 158 159 160 161 162
{
	struct vb2_dc_buf *buf = mem_priv;

	if (!buf)
		return;

	vb2_put_vma(buf->vma);
	kfree(buf);
}

163 164 165 166
/*********************************************/
/*       DMA CONTIG exported functions       */
/*********************************************/

167
const struct vb2_mem_ops vb2_dma_contig_memops = {
168 169 170 171 172 173 174 175
	.alloc		= vb2_dc_alloc,
	.put		= vb2_dc_put,
	.cookie		= vb2_dc_cookie,
	.vaddr		= vb2_dc_vaddr,
	.mmap		= vb2_dc_mmap,
	.get_userptr	= vb2_dc_get_userptr,
	.put_userptr	= vb2_dc_put_userptr,
	.num_users	= vb2_dc_num_users,
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
};
EXPORT_SYMBOL_GPL(vb2_dma_contig_memops);

void *vb2_dma_contig_init_ctx(struct device *dev)
{
	struct vb2_dc_conf *conf;

	conf = kzalloc(sizeof *conf, GFP_KERNEL);
	if (!conf)
		return ERR_PTR(-ENOMEM);

	conf->dev = dev;

	return conf;
}
EXPORT_SYMBOL_GPL(vb2_dma_contig_init_ctx);

void vb2_dma_contig_cleanup_ctx(void *alloc_ctx)
{
	kfree(alloc_ctx);
}
EXPORT_SYMBOL_GPL(vb2_dma_contig_cleanup_ctx);

MODULE_DESCRIPTION("DMA-contig memory handling routines for videobuf2");
200
MODULE_AUTHOR("Pawel Osciak <pawel@osciak.com>");
201
MODULE_LICENSE("GPL");