blob: 525883b2c53e190fb80450f8af74531f82b37249 [file] [log] [blame]
Thomas Gleixner77512ba2019-06-03 07:44:53 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Magnus Damm2cc45cf2008-07-16 21:33:39 -03002/*
3 * helper functions for physically contiguous capture buffers
4 *
5 * The functions support hardware lacking scatter gather support
6 * (i.e. the buffers must be linear in physical memory)
7 *
8 * Copyright (c) 2008 Magnus Damm
Magnus Damm2cc45cf2008-07-16 21:33:39 -03009 */
10#ifndef _VIDEOBUF_DMA_CONTIG_H
11#define _VIDEOBUF_DMA_CONTIG_H
12
13#include <linux/dma-mapping.h>
14#include <media/videobuf-core.h>
15
16void videobuf_queue_dma_contig_init(struct videobuf_queue *q,
Jonathan Corbet38a54f32009-11-17 19:43:41 -030017 const struct videobuf_queue_ops *ops,
Magnus Damm2cc45cf2008-07-16 21:33:39 -030018 struct device *dev,
19 spinlock_t *irqlock,
20 enum v4l2_buf_type type,
21 enum v4l2_field field,
22 unsigned int msize,
Hans Verkuil08bff032010-09-20 17:39:46 -030023 void *priv,
24 struct mutex *ext_lock);
Magnus Damm2cc45cf2008-07-16 21:33:39 -030025
Magnus Damm2cc45cf2008-07-16 21:33:39 -030026dma_addr_t videobuf_to_dma_contig(struct videobuf_buffer *buf);
27void videobuf_dma_contig_free(struct videobuf_queue *q,
28 struct videobuf_buffer *buf);
29
30#endif /* _VIDEOBUF_DMA_CONTIG_H */