[CPUFREQ] Reduce scope of cpu_sys_dev in cpufreq_add_dev
[linux-2.6-xlnx.git] / drivers / isdn / mISDN / dsp_pipeline.c
blobe9941678edfa52ff51baa83b75a8d659017926b9
1 /*
2 * dsp_pipeline.c: pipelined audio processing
4 * Copyright (C) 2007, Nadi Sarrar
6 * Nadi Sarrar <nadi@beronet.com>
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.
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.
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.
22 * The full GNU General Public License is included in this distribution in the
23 * file called LICENSE.
27 #include <linux/kernel.h>
28 #include <linux/list.h>
29 #include <linux/string.h>
30 #include <linux/mISDNif.h>
31 #include <linux/mISDNdsp.h>
32 #include "dsp.h"
33 #include "dsp_hwec.h"
35 /* uncomment for debugging */
36 /*#define PIPELINE_DEBUG*/
38 struct dsp_pipeline_entry {
39 struct mISDN_dsp_element *elem;
40 void *p;
41 struct list_head list;
43 struct dsp_element_entry {
44 struct mISDN_dsp_element *elem;
45 struct device dev;
46 struct list_head list;
49 static LIST_HEAD(dsp_elements);
51 /* sysfs */
52 static struct class *elements_class;
54 static ssize_t
55 attr_show_args(struct device *dev, struct device_attribute *attr, char *buf)
57 struct mISDN_dsp_element *elem = dev_get_drvdata(dev);
58 int i;
59 char *p = buf;
61 *buf = 0;
62 for (i = 0; i < elem->num_args; i++)
63 p += sprintf(p, "Name: %s\n%s%s%sDescription: %s\n\n",
64 elem->args[i].name,
65 elem->args[i].def ? "Default: " : "",
66 elem->args[i].def ? elem->args[i].def : "",
67 elem->args[i].def ? "\n" : "",
68 elem->args[i].desc);
70 return p - buf;
73 static struct device_attribute element_attributes[] = {
74 __ATTR(args, 0444, attr_show_args, NULL),
77 static void
78 mISDN_dsp_dev_release(struct device *dev)
80 struct dsp_element_entry *entry =
81 container_of(dev, struct dsp_element_entry, dev);
82 list_del(&entry->list);
83 kfree(entry);
86 int mISDN_dsp_element_register(struct mISDN_dsp_element *elem)
88 struct dsp_element_entry *entry;
89 int ret, i;
91 if (!elem)
92 return -EINVAL;
94 entry = kzalloc(sizeof(struct dsp_element_entry), GFP_ATOMIC);
95 if (!entry)
96 return -ENOMEM;
98 entry->elem = elem;
100 entry->dev.class = elements_class;
101 entry->dev.release = mISDN_dsp_dev_release;
102 dev_set_drvdata(&entry->dev, elem);
103 dev_set_name(&entry->dev, elem->name);
104 ret = device_register(&entry->dev);
105 if (ret) {
106 printk(KERN_ERR "%s: failed to register %s\n",
107 __func__, elem->name);
108 goto err1;
110 list_add_tail(&entry->list, &dsp_elements);
112 for (i = 0; i < ARRAY_SIZE(element_attributes); ++i) {
113 ret = device_create_file(&entry->dev,
114 &element_attributes[i]);
115 if (ret) {
116 printk(KERN_ERR "%s: failed to create device file\n",
117 __func__);
118 goto err2;
122 #ifdef PIPELINE_DEBUG
123 printk(KERN_DEBUG "%s: %s registered\n", __func__, elem->name);
124 #endif
126 return 0;
128 err2:
129 device_unregister(&entry->dev);
130 return ret;
131 err1:
132 kfree(entry);
133 return ret;
135 EXPORT_SYMBOL(mISDN_dsp_element_register);
137 void mISDN_dsp_element_unregister(struct mISDN_dsp_element *elem)
139 struct dsp_element_entry *entry, *n;
141 if (!elem)
142 return;
144 list_for_each_entry_safe(entry, n, &dsp_elements, list)
145 if (entry->elem == elem) {
146 device_unregister(&entry->dev);
147 #ifdef PIPELINE_DEBUG
148 printk(KERN_DEBUG "%s: %s unregistered\n",
149 __func__, elem->name);
150 #endif
151 return;
153 printk(KERN_ERR "%s: element %s not in list.\n", __func__, elem->name);
155 EXPORT_SYMBOL(mISDN_dsp_element_unregister);
157 int dsp_pipeline_module_init(void)
159 elements_class = class_create(THIS_MODULE, "dsp_pipeline");
160 if (IS_ERR(elements_class))
161 return PTR_ERR(elements_class);
163 #ifdef PIPELINE_DEBUG
164 printk(KERN_DEBUG "%s: dsp pipeline module initialized\n", __func__);
165 #endif
167 dsp_hwec_init();
169 return 0;
172 void dsp_pipeline_module_exit(void)
174 struct dsp_element_entry *entry, *n;
176 dsp_hwec_exit();
178 class_destroy(elements_class);
180 list_for_each_entry_safe(entry, n, &dsp_elements, list) {
181 list_del(&entry->list);
182 printk(KERN_WARNING "%s: element was still registered: %s\n",
183 __func__, entry->elem->name);
184 kfree(entry);
187 #ifdef PIPELINE_DEBUG
188 printk(KERN_DEBUG "%s: dsp pipeline module exited\n", __func__);
189 #endif
192 int dsp_pipeline_init(struct dsp_pipeline *pipeline)
194 if (!pipeline)
195 return -EINVAL;
197 INIT_LIST_HEAD(&pipeline->list);
199 #ifdef PIPELINE_DEBUG
200 printk(KERN_DEBUG "%s: dsp pipeline ready\n", __func__);
201 #endif
203 return 0;
206 static inline void _dsp_pipeline_destroy(struct dsp_pipeline *pipeline)
208 struct dsp_pipeline_entry *entry, *n;
210 list_for_each_entry_safe(entry, n, &pipeline->list, list) {
211 list_del(&entry->list);
212 if (entry->elem == dsp_hwec)
213 dsp_hwec_disable(container_of(pipeline, struct dsp,
214 pipeline));
215 else
216 entry->elem->free(entry->p);
217 kfree(entry);
221 void dsp_pipeline_destroy(struct dsp_pipeline *pipeline)
224 if (!pipeline)
225 return;
227 _dsp_pipeline_destroy(pipeline);
229 #ifdef PIPELINE_DEBUG
230 printk(KERN_DEBUG "%s: dsp pipeline destroyed\n", __func__);
231 #endif
234 int dsp_pipeline_build(struct dsp_pipeline *pipeline, const char *cfg)
236 int len, incomplete = 0, found = 0;
237 char *dup, *tok, *name, *args;
238 struct dsp_element_entry *entry, *n;
239 struct dsp_pipeline_entry *pipeline_entry;
240 struct mISDN_dsp_element *elem;
242 if (!pipeline)
243 return -EINVAL;
245 if (!list_empty(&pipeline->list))
246 _dsp_pipeline_destroy(pipeline);
248 if (!cfg)
249 return 0;
251 len = strlen(cfg);
252 if (!len)
253 return 0;
255 dup = kmalloc(len + 1, GFP_ATOMIC);
256 if (!dup)
257 return 0;
258 strcpy(dup, cfg);
259 while ((tok = strsep(&dup, "|"))) {
260 if (!strlen(tok))
261 continue;
262 name = strsep(&tok, "(");
263 args = strsep(&tok, ")");
264 if (args && !*args)
265 args = NULL;
267 list_for_each_entry_safe(entry, n, &dsp_elements, list)
268 if (!strcmp(entry->elem->name, name)) {
269 elem = entry->elem;
271 pipeline_entry = kmalloc(sizeof(struct
272 dsp_pipeline_entry), GFP_ATOMIC);
273 if (!pipeline_entry) {
274 printk(KERN_ERR "%s: failed to add "
275 "entry to pipeline: %s (out of "
276 "memory)\n", __func__, elem->name);
277 incomplete = 1;
278 goto _out;
280 pipeline_entry->elem = elem;
282 if (elem == dsp_hwec) {
283 /* This is a hack to make the hwec
284 available as a pipeline module */
285 dsp_hwec_enable(container_of(pipeline,
286 struct dsp, pipeline), args);
287 list_add_tail(&pipeline_entry->list,
288 &pipeline->list);
289 } else {
290 pipeline_entry->p = elem->new(args);
291 if (pipeline_entry->p) {
292 list_add_tail(&pipeline_entry->
293 list, &pipeline->list);
294 #ifdef PIPELINE_DEBUG
295 printk(KERN_DEBUG "%s: created "
296 "instance of %s%s%s\n",
297 __func__, name, args ?
298 " with args " : "", args ?
299 args : "");
300 #endif
301 } else {
302 printk(KERN_ERR "%s: failed "
303 "to add entry to pipeline: "
304 "%s (new() returned NULL)\n",
305 __func__, elem->name);
306 kfree(pipeline_entry);
307 incomplete = 1;
310 found = 1;
311 break;
314 if (found)
315 found = 0;
316 else {
317 printk(KERN_ERR "%s: element not found, skipping: "
318 "%s\n", __func__, name);
319 incomplete = 1;
323 _out:
324 if (!list_empty(&pipeline->list))
325 pipeline->inuse = 1;
326 else
327 pipeline->inuse = 0;
329 #ifdef PIPELINE_DEBUG
330 printk(KERN_DEBUG "%s: dsp pipeline built%s: %s\n",
331 __func__, incomplete ? " incomplete" : "", cfg);
332 #endif
333 kfree(dup);
334 return 0;
337 void dsp_pipeline_process_tx(struct dsp_pipeline *pipeline, u8 *data, int len)
339 struct dsp_pipeline_entry *entry;
341 if (!pipeline)
342 return;
344 list_for_each_entry(entry, &pipeline->list, list)
345 if (entry->elem->process_tx)
346 entry->elem->process_tx(entry->p, data, len);
349 void dsp_pipeline_process_rx(struct dsp_pipeline *pipeline, u8 *data, int len,
350 unsigned int txlen)
352 struct dsp_pipeline_entry *entry;
354 if (!pipeline)
355 return;
357 list_for_each_entry_reverse(entry, &pipeline->list, list)
358 if (entry->elem->process_rx)
359 entry->elem->process_rx(entry->p, data, len, txlen);