msm_audio_ion.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 <sound/pcm.h>
  8. #include <linux/msm_ion.h>
  9. #include <linux/dma-mapping.h>
  10. enum {
  11. HLOS_TO_ADSP = 1,
  12. ADSP_TO_HLOS,
  13. };
  14. #define VMID_CP_ADSP_SHARED 33
  15. enum {
  16. MSM_AUDIO_ION_INV_CACHES = 0,
  17. MSM_AUDIO_ION_CLEAN_CACHES,
  18. };
  19. struct audio_buffer {
  20. dma_addr_t phys;
  21. void *data;
  22. uint32_t used;
  23. uint32_t size;/* size of buffer */
  24. uint32_t actual_size; /* actual number of bytes read by DSP */
  25. struct dma_buf *dma_buf;
  26. };
  27. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  28. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  29. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  30. unsigned long *ionflag, size_t bufsz,
  31. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  32. int msm_audio_ion_free(struct dma_buf *dma_buf);
  33. int msm_audio_ion_import_cma(struct dma_buf **dma_buf, int fd,
  34. unsigned long *ionflag, size_t bufsz,
  35. dma_addr_t *paddr, size_t *pa_len, void **vaddr);
  36. int msm_audio_ion_free_cma(struct dma_buf *dma_buf);
  37. int msm_audio_ion_mmap(struct audio_buffer *abuff, struct vm_area_struct *vma);
  38. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op);
  39. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa);
  40. int msm_audio_ion_get_smmu_info(struct device **cb_dev, u64 *smmu_sid);
  41. int msm_audio_ion_dma_map(dma_addr_t *phys_addr, dma_addr_t *iova_base,
  42. u32 size, enum dma_data_direction dir);
  43. int msm_audio_ion_phys_assign(void **mem_hdl, int fd, dma_addr_t *paddr,
  44. size_t *pa_len, u8 assign_type, int id);
  45. int msm_audio_ion_phys_free(void *mem_hdl, dma_addr_t *paddr,
  46. size_t *pa_len, u8 assign_type, int id, int key);
  47. bool msm_audio_is_hypervisor_supported(void);
  48. int msm_audio_get_phy_addr(int fd, dma_addr_t *paddr);
  49. void msm_audio_ion_crash_handler(void);
  50. #endif /* _LINUX_MSM_AUDIO_ION_H */