2 * Copyright (C) 2005-2006 Micronas USA Inc.
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.
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.
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.
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>
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 <asm/system.h>
33 #include <linux/videodev2.h>
34 #include <media/tuner.h>
35 #include <media/v4l2-common.h>
37 #include "go7007-priv.h"
41 * Wait for an interrupt to be delivered from the GO7007SB and return
42 * the associated value and data.
44 * Must be called with the hw_lock held.
46 int go7007_read_interrupt(struct go7007
*go
, u16
*value
, u16
*data
)
48 go
->interrupt_available
= 0;
49 go
->hpi_ops
->read_interrupt(go
);
50 if (wait_event_timeout(go
->interrupt_waitq
,
51 go
->interrupt_available
, 5*HZ
) < 0) {
52 v4l2_err(go
->video_dev
, "timeout waiting for read interrupt\n");
55 if (!go
->interrupt_available
)
57 go
->interrupt_available
= 0;
58 *value
= go
->interrupt_value
& 0xfffe;
59 *data
= go
->interrupt_data
;
62 EXPORT_SYMBOL(go7007_read_interrupt
);
65 * Read a register/address on the GO7007SB.
67 * Must be called with the hw_lock held.
69 int go7007_read_addr(struct go7007
*go
, u16 addr
, u16
*data
)
74 if (go7007_write_interrupt(go
, 0x0010, addr
) < 0)
77 if (go7007_read_interrupt(go
, &value
, data
) == 0 &&
83 EXPORT_SYMBOL(go7007_read_addr
);
86 * Send the boot firmware to the encoder, which just wakes it up and lets
87 * us talk to the GPIO pins and on-board I2C adapter.
89 * Must be called with the hw_lock held.
91 static int go7007_load_encoder(struct go7007
*go
)
93 const struct firmware
*fw_entry
;
94 char fw_name
[] = "go7007fw.bin";
97 u16 intr_val
, intr_data
;
99 if (request_firmware(&fw_entry
, fw_name
, go
->dev
)) {
100 v4l2_err(go
, "unable to load firmware from file "
101 "\"%s\"\n", fw_name
);
104 if (fw_entry
->size
< 16 || memcmp(fw_entry
->data
, "WISGO7007FW", 11)) {
105 v4l2_err(go
, "file \"%s\" does not appear to be "
106 "go7007 firmware\n", fw_name
);
107 release_firmware(fw_entry
);
110 fw_len
= fw_entry
->size
- 16;
111 bounce
= kmalloc(fw_len
, GFP_KERNEL
);
112 if (bounce
== NULL
) {
113 v4l2_err(go
, "unable to allocate %d bytes for "
114 "firmware transfer\n", fw_len
);
115 release_firmware(fw_entry
);
118 memcpy(bounce
, fw_entry
->data
+ 16, fw_len
);
119 release_firmware(fw_entry
);
120 if (go7007_interface_reset(go
) < 0 ||
121 go7007_send_firmware(go
, bounce
, fw_len
) < 0 ||
122 go7007_read_interrupt(go
, &intr_val
, &intr_data
) < 0 ||
123 (intr_val
& ~0x1) != 0x5a5a) {
124 v4l2_err(go
, "error transferring firmware\n");
132 * Boot the encoder and register the I2C adapter if requested. Do the
133 * minimum initialization necessary, since the board-specific code may
134 * still need to probe the board ID.
136 * Must NOT be called with the hw_lock held.
138 int go7007_boot_encoder(struct go7007
*go
, int init_i2c
)
142 mutex_lock(&go
->hw_lock
);
143 ret
= go7007_load_encoder(go
);
144 mutex_unlock(&go
->hw_lock
);
149 if (go7007_i2c_init(go
) < 0)
151 go
->i2c_adapter_online
= 1;
154 EXPORT_SYMBOL(go7007_boot_encoder
);
157 * Configure any hardware-related registers in the GO7007, such as GPIO
158 * pins and bus parameters, which are board-specific. This assumes
159 * the boot firmware has already been downloaded.
161 * Must be called with the hw_lock held.
163 static int go7007_init_encoder(struct go7007
*go
)
165 if (go
->board_info
->audio_flags
& GO7007_AUDIO_I2S_MASTER
) {
166 go7007_write_addr(go
, 0x1000, 0x0811);
167 go7007_write_addr(go
, 0x1000, 0x0c11);
169 if (go
->board_id
== GO7007_BOARDID_MATRIX_REV
) {
170 /* Set GPIO pin 0 to be an output (audio clock control) */
171 go7007_write_addr(go
, 0x3c82, 0x0001);
172 go7007_write_addr(go
, 0x3c80, 0x00fe);
178 * Send the boot firmware to the GO7007 and configure the registers. This
179 * is the only way to stop the encoder once it has started streaming video.
181 * Must be called with the hw_lock held.
183 int go7007_reset_encoder(struct go7007
*go
)
185 if (go7007_load_encoder(go
) < 0)
187 return go7007_init_encoder(go
);
191 * Attempt to instantiate an I2C client by ID, probably loading a module.
193 static int init_i2c_module(struct i2c_adapter
*adapter
, const char *type
,
196 struct i2c_board_info info
;
200 case I2C_DRIVERID_WIS_SAA7115
:
201 modname
= "wis-saa7115";
203 case I2C_DRIVERID_WIS_SAA7113
:
204 modname
= "wis-saa7113";
206 case I2C_DRIVERID_WIS_UDA1342
:
207 modname
= "wis-uda1342";
209 case I2C_DRIVERID_WIS_SONY_TUNER
:
210 modname
= "wis-sony-tuner";
212 case I2C_DRIVERID_WIS_TW9903
:
213 modname
= "wis-tw9903";
215 case I2C_DRIVERID_WIS_TW2804
:
216 modname
= "wis-tw2804";
218 case I2C_DRIVERID_WIS_OV7640
:
219 modname
= "wis-ov7640";
221 case I2C_DRIVERID_S2250
:
222 modname
= "s2250-board";
229 request_module(modname
);
231 memset(&info
, 0, sizeof(struct i2c_board_info
));
233 strlcpy(info
.type
, type
, I2C_NAME_SIZE
);
234 if (!i2c_new_device(adapter
, &info
))
238 "go7007: probing for module %s failed\n", modname
);
241 "go7007: sensor %u seems to be unsupported!\n", id
);
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
251 * Must NOT be called with the hw_lock held.
253 int go7007_register_encoder(struct go7007
*go
)
257 printk(KERN_INFO
"go7007: registering new %s\n", go
->name
);
259 mutex_lock(&go
->hw_lock
);
260 ret
= go7007_init_encoder(go
);
261 mutex_unlock(&go
->hw_lock
);
265 if (!go
->i2c_adapter_online
&&
266 go
->board_info
->flags
& GO7007_BOARD_USE_ONBOARD_I2C
) {
267 if (go7007_i2c_init(go
) < 0)
269 go
->i2c_adapter_online
= 1;
271 if (go
->i2c_adapter_online
) {
272 for (i
= 0; i
< go
->board_info
->num_i2c_devs
; ++i
)
273 init_i2c_module(&go
->i2c_adapter
,
274 go
->board_info
->i2c_devs
[i
].type
,
275 go
->board_info
->i2c_devs
[i
].id
,
276 go
->board_info
->i2c_devs
[i
].addr
);
277 if (go
->board_id
== GO7007_BOARDID_ADLINK_MPG24
)
278 i2c_clients_command(&go
->i2c_adapter
,
279 DECODER_SET_CHANNEL
, &go
->channel_number
);
281 if (go
->board_info
->flags
& GO7007_BOARD_HAS_AUDIO
) {
282 go
->audio_enabled
= 1;
285 return go7007_v4l2_init(go
);
287 EXPORT_SYMBOL(go7007_register_encoder
);
290 * Send the encode firmware to the encoder, which will cause it
291 * to immediately start delivering the video and audio streams.
293 * Must be called with the hw_lock held.
295 int go7007_start_encoder(struct go7007
*go
)
298 int fw_len
, rv
= 0, i
;
299 u16 intr_val
, intr_data
;
301 go
->modet_enable
= 0;
303 for (i
= 0; i
< 4; ++i
) {
304 if (go
->modet
[i
].enable
) {
305 go
->modet_enable
= 1;
308 go
->modet
[i
].pixel_threshold
= 32767;
309 go
->modet
[i
].motion_threshold
= 32767;
310 go
->modet
[i
].mb_threshold
= 32767;
313 if (go7007_construct_fw_image(go
, &fw
, &fw_len
) < 0)
316 if (go7007_send_firmware(go
, fw
, fw_len
) < 0 ||
317 go7007_read_interrupt(go
, &intr_val
, &intr_data
) < 0) {
318 v4l2_err(go
->video_dev
, "error transferring firmware\n");
323 go
->state
= STATE_DATA
;
324 go
->parse_length
= 0;
326 if (go7007_stream_start(go
) < 0) {
327 v4l2_err(go
->video_dev
, "error starting stream transfer\n");
338 * Store a byte in the current video buffer, if there is one.
340 static inline void store_byte(struct go7007_buffer
*gobuf
, u8 byte
)
342 if (gobuf
!= NULL
&& gobuf
->bytesused
< GO7007_BUF_SIZE
) {
343 unsigned int pgidx
= gobuf
->offset
>> PAGE_SHIFT
;
344 unsigned int pgoff
= gobuf
->offset
& ~PAGE_MASK
;
346 *((u8
*)page_address(gobuf
->pages
[pgidx
]) + pgoff
) = byte
;
353 * Deliver the last video buffer and get a new one to start writing to.
355 static void frame_boundary(struct go7007
*go
)
357 struct go7007_buffer
*gobuf
;
360 if (go
->active_buf
) {
361 if (go
->active_buf
->modet_active
) {
362 if (go
->active_buf
->bytesused
+ 216 < GO7007_BUF_SIZE
) {
363 for (i
= 0; i
< 216; ++i
)
364 store_byte(go
->active_buf
,
366 go
->active_buf
->bytesused
-= 216;
368 go
->active_buf
->modet_active
= 0;
370 go
->active_buf
->state
= BUF_STATE_DONE
;
371 wake_up_interruptible(&go
->frame_waitq
);
372 go
->active_buf
= NULL
;
374 list_for_each_entry(gobuf
, &go
->stream
, stream
)
375 if (gobuf
->state
== BUF_STATE_QUEUED
) {
376 gobuf
->seq
= go
->next_seq
;
377 do_gettimeofday(&gobuf
->timestamp
);
378 go
->active_buf
= gobuf
;
384 static void write_bitmap_word(struct go7007
*go
)
386 int x
, y
, i
, stride
= ((go
->width
>> 4) + 7) >> 3;
388 for (i
= 0; i
< 16; ++i
) {
389 y
= (((go
->parse_length
- 1) << 3) + i
) / (go
->width
>> 4);
390 x
= (((go
->parse_length
- 1) << 3) + i
) % (go
->width
>> 4);
391 go
->active_map
[stride
* y
+ (x
>> 3)] |=
392 (go
->modet_word
& 1) << (x
& 0x7);
393 go
->modet_word
>>= 1;
398 * Parse a chunk of the video stream into frames. The frames are not
399 * delimited by the hardware, so we have to parse the frame boundaries
400 * based on the type of video stream we're receiving.
402 void go7007_parse_video_stream(struct go7007
*go
, u8
*buf
, int length
)
404 int i
, seq_start_code
= -1, frame_start_code
= -1;
406 spin_lock(&go
->spinlock
);
408 switch (go
->format
) {
409 case GO7007_FORMAT_MPEG4
:
410 seq_start_code
= 0xB0;
411 frame_start_code
= 0xB6;
413 case GO7007_FORMAT_MPEG1
:
414 case GO7007_FORMAT_MPEG2
:
415 seq_start_code
= 0xB3;
416 frame_start_code
= 0x00;
420 for (i
= 0; i
< length
; ++i
) {
421 if (go
->active_buf
!= NULL
&&
422 go
->active_buf
->bytesused
>= GO7007_BUF_SIZE
- 3) {
423 v4l2_info(go
->video_dev
, "dropping oversized frame\n");
424 go
->active_buf
->offset
-= go
->active_buf
->bytesused
;
425 go
->active_buf
->bytesused
= 0;
426 go
->active_buf
->modet_active
= 0;
427 go
->active_buf
= NULL
;
434 go
->state
= STATE_00
;
437 go
->state
= STATE_FF
;
440 store_byte(go
->active_buf
, buf
[i
]);
447 go
->state
= STATE_00_00
;
450 store_byte(go
->active_buf
, 0x00);
451 go
->state
= STATE_FF
;
454 store_byte(go
->active_buf
, 0x00);
455 store_byte(go
->active_buf
, buf
[i
]);
456 go
->state
= STATE_DATA
;
463 store_byte(go
->active_buf
, 0x00);
464 /* go->state remains STATE_00_00 */
467 go
->state
= STATE_00_00_01
;
470 store_byte(go
->active_buf
, 0x00);
471 store_byte(go
->active_buf
, 0x00);
472 go
->state
= STATE_FF
;
475 store_byte(go
->active_buf
, 0x00);
476 store_byte(go
->active_buf
, 0x00);
477 store_byte(go
->active_buf
, buf
[i
]);
478 go
->state
= STATE_DATA
;
483 /* If this is the start of a new MPEG frame,
484 * get a new buffer */
485 if ((go
->format
== GO7007_FORMAT_MPEG1
||
486 go
->format
== GO7007_FORMAT_MPEG2
||
487 go
->format
== GO7007_FORMAT_MPEG4
) &&
488 (buf
[i
] == seq_start_code
||
489 buf
[i
] == 0xB8 || /* GOP code */
490 buf
[i
] == frame_start_code
)) {
491 if (go
->active_buf
== NULL
|| go
->seen_frame
)
493 if (buf
[i
] == frame_start_code
) {
494 if (go
->active_buf
!= NULL
)
495 go
->active_buf
->frame_offset
=
496 go
->active_buf
->offset
;
502 /* Handle any special chunk types, or just write the
503 * start code to the (potentially new) buffer */
505 case 0xF5: /* timestamp */
506 go
->parse_length
= 12;
507 go
->state
= STATE_UNPARSED
;
510 go
->state
= STATE_VBI_LEN_A
;
512 case 0xF8: /* MD map */
513 go
->parse_length
= 0;
514 memset(go
->active_map
, 0,
515 sizeof(go
->active_map
));
516 go
->state
= STATE_MODET_MAP
;
518 case 0xFF: /* Potential JPEG start code */
519 store_byte(go
->active_buf
, 0x00);
520 store_byte(go
->active_buf
, 0x00);
521 store_byte(go
->active_buf
, 0x01);
522 go
->state
= STATE_FF
;
525 store_byte(go
->active_buf
, 0x00);
526 store_byte(go
->active_buf
, 0x00);
527 store_byte(go
->active_buf
, 0x01);
528 store_byte(go
->active_buf
, buf
[i
]);
529 go
->state
= STATE_DATA
;
536 store_byte(go
->active_buf
, 0xFF);
537 go
->state
= STATE_00
;
540 store_byte(go
->active_buf
, 0xFF);
541 /* go->state remains STATE_FF */
544 if (go
->format
== GO7007_FORMAT_MJPEG
)
548 store_byte(go
->active_buf
, 0xFF);
549 store_byte(go
->active_buf
, buf
[i
]);
550 go
->state
= STATE_DATA
;
554 case STATE_VBI_LEN_A
:
555 go
->parse_length
= buf
[i
] << 8;
556 go
->state
= STATE_VBI_LEN_B
;
558 case STATE_VBI_LEN_B
:
559 go
->parse_length
|= buf
[i
];
560 if (go
->parse_length
> 0)
561 go
->state
= STATE_UNPARSED
;
563 go
->state
= STATE_DATA
;
565 case STATE_MODET_MAP
:
566 if (go
->parse_length
< 204) {
567 if (go
->parse_length
& 1) {
568 go
->modet_word
|= buf
[i
];
569 write_bitmap_word(go
);
571 go
->modet_word
= buf
[i
] << 8;
572 } else if (go
->parse_length
== 207 && go
->active_buf
) {
573 go
->active_buf
->modet_active
= buf
[i
];
575 if (++go
->parse_length
== 208)
576 go
->state
= STATE_DATA
;
579 if (--go
->parse_length
== 0)
580 go
->state
= STATE_DATA
;
585 spin_unlock(&go
->spinlock
);
587 EXPORT_SYMBOL(go7007_parse_video_stream
);
590 * Allocate a new go7007 struct. Used by the hardware-specific probe.
592 struct go7007
*go7007_alloc(struct go7007_board_info
*board
, struct device
*dev
)
597 go
= kmalloc(sizeof(struct go7007
), GFP_KERNEL
);
601 go
->board_info
= board
;
604 go
->channel_number
= 0;
606 mutex_init(&go
->hw_lock
);
607 init_waitqueue_head(&go
->frame_waitq
);
608 spin_lock_init(&go
->spinlock
);
609 go
->video_dev
= NULL
;
611 go
->status
= STATUS_INIT
;
612 memset(&go
->i2c_adapter
, 0, sizeof(go
->i2c_adapter
));
613 go
->i2c_adapter_online
= 0;
614 go
->interrupt_available
= 0;
615 init_waitqueue_head(&go
->interrupt_waitq
);
618 if (board
->sensor_flags
& GO7007_SENSOR_TV
) {
619 go
->standard
= GO7007_STD_NTSC
;
622 go
->sensor_framerate
= 30000;
624 go
->standard
= GO7007_STD_OTHER
;
625 go
->width
= board
->sensor_width
;
626 go
->height
= board
->sensor_height
;
627 go
->sensor_framerate
= board
->sensor_framerate
;
629 go
->encoder_v_offset
= board
->sensor_v_offset
;
630 go
->encoder_h_offset
= board
->sensor_h_offset
;
631 go
->encoder_h_halve
= 0;
632 go
->encoder_v_halve
= 0;
633 go
->encoder_subsample
= 0;
635 go
->format
= GO7007_FORMAT_MJPEG
;
636 go
->bitrate
= 1500000;
639 go
->aspect_ratio
= GO7007_RATIO_1_1
;
643 go
->repeat_seqhead
= 0;
644 go
->seq_header_enable
= 0;
645 go
->gop_header_enable
= 0;
647 go
->interlace_coding
= 0;
648 for (i
= 0; i
< 4; ++i
)
649 go
->modet
[i
].enable
= 0;;
650 for (i
= 0; i
< 1624; ++i
)
651 go
->modet_map
[i
] = 0;
652 go
->audio_deliver
= NULL
;
653 go
->audio_enabled
= 0;
654 INIT_LIST_HEAD(&go
->stream
);
658 EXPORT_SYMBOL(go7007_alloc
);
661 * Detach and unregister the encoder. The go7007 struct won't be freed
662 * until v4l2 finishes releasing its resources and all associated fds are
663 * closed by applications.
665 void go7007_remove(struct go7007
*go
)
667 if (go
->i2c_adapter_online
) {
668 if (i2c_del_adapter(&go
->i2c_adapter
) == 0)
669 go
->i2c_adapter_online
= 0;
671 v4l2_err(go
->video_dev
,
672 "error removing I2C adapter!\n");
675 if (go
->audio_enabled
)
676 go7007_snd_remove(go
);
677 go7007_v4l2_remove(go
);
679 EXPORT_SYMBOL(go7007_remove
);
681 MODULE_LICENSE("GPL v2");