]> git.karo-electronics.de Git - linux-beck.git/blob - drivers/staging/go7007/go7007-driver.c
[media] go7007: MJPEG buffer overflow
[linux-beck.git] / drivers / staging / go7007 / go7007-driver.c
1 /*
2  * Copyright (C) 2005-2006 Micronas USA Inc.
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) as
6  * 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  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software Foundation,
15  * Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
16  */
17
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/delay.h>
21 #include <linux/sched.h>
22 #include <linux/spinlock.h>
23 #include <linux/unistd.h>
24 #include <linux/time.h>
25 #include <linux/mm.h>
26 #include <linux/vmalloc.h>
27 #include <linux/device.h>
28 #include <linux/i2c.h>
29 #include <linux/firmware.h>
30 #include <linux/mutex.h>
31 #include <linux/uaccess.h>
32 #include <linux/slab.h>
33 #include <asm/system.h>
34 #include <linux/videodev2.h>
35 #include <media/tuner.h>
36 #include <media/v4l2-common.h>
37
38 #include "go7007-priv.h"
39 #include "wis-i2c.h"
40
41 /*
42  * Wait for an interrupt to be delivered from the GO7007SB and return
43  * the associated value and data.
44  *
45  * Must be called with the hw_lock held.
46  */
47 int go7007_read_interrupt(struct go7007 *go, u16 *value, u16 *data)
48 {
49         go->interrupt_available = 0;
50         go->hpi_ops->read_interrupt(go);
51         if (wait_event_timeout(go->interrupt_waitq,
52                                 go->interrupt_available, 5*HZ) < 0) {
53                 v4l2_err(&go->v4l2_dev, "timeout waiting for read interrupt\n");
54                 return -1;
55         }
56         if (!go->interrupt_available)
57                 return -1;
58         go->interrupt_available = 0;
59         *value = go->interrupt_value & 0xfffe;
60         *data = go->interrupt_data;
61         return 0;
62 }
63 EXPORT_SYMBOL(go7007_read_interrupt);
64
65 /*
66  * Read a register/address on the GO7007SB.
67  *
68  * Must be called with the hw_lock held.
69  */
70 int go7007_read_addr(struct go7007 *go, u16 addr, u16 *data)
71 {
72         int count = 100;
73         u16 value;
74
75         if (go7007_write_interrupt(go, 0x0010, addr) < 0)
76                 return -EIO;
77         while (count-- > 0) {
78                 if (go7007_read_interrupt(go, &value, data) == 0 &&
79                                 value == 0xa000)
80                         return 0;
81         }
82         return -EIO;
83 }
84 EXPORT_SYMBOL(go7007_read_addr);
85
86 /*
87  * Send the boot firmware to the encoder, which just wakes it up and lets
88  * us talk to the GPIO pins and on-board I2C adapter.
89  *
90  * Must be called with the hw_lock held.
91  */
92 static int go7007_load_encoder(struct go7007 *go)
93 {
94         const struct firmware *fw_entry;
95         char fw_name[] = "go7007fw.bin";
96         void *bounce;
97         int fw_len, rv = 0;
98         u16 intr_val, intr_data;
99
100         if (request_firmware(&fw_entry, fw_name, go->dev)) {
101                 v4l2_err(go, "unable to load firmware from file "
102                         "\"%s\"\n", fw_name);
103                 return -1;
104         }
105         if (fw_entry->size < 16 || memcmp(fw_entry->data, "WISGO7007FW", 11)) {
106                 v4l2_err(go, "file \"%s\" does not appear to be "
107                                 "go7007 firmware\n", fw_name);
108                 release_firmware(fw_entry);
109                 return -1;
110         }
111         fw_len = fw_entry->size - 16;
112         bounce = kmalloc(fw_len, GFP_KERNEL);
113         if (bounce == NULL) {
114                 v4l2_err(go, "unable to allocate %d bytes for "
115                                 "firmware transfer\n", fw_len);
116                 release_firmware(fw_entry);
117                 return -1;
118         }
119         memcpy(bounce, fw_entry->data + 16, fw_len);
120         release_firmware(fw_entry);
121         if (go7007_interface_reset(go) < 0 ||
122                         go7007_send_firmware(go, bounce, fw_len) < 0 ||
123                         go7007_read_interrupt(go, &intr_val, &intr_data) < 0 ||
124                         (intr_val & ~0x1) != 0x5a5a) {
125                 v4l2_err(go, "error transferring firmware\n");
126                 rv = -1;
127         }
128         kfree(bounce);
129         return rv;
130 }
131
132 MODULE_FIRMWARE("go7007fw.bin");
133
134 /*
135  * Boot the encoder and register the I2C adapter if requested.  Do the
136  * minimum initialization necessary, since the board-specific code may
137  * still need to probe the board ID.
138  *
139  * Must NOT be called with the hw_lock held.
140  */
141 int go7007_boot_encoder(struct go7007 *go, int init_i2c)
142 {
143         int ret;
144
145         mutex_lock(&go->hw_lock);
146         ret = go7007_load_encoder(go);
147         mutex_unlock(&go->hw_lock);
148         if (ret < 0)
149                 return -1;
150         if (!init_i2c)
151                 return 0;
152         if (go7007_i2c_init(go) < 0)
153                 return -1;
154         go->i2c_adapter_online = 1;
155         return 0;
156 }
157 EXPORT_SYMBOL(go7007_boot_encoder);
158
159 /*
160  * Configure any hardware-related registers in the GO7007, such as GPIO
161  * pins and bus parameters, which are board-specific.  This assumes
162  * the boot firmware has already been downloaded.
163  *
164  * Must be called with the hw_lock held.
165  */
166 static int go7007_init_encoder(struct go7007 *go)
167 {
168         if (go->board_info->audio_flags & GO7007_AUDIO_I2S_MASTER) {
169                 go7007_write_addr(go, 0x1000, 0x0811);
170                 go7007_write_addr(go, 0x1000, 0x0c11);
171         }
172         if (go->board_id == GO7007_BOARDID_MATRIX_REV) {
173                 /* Set GPIO pin 0 to be an output (audio clock control) */
174                 go7007_write_addr(go, 0x3c82, 0x0001);
175                 go7007_write_addr(go, 0x3c80, 0x00fe);
176         }
177         return 0;
178 }
179
180 /*
181  * Send the boot firmware to the GO7007 and configure the registers.  This
182  * is the only way to stop the encoder once it has started streaming video.
183  *
184  * Must be called with the hw_lock held.
185  */
186 int go7007_reset_encoder(struct go7007 *go)
187 {
188         if (go7007_load_encoder(go) < 0)
189                 return -1;
190         return go7007_init_encoder(go);
191 }
192
193 /*
194  * Attempt to instantiate an I2C client by ID, probably loading a module.
195  */
196 static int init_i2c_module(struct i2c_adapter *adapter, const char *type,
197                            int id, int addr)
198 {
199         struct go7007 *go = i2c_get_adapdata(adapter);
200         struct v4l2_device *v4l2_dev = &go->v4l2_dev;
201         char *modname;
202
203         switch (id) {
204         case I2C_DRIVERID_WIS_SAA7115:
205                 modname = "wis-saa7115";
206                 break;
207         case I2C_DRIVERID_WIS_SAA7113:
208                 modname = "wis-saa7113";
209                 break;
210         case I2C_DRIVERID_WIS_UDA1342:
211                 modname = "wis-uda1342";
212                 break;
213         case I2C_DRIVERID_WIS_SONY_TUNER:
214                 modname = "wis-sony-tuner";
215                 break;
216         case I2C_DRIVERID_WIS_TW9903:
217                 modname = "wis-tw9903";
218                 break;
219         case I2C_DRIVERID_WIS_TW2804:
220                 modname = "wis-tw2804";
221                 break;
222         case I2C_DRIVERID_WIS_OV7640:
223                 modname = "wis-ov7640";
224                 break;
225         case I2C_DRIVERID_S2250:
226                 modname = "s2250";
227                 break;
228         default:
229                 modname = NULL;
230                 break;
231         }
232
233         if (v4l2_i2c_new_subdev(v4l2_dev, adapter, modname, type, addr, NULL))
234                 return 0;
235
236         if (modname != NULL)
237                 printk(KERN_INFO
238                         "go7007: probing for module %s failed\n", modname);
239         else
240                 printk(KERN_INFO
241                         "go7007: sensor %u seems to be unsupported!\n", id);
242         return -1;
243 }
244
245 /*
246  * Finalize the GO7007 hardware setup, register the on-board I2C adapter
247  * (if used on this board), load the I2C client driver for the sensor
248  * (SAA7115 or whatever) and other devices, and register the ALSA and V4L2
249  * interfaces.
250  *
251  * Must NOT be called with the hw_lock held.
252  */
253 int go7007_register_encoder(struct go7007 *go)
254 {
255         int i, ret;
256
257         printk(KERN_INFO "go7007: registering new %s\n", go->name);
258
259         mutex_lock(&go->hw_lock);
260         ret = go7007_init_encoder(go);
261         mutex_unlock(&go->hw_lock);
262         if (ret < 0)
263                 return -1;
264
265         /* v4l2 init must happen before i2c subdevs */
266         ret = go7007_v4l2_init(go);
267         if (ret < 0)
268                 return ret;
269
270         if (!go->i2c_adapter_online &&
271                         go->board_info->flags & GO7007_BOARD_USE_ONBOARD_I2C) {
272                 if (go7007_i2c_init(go) < 0)
273                         return -1;
274                 go->i2c_adapter_online = 1;
275         }
276         if (go->i2c_adapter_online) {
277                 for (i = 0; i < go->board_info->num_i2c_devs; ++i)
278                         init_i2c_module(&go->i2c_adapter,
279                                         go->board_info->i2c_devs[i].type,
280                                         go->board_info->i2c_devs[i].id,
281                                         go->board_info->i2c_devs[i].addr);
282                 if (go->board_id == GO7007_BOARDID_ADLINK_MPG24)
283                         i2c_clients_command(&go->i2c_adapter,
284                                 DECODER_SET_CHANNEL, &go->channel_number);
285         }
286         if (go->board_info->flags & GO7007_BOARD_HAS_AUDIO) {
287                 go->audio_enabled = 1;
288                 go7007_snd_init(go);
289         }
290         return 0;
291 }
292 EXPORT_SYMBOL(go7007_register_encoder);
293
294 /*
295  * Send the encode firmware to the encoder, which will cause it
296  * to immediately start delivering the video and audio streams.
297  *
298  * Must be called with the hw_lock held.
299  */
300 int go7007_start_encoder(struct go7007 *go)
301 {
302         u8 *fw;
303         int fw_len, rv = 0, i;
304         u16 intr_val, intr_data;
305
306         go->modet_enable = 0;
307         if (!go->dvd_mode)
308                 for (i = 0; i < 4; ++i) {
309                         if (go->modet[i].enable) {
310                                 go->modet_enable = 1;
311                                 continue;
312                         }
313                         go->modet[i].pixel_threshold = 32767;
314                         go->modet[i].motion_threshold = 32767;
315                         go->modet[i].mb_threshold = 32767;
316                 }
317
318         if (go7007_construct_fw_image(go, &fw, &fw_len) < 0)
319                 return -1;
320
321         if (go7007_send_firmware(go, fw, fw_len) < 0 ||
322                         go7007_read_interrupt(go, &intr_val, &intr_data) < 0) {
323                 v4l2_err(&go->v4l2_dev, "error transferring firmware\n");
324                 rv = -1;
325                 goto start_error;
326         }
327
328         go->state = STATE_DATA;
329         go->parse_length = 0;
330         go->seen_frame = 0;
331         if (go7007_stream_start(go) < 0) {
332                 v4l2_err(&go->v4l2_dev, "error starting stream transfer\n");
333                 rv = -1;
334                 goto start_error;
335         }
336
337 start_error:
338         kfree(fw);
339         return rv;
340 }
341
342 /*
343  * Store a byte in the current video buffer, if there is one.
344  */
345 static inline void store_byte(struct go7007_buffer *gobuf, u8 byte)
346 {
347         if (gobuf != NULL && gobuf->bytesused < GO7007_BUF_SIZE) {
348                 unsigned int pgidx = gobuf->offset >> PAGE_SHIFT;
349                 unsigned int pgoff = gobuf->offset & ~PAGE_MASK;
350
351                 *((u8 *)page_address(gobuf->pages[pgidx]) + pgoff) = byte;
352                 ++gobuf->offset;
353                 ++gobuf->bytesused;
354         }
355 }
356
357 /*
358  * Deliver the last video buffer and get a new one to start writing to.
359  */
360 static void frame_boundary(struct go7007 *go)
361 {
362         struct go7007_buffer *gobuf;
363         int i;
364
365         if (go->active_buf) {
366                 if (go->active_buf->modet_active) {
367                         if (go->active_buf->bytesused + 216 < GO7007_BUF_SIZE) {
368                                 for (i = 0; i < 216; ++i)
369                                         store_byte(go->active_buf,
370                                                         go->active_map[i]);
371                                 go->active_buf->bytesused -= 216;
372                         } else
373                                 go->active_buf->modet_active = 0;
374                 }
375                 go->active_buf->state = BUF_STATE_DONE;
376                 wake_up_interruptible(&go->frame_waitq);
377                 go->active_buf = NULL;
378         }
379         list_for_each_entry(gobuf, &go->stream, stream)
380                 if (gobuf->state == BUF_STATE_QUEUED) {
381                         gobuf->seq = go->next_seq;
382                         do_gettimeofday(&gobuf->timestamp);
383                         go->active_buf = gobuf;
384                         break;
385                 }
386         ++go->next_seq;
387 }
388
389 static void write_bitmap_word(struct go7007 *go)
390 {
391         int x, y, i, stride = ((go->width >> 4) + 7) >> 3;
392
393         for (i = 0; i < 16; ++i) {
394                 y = (((go->parse_length - 1) << 3) + i) / (go->width >> 4);
395                 x = (((go->parse_length - 1) << 3) + i) % (go->width >> 4);
396                 if (stride * y + (x >> 3) < sizeof(go->active_map))
397                         go->active_map[stride * y + (x >> 3)] |=
398                                         (go->modet_word & 1) << (x & 0x7);
399                 go->modet_word >>= 1;
400         }
401 }
402
403 /*
404  * Parse a chunk of the video stream into frames.  The frames are not
405  * delimited by the hardware, so we have to parse the frame boundaries
406  * based on the type of video stream we're receiving.
407  */
408 void go7007_parse_video_stream(struct go7007 *go, u8 *buf, int length)
409 {
410         int i, seq_start_code = -1, frame_start_code = -1;
411
412         spin_lock(&go->spinlock);
413
414         switch (go->format) {
415         case GO7007_FORMAT_MPEG4:
416                 seq_start_code = 0xB0;
417                 frame_start_code = 0xB6;
418                 break;
419         case GO7007_FORMAT_MPEG1:
420         case GO7007_FORMAT_MPEG2:
421                 seq_start_code = 0xB3;
422                 frame_start_code = 0x00;
423                 break;
424         }
425
426         for (i = 0; i < length; ++i) {
427                 if (go->active_buf != NULL &&
428                             go->active_buf->bytesused >= GO7007_BUF_SIZE - 3) {
429                         v4l2_info(&go->v4l2_dev, "dropping oversized frame\n");
430                         go->active_buf->offset -= go->active_buf->bytesused;
431                         go->active_buf->bytesused = 0;
432                         go->active_buf->modet_active = 0;
433                         go->active_buf = NULL;
434                 }
435
436                 switch (go->state) {
437                 case STATE_DATA:
438                         switch (buf[i]) {
439                         case 0x00:
440                                 go->state = STATE_00;
441                                 break;
442                         case 0xFF:
443                                 go->state = STATE_FF;
444                                 break;
445                         default:
446                                 store_byte(go->active_buf, buf[i]);
447                                 break;
448                         }
449                         break;
450                 case STATE_00:
451                         switch (buf[i]) {
452                         case 0x00:
453                                 go->state = STATE_00_00;
454                                 break;
455                         case 0xFF:
456                                 store_byte(go->active_buf, 0x00);
457                                 go->state = STATE_FF;
458                                 break;
459                         default:
460                                 store_byte(go->active_buf, 0x00);
461                                 store_byte(go->active_buf, buf[i]);
462                                 go->state = STATE_DATA;
463                                 break;
464                         }
465                         break;
466                 case STATE_00_00:
467                         switch (buf[i]) {
468                         case 0x00:
469                                 store_byte(go->active_buf, 0x00);
470                                 /* go->state remains STATE_00_00 */
471                                 break;
472                         case 0x01:
473                                 go->state = STATE_00_00_01;
474                                 break;
475                         case 0xFF:
476                                 store_byte(go->active_buf, 0x00);
477                                 store_byte(go->active_buf, 0x00);
478                                 go->state = STATE_FF;
479                                 break;
480                         default:
481                                 store_byte(go->active_buf, 0x00);
482                                 store_byte(go->active_buf, 0x00);
483                                 store_byte(go->active_buf, buf[i]);
484                                 go->state = STATE_DATA;
485                                 break;
486                         }
487                         break;
488                 case STATE_00_00_01:
489                         if (buf[i] == 0xF8 && go->modet_enable == 0) {
490                                 /* MODET start code, but MODET not enabled */
491                                 store_byte(go->active_buf, 0x00);
492                                 store_byte(go->active_buf, 0x00);
493                                 store_byte(go->active_buf, 0x01);
494                                 store_byte(go->active_buf, 0xF8);
495                                 go->state = STATE_DATA;
496                                 break;
497                         }
498                         /* If this is the start of a new MPEG frame,
499                          * get a new buffer */
500                         if ((go->format == GO7007_FORMAT_MPEG1 ||
501                                         go->format == GO7007_FORMAT_MPEG2 ||
502                                         go->format == GO7007_FORMAT_MPEG4) &&
503                                         (buf[i] == seq_start_code ||
504                                                 buf[i] == 0xB8 || /* GOP code */
505                                                 buf[i] == frame_start_code)) {
506                                 if (go->active_buf == NULL || go->seen_frame)
507                                         frame_boundary(go);
508                                 if (buf[i] == frame_start_code) {
509                                         if (go->active_buf != NULL)
510                                                 go->active_buf->frame_offset =
511                                                         go->active_buf->offset;
512                                         go->seen_frame = 1;
513                                 } else {
514                                         go->seen_frame = 0;
515                                 }
516                         }
517                         /* Handle any special chunk types, or just write the
518                          * start code to the (potentially new) buffer */
519                         switch (buf[i]) {
520                         case 0xF5: /* timestamp */
521                                 go->parse_length = 12;
522                                 go->state = STATE_UNPARSED;
523                                 break;
524                         case 0xF6: /* vbi */
525                                 go->state = STATE_VBI_LEN_A;
526                                 break;
527                         case 0xF8: /* MD map */
528                                 go->parse_length = 0;
529                                 memset(go->active_map, 0,
530                                                 sizeof(go->active_map));
531                                 go->state = STATE_MODET_MAP;
532                                 break;
533                         case 0xFF: /* Potential JPEG start code */
534                                 store_byte(go->active_buf, 0x00);
535                                 store_byte(go->active_buf, 0x00);
536                                 store_byte(go->active_buf, 0x01);
537                                 go->state = STATE_FF;
538                                 break;
539                         default:
540                                 store_byte(go->active_buf, 0x00);
541                                 store_byte(go->active_buf, 0x00);
542                                 store_byte(go->active_buf, 0x01);
543                                 store_byte(go->active_buf, buf[i]);
544                                 go->state = STATE_DATA;
545                                 break;
546                         }
547                         break;
548                 case STATE_FF:
549                         switch (buf[i]) {
550                         case 0x00:
551                                 store_byte(go->active_buf, 0xFF);
552                                 go->state = STATE_00;
553                                 break;
554                         case 0xFF:
555                                 store_byte(go->active_buf, 0xFF);
556                                 /* go->state remains STATE_FF */
557                                 break;
558                         case 0xD8:
559                                 if (go->format == GO7007_FORMAT_MJPEG)
560                                         frame_boundary(go);
561                                 /* fall through */
562                         default:
563                                 store_byte(go->active_buf, 0xFF);
564                                 store_byte(go->active_buf, buf[i]);
565                                 go->state = STATE_DATA;
566                                 break;
567                         }
568                         break;
569                 case STATE_VBI_LEN_A:
570                         go->parse_length = buf[i] << 8;
571                         go->state = STATE_VBI_LEN_B;
572                         break;
573                 case STATE_VBI_LEN_B:
574                         go->parse_length |= buf[i];
575                         if (go->parse_length > 0)
576                                 go->state = STATE_UNPARSED;
577                         else
578                                 go->state = STATE_DATA;
579                         break;
580                 case STATE_MODET_MAP:
581                         if (go->parse_length < 204) {
582                                 if (go->parse_length & 1) {
583                                         go->modet_word |= buf[i];
584                                         write_bitmap_word(go);
585                                 } else
586                                         go->modet_word = buf[i] << 8;
587                         } else if (go->parse_length == 207 && go->active_buf) {
588                                 go->active_buf->modet_active = buf[i];
589                         }
590                         if (++go->parse_length == 208)
591                                 go->state = STATE_DATA;
592                         break;
593                 case STATE_UNPARSED:
594                         if (--go->parse_length == 0)
595                                 go->state = STATE_DATA;
596                         break;
597                 }
598         }
599
600         spin_unlock(&go->spinlock);
601 }
602 EXPORT_SYMBOL(go7007_parse_video_stream);
603
604 /*
605  * Allocate a new go7007 struct.  Used by the hardware-specific probe.
606  */
607 struct go7007 *go7007_alloc(struct go7007_board_info *board, struct device *dev)
608 {
609         struct go7007 *go;
610         int i;
611
612         go = kmalloc(sizeof(struct go7007), GFP_KERNEL);
613         if (go == NULL)
614                 return NULL;
615         go->dev = dev;
616         go->board_info = board;
617         go->board_id = 0;
618         go->tuner_type = -1;
619         go->channel_number = 0;
620         go->name[0] = 0;
621         mutex_init(&go->hw_lock);
622         init_waitqueue_head(&go->frame_waitq);
623         spin_lock_init(&go->spinlock);
624         go->video_dev = NULL;
625         go->ref_count = 0;
626         go->status = STATUS_INIT;
627         memset(&go->i2c_adapter, 0, sizeof(go->i2c_adapter));
628         go->i2c_adapter_online = 0;
629         go->interrupt_available = 0;
630         init_waitqueue_head(&go->interrupt_waitq);
631         go->in_use = 0;
632         go->input = 0;
633         if (board->sensor_flags & GO7007_SENSOR_TV) {
634                 go->standard = GO7007_STD_NTSC;
635                 go->width = 720;
636                 go->height = 480;
637                 go->sensor_framerate = 30000;
638         } else {
639                 go->standard = GO7007_STD_OTHER;
640                 go->width = board->sensor_width;
641                 go->height = board->sensor_height;
642                 go->sensor_framerate = board->sensor_framerate;
643         }
644         go->encoder_v_offset = board->sensor_v_offset;
645         go->encoder_h_offset = board->sensor_h_offset;
646         go->encoder_h_halve = 0;
647         go->encoder_v_halve = 0;
648         go->encoder_subsample = 0;
649         go->streaming = 0;
650         go->format = GO7007_FORMAT_MJPEG;
651         go->bitrate = 1500000;
652         go->fps_scale = 1;
653         go->pali = 0;
654         go->aspect_ratio = GO7007_RATIO_1_1;
655         go->gop_size = 0;
656         go->ipb = 0;
657         go->closed_gop = 0;
658         go->repeat_seqhead = 0;
659         go->seq_header_enable = 0;
660         go->gop_header_enable = 0;
661         go->dvd_mode = 0;
662         go->interlace_coding = 0;
663         for (i = 0; i < 4; ++i)
664                 go->modet[i].enable = 0;;
665         for (i = 0; i < 1624; ++i)
666                 go->modet_map[i] = 0;
667         go->audio_deliver = NULL;
668         go->audio_enabled = 0;
669         INIT_LIST_HEAD(&go->stream);
670
671         return go;
672 }
673 EXPORT_SYMBOL(go7007_alloc);
674
675 /*
676  * Detach and unregister the encoder.  The go7007 struct won't be freed
677  * until v4l2 finishes releasing its resources and all associated fds are
678  * closed by applications.
679  */
680 void go7007_remove(struct go7007 *go)
681 {
682         if (go->i2c_adapter_online) {
683                 if (i2c_del_adapter(&go->i2c_adapter) == 0)
684                         go->i2c_adapter_online = 0;
685                 else
686                         v4l2_err(&go->v4l2_dev,
687                                 "error removing I2C adapter!\n");
688         }
689
690         if (go->audio_enabled)
691                 go7007_snd_remove(go);
692         go7007_v4l2_remove(go);
693 }
694 EXPORT_SYMBOL(go7007_remove);
695
696 MODULE_LICENSE("GPL v2");