blob: 38b27bf8a0538a693707871cd8cdd2797121dab6 [file] [log] [blame]
Fred Ohde9438a2013-04-04 11:29:12 -07001/*
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 Ohc274a7a2013-03-25 13:59:17 -070016#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 Ohde9438a2013-04-04 11:29:12 -070022#include <linux/msm_ion.h>
23
24
25int 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
29int 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);
33int msm_audio_ion_free(struct ion_client *client, struct ion_handle *handle);
Fred Ohc274a7a2013-03-25 13:59:17 -070034int msm_audio_ion_mmap(struct audio_buffer *substream,
35 struct vm_area_struct *vma);
Fred Ohde9438a2013-04-04 11:29:12 -070036
37bool msm_audio_ion_is_smmu_available(void);
Fred Ohc274a7a2013-03-25 13:59:17 -070038int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op);
Fred Ohde9438a2013-04-04 11:29:12 -070039
40#ifdef CONFIG_SND_SOC_QDSP6V2
41struct ion_client *msm_audio_ion_client_create(unsigned int heap_mask,
42 const char *name);
43void msm_audio_ion_client_destroy(struct ion_client *client);
44int 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);
48int msm_audio_ion_free_legacy(struct ion_client *client,
49 struct ion_handle *handle);
50#else
51static struct ion_client *msm_audio_ion_client_create(unsigned int heap_mask,
52 const char *name)
53{ return NULL; }
54static void msm_audio_ion_client_destroy(struct ion_client *client)
55{}
56static 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; }
62static 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