videobuf-dma-contig.h 909 B

123456789101112131415161718192021222324252627282930
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  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
  9. */
  10. #ifndef _VIDEOBUF_DMA_CONTIG_H
  11. #define _VIDEOBUF_DMA_CONTIG_H
  12. #include <linux/dma-mapping.h>
  13. #include <media/videobuf-core.h>
  14. void videobuf_queue_dma_contig_init(struct videobuf_queue *q,
  15. const struct videobuf_queue_ops *ops,
  16. struct device *dev,
  17. spinlock_t *irqlock,
  18. enum v4l2_buf_type type,
  19. enum v4l2_field field,
  20. unsigned int msize,
  21. void *priv,
  22. struct mutex *ext_lock);
  23. dma_addr_t videobuf_to_dma_contig(struct videobuf_buffer *buf);
  24. void videobuf_dma_contig_free(struct videobuf_queue *q,
  25. struct videobuf_buffer *buf);
  26. #endif /* _VIDEOBUF_DMA_CONTIG_H */