videobuf2-memops.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * videobuf2-memops.h - generic memory handling routines for videobuf2
  3. *
  4. * Copyright (C) 2010 Samsung Electronics
  5. *
  6. * Author: Pawel Osciak <pawel@osciak.com>
  7. * Marek Szyprowski <m.szyprowski@samsung.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation.
  12. */
  13. #ifndef _MEDIA_VIDEOBUF2_MEMOPS_H
  14. #define _MEDIA_VIDEOBUF2_MEMOPS_H
  15. #include <media/videobuf2-core.h>
  16. /**
  17. * vb2_vmarea_handler - common vma refcount tracking handler
  18. * @refcount: pointer to refcount entry in the buffer
  19. * @put: callback to function that decreases buffer refcount
  20. * @arg: argument for @put callback
  21. */
  22. struct vb2_vmarea_handler {
  23. atomic_t *refcount;
  24. void (*put)(void *arg);
  25. void *arg;
  26. };
  27. extern const struct vm_operations_struct vb2_common_vm_ops;
  28. int vb2_get_contig_userptr(unsigned long vaddr, unsigned long size,
  29. struct vm_area_struct **res_vma, dma_addr_t *res_pa);
  30. struct vm_area_struct *vb2_get_vma(struct vm_area_struct *vma);
  31. void vb2_put_vma(struct vm_area_struct *vma);
  32. #endif