2 * VIDEO MOTION CODECs internal API for video devices
4 * Interface for MJPEG (and maybe later MPEG/WAVELETS) codec's
5 * bound to a master device.
7 * (c) 2002 Wolfgang Scherr <scherr@net4you.at>
9 * $Id: videocodec.c,v 1.1.2.8 2003/03/29 07:16:04 rbultje Exp $
11 * ------------------------------------------------------------------------
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * ------------------------------------------------------------------------
30 #define VIDEOCODEC_VERSION "v0.2"
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/types.h>
36 #include <linux/slab.h>
38 // kernel config is here (procfs flag)
41 #include <linux/proc_fs.h>
42 #include <asm/uaccess.h>
45 #include "videocodec.h"
48 module_param(debug, int, 0);
49 MODULE_PARM_DESC(debug, "Debug level (0-4)");
51 #define dprintk(num, format, args...) \
54 printk(format, ##args); \
57 struct attached_list {
58 struct videocodec *codec;
59 struct attached_list *next;
63 const struct videocodec *codec;
65 struct attached_list *list;
66 struct codec_list *next;
69 static struct codec_list *codeclist_top = NULL;
71 /* ================================================= */
72 /* function prototypes of the master/slave interface */
73 /* ================================================= */
76 videocodec_attach (struct videocodec_master *master)
78 struct codec_list *h = codeclist_top;
79 struct attached_list *a, *ptr;
80 struct videocodec *codec;
84 dprintk(1, KERN_ERR "videocodec_attach: no data\n");
89 "videocodec_attach: '%s', type: %x, flags %lx, magic %lx\n",
90 master->name, master->type, master->flags, master->magic);
95 "videocodec_attach: no device available\n");
100 // attach only if the slave has at least the flags
101 // expected by the master
102 if ((master->flags & h->codec->flags) == master->flags) {
103 dprintk(4, "videocodec_attach: try '%s'\n",
106 if (!try_module_get(h->codec->owner))
110 kmalloc(sizeof(struct videocodec), GFP_KERNEL);
114 "videocodec_attach: no mem\n");
117 memcpy(codec, h->codec, sizeof(struct videocodec));
119 snprintf(codec->name, sizeof(codec->name),
120 "%s[%d]", codec->name, h->attached);
121 codec->master_data = master;
122 res = codec->setup(codec);
124 dprintk(3, "videocodec_attach '%s'\n",
126 ptr = kzalloc(sizeof(struct attached_list), GFP_KERNEL);
130 "videocodec_attach: no memory\n");
139 "videocodec: first element\n");
142 a = a->next; // find end
145 "videocodec: in after '%s'\n",
158 dprintk(1, KERN_ERR "videocodec_attach: no codec found!\n");
162 module_put(h->codec->owner);
169 videocodec_detach (struct videocodec *codec)
171 struct codec_list *h = codeclist_top;
172 struct attached_list *a, *prev;
176 dprintk(1, KERN_ERR "videocodec_detach: no data\n");
181 "videocodec_detach: '%s', type: %x, flags %lx, magic %lx\n",
182 codec->name, codec->type, codec->flags, codec->magic);
186 KERN_ERR "videocodec_detach: no device left...\n");
194 if (codec == a->codec) {
195 res = a->codec->unset(a->codec);
198 "videocodec_detach: '%s'\n",
200 a->codec->master_data = NULL;
204 "videocodec_detach: '%s'\n",
206 a->codec->master_data = NULL;
211 "videocodec: delete first\n");
213 prev->next = a->next;
215 "videocodec: delete middle\n");
217 module_put(a->codec->owner);
229 dprintk(1, KERN_ERR "videocodec_detach: given codec not found!\n");
234 videocodec_register (const struct videocodec *codec)
236 struct codec_list *ptr, *h = codeclist_top;
239 dprintk(1, KERN_ERR "videocodec_register: no data!\n");
244 "videocodec: register '%s', type: %x, flags %lx, magic %lx\n",
245 codec->name, codec->type, codec->flags, codec->magic);
247 ptr = kzalloc(sizeof(struct codec_list), GFP_KERNEL);
249 dprintk(1, KERN_ERR "videocodec_register: no memory\n");
256 dprintk(4, "videocodec: hooked in as first element\n");
259 h = h->next; // find the end
261 dprintk(4, "videocodec: hooked in after '%s'\n",
269 videocodec_unregister (const struct videocodec *codec)
271 struct codec_list *prev = NULL, *h = codeclist_top;
274 dprintk(1, KERN_ERR "videocodec_unregister: no data!\n");
279 "videocodec: unregister '%s', type: %x, flags %lx, magic %lx\n",
280 codec->name, codec->type, codec->flags, codec->magic);
285 "videocodec_unregister: no device left...\n");
290 if (codec == h->codec) {
294 "videocodec: '%s' is used\n",
298 dprintk(3, "videocodec: unregister '%s' is ok.\n",
301 codeclist_top = h->next;
303 "videocodec: delete first element\n");
305 prev->next = h->next;
307 "videocodec: delete middle element\n");
318 "videocodec_unregister: given codec not found!\n");
322 #ifdef CONFIG_PROC_FS
327 static char *videocodec_buf = NULL;
328 static int videocodec_bufsize = 0;
331 videocodec_build_table (void)
333 struct codec_list *h = codeclist_top;
334 struct attached_list *a;
337 // sum up amount of slaves plus their attached masters
339 i += h->attached + 1;
343 size = LINESIZE * (i + 1);
345 dprintk(3, "videocodec_build table: %d entries, %d bytes\n", i,
348 kfree(videocodec_buf);
349 videocodec_buf = (char *) kmalloc(size, GFP_KERNEL);
352 i += scnprintf(videocodec_buf + i, size - 1,
353 "<S>lave or attached <M>aster name type flags magic ");
354 i += scnprintf(videocodec_buf + i, size -i - 1, "(connected as)\n");
358 if (i > (size - LINESIZE))
359 break; // security check
360 i += scnprintf(videocodec_buf + i, size -i -1,
361 "S %32s %04x %08lx %08lx (TEMPLATE)\n",
362 h->codec->name, h->codec->type,
363 h->codec->flags, h->codec->magic);
366 if (i > (size - LINESIZE))
367 break; // security check
368 i += scnprintf(videocodec_buf + i, size -i -1,
369 "M %32s %04x %08lx %08lx (%s)\n",
370 a->codec->master_data->name,
371 a->codec->master_data->type,
372 a->codec->master_data->flags,
373 a->codec->master_data->magic,
384 //typedef int (read_proc_t)(char *page, char **start, off_t off,
385 // int count, int *eof, void *data);
388 videocodec_info (char *buffer,
389 char **buffer_location,
397 dprintk(3, "videocodec_info: offset: %ld, len %d / size %d\n",
398 offset, buffer_length, videocodec_bufsize);
401 videocodec_bufsize = videocodec_build_table();
403 if ((offset < 0) || (offset >= videocodec_bufsize)) {
405 "videocodec_info: call delivers no result, return 0\n");
410 if (buffer_length < (videocodec_bufsize - offset)) {
411 dprintk(4, "videocodec_info: %ld needed, %d got\n",
412 videocodec_bufsize - offset, buffer_length);
413 size = buffer_length;
415 dprintk(4, "videocodec_info: last reading of %ld bytes\n",
416 videocodec_bufsize - offset);
417 size = videocodec_bufsize - offset;
421 memcpy(buffer, videocodec_buf + offset, size);
422 /* doesn't work... */
423 /* copy_to_user(buffer, videocodec_buf+offset, size); */
424 /* *buffer_location = videocodec_buf+offset; */
430 /* ===================== */
431 /* hook in driver module */
432 /* ===================== */
434 videocodec_init (void)
436 #ifdef CONFIG_PROC_FS
437 static struct proc_dir_entry *videocodec_proc_entry;
440 printk(KERN_INFO "Linux video codec intermediate layer: %s\n",
443 #ifdef CONFIG_PROC_FS
444 videocodec_buf = NULL;
445 videocodec_bufsize = 0;
447 videocodec_proc_entry = create_proc_entry("videocodecs", 0, NULL);
448 if (videocodec_proc_entry) {
449 videocodec_proc_entry->read_proc = videocodec_info;
450 videocodec_proc_entry->write_proc = NULL;
451 videocodec_proc_entry->data = NULL;
452 videocodec_proc_entry->owner = THIS_MODULE;
454 dprintk(1, KERN_ERR "videocodec: can't init procfs.\n");
461 videocodec_exit (void)
463 #ifdef CONFIG_PROC_FS
464 remove_proc_entry("videocodecs", NULL);
465 kfree(videocodec_buf);
469 EXPORT_SYMBOL(videocodec_attach);
470 EXPORT_SYMBOL(videocodec_detach);
471 EXPORT_SYMBOL(videocodec_register);
472 EXPORT_SYMBOL(videocodec_unregister);
474 module_init(videocodec_init);
475 module_exit(videocodec_exit);
477 MODULE_AUTHOR("Wolfgang Scherr <scherr@net4you.at>");
478 MODULE_DESCRIPTION("Intermediate API module for video codecs "
480 MODULE_LICENSE("GPL");