blob: e72b4e73cd615f1fa0410b97661d7f07ef9bbaca [file] [log] [blame]
Karsten Keil960366c2008-07-27 01:56:38 +02001/*
2 * dsp_pipeline.c: pipelined audio processing
3 *
4 * Copyright (C) 2007, Nadi Sarrar
5 *
6 * Nadi Sarrar <nadi@beronet.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 59
20 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
22 * The full GNU General Public License is included in this distribution in the
23 * file called LICENSE.
24 *
25 */
26
27#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Karsten Keil960366c2008-07-27 01:56:38 +020029#include <linux/list.h>
30#include <linux/string.h>
31#include <linux/mISDNif.h>
32#include <linux/mISDNdsp.h>
Paul Gortmaker5d76fc22011-07-10 12:23:16 -040033#include <linux/export.h>
Karsten Keil960366c2008-07-27 01:56:38 +020034#include "dsp.h"
35#include "dsp_hwec.h"
36
37/* uncomment for debugging */
38/*#define PIPELINE_DEBUG*/
39
40struct dsp_pipeline_entry {
41 struct mISDN_dsp_element *elem;
42 void *p;
43 struct list_head list;
44};
45struct dsp_element_entry {
46 struct mISDN_dsp_element *elem;
47 struct device dev;
48 struct list_head list;
49};
50
51static LIST_HEAD(dsp_elements);
52
53/* sysfs */
54static struct class *elements_class;
55
56static ssize_t
57attr_show_args(struct device *dev, struct device_attribute *attr, char *buf)
58{
59 struct mISDN_dsp_element *elem = dev_get_drvdata(dev);
Karsten Keil1ce15132009-06-02 15:37:37 +020060 int i;
61 char *p = buf;
Karsten Keil960366c2008-07-27 01:56:38 +020062
63 *buf = 0;
Karsten Keil1ce15132009-06-02 15:37:37 +020064 for (i = 0; i < elem->num_args; i++)
65 p += sprintf(p, "Name: %s\n%s%s%sDescription: %s\n\n",
Joe Perches475be4d2012-02-19 19:52:38 -080066 elem->args[i].name,
67 elem->args[i].def ? "Default: " : "",
68 elem->args[i].def ? elem->args[i].def : "",
69 elem->args[i].def ? "\n" : "",
70 elem->args[i].desc);
Karsten Keil960366c2008-07-27 01:56:38 +020071
Karsten Keil1ce15132009-06-02 15:37:37 +020072 return p - buf;
Karsten Keil960366c2008-07-27 01:56:38 +020073}
74
75static struct device_attribute element_attributes[] = {
76 __ATTR(args, 0444, attr_show_args, NULL),
77};
78
Andreas Eversberg808a14a2008-09-28 15:40:15 +020079static void
80mISDN_dsp_dev_release(struct device *dev)
81{
82 struct dsp_element_entry *entry =
83 container_of(dev, struct dsp_element_entry, dev);
84 list_del(&entry->list);
85 kfree(entry);
86}
87
Karsten Keil960366c2008-07-27 01:56:38 +020088int mISDN_dsp_element_register(struct mISDN_dsp_element *elem)
89{
90 struct dsp_element_entry *entry;
91 int ret, i;
92
93 if (!elem)
94 return -EINVAL;
95
Andreas Eversberg400fd972008-10-11 08:13:29 +020096 entry = kzalloc(sizeof(struct dsp_element_entry), GFP_ATOMIC);
Karsten Keil960366c2008-07-27 01:56:38 +020097 if (!entry)
98 return -ENOMEM;
99
100 entry->elem = elem;
101
102 entry->dev.class = elements_class;
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200103 entry->dev.release = mISDN_dsp_dev_release;
Karsten Keil960366c2008-07-27 01:56:38 +0200104 dev_set_drvdata(&entry->dev, elem);
Kees Cook02aa2a32013-07-03 15:04:56 -0700105 dev_set_name(&entry->dev, "%s", elem->name);
Karsten Keil960366c2008-07-27 01:56:38 +0200106 ret = device_register(&entry->dev);
107 if (ret) {
108 printk(KERN_ERR "%s: failed to register %s\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800109 __func__, elem->name);
Karsten Keil960366c2008-07-27 01:56:38 +0200110 goto err1;
111 }
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200112 list_add_tail(&entry->list, &dsp_elements);
Karsten Keil960366c2008-07-27 01:56:38 +0200113
Ilpo Järvinen21c150a2009-01-09 12:22:52 -0800114 for (i = 0; i < ARRAY_SIZE(element_attributes); ++i) {
Karsten Keil960366c2008-07-27 01:56:38 +0200115 ret = device_create_file(&entry->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800116 &element_attributes[i]);
Karsten Keil960366c2008-07-27 01:56:38 +0200117 if (ret) {
118 printk(KERN_ERR "%s: failed to create device file\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800119 __func__);
Karsten Keil960366c2008-07-27 01:56:38 +0200120 goto err2;
121 }
Ilpo Järvinen21c150a2009-01-09 12:22:52 -0800122 }
Karsten Keil960366c2008-07-27 01:56:38 +0200123
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200124#ifdef PIPELINE_DEBUG
Karsten Keil960366c2008-07-27 01:56:38 +0200125 printk(KERN_DEBUG "%s: %s registered\n", __func__, elem->name);
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200126#endif
Karsten Keil960366c2008-07-27 01:56:38 +0200127
128 return 0;
129
130err2:
131 device_unregister(&entry->dev);
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200132 return ret;
Karsten Keil960366c2008-07-27 01:56:38 +0200133err1:
134 kfree(entry);
135 return ret;
136}
137EXPORT_SYMBOL(mISDN_dsp_element_register);
138
139void mISDN_dsp_element_unregister(struct mISDN_dsp_element *elem)
140{
141 struct dsp_element_entry *entry, *n;
142
143 if (!elem)
144 return;
145
146 list_for_each_entry_safe(entry, n, &dsp_elements, list)
147 if (entry->elem == elem) {
Karsten Keil960366c2008-07-27 01:56:38 +0200148 device_unregister(&entry->dev);
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200149#ifdef PIPELINE_DEBUG
Karsten Keil960366c2008-07-27 01:56:38 +0200150 printk(KERN_DEBUG "%s: %s unregistered\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800151 __func__, elem->name);
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200152#endif
Karsten Keil960366c2008-07-27 01:56:38 +0200153 return;
154 }
155 printk(KERN_ERR "%s: element %s not in list.\n", __func__, elem->name);
156}
157EXPORT_SYMBOL(mISDN_dsp_element_unregister);
158
159int dsp_pipeline_module_init(void)
160{
161 elements_class = class_create(THIS_MODULE, "dsp_pipeline");
162 if (IS_ERR(elements_class))
163 return PTR_ERR(elements_class);
164
165#ifdef PIPELINE_DEBUG
166 printk(KERN_DEBUG "%s: dsp pipeline module initialized\n", __func__);
167#endif
168
169 dsp_hwec_init();
170
171 return 0;
172}
173
174void dsp_pipeline_module_exit(void)
175{
176 struct dsp_element_entry *entry, *n;
177
178 dsp_hwec_exit();
179
180 class_destroy(elements_class);
181
182 list_for_each_entry_safe(entry, n, &dsp_elements, list) {
183 list_del(&entry->list);
184 printk(KERN_WARNING "%s: element was still registered: %s\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800185 __func__, entry->elem->name);
Karsten Keil960366c2008-07-27 01:56:38 +0200186 kfree(entry);
187 }
188
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200189#ifdef PIPELINE_DEBUG
Karsten Keil960366c2008-07-27 01:56:38 +0200190 printk(KERN_DEBUG "%s: dsp pipeline module exited\n", __func__);
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200191#endif
Karsten Keil960366c2008-07-27 01:56:38 +0200192}
193
194int dsp_pipeline_init(struct dsp_pipeline *pipeline)
195{
196 if (!pipeline)
197 return -EINVAL;
198
199 INIT_LIST_HEAD(&pipeline->list);
200
201#ifdef PIPELINE_DEBUG
202 printk(KERN_DEBUG "%s: dsp pipeline ready\n", __func__);
203#endif
204
205 return 0;
206}
207
208static inline void _dsp_pipeline_destroy(struct dsp_pipeline *pipeline)
209{
210 struct dsp_pipeline_entry *entry, *n;
211
212 list_for_each_entry_safe(entry, n, &pipeline->list, list) {
213 list_del(&entry->list);
214 if (entry->elem == dsp_hwec)
215 dsp_hwec_disable(container_of(pipeline, struct dsp,
Joe Perches475be4d2012-02-19 19:52:38 -0800216 pipeline));
Karsten Keil960366c2008-07-27 01:56:38 +0200217 else
218 entry->elem->free(entry->p);
219 kfree(entry);
220 }
221}
222
223void dsp_pipeline_destroy(struct dsp_pipeline *pipeline)
224{
225
226 if (!pipeline)
227 return;
228
229 _dsp_pipeline_destroy(pipeline);
230
231#ifdef PIPELINE_DEBUG
232 printk(KERN_DEBUG "%s: dsp pipeline destroyed\n", __func__);
233#endif
234}
235
236int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg)
237{
Geliang Tangc3643882015-10-12 01:19:07 -0700238 int incomplete = 0, found = 0;
Karsten Keil960366c2008-07-27 01:56:38 +0200239 char *dup, *tok, *name, *args;
240 struct dsp_element_entry *entry, *n;
241 struct dsp_pipeline_entry *pipeline_entry;
242 struct mISDN_dsp_element *elem;
243
244 if (!pipeline)
245 return -EINVAL;
246
247 if (!list_empty(&pipeline->list))
248 _dsp_pipeline_destroy(pipeline);
249
Geliang Tangc3643882015-10-12 01:19:07 -0700250 dup = kstrdup(cfg, GFP_ATOMIC);
Karsten Keil960366c2008-07-27 01:56:38 +0200251 if (!dup)
252 return 0;
Karsten Keil960366c2008-07-27 01:56:38 +0200253 while ((tok = strsep(&dup, "|"))) {
254 if (!strlen(tok))
255 continue;
256 name = strsep(&tok, "(");
257 args = strsep(&tok, ")");
258 if (args && !*args)
Hannes Ederbcf91742008-12-12 21:11:28 -0800259 args = NULL;
Karsten Keil960366c2008-07-27 01:56:38 +0200260
261 list_for_each_entry_safe(entry, n, &dsp_elements, list)
262 if (!strcmp(entry->elem->name, name)) {
263 elem = entry->elem;
264
265 pipeline_entry = kmalloc(sizeof(struct
Joe Perches475be4d2012-02-19 19:52:38 -0800266 dsp_pipeline_entry), GFP_ATOMIC);
Karsten Keil960366c2008-07-27 01:56:38 +0200267 if (!pipeline_entry) {
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200268 printk(KERN_ERR "%s: failed to add "
Joe Perches475be4d2012-02-19 19:52:38 -0800269 "entry to pipeline: %s (out of "
270 "memory)\n", __func__, elem->name);
Karsten Keil960366c2008-07-27 01:56:38 +0200271 incomplete = 1;
272 goto _out;
273 }
274 pipeline_entry->elem = elem;
275
276 if (elem == dsp_hwec) {
277 /* This is a hack to make the hwec
278 available as a pipeline module */
279 dsp_hwec_enable(container_of(pipeline,
Joe Perches475be4d2012-02-19 19:52:38 -0800280 struct dsp, pipeline), args);
Karsten Keil960366c2008-07-27 01:56:38 +0200281 list_add_tail(&pipeline_entry->list,
Joe Perches475be4d2012-02-19 19:52:38 -0800282 &pipeline->list);
Karsten Keil960366c2008-07-27 01:56:38 +0200283 } else {
284 pipeline_entry->p = elem->new(args);
285 if (pipeline_entry->p) {
286 list_add_tail(&pipeline_entry->
Joe Perches475be4d2012-02-19 19:52:38 -0800287 list, &pipeline->list);
Karsten Keil960366c2008-07-27 01:56:38 +0200288#ifdef PIPELINE_DEBUG
289 printk(KERN_DEBUG "%s: created "
Joe Perches475be4d2012-02-19 19:52:38 -0800290 "instance of %s%s%s\n",
291 __func__, name, args ?
292 " with args " : "", args ?
293 args : "");
Karsten Keil960366c2008-07-27 01:56:38 +0200294#endif
295 } else {
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200296 printk(KERN_ERR "%s: failed "
Joe Perches475be4d2012-02-19 19:52:38 -0800297 "to add entry to pipeline: "
298 "%s (new() returned NULL)\n",
299 __func__, elem->name);
Karsten Keil960366c2008-07-27 01:56:38 +0200300 kfree(pipeline_entry);
301 incomplete = 1;
302 }
303 }
304 found = 1;
305 break;
306 }
307
308 if (found)
309 found = 0;
310 else {
Andreas Eversberg808a14a2008-09-28 15:40:15 +0200311 printk(KERN_ERR "%s: element not found, skipping: "
Joe Perches475be4d2012-02-19 19:52:38 -0800312 "%s\n", __func__, name);
Karsten Keil960366c2008-07-27 01:56:38 +0200313 incomplete = 1;
314 }
315 }
316
317_out:
318 if (!list_empty(&pipeline->list))
319 pipeline->inuse = 1;
320 else
321 pipeline->inuse = 0;
322
323#ifdef PIPELINE_DEBUG
324 printk(KERN_DEBUG "%s: dsp pipeline built%s: %s\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800325 __func__, incomplete ? " incomplete" : "", cfg);
Karsten Keil960366c2008-07-27 01:56:38 +0200326#endif
327 kfree(dup);
328 return 0;
329}
330
331void dsp_pipeline_process_tx(struct dsp_pipeline *pipeline, u8 *data, int len)
332{
333 struct dsp_pipeline_entry *entry;
334
335 if (!pipeline)
336 return;
337
338 list_for_each_entry(entry, &pipeline->list, list)
339 if (entry->elem->process_tx)
340 entry->elem->process_tx(entry->p, data, len);
341}
342
Andreas Eversberg7cfa1532009-05-22 11:04:46 +0000343void dsp_pipeline_process_rx(struct dsp_pipeline *pipeline, u8 *data, int len,
Joe Perches475be4d2012-02-19 19:52:38 -0800344 unsigned int txlen)
Karsten Keil960366c2008-07-27 01:56:38 +0200345{
346 struct dsp_pipeline_entry *entry;
347
348 if (!pipeline)
349 return;
350
351 list_for_each_entry_reverse(entry, &pipeline->list, list)
352 if (entry->elem->process_rx)
Andreas Eversberg7cfa1532009-05-22 11:04:46 +0000353 entry->elem->process_rx(entry->p, data, len, txlen);
Karsten Keil960366c2008-07-27 01:56:38 +0200354}