msm_audio_ion.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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. enum {
  19. MSM_AUDIO_ION_INV_CACHES = 0,
  20. MSM_AUDIO_ION_CLEAN_CACHES,
  21. };
  22. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  23. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  24. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  25. unsigned long *ionflag, size_t bufsz,
  26. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  27. int msm_audio_ion_free(struct dma_buf *dma_buf);
  28. int msm_audio_ion_mmap(struct audio_buffer *abuff, struct vm_area_struct *vma);
  29. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op);
  30. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa);
  31. #endif /* _LINUX_MSM_AUDIO_ION_H */