msm_audio_ion.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) 2013-2015, 2017-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _LINUX_MSM_AUDIO_ION_H
  14. #define _LINUX_MSM_AUDIO_ION_H
  15. #include <dsp/q6asm-v2.h>
  16. #include <sound/pcm.h>
  17. #include <linux/msm_ion.h>
  18. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  19. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  20. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  21. unsigned long *ionflag, size_t bufsz,
  22. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  23. int msm_audio_ion_free(struct dma_buf *dma_buf);
  24. int msm_audio_ion_mmap(struct audio_buffer *abuff, struct vm_area_struct *vma);
  25. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa);
  26. #endif /* _LINUX_MSM_AUDIO_ION_H */