Fred Oh | de9438a | 2013-04-04 11:29:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013, 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 | |
| 14 | #ifndef _LINUX_MSM_AUDIO_ION_H |
| 15 | #define _LINUX_MSM_AUDIO_ION_H |
Fred Oh | c274a7a | 2013-03-25 13:59:17 -0700 | [diff] [blame] | 16 | #ifdef CONFIG_SND_SOC_QDSP6V2 |
| 17 | #include <sound/q6asm-v2.h> |
| 18 | #else |
| 19 | #include <sound/q6asm.h> |
| 20 | #endif |
| 21 | #include <sound/pcm.h> |
Fred Oh | de9438a | 2013-04-04 11:29:12 -0700 | [diff] [blame] | 22 | #include <linux/msm_ion.h> |
| 23 | |
| 24 | |
| 25 | int msm_audio_ion_alloc(const char *name, struct ion_client **client, |
| 26 | struct ion_handle **handle, size_t bufsz, |
| 27 | ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr); |
| 28 | |
| 29 | int msm_audio_ion_import(const char *name, struct ion_client **client, |
| 30 | struct ion_handle **handle, int fd, |
| 31 | unsigned long *ionflag, size_t bufsz, |
| 32 | ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr); |
| 33 | int msm_audio_ion_free(struct ion_client *client, struct ion_handle *handle); |
Fred Oh | c274a7a | 2013-03-25 13:59:17 -0700 | [diff] [blame] | 34 | int msm_audio_ion_mmap(struct audio_buffer *substream, |
| 35 | struct vm_area_struct *vma); |
Fred Oh | de9438a | 2013-04-04 11:29:12 -0700 | [diff] [blame] | 36 | |
| 37 | bool msm_audio_ion_is_smmu_available(void); |
Fred Oh | c274a7a | 2013-03-25 13:59:17 -0700 | [diff] [blame] | 38 | int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op); |
Fred Oh | de9438a | 2013-04-04 11:29:12 -0700 | [diff] [blame] | 39 | |
| 40 | #ifdef CONFIG_SND_SOC_QDSP6V2 |
| 41 | struct ion_client *msm_audio_ion_client_create(unsigned int heap_mask, |
| 42 | const char *name); |
| 43 | void msm_audio_ion_client_destroy(struct ion_client *client); |
| 44 | int msm_audio_ion_import_legacy(const char *name, struct ion_client *client, |
| 45 | struct ion_handle **handle, int fd, |
| 46 | unsigned long *ionflag, size_t bufsz, |
| 47 | ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr); |
| 48 | int msm_audio_ion_free_legacy(struct ion_client *client, |
| 49 | struct ion_handle *handle); |
| 50 | #else |
| 51 | static struct ion_client *msm_audio_ion_client_create(unsigned int heap_mask, |
| 52 | const char *name) |
| 53 | { return NULL; } |
| 54 | static void msm_audio_ion_client_destroy(struct ion_client *client) |
| 55 | {} |
| 56 | static int msm_audio_ion_import_legacy(const char *name, |
| 57 | struct ion_client *client, |
| 58 | struct ion_handle **handle, int fd, |
| 59 | unsigned long *ionflag, size_t bufsz, |
| 60 | ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr) |
| 61 | { return 0; } |
| 62 | static int msm_audio_ion_free_legacy(struct ion_client *client, |
| 63 | struct ion_handle *handle) |
| 64 | { return 0; } |
| 65 | |
| 66 | #endif /* CONFIG_MSM_QDSP6V2_CODECS */ |
| 67 | #endif /* _LINUX_MSM_AUDIO_ION_H */ |
| 68 | |