msm_audio_ion.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2013-2015, 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(const char *name, struct ion_client **client,
  19. struct ion_handle **handle, size_t bufsz,
  20. ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr);
  21. int msm_audio_ion_import(const char *name, struct ion_client **client,
  22. struct ion_handle **handle, int fd,
  23. unsigned long *ionflag, size_t bufsz,
  24. ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr);
  25. int msm_audio_ion_free(struct ion_client *client, struct ion_handle *handle);
  26. int msm_audio_ion_mmap(struct audio_buffer *substream,
  27. struct vm_area_struct *vma);
  28. bool msm_audio_ion_is_smmu_available(void);
  29. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op);
  30. struct ion_client *msm_audio_ion_client_create(const char *name);
  31. void msm_audio_ion_client_destroy(struct ion_client *client);
  32. int msm_audio_ion_import_legacy(const char *name, struct ion_client *client,
  33. struct ion_handle **handle, int fd,
  34. unsigned long *ionflag, size_t bufsz,
  35. ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr);
  36. int msm_audio_ion_free_legacy(struct ion_client *client,
  37. struct ion_handle *handle);
  38. u32 msm_audio_populate_upper_32_bits(ion_phys_addr_t pa);
  39. #endif /* _LINUX_MSM_AUDIO_ION_H */