msm_audio_ion.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2013-2015, 2017-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _LINUX_MSM_AUDIO_ION_H
  6. #define _LINUX_MSM_AUDIO_ION_H
  7. #include <dsp/q6asm-v2.h>
  8. #include <sound/pcm.h>
  9. #include <linux/msm_ion.h>
  10. #include <linux/dma-mapping.h>
  11. enum {
  12. MSM_AUDIO_ION_INV_CACHES = 0,
  13. MSM_AUDIO_ION_CLEAN_CACHES,
  14. };
  15. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  16. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  17. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  18. unsigned long *ionflag, size_t bufsz,
  19. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  20. int msm_audio_ion_free(struct dma_buf *dma_buf);
  21. int msm_audio_ion_import_cma(struct dma_buf **dma_buf, int fd,
  22. unsigned long *ionflag, size_t bufsz,
  23. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  24. int msm_audio_ion_free_cma(struct dma_buf *dma_buf);
  25. int msm_audio_ion_mmap(struct audio_buffer *abuff, struct vm_area_struct *vma);
  26. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op);
  27. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa);
  28. int msm_audio_ion_get_smmu_info(struct device **cb_dev, u64 *smmu_sid);
  29. int msm_audio_ion_dma_map(dma_addr_t *phys_addr, dma_addr_t *iova_base,
  30. u32 size, enum dma_data_direction dir);
  31. #endif /* _LINUX_MSM_AUDIO_ION_H */