blob: 5ad49fe0670e46b460b6fcc5067d04ddc4aa9f0d [file] [log] [blame]
Duy Truong790f06d2013-02-13 16:38:12 -08001/* Copyright (c) 2011, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12#include <linux/module.h>
13#include <linux/platform_device.h>
14#include <linux/err.h>
15#include <mach/qdsp6v2/audio_dev_ctl.h>
16#include <sound/q6afe.h>
17#include <linux/slab.h>
18#include "snddev_virtual.h"
19
20static DEFINE_MUTEX(snddev_virtual_lock);
21
22static int snddev_virtual_open(struct msm_snddev_info *dev_info)
23{
24 int rc = 0;
25
26 pr_debug("%s\n", __func__);
27
28 mutex_lock(&snddev_virtual_lock);
29
30 if (!dev_info) {
31 pr_err("%s: NULL dev_info\n", __func__);
32
33 rc = -EINVAL;
34 goto done;
35 }
36
37 if (!dev_info->opened) {
38 rc = afe_start_pseudo_port(dev_info->copp_id);
39 } else {
40 pr_err("%s: Pseudo port 0x%x is already open\n",
41 __func__, dev_info->copp_id);
42
43 rc = -EBUSY;
44 }
45
46done:
47 mutex_unlock(&snddev_virtual_lock);
48
49 return rc;
50}
51
52static int snddev_virtual_close(struct msm_snddev_info *dev_info)
53{
54 int rc = 0;
55
56 pr_debug("%s\n", __func__);
57
58 mutex_lock(&snddev_virtual_lock);
59
60 if (!dev_info) {
61 pr_err("%s: NULL dev_info\n", __func__);
62
63 rc = -EINVAL;
64 goto done;
65 }
66
67 if (dev_info->opened) {
68 rc = afe_stop_pseudo_port(dev_info->copp_id);
69 } else {
70 pr_err("%s: Pseudo port 0x%x is not open\n",
71 __func__, dev_info->copp_id);
72
73 rc = -EPERM;
74 }
75
76done:
77 mutex_unlock(&snddev_virtual_lock);
78
79 return rc;
80}
81
82static int snddev_virtual_set_freq(struct msm_snddev_info *dev_info, u32 rate)
83{
84 int rc = 0;
85
86 if (!dev_info)
87 rc = -EINVAL;
88
89 return rate;
90}
91
92static int snddev_virtual_probe(struct platform_device *pdev)
93{
94 int rc = 0;
95 struct snddev_virtual_data *pdata;
96 struct msm_snddev_info *dev_info;
97
98 pr_debug("%s\n", __func__);
99
100 if (!pdev || !pdev->dev.platform_data) {
101 pr_err("%s: Invalid caller\n", __func__);
102
103 rc = -EPERM;
104 goto done;
105 }
106
107 pdata = pdev->dev.platform_data;
108
109 dev_info = kmalloc(sizeof(struct msm_snddev_info), GFP_KERNEL);
110 if (!dev_info) {
111 pr_err("%s: Out of memory\n", __func__);
112
113 rc = -ENOMEM;
114 goto done;
115 }
116
117 dev_info->name = pdata->name;
118 dev_info->copp_id = pdata->copp_id;
119 dev_info->private_data = (void *) NULL;
120 dev_info->dev_ops.open = snddev_virtual_open;
121 dev_info->dev_ops.close = snddev_virtual_close;
122 dev_info->dev_ops.set_freq = snddev_virtual_set_freq;
123 dev_info->capability = pdata->capability;
124 dev_info->sample_rate = 48000;
125 dev_info->opened = 0;
126 dev_info->sessions = 0;
127
128 msm_snddev_register(dev_info);
129
130done:
131 return rc;
132}
133
134static int snddev_virtual_remove(struct platform_device *pdev)
135{
136 return 0;
137}
138
139static struct platform_driver snddev_virtual_driver = {
140 .probe = snddev_virtual_probe,
141 .remove = snddev_virtual_remove,
142 .driver = { .name = "snddev_virtual" }
143};
144
145static int __init snddev_virtual_init(void)
146{
147 int rc = 0;
148
149 pr_debug("%s\n", __func__);
150
151 rc = platform_driver_register(&snddev_virtual_driver);
152 if (IS_ERR_VALUE(rc)) {
153 pr_err("%s: Platform driver register failure\n", __func__);
154
155 return -ENODEV;
156 }
157
158 return 0;
159}
160
161static void __exit snddev_virtual_exit(void)
162{
163 platform_driver_unregister(&snddev_virtual_driver);
164
165 return;
166}
167
168module_init(snddev_virtual_init);
169module_exit(snddev_virtual_exit);
170
171MODULE_DESCRIPTION("Virtual Sound Device driver");
172MODULE_LICENSE("GPL v2");