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 <linux/slab.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
->v4l2_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");
131 MODULE_FIRMWARE("go7007fw.bin");
134 * Boot the encoder and register the I2C adapter if requested. Do the
135 * minimum initialization necessary, since the board-specific code may
136 * still need to probe the board ID.
138 * Must NOT be called with the hw_lock held.
140 int go7007_boot_encoder(struct go7007
*go
, int init_i2c
)
144 mutex_lock(&go
->hw_lock
);
145 ret
= go7007_load_encoder(go
);
146 mutex_unlock(&go
->hw_lock
);
151 if (go7007_i2c_init(go
) < 0)
153 go
->i2c_adapter_online
= 1;
156 EXPORT_SYMBOL(go7007_boot_encoder
);
159 * Configure any hardware-related registers in the GO7007, such as GPIO
160 * pins and bus parameters, which are board-specific. This assumes
161 * the boot firmware has already been downloaded.
163 * Must be called with the hw_lock held.
165 static int go7007_init_encoder(struct go7007
*go
)
167 if (go
->board_info
->audio_flags
& GO7007_AUDIO_I2S_MASTER
) {
168 go7007_write_addr(go
, 0x1000, 0x0811);
169 go7007_write_addr(go
, 0x1000, 0x0c11);
171 if (go
->board_id
== GO7007_BOARDID_MATRIX_REV
) {
172 /* Set GPIO pin 0 to be an output (audio clock control) */
173 go7007_write_addr(go
, 0x3c82, 0x0001);
174 go7007_write_addr(go
, 0x3c80, 0x00fe);
180 * Send the boot firmware to the GO7007 and configure the registers. This
181 * is the only way to stop the encoder once it has started streaming video.
183 * Must be called with the hw_lock held.
185 int go7007_reset_encoder(struct go7007
*go
)
187 if (go7007_load_encoder(go
) < 0)
189 return go7007_init_encoder(go
);
193 * Attempt to instantiate an I2C client by ID, probably loading a module.
195 static int init_i2c_module(struct i2c_adapter
*adapter
, const char *type
,
198 struct go7007
*go
= i2c_get_adapdata(adapter
);
199 struct v4l2_device
*v4l2_dev
= &go
->v4l2_dev
;
201 if (v4l2_i2c_new_subdev(v4l2_dev
, adapter
, type
, addr
, NULL
))
204 printk(KERN_INFO
"go7007: probing for module i2c:%s failed\n", type
);
209 * Finalize the GO7007 hardware setup, register the on-board I2C adapter
210 * (if used on this board), load the I2C client driver for the sensor
211 * (SAA7115 or whatever) and other devices, and register the ALSA and V4L2
214 * Must NOT be called with the hw_lock held.
216 int go7007_register_encoder(struct go7007
*go
)
220 printk(KERN_INFO
"go7007: registering new %s\n", go
->name
);
222 mutex_lock(&go
->hw_lock
);
223 ret
= go7007_init_encoder(go
);
224 mutex_unlock(&go
->hw_lock
);
228 /* v4l2 init must happen before i2c subdevs */
229 ret
= go7007_v4l2_init(go
);
233 if (!go
->i2c_adapter_online
&&
234 go
->board_info
->flags
& GO7007_BOARD_USE_ONBOARD_I2C
) {
235 if (go7007_i2c_init(go
) < 0)
237 go
->i2c_adapter_online
= 1;
239 if (go
->i2c_adapter_online
) {
240 for (i
= 0; i
< go
->board_info
->num_i2c_devs
; ++i
)
241 init_i2c_module(&go
->i2c_adapter
,
242 go
->board_info
->i2c_devs
[i
].type
,
243 go
->board_info
->i2c_devs
[i
].addr
);
244 if (go
->board_id
== GO7007_BOARDID_ADLINK_MPG24
)
245 i2c_clients_command(&go
->i2c_adapter
,
246 DECODER_SET_CHANNEL
, &go
->channel_number
);
248 if (go
->board_info
->flags
& GO7007_BOARD_HAS_AUDIO
) {
249 go
->audio_enabled
= 1;
254 EXPORT_SYMBOL(go7007_register_encoder
);
257 * Send the encode firmware to the encoder, which will cause it
258 * to immediately start delivering the video and audio streams.
260 * Must be called with the hw_lock held.
262 int go7007_start_encoder(struct go7007
*go
)
265 int fw_len
, rv
= 0, i
;
266 u16 intr_val
, intr_data
;
268 go
->modet_enable
= 0;
270 for (i
= 0; i
< 4; ++i
) {
271 if (go
->modet
[i
].enable
) {
272 go
->modet_enable
= 1;
275 go
->modet
[i
].pixel_threshold
= 32767;
276 go
->modet
[i
].motion_threshold
= 32767;
277 go
->modet
[i
].mb_threshold
= 32767;
280 if (go7007_construct_fw_image(go
, &fw
, &fw_len
) < 0)
283 if (go7007_send_firmware(go
, fw
, fw_len
) < 0 ||
284 go7007_read_interrupt(go
, &intr_val
, &intr_data
) < 0) {
285 v4l2_err(&go
->v4l2_dev
, "error transferring firmware\n");
290 go
->state
= STATE_DATA
;
291 go
->parse_length
= 0;
293 if (go7007_stream_start(go
) < 0) {
294 v4l2_err(&go
->v4l2_dev
, "error starting stream transfer\n");
305 * Store a byte in the current video buffer, if there is one.
307 static inline void store_byte(struct go7007_buffer
*gobuf
, u8 byte
)
309 if (gobuf
!= NULL
&& gobuf
->bytesused
< GO7007_BUF_SIZE
) {
310 unsigned int pgidx
= gobuf
->offset
>> PAGE_SHIFT
;
311 unsigned int pgoff
= gobuf
->offset
& ~PAGE_MASK
;
313 *((u8
*)page_address(gobuf
->pages
[pgidx
]) + pgoff
) = byte
;
320 * Deliver the last video buffer and get a new one to start writing to.
322 static void frame_boundary(struct go7007
*go
)
324 struct go7007_buffer
*gobuf
;
327 if (go
->active_buf
) {
328 if (go
->active_buf
->modet_active
) {
329 if (go
->active_buf
->bytesused
+ 216 < GO7007_BUF_SIZE
) {
330 for (i
= 0; i
< 216; ++i
)
331 store_byte(go
->active_buf
,
333 go
->active_buf
->bytesused
-= 216;
335 go
->active_buf
->modet_active
= 0;
337 go
->active_buf
->state
= BUF_STATE_DONE
;
338 wake_up_interruptible(&go
->frame_waitq
);
339 go
->active_buf
= NULL
;
341 list_for_each_entry(gobuf
, &go
->stream
, stream
)
342 if (gobuf
->state
== BUF_STATE_QUEUED
) {
343 gobuf
->seq
= go
->next_seq
;
344 do_gettimeofday(&gobuf
->timestamp
);
345 go
->active_buf
= gobuf
;
351 static void write_bitmap_word(struct go7007
*go
)
353 int x
, y
, i
, stride
= ((go
->width
>> 4) + 7) >> 3;
355 for (i
= 0; i
< 16; ++i
) {
356 y
= (((go
->parse_length
- 1) << 3) + i
) / (go
->width
>> 4);
357 x
= (((go
->parse_length
- 1) << 3) + i
) % (go
->width
>> 4);
358 if (stride
* y
+ (x
>> 3) < sizeof(go
->active_map
))
359 go
->active_map
[stride
* y
+ (x
>> 3)] |=
360 (go
->modet_word
& 1) << (x
& 0x7);
361 go
->modet_word
>>= 1;
366 * Parse a chunk of the video stream into frames. The frames are not
367 * delimited by the hardware, so we have to parse the frame boundaries
368 * based on the type of video stream we're receiving.
370 void go7007_parse_video_stream(struct go7007
*go
, u8
*buf
, int length
)
372 int i
, seq_start_code
= -1, frame_start_code
= -1;
374 spin_lock(&go
->spinlock
);
376 switch (go
->format
) {
377 case GO7007_FORMAT_MPEG4
:
378 seq_start_code
= 0xB0;
379 frame_start_code
= 0xB6;
381 case GO7007_FORMAT_MPEG1
:
382 case GO7007_FORMAT_MPEG2
:
383 seq_start_code
= 0xB3;
384 frame_start_code
= 0x00;
388 for (i
= 0; i
< length
; ++i
) {
389 if (go
->active_buf
!= NULL
&&
390 go
->active_buf
->bytesused
>= GO7007_BUF_SIZE
- 3) {
391 v4l2_info(&go
->v4l2_dev
, "dropping oversized frame\n");
392 go
->active_buf
->offset
-= go
->active_buf
->bytesused
;
393 go
->active_buf
->bytesused
= 0;
394 go
->active_buf
->modet_active
= 0;
395 go
->active_buf
= NULL
;
402 go
->state
= STATE_00
;
405 go
->state
= STATE_FF
;
408 store_byte(go
->active_buf
, buf
[i
]);
415 go
->state
= STATE_00_00
;
418 store_byte(go
->active_buf
, 0x00);
419 go
->state
= STATE_FF
;
422 store_byte(go
->active_buf
, 0x00);
423 store_byte(go
->active_buf
, buf
[i
]);
424 go
->state
= STATE_DATA
;
431 store_byte(go
->active_buf
, 0x00);
432 /* go->state remains STATE_00_00 */
435 go
->state
= STATE_00_00_01
;
438 store_byte(go
->active_buf
, 0x00);
439 store_byte(go
->active_buf
, 0x00);
440 go
->state
= STATE_FF
;
443 store_byte(go
->active_buf
, 0x00);
444 store_byte(go
->active_buf
, 0x00);
445 store_byte(go
->active_buf
, buf
[i
]);
446 go
->state
= STATE_DATA
;
451 if (buf
[i
] == 0xF8 && go
->modet_enable
== 0) {
452 /* MODET start code, but MODET not enabled */
453 store_byte(go
->active_buf
, 0x00);
454 store_byte(go
->active_buf
, 0x00);
455 store_byte(go
->active_buf
, 0x01);
456 store_byte(go
->active_buf
, 0xF8);
457 go
->state
= STATE_DATA
;
460 /* If this is the start of a new MPEG frame,
461 * get a new buffer */
462 if ((go
->format
== GO7007_FORMAT_MPEG1
||
463 go
->format
== GO7007_FORMAT_MPEG2
||
464 go
->format
== GO7007_FORMAT_MPEG4
) &&
465 (buf
[i
] == seq_start_code
||
466 buf
[i
] == 0xB8 || /* GOP code */
467 buf
[i
] == frame_start_code
)) {
468 if (go
->active_buf
== NULL
|| go
->seen_frame
)
470 if (buf
[i
] == frame_start_code
) {
471 if (go
->active_buf
!= NULL
)
472 go
->active_buf
->frame_offset
=
473 go
->active_buf
->offset
;
479 /* Handle any special chunk types, or just write the
480 * start code to the (potentially new) buffer */
482 case 0xF5: /* timestamp */
483 go
->parse_length
= 12;
484 go
->state
= STATE_UNPARSED
;
487 go
->state
= STATE_VBI_LEN_A
;
489 case 0xF8: /* MD map */
490 go
->parse_length
= 0;
491 memset(go
->active_map
, 0,
492 sizeof(go
->active_map
));
493 go
->state
= STATE_MODET_MAP
;
495 case 0xFF: /* Potential JPEG start code */
496 store_byte(go
->active_buf
, 0x00);
497 store_byte(go
->active_buf
, 0x00);
498 store_byte(go
->active_buf
, 0x01);
499 go
->state
= STATE_FF
;
502 store_byte(go
->active_buf
, 0x00);
503 store_byte(go
->active_buf
, 0x00);
504 store_byte(go
->active_buf
, 0x01);
505 store_byte(go
->active_buf
, buf
[i
]);
506 go
->state
= STATE_DATA
;
513 store_byte(go
->active_buf
, 0xFF);
514 go
->state
= STATE_00
;
517 store_byte(go
->active_buf
, 0xFF);
518 /* go->state remains STATE_FF */
521 if (go
->format
== GO7007_FORMAT_MJPEG
)
525 store_byte(go
->active_buf
, 0xFF);
526 store_byte(go
->active_buf
, buf
[i
]);
527 go
->state
= STATE_DATA
;
531 case STATE_VBI_LEN_A
:
532 go
->parse_length
= buf
[i
] << 8;
533 go
->state
= STATE_VBI_LEN_B
;
535 case STATE_VBI_LEN_B
:
536 go
->parse_length
|= buf
[i
];
537 if (go
->parse_length
> 0)
538 go
->state
= STATE_UNPARSED
;
540 go
->state
= STATE_DATA
;
542 case STATE_MODET_MAP
:
543 if (go
->parse_length
< 204) {
544 if (go
->parse_length
& 1) {
545 go
->modet_word
|= buf
[i
];
546 write_bitmap_word(go
);
548 go
->modet_word
= buf
[i
] << 8;
549 } else if (go
->parse_length
== 207 && go
->active_buf
) {
550 go
->active_buf
->modet_active
= buf
[i
];
552 if (++go
->parse_length
== 208)
553 go
->state
= STATE_DATA
;
556 if (--go
->parse_length
== 0)
557 go
->state
= STATE_DATA
;
562 spin_unlock(&go
->spinlock
);
564 EXPORT_SYMBOL(go7007_parse_video_stream
);
567 * Allocate a new go7007 struct. Used by the hardware-specific probe.
569 struct go7007
*go7007_alloc(struct go7007_board_info
*board
, struct device
*dev
)
574 go
= kmalloc(sizeof(struct go7007
), GFP_KERNEL
);
578 go
->board_info
= board
;
581 go
->channel_number
= 0;
583 mutex_init(&go
->hw_lock
);
584 init_waitqueue_head(&go
->frame_waitq
);
585 spin_lock_init(&go
->spinlock
);
586 go
->video_dev
= NULL
;
588 go
->status
= STATUS_INIT
;
589 memset(&go
->i2c_adapter
, 0, sizeof(go
->i2c_adapter
));
590 go
->i2c_adapter_online
= 0;
591 go
->interrupt_available
= 0;
592 init_waitqueue_head(&go
->interrupt_waitq
);
595 if (board
->sensor_flags
& GO7007_SENSOR_TV
) {
596 go
->standard
= GO7007_STD_NTSC
;
599 go
->sensor_framerate
= 30000;
601 go
->standard
= GO7007_STD_OTHER
;
602 go
->width
= board
->sensor_width
;
603 go
->height
= board
->sensor_height
;
604 go
->sensor_framerate
= board
->sensor_framerate
;
606 go
->encoder_v_offset
= board
->sensor_v_offset
;
607 go
->encoder_h_offset
= board
->sensor_h_offset
;
608 go
->encoder_h_halve
= 0;
609 go
->encoder_v_halve
= 0;
610 go
->encoder_subsample
= 0;
612 go
->format
= GO7007_FORMAT_MJPEG
;
613 go
->bitrate
= 1500000;
616 go
->aspect_ratio
= GO7007_RATIO_1_1
;
620 go
->repeat_seqhead
= 0;
621 go
->seq_header_enable
= 0;
622 go
->gop_header_enable
= 0;
624 go
->interlace_coding
= 0;
625 for (i
= 0; i
< 4; ++i
)
626 go
->modet
[i
].enable
= 0;
627 for (i
= 0; i
< 1624; ++i
)
628 go
->modet_map
[i
] = 0;
629 go
->audio_deliver
= NULL
;
630 go
->audio_enabled
= 0;
631 INIT_LIST_HEAD(&go
->stream
);
635 EXPORT_SYMBOL(go7007_alloc
);
638 * Detach and unregister the encoder. The go7007 struct won't be freed
639 * until v4l2 finishes releasing its resources and all associated fds are
640 * closed by applications.
642 void go7007_remove(struct go7007
*go
)
644 if (go
->i2c_adapter_online
) {
645 if (i2c_del_adapter(&go
->i2c_adapter
) == 0)
646 go
->i2c_adapter_online
= 0;
648 v4l2_err(&go
->v4l2_dev
,
649 "error removing I2C adapter!\n");
652 if (go
->audio_enabled
)
653 go7007_snd_remove(go
);
654 go7007_v4l2_remove(go
);
656 EXPORT_SYMBOL(go7007_remove
);
658 MODULE_LICENSE("GPL v2");