msm_audio_ion.h 979 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2013-2015, 2017-2018, 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. enum {
  11. MSM_AUDIO_ION_INV_CACHES = 0,
  12. MSM_AUDIO_ION_CLEAN_CACHES,
  13. };
  14. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  15. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  16. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  17. unsigned long *ionflag, size_t bufsz,
  18. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  19. int msm_audio_ion_free(struct dma_buf *dma_buf);
  20. int msm_audio_ion_mmap(struct audio_buffer *abuff, struct vm_area_struct *vma);
  21. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op);
  22. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa);
  23. int msm_audio_ion_get_smmu_info(struct device **cb_dev, u64 *smmu_sid);
  24. #endif /* _LINUX_MSM_AUDIO_ION_H */