2 * Zoran zr36057/zr36067 PCI controller driver, for the
3 * Pinnacle/Miro DC10/DC10+/DC30/DC30+, Iomega Buz, Linux
4 * Media Labs LML33/LML33R10.
6 * This part handles device access (PCI/I2C/codec/...)
8 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
10 * Currently maintained by:
11 * Ronald Bultje <rbultje@ronald.bitfreak.net>
12 * Laurent Pinchart <laurent.pinchart@skynet.be>
13 * Mailinglist <mjpeg-users@lists.sf.net>
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #include <linux/types.h>
31 #include <linux/kernel.h>
32 #include <linux/module.h>
33 #include <linux/vmalloc.h>
35 #include <linux/interrupt.h>
36 #include <linux/proc_fs.h>
37 #include <linux/i2c.h>
38 #include <linux/i2c-algo-bit.h>
39 #include <linux/videodev2.h>
40 #include <media/v4l2-common.h>
41 #include <linux/spinlock.h>
42 #include <linux/sem.h>
44 #include <linux/pci.h>
45 #include <linux/delay.h>
46 #include <linux/wait.h>
48 #include <asm/byteorder.h>
51 #include "videocodec.h"
53 #include "zoran_device.h"
54 #include "zoran_card.h"
56 #define IRQ_MASK ( ZR36057_ISR_GIRQ0 | \
58 ZR36057_ISR_JPEGRepIRQ )
60 static int lml33dpath
; /* default = 0
61 * 1 will use digital path in capture
62 * mode instead of analog. It can be
63 * used for picture adjustments using
64 * tool like xawtv while watching image
65 * on TV monitor connected to the output.
66 * However, due to absence of 75 Ohm
67 * load on Bt819 input, there will be
68 * some image imperfections */
70 module_param(lml33dpath
, bool, 0644);
71 MODULE_PARM_DESC(lml33dpath
,
72 "Use digital path capture mode (on LML33 cards)");
75 zr36057_init_vfe (struct zoran
*zr
);
78 * General Purpose I/O and Guest bus access
82 * This is a bit tricky. When a board lacks a GPIO function, the corresponding
83 * GPIO bit number in the card_info structure is set to 0.
87 GPIO (struct zoran
*zr
,
94 /* Make sure the bit number is legal
95 * A bit number of -1 (lacking) gives a mask of 0,
96 * making it harmless */
97 mask
= (1 << (24 + bit
)) & 0xff000000;
98 reg
= btread(ZR36057_GPPGCR1
) & ~mask
;
102 btwrite(reg
, ZR36057_GPPGCR1
);
107 * Wait til post office is no longer busy
111 post_office_wait (struct zoran
*zr
)
115 // while (((por = btread(ZR36057_POR)) & (ZR36057_POR_POPen | ZR36057_POR_POTime)) == ZR36057_POR_POPen) {
116 while ((por
= btread(ZR36057_POR
)) & ZR36057_POR_POPen
) {
117 /* wait for something to happen */
119 if ((por
& ZR36057_POR_POTime
) && !zr
->card
.gws_not_connected
) {
120 /* In LML33/BUZ \GWS line is not connected, so it has always timeout set */
121 dprintk(1, KERN_INFO
"%s: pop timeout %08x\n", ZR_DEVNAME(zr
),
130 post_office_write (struct zoran
*zr
,
138 ZR36057_POR_PODir
| ZR36057_POR_POTime
| ((guest
& 7) << 20) |
139 ((reg
& 7) << 16) | (value
& 0xFF);
140 btwrite(por
, ZR36057_POR
);
142 return post_office_wait(zr
);
146 post_office_read (struct zoran
*zr
,
152 por
= ZR36057_POR_POTime
| ((guest
& 7) << 20) | ((reg
& 7) << 16);
153 btwrite(por
, ZR36057_POR
);
154 if (post_office_wait(zr
) < 0) {
158 return btread(ZR36057_POR
) & 0xFF;
166 dump_guests (struct zoran
*zr
)
168 if (zr36067_debug
> 2) {
171 for (i
= 1; i
< 8; i
++) { // Don't read jpeg codec here
172 guest
[i
] = post_office_read(zr
, i
, 0);
175 printk(KERN_INFO
"%s: Guests:", ZR_DEVNAME(zr
));
177 for (i
= 1; i
< 8; i
++) {
178 printk(" 0x%02x", guest
[i
]);
184 static inline unsigned long
189 do_gettimeofday(&tv
);
190 return (1000000 * tv
.tv_sec
+ tv
.tv_usec
);
194 detect_guest_activity (struct zoran
*zr
)
196 int timeout
, i
, j
, res
, guest
[8], guest0
[8], change
[8][3];
197 unsigned long t0
, t1
;
200 printk(KERN_INFO
"%s: Detecting guests activity, please wait...\n",
202 for (i
= 1; i
< 8; i
++) { // Don't read jpeg codec here
203 guest0
[i
] = guest
[i
] = post_office_read(zr
, i
, 0);
209 while (timeout
< 10000) {
212 for (i
= 1; (i
< 8) && (j
< 8); i
++) {
213 res
= post_office_read(zr
, i
, 0);
214 if (res
!= guest
[i
]) {
216 change
[j
][0] = (t1
- t0
);
227 printk(KERN_INFO
"%s: Guests:", ZR_DEVNAME(zr
));
229 for (i
= 1; i
< 8; i
++) {
230 printk(" 0x%02x", guest0
[i
]);
234 printk(KERN_INFO
"%s: No activity detected.\n", ZR_DEVNAME(zr
));
237 for (i
= 0; i
< j
; i
++) {
238 printk(KERN_INFO
"%s: %6d: %d => 0x%02x\n", ZR_DEVNAME(zr
),
239 change
[i
][0], change
[i
][1], change
[i
][2]);
248 jpeg_codec_sleep (struct zoran
*zr
,
251 GPIO(zr
, zr
->card
.gpio
[ZR_GPIO_JPEG_SLEEP
], !sleep
);
255 "%s: jpeg_codec_sleep() - wake GPIO=0x%08x\n",
256 ZR_DEVNAME(zr
), btread(ZR36057_GPPGCR1
));
261 "%s: jpeg_codec_sleep() - sleep GPIO=0x%08x\n",
262 ZR_DEVNAME(zr
), btread(ZR36057_GPPGCR1
));
268 jpeg_codec_reset (struct zoran
*zr
)
270 /* Take the codec out of sleep */
271 jpeg_codec_sleep(zr
, 0);
273 if (zr
->card
.gpcs
[GPCS_JPEG_RESET
] != 0xff) {
274 post_office_write(zr
, zr
->card
.gpcs
[GPCS_JPEG_RESET
], 0,
278 GPIO(zr
, zr
->card
.gpio
[ZR_GPIO_JPEG_RESET
], 0);
280 GPIO(zr
, zr
->card
.gpio
[ZR_GPIO_JPEG_RESET
], 1);
288 * Set the registers for the size we have specified. Don't bother
289 * trying to understand this without the ZR36057 manual in front of
292 * PS: The manual is free for download in .pdf format from
293 * www.zoran.com - nicely done those folks.
297 zr36057_adjust_vfe (struct zoran
*zr
,
298 enum zoran_codec_mode mode
)
303 case BUZ_MODE_MOTION_DECOMPRESS
:
304 btand(~ZR36057_VFESPFR_ExtFl
, ZR36057_VFESPFR
);
305 reg
= btread(ZR36057_VFEHCR
);
306 if ((reg
& (1 << 10)) && zr
->card
.type
!= LML33R10
) {
307 reg
+= ((1 << 10) | 1);
309 btwrite(reg
, ZR36057_VFEHCR
);
311 case BUZ_MODE_MOTION_COMPRESS
:
314 if ((zr
->norm
& V4L2_STD_NTSC
) ||
315 (zr
->card
.type
== LML33R10
&&
316 (zr
->norm
& V4L2_STD_PAL
)))
317 btand(~ZR36057_VFESPFR_ExtFl
, ZR36057_VFESPFR
);
319 btor(ZR36057_VFESPFR_ExtFl
, ZR36057_VFESPFR
);
320 reg
= btread(ZR36057_VFEHCR
);
321 if (!(reg
& (1 << 10)) && zr
->card
.type
!= LML33R10
) {
322 reg
-= ((1 << 10) | 1);
324 btwrite(reg
, ZR36057_VFEHCR
);
334 zr36057_set_vfe (struct zoran
*zr
,
337 const struct zoran_format
*format
)
340 unsigned HStart
, HEnd
, VStart
, VEnd
;
342 unsigned VidWinWid
, VidWinHt
;
343 unsigned hcrop1
, hcrop2
, vcrop1
, vcrop2
;
344 unsigned Wa
, We
, Ha
, He
;
345 unsigned X
, Y
, HorDcm
, VerDcm
;
347 unsigned mask_line_size
;
354 dprintk(2, KERN_INFO
"%s: set_vfe() - width = %d, height = %d\n",
355 ZR_DEVNAME(zr
), video_width
, video_height
);
357 if (video_width
< BUZ_MIN_WIDTH
||
358 video_height
< BUZ_MIN_HEIGHT
||
359 video_width
> Wa
|| video_height
> Ha
) {
360 dprintk(1, KERN_ERR
"%s: set_vfe: w=%d h=%d not valid\n",
361 ZR_DEVNAME(zr
), video_width
, video_height
);
368 VidWinWid
= video_width
;
369 X
= DIV_ROUND_UP(VidWinWid
* 64, tvn
->Wa
);
370 We
= (VidWinWid
* 64) / X
;
372 hcrop1
= 2 * ((tvn
->Wa
- We
) / 4);
373 hcrop2
= tvn
->Wa
- We
- hcrop1
;
374 HStart
= tvn
->HStart
? tvn
->HStart
: 1;
375 /* (Ronald) Original comment:
376 * "| 1 Doesn't have any effect, tested on both a DC10 and a DC10+"
377 * this is false. It inverses chroma values on the LML33R10 (so Cr
378 * suddenly is shown as Cb and reverse, really cool effect if you
379 * want to see blue faces, not useful otherwise). So don't use |1.
380 * However, the DC10 has '0' as HStart, but does need |1, so we
381 * use a dirty check...
383 HEnd
= HStart
+ tvn
->Wa
- 1;
386 reg
= ((HStart
& ZR36057_VFEHCR_Hmask
) << ZR36057_VFEHCR_HStart
)
387 | ((HEnd
& ZR36057_VFEHCR_Hmask
) << ZR36057_VFEHCR_HEnd
);
388 if (zr
->card
.vfe_pol
.hsync_pol
)
389 reg
|= ZR36057_VFEHCR_HSPol
;
390 btwrite(reg
, ZR36057_VFEHCR
);
393 DispMode
= !(video_height
> BUZ_MAX_HEIGHT
/ 2);
394 VidWinHt
= DispMode
? video_height
: video_height
/ 2;
395 Y
= DIV_ROUND_UP(VidWinHt
* 64 * 2, tvn
->Ha
);
396 He
= (VidWinHt
* 64) / Y
;
398 vcrop1
= (tvn
->Ha
/ 2 - He
) / 2;
399 vcrop2
= tvn
->Ha
/ 2 - He
- vcrop1
;
400 VStart
= tvn
->VStart
;
401 VEnd
= VStart
+ tvn
->Ha
/ 2; // - 1; FIXME SnapShot times out with -1 in 768*576 on the DC10 - LP
404 reg
= ((VStart
& ZR36057_VFEVCR_Vmask
) << ZR36057_VFEVCR_VStart
)
405 | ((VEnd
& ZR36057_VFEVCR_Vmask
) << ZR36057_VFEVCR_VEnd
);
406 if (zr
->card
.vfe_pol
.vsync_pol
)
407 reg
|= ZR36057_VFEVCR_VSPol
;
408 btwrite(reg
, ZR36057_VFEVCR
);
410 /* scaler and pixel format */
412 reg
|= (HorDcm
<< ZR36057_VFESPFR_HorDcm
);
413 reg
|= (VerDcm
<< ZR36057_VFESPFR_VerDcm
);
414 reg
|= (DispMode
<< ZR36057_VFESPFR_DispMode
);
415 /* RJ: I don't know, why the following has to be the opposite
416 * of the corresponding ZR36060 setting, but only this way
417 * we get the correct colors when uncompressing to the screen */
418 //reg |= ZR36057_VFESPFR_VCLKPol; /**/
419 /* RJ: Don't know if that is needed for NTSC also */
420 if (!(zr
->norm
& V4L2_STD_NTSC
))
421 reg
|= ZR36057_VFESPFR_ExtFl
; // NEEDED!!!!!!! Wolfgang
422 reg
|= ZR36057_VFESPFR_TopField
;
424 reg
|= 3 << ZR36057_VFESPFR_HFilter
; /* 5 tap filter */
425 } else if (HorDcm
>= 32) {
426 reg
|= 2 << ZR36057_VFESPFR_HFilter
; /* 4 tap filter */
427 } else if (HorDcm
>= 16) {
428 reg
|= 1 << ZR36057_VFESPFR_HFilter
; /* 3 tap filter */
430 reg
|= format
->vfespfr
;
431 btwrite(reg
, ZR36057_VFESPFR
);
433 /* display configuration */
434 reg
= (16 << ZR36057_VDCR_MinPix
)
435 | (VidWinHt
<< ZR36057_VDCR_VidWinHt
)
436 | (VidWinWid
<< ZR36057_VDCR_VidWinWid
);
437 if (pci_pci_problems
& PCIPCI_TRITON
)
438 // || zr->revision < 1) // Revision 1 has also Triton support
439 reg
&= ~ZR36057_VDCR_Triton
;
441 reg
|= ZR36057_VDCR_Triton
;
442 btwrite(reg
, ZR36057_VDCR
);
444 /* (Ronald) don't write this if overlay_mask = NULL */
445 if (zr
->overlay_mask
) {
446 /* Write overlay clipping mask data, but don't enable overlay clipping */
447 /* RJ: since this makes only sense on the screen, we use
448 * zr->overlay_settings.width instead of video_width */
450 mask_line_size
= (BUZ_MAX_WIDTH
+ 31) / 32;
451 reg
= virt_to_bus(zr
->overlay_mask
);
452 btwrite(reg
, ZR36057_MMTR
);
453 reg
= virt_to_bus(zr
->overlay_mask
+ mask_line_size
);
454 btwrite(reg
, ZR36057_MMBR
);
456 mask_line_size
- (zr
->overlay_settings
.width
+
459 reg
+= mask_line_size
;
460 reg
<<= ZR36057_OCR_MaskStride
;
461 btwrite(reg
, ZR36057_OCR
);
464 zr36057_adjust_vfe(zr
, zr
->codec_mode
);
468 * Switch overlay on or off
472 zr36057_overlay (struct zoran
*zr
,
478 /* do the necessary settings ... */
479 btand(~ZR36057_VDCR_VidEn
, ZR36057_VDCR
); /* switch it off first */
482 zr
->overlay_settings
.width
,
483 zr
->overlay_settings
.height
,
484 zr
->overlay_settings
.format
);
486 /* Start and length of each line MUST be 4-byte aligned.
487 * This should be already checked before the call to this routine.
488 * All error messages are internal driver checking only! */
490 /* video display top and bottom registers */
491 reg
= (long) zr
->vbuf_base
+
492 zr
->overlay_settings
.x
*
493 ((zr
->overlay_settings
.format
->depth
+ 7) / 8) +
494 zr
->overlay_settings
.y
*
495 zr
->vbuf_bytesperline
;
496 btwrite(reg
, ZR36057_VDTR
);
500 "%s: zr36057_overlay() - video_address not aligned\n",
502 if (zr
->overlay_settings
.height
> BUZ_MAX_HEIGHT
/ 2)
503 reg
+= zr
->vbuf_bytesperline
;
504 btwrite(reg
, ZR36057_VDBR
);
506 /* video stride, status, and frame grab register */
507 reg
= zr
->vbuf_bytesperline
-
508 zr
->overlay_settings
.width
*
509 ((zr
->overlay_settings
.format
->depth
+ 7) / 8);
510 if (zr
->overlay_settings
.height
> BUZ_MAX_HEIGHT
/ 2)
511 reg
+= zr
->vbuf_bytesperline
;
515 "%s: zr36057_overlay() - video_stride not aligned\n",
517 reg
= (reg
<< ZR36057_VSSFGR_DispStride
);
518 reg
|= ZR36057_VSSFGR_VidOvf
; /* clear overflow status */
519 btwrite(reg
, ZR36057_VSSFGR
);
521 /* Set overlay clipping */
522 if (zr
->overlay_settings
.clipcount
> 0)
523 btor(ZR36057_OCR_OvlEnable
, ZR36057_OCR
);
525 /* ... and switch it on */
526 btor(ZR36057_VDCR_VidEn
, ZR36057_VDCR
);
529 btand(~ZR36057_VDCR_VidEn
, ZR36057_VDCR
);
534 * The overlay mask has one bit for each pixel on a scan line,
535 * and the maximum window size is BUZ_MAX_WIDTH * BUZ_MAX_HEIGHT pixels.
538 void write_overlay_mask(struct zoran_fh
*fh
, struct v4l2_clip
*vp
, int count
)
540 struct zoran
*zr
= fh
->zr
;
541 unsigned mask_line_size
= (BUZ_MAX_WIDTH
+ 31) / 32;
543 int x
, y
, width
, height
;
547 /* fill mask with one bits */
548 memset(fh
->overlay_mask
, ~0, mask_line_size
* 4 * BUZ_MAX_HEIGHT
);
551 for (i
= 0; i
< count
; ++i
) {
552 /* pick up local copy of clip */
555 width
= vp
[i
].c
.width
;
556 height
= vp
[i
].c
.height
;
558 /* trim clips that extend beyond the window */
567 if (x
+ width
> fh
->overlay_settings
.width
) {
568 width
= fh
->overlay_settings
.width
- x
;
570 if (y
+ height
> fh
->overlay_settings
.height
) {
571 height
= fh
->overlay_settings
.height
- y
;
574 /* ignore degenerate clips */
582 /* apply clip for each scan line */
583 for (j
= 0; j
< height
; ++j
) {
584 /* reset bit for each pixel */
585 /* this can be optimized later if need be */
586 mask
= fh
->overlay_mask
+ (y
+ j
) * mask_line_size
;
587 for (k
= 0; k
< width
; ++k
) {
588 mask
[(x
+ k
) / 32] &=
589 ~((u32
) 1 << (x
+ k
) % 32);
595 /* Enable/Disable uncompressed memory grabbing of the 36057 */
598 zr36057_set_memgrab (struct zoran
*zr
,
602 /* We only check SnapShot and not FrameGrab here. SnapShot==1
603 * means a capture is already in progress, but FrameGrab==1
604 * doesn't necessary mean that. It's more correct to say a 1
605 * to 0 transition indicates a capture completed. If a
606 * capture is pending when capturing is tuned off, FrameGrab
607 * will be stuck at 1 until capturing is turned back on.
609 if (btread(ZR36057_VSSFGR
) & ZR36057_VSSFGR_SnapShot
)
612 "%s: zr36057_set_memgrab(1) with SnapShot on!?\n",
615 /* switch on VSync interrupts */
616 btwrite(IRQ_MASK
, ZR36057_ISR
); // Clear Interrupts
617 btor(zr
->card
.vsync_int
, ZR36057_ICR
); // SW
619 /* enable SnapShot */
620 btor(ZR36057_VSSFGR_SnapShot
, ZR36057_VSSFGR
);
622 /* Set zr36057 video front end and enable video */
623 zr36057_set_vfe(zr
, zr
->v4l_settings
.width
,
624 zr
->v4l_settings
.height
,
625 zr
->v4l_settings
.format
);
627 zr
->v4l_memgrab_active
= 1;
629 /* switch off VSync interrupts */
630 btand(~zr
->card
.vsync_int
, ZR36057_ICR
); // SW
632 zr
->v4l_memgrab_active
= 0;
633 zr
->v4l_grab_frame
= NO_GRAB_ACTIVE
;
635 /* reenable grabbing to screen if it was running */
636 if (zr
->v4l_overlay_active
) {
637 zr36057_overlay(zr
, 1);
639 btand(~ZR36057_VDCR_VidEn
, ZR36057_VDCR
);
640 btand(~ZR36057_VSSFGR_SnapShot
, ZR36057_VSSFGR
);
646 wait_grab_pending (struct zoran
*zr
)
650 /* wait until all pending grabs are finished */
652 if (!zr
->v4l_memgrab_active
)
655 wait_event_interruptible(zr
->v4l_capq
,
656 (zr
->v4l_pend_tail
== zr
->v4l_pend_head
));
657 if (signal_pending(current
))
660 spin_lock_irqsave(&zr
->spinlock
, flags
);
661 zr36057_set_memgrab(zr
, 0);
662 spin_unlock_irqrestore(&zr
->spinlock
, flags
);
667 /*****************************************************************************
669 * Set up the Buz-specific MJPEG part *
671 *****************************************************************************/
674 set_frame (struct zoran
*zr
,
677 GPIO(zr
, zr
->card
.gpio
[ZR_GPIO_JPEG_FRAME
], val
);
681 set_videobus_dir (struct zoran
*zr
,
684 switch (zr
->card
.type
) {
693 GPIO(zr
, zr
->card
.gpio
[ZR_GPIO_VID_DIR
],
694 zr
->card
.gpio_pol
[ZR_GPIO_VID_DIR
] ? !val
: val
);
700 init_jpeg_queue (struct zoran
*zr
)
704 /* re-initialize DMA ring stuff */
705 zr
->jpg_que_head
= 0;
706 zr
->jpg_dma_head
= 0;
707 zr
->jpg_dma_tail
= 0;
708 zr
->jpg_que_tail
= 0;
713 zr
->jpg_err_shift
= 0;
714 zr
->jpg_queued_num
= 0;
715 for (i
= 0; i
< zr
->jpg_buffers
.num_buffers
; i
++) {
716 zr
->jpg_buffers
.buffer
[i
].state
= BUZ_STATE_USER
; /* nothing going on */
718 for (i
= 0; i
< BUZ_NUM_STAT_COM
; i
++) {
719 zr
->stat_com
[i
] = cpu_to_le32(1); /* mark as unavailable to zr36057 */
724 zr36057_set_jpg (struct zoran
*zr
,
725 enum zoran_codec_mode mode
)
732 /* assert P_Reset, disable code transfer, deassert Active */
733 btwrite(0, ZR36057_JPC
);
735 /* MJPEG compression mode */
738 case BUZ_MODE_MOTION_COMPRESS
:
740 reg
= ZR36057_JMC_MJPGCmpMode
;
743 case BUZ_MODE_MOTION_DECOMPRESS
:
744 reg
= ZR36057_JMC_MJPGExpMode
;
745 reg
|= ZR36057_JMC_SyncMstr
;
746 /* RJ: The following is experimental - improves the output to screen */
747 //if(zr->jpg_settings.VFIFO_FB) reg |= ZR36057_JMC_VFIFO_FB; // No, it doesn't. SM
750 case BUZ_MODE_STILL_COMPRESS
:
751 reg
= ZR36057_JMC_JPGCmpMode
;
754 case BUZ_MODE_STILL_DECOMPRESS
:
755 reg
= ZR36057_JMC_JPGExpMode
;
759 reg
|= ZR36057_JMC_JPG
;
760 if (zr
->jpg_settings
.field_per_buff
== 1)
761 reg
|= ZR36057_JMC_Fld_per_buff
;
762 btwrite(reg
, ZR36057_JMC
);
765 btor(ZR36057_VFEVCR_VSPol
, ZR36057_VFEVCR
);
766 reg
= (6 << ZR36057_VSP_VsyncSize
) |
767 (tvn
->Ht
<< ZR36057_VSP_FrmTot
);
768 btwrite(reg
, ZR36057_VSP
);
769 reg
= ((zr
->jpg_settings
.img_y
+ tvn
->VStart
) << ZR36057_FVAP_NAY
) |
770 (zr
->jpg_settings
.img_height
<< ZR36057_FVAP_PAY
);
771 btwrite(reg
, ZR36057_FVAP
);
774 if (zr
->card
.vfe_pol
.hsync_pol
)
775 btor(ZR36057_VFEHCR_HSPol
, ZR36057_VFEHCR
);
777 btand(~ZR36057_VFEHCR_HSPol
, ZR36057_VFEHCR
);
778 reg
= ((tvn
->HSyncStart
) << ZR36057_HSP_HsyncStart
) |
779 (tvn
->Wt
<< ZR36057_HSP_LineTot
);
780 btwrite(reg
, ZR36057_HSP
);
781 reg
= ((zr
->jpg_settings
.img_x
+
782 tvn
->HStart
+ 4) << ZR36057_FHAP_NAX
) |
783 (zr
->jpg_settings
.img_width
<< ZR36057_FHAP_PAX
);
784 btwrite(reg
, ZR36057_FHAP
);
786 /* field process parameters */
787 if (zr
->jpg_settings
.odd_even
)
788 reg
= ZR36057_FPP_Odd_Even
;
792 btwrite(reg
, ZR36057_FPP
);
794 /* Set proper VCLK Polarity, else colors will be wrong during playback */
795 //btor(ZR36057_VFESPFR_VCLKPol, ZR36057_VFESPFR);
797 /* code base address */
798 reg
= virt_to_bus(zr
->stat_com
);
799 btwrite(reg
, ZR36057_JCBA
);
801 /* FIFO threshold (FIFO is 160. double words) */
802 /* NOTE: decimal values here */
805 case BUZ_MODE_STILL_COMPRESS
:
806 case BUZ_MODE_MOTION_COMPRESS
:
807 if (zr
->card
.type
!= BUZ
)
813 case BUZ_MODE_STILL_DECOMPRESS
:
814 case BUZ_MODE_MOTION_DECOMPRESS
:
823 btwrite(reg
, ZR36057_JCFT
);
824 zr36057_adjust_vfe(zr
, mode
);
829 print_interrupts (struct zoran
*zr
)
833 printk(KERN_INFO
"%s: interrupts received:", ZR_DEVNAME(zr
));
834 if ((res
= zr
->field_counter
) < -1 || res
> 1) {
835 printk(" FD:%d", res
);
837 if ((res
= zr
->intr_counter_GIRQ1
) != 0) {
838 printk(" GIRQ1:%d", res
);
841 if ((res
= zr
->intr_counter_GIRQ0
) != 0) {
842 printk(" GIRQ0:%d", res
);
845 if ((res
= zr
->intr_counter_CodRepIRQ
) != 0) {
846 printk(" CodRepIRQ:%d", res
);
849 if ((res
= zr
->intr_counter_JPEGRepIRQ
) != 0) {
850 printk(" JPEGRepIRQ:%d", res
);
853 if (zr
->JPEG_max_missed
) {
854 printk(" JPEG delays: max=%d min=%d", zr
->JPEG_max_missed
,
855 zr
->JPEG_min_missed
);
857 if (zr
->END_event_missed
) {
858 printk(" ENDs missed: %d", zr
->END_event_missed
);
860 //if (zr->jpg_queued_num) {
861 printk(" queue_state=%ld/%ld/%ld/%ld", zr
->jpg_que_tail
,
862 zr
->jpg_dma_tail
, zr
->jpg_dma_head
, zr
->jpg_que_head
);
865 printk(": no interrupts detected.");
871 clear_interrupt_counters (struct zoran
*zr
)
873 zr
->intr_counter_GIRQ1
= 0;
874 zr
->intr_counter_GIRQ0
= 0;
875 zr
->intr_counter_CodRepIRQ
= 0;
876 zr
->intr_counter_JPEGRepIRQ
= 0;
877 zr
->field_counter
= 0;
884 zr
->END_event_missed
= 0;
886 zr
->JPEG_max_missed
= 0;
887 zr
->JPEG_min_missed
= 0x7fffffff;
891 count_reset_interrupt (struct zoran
*zr
)
895 if ((isr
= btread(ZR36057_ISR
) & 0x78000000)) {
896 if (isr
& ZR36057_ISR_GIRQ1
) {
897 btwrite(ZR36057_ISR_GIRQ1
, ZR36057_ISR
);
898 zr
->intr_counter_GIRQ1
++;
900 if (isr
& ZR36057_ISR_GIRQ0
) {
901 btwrite(ZR36057_ISR_GIRQ0
, ZR36057_ISR
);
902 zr
->intr_counter_GIRQ0
++;
904 if (isr
& ZR36057_ISR_CodRepIRQ
) {
905 btwrite(ZR36057_ISR_CodRepIRQ
, ZR36057_ISR
);
906 zr
->intr_counter_CodRepIRQ
++;
908 if (isr
& ZR36057_ISR_JPEGRepIRQ
) {
909 btwrite(ZR36057_ISR_JPEGRepIRQ
, ZR36057_ISR
);
910 zr
->intr_counter_JPEGRepIRQ
++;
917 jpeg_start (struct zoran
*zr
)
923 /* deassert P_reset, disable code transfer, deassert Active */
924 btwrite(ZR36057_JPC_P_Reset
, ZR36057_JPC
);
925 /* stop flushing the internal code buffer */
926 btand(~ZR36057_MCTCR_CFlush
, ZR36057_MCTCR
);
927 /* enable code transfer */
928 btor(ZR36057_JPC_CodTrnsEn
, ZR36057_JPC
);
931 btwrite(IRQ_MASK
, ZR36057_ISR
);
932 /* enable the JPEG IRQs */
933 btwrite(zr
->card
.jpeg_int
|
934 ZR36057_ICR_JPEGRepIRQ
|
935 ZR36057_ICR_IntPinEn
,
938 set_frame(zr
, 0); // \FRAME
940 /* set the JPEG codec guest ID */
941 reg
= (zr
->card
.gpcs
[1] << ZR36057_JCGI_JPEGuestID
) |
942 (0 << ZR36057_JCGI_JPEGuestReg
);
943 btwrite(reg
, ZR36057_JCGI
);
945 if (zr
->card
.video_vfe
== CODEC_TYPE_ZR36016
&&
946 zr
->card
.video_codec
== CODEC_TYPE_ZR36050
) {
947 /* Enable processing on the ZR36016 */
949 zr36016_write(zr
->vfe
, 0, 1);
951 /* load the address of the GO register in the ZR36050 latch */
952 post_office_write(zr
, 0, 0, 0);
956 btor(ZR36057_JPC_Active
, ZR36057_JPC
);
958 /* enable the Go generation */
959 btor(ZR36057_JMC_Go_en
, ZR36057_JMC
);
962 set_frame(zr
, 1); // /FRAME
964 dprintk(3, KERN_DEBUG
"%s: jpeg_start\n", ZR_DEVNAME(zr
));
968 zr36057_enable_jpg (struct zoran
*zr
,
969 enum zoran_codec_mode mode
)
971 struct vfe_settings cap
;
973 zr
->jpg_buffers
.buffer_size
/ zr
->jpg_settings
.field_per_buff
;
975 zr
->codec_mode
= mode
;
977 cap
.x
= zr
->jpg_settings
.img_x
;
978 cap
.y
= zr
->jpg_settings
.img_y
;
979 cap
.width
= zr
->jpg_settings
.img_width
;
980 cap
.height
= zr
->jpg_settings
.img_height
;
982 zr
->jpg_settings
.HorDcm
| (zr
->jpg_settings
.VerDcm
<< 8);
983 cap
.quality
= zr
->jpg_settings
.jpg_comp
.quality
;
987 case BUZ_MODE_MOTION_COMPRESS
: {
988 struct jpeg_app_marker app
;
989 struct jpeg_com_marker com
;
991 /* In motion compress mode, the decoder output must be enabled, and
992 * the video bus direction set to input.
994 set_videobus_dir(zr
, 0);
995 decoder_call(zr
, video
, s_stream
, 1);
996 encoder_call(zr
, video
, s_routing
, 0, 0, 0);
998 /* Take the JPEG codec and the VFE out of sleep */
999 jpeg_codec_sleep(zr
, 0);
1001 /* set JPEG app/com marker */
1002 app
.appn
= zr
->jpg_settings
.jpg_comp
.APPn
;
1003 app
.len
= zr
->jpg_settings
.jpg_comp
.APP_len
;
1004 memcpy(app
.data
, zr
->jpg_settings
.jpg_comp
.APP_data
, 60);
1005 zr
->codec
->control(zr
->codec
, CODEC_S_JPEG_APP_DATA
,
1006 sizeof(struct jpeg_app_marker
), &app
);
1008 com
.len
= zr
->jpg_settings
.jpg_comp
.COM_len
;
1009 memcpy(com
.data
, zr
->jpg_settings
.jpg_comp
.COM_data
, 60);
1010 zr
->codec
->control(zr
->codec
, CODEC_S_JPEG_COM_DATA
,
1011 sizeof(struct jpeg_com_marker
), &com
);
1013 /* Setup the JPEG codec */
1014 zr
->codec
->control(zr
->codec
, CODEC_S_JPEG_TDS_BYTE
,
1015 sizeof(int), &field_size
);
1016 zr
->codec
->set_video(zr
->codec
, zr
->timing
, &cap
,
1018 zr
->codec
->set_mode(zr
->codec
, CODEC_DO_COMPRESSION
);
1022 zr
->vfe
->control(zr
->vfe
, CODEC_S_JPEG_TDS_BYTE
,
1023 sizeof(int), &field_size
);
1024 zr
->vfe
->set_video(zr
->vfe
, zr
->timing
, &cap
,
1026 zr
->vfe
->set_mode(zr
->vfe
, CODEC_DO_COMPRESSION
);
1029 init_jpeg_queue(zr
);
1030 zr36057_set_jpg(zr
, mode
); // \P_Reset, ... Video param, FIFO
1032 clear_interrupt_counters(zr
);
1033 dprintk(2, KERN_INFO
"%s: enable_jpg(MOTION_COMPRESS)\n",
1038 case BUZ_MODE_MOTION_DECOMPRESS
:
1039 /* In motion decompression mode, the decoder output must be disabled, and
1040 * the video bus direction set to output.
1042 decoder_call(zr
, video
, s_stream
, 0);
1043 set_videobus_dir(zr
, 1);
1044 encoder_call(zr
, video
, s_routing
, 1, 0, 0);
1046 /* Take the JPEG codec and the VFE out of sleep */
1047 jpeg_codec_sleep(zr
, 0);
1050 zr
->vfe
->set_video(zr
->vfe
, zr
->timing
, &cap
,
1052 zr
->vfe
->set_mode(zr
->vfe
, CODEC_DO_EXPANSION
);
1054 /* Setup the JPEG codec */
1055 zr
->codec
->set_video(zr
->codec
, zr
->timing
, &cap
,
1057 zr
->codec
->set_mode(zr
->codec
, CODEC_DO_EXPANSION
);
1059 init_jpeg_queue(zr
);
1060 zr36057_set_jpg(zr
, mode
); // \P_Reset, ... Video param, FIFO
1062 clear_interrupt_counters(zr
);
1063 dprintk(2, KERN_INFO
"%s: enable_jpg(MOTION_DECOMPRESS)\n",
1069 /* shut down processing */
1070 btand(~(zr
->card
.jpeg_int
| ZR36057_ICR_JPEGRepIRQ
),
1072 btwrite(zr
->card
.jpeg_int
| ZR36057_ICR_JPEGRepIRQ
,
1074 btand(~ZR36057_JMC_Go_en
, ZR36057_JMC
); // \Go_en
1078 set_videobus_dir(zr
, 0);
1079 set_frame(zr
, 1); // /FRAME
1080 btor(ZR36057_MCTCR_CFlush
, ZR36057_MCTCR
); // /CFlush
1081 btwrite(0, ZR36057_JPC
); // \P_Reset,\CodTrnsEn,\Active
1082 btand(~ZR36057_JMC_VFIFO_FB
, ZR36057_JMC
);
1083 btand(~ZR36057_JMC_SyncMstr
, ZR36057_JMC
);
1084 jpeg_codec_reset(zr
);
1085 jpeg_codec_sleep(zr
, 1);
1086 zr36057_adjust_vfe(zr
, mode
);
1088 decoder_call(zr
, video
, s_stream
, 1);
1089 encoder_call(zr
, video
, s_routing
, 0, 0, 0);
1091 dprintk(2, KERN_INFO
"%s: enable_jpg(IDLE)\n", ZR_DEVNAME(zr
));
1097 /* when this is called the spinlock must be held */
1099 zoran_feed_stat_com (struct zoran
*zr
)
1101 /* move frames from pending queue to DMA */
1103 int frame
, i
, max_stat_com
;
1106 (zr
->jpg_settings
.TmpDcm
==
1107 1) ? BUZ_NUM_STAT_COM
: (BUZ_NUM_STAT_COM
>> 1);
1109 while ((zr
->jpg_dma_head
- zr
->jpg_dma_tail
) < max_stat_com
&&
1110 zr
->jpg_dma_head
< zr
->jpg_que_head
) {
1112 frame
= zr
->jpg_pend
[zr
->jpg_dma_head
& BUZ_MASK_FRAME
];
1113 if (zr
->jpg_settings
.TmpDcm
== 1) {
1114 /* fill 1 stat_com entry */
1115 i
= (zr
->jpg_dma_head
-
1116 zr
->jpg_err_shift
) & BUZ_MASK_STAT_COM
;
1117 if (!(zr
->stat_com
[i
] & cpu_to_le32(1)))
1120 cpu_to_le32(zr
->jpg_buffers
.buffer
[frame
].jpg
.frag_tab_bus
);
1122 /* fill 2 stat_com entries */
1123 i
= ((zr
->jpg_dma_head
-
1124 zr
->jpg_err_shift
) & 1) * 2;
1125 if (!(zr
->stat_com
[i
] & cpu_to_le32(1)))
1128 cpu_to_le32(zr
->jpg_buffers
.buffer
[frame
].jpg
.frag_tab_bus
);
1129 zr
->stat_com
[i
+ 1] =
1130 cpu_to_le32(zr
->jpg_buffers
.buffer
[frame
].jpg
.frag_tab_bus
);
1132 zr
->jpg_buffers
.buffer
[frame
].state
= BUZ_STATE_DMA
;
1136 if (zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
)
1137 zr
->jpg_queued_num
++;
1140 /* when this is called the spinlock must be held */
1142 zoran_reap_stat_com (struct zoran
*zr
)
1144 /* move frames from DMA queue to done queue */
1150 struct zoran_buffer
*buffer
;
1153 /* In motion decompress we don't have a hardware frame counter,
1154 * we just count the interrupts here */
1156 if (zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
) {
1159 while (zr
->jpg_dma_tail
< zr
->jpg_dma_head
) {
1160 if (zr
->jpg_settings
.TmpDcm
== 1)
1161 i
= (zr
->jpg_dma_tail
-
1162 zr
->jpg_err_shift
) & BUZ_MASK_STAT_COM
;
1164 i
= ((zr
->jpg_dma_tail
-
1165 zr
->jpg_err_shift
) & 1) * 2 + 1;
1167 stat_com
= le32_to_cpu(zr
->stat_com
[i
]);
1169 if ((stat_com
& 1) == 0) {
1172 frame
= zr
->jpg_pend
[zr
->jpg_dma_tail
& BUZ_MASK_FRAME
];
1173 buffer
= &zr
->jpg_buffers
.buffer
[frame
];
1174 do_gettimeofday(&buffer
->bs
.timestamp
);
1176 if (zr
->codec_mode
== BUZ_MODE_MOTION_COMPRESS
) {
1177 buffer
->bs
.length
= (stat_com
& 0x7fffff) >> 1;
1179 /* update sequence number with the help of the counter in stat_com */
1181 seq
= ((stat_com
>> 24) + zr
->jpg_err_seq
) & 0xff;
1182 dif
= (seq
- zr
->jpg_seq_num
) & 0xff;
1183 zr
->jpg_seq_num
+= dif
;
1185 buffer
->bs
.length
= 0;
1188 zr
->jpg_settings
.TmpDcm
==
1189 2 ? (zr
->jpg_seq_num
>> 1) : zr
->jpg_seq_num
;
1190 buffer
->state
= BUZ_STATE_DONE
;
1196 static void zoran_restart(struct zoran
*zr
)
1198 /* Now the stat_comm buffer is ready for restart */
1199 unsigned int status
= 0;
1202 if (zr
->codec_mode
== BUZ_MODE_MOTION_COMPRESS
) {
1203 decoder_call(zr
, video
, g_input_status
, &status
);
1204 mode
= CODEC_DO_COMPRESSION
;
1206 status
= V4L2_IN_ST_NO_SIGNAL
;
1207 mode
= CODEC_DO_EXPANSION
;
1209 if (zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
||
1210 !(status
& V4L2_IN_ST_NO_SIGNAL
)) {
1211 /********** RESTART code *************/
1212 jpeg_codec_reset(zr
);
1213 zr
->codec
->set_mode(zr
->codec
, mode
);
1214 zr36057_set_jpg(zr
, zr
->codec_mode
);
1217 if (zr
->num_errors
<= 8)
1218 dprintk(2, KERN_INFO
"%s: Restart\n",
1221 zr
->JPEG_missed
= 0;
1223 /********** End RESTART code ***********/
1228 error_handler (struct zoran
*zr
,
1234 /* This is JPEG error handling part */
1235 if (zr
->codec_mode
!= BUZ_MODE_MOTION_COMPRESS
&&
1236 zr
->codec_mode
!= BUZ_MODE_MOTION_DECOMPRESS
) {
1240 if ((stat
& 1) == 0 &&
1241 zr
->codec_mode
== BUZ_MODE_MOTION_COMPRESS
&&
1242 zr
->jpg_dma_tail
- zr
->jpg_que_tail
>= zr
->jpg_buffers
.num_buffers
) {
1243 /* No free buffers... */
1244 zoran_reap_stat_com(zr
);
1245 zoran_feed_stat_com(zr
);
1246 wake_up_interruptible(&zr
->jpg_capq
);
1247 zr
->JPEG_missed
= 0;
1251 if (zr
->JPEG_error
== 1) {
1257 * First entry: error just happened during normal operation
1259 * In BUZ_MODE_MOTION_COMPRESS:
1261 * Possible glitch in TV signal. In this case we should
1262 * stop the codec and wait for good quality signal before
1263 * restarting it to avoid further problems
1265 * In BUZ_MODE_MOTION_DECOMPRESS:
1267 * Bad JPEG frame: we have to mark it as processed (codec crashed
1268 * and was not able to do it itself), and to remove it from queue.
1270 btand(~ZR36057_JMC_Go_en
, ZR36057_JMC
);
1272 stat
= stat
| (post_office_read(zr
, 7, 0) & 3) << 8;
1273 btwrite(0, ZR36057_JPC
);
1274 btor(ZR36057_MCTCR_CFlush
, ZR36057_MCTCR
);
1275 jpeg_codec_reset(zr
);
1276 jpeg_codec_sleep(zr
, 1);
1281 if (zr36067_debug
> 1 && zr
->num_errors
<= 8) {
1285 frame
= zr
->jpg_pend
[zr
->jpg_dma_tail
& BUZ_MASK_FRAME
];
1287 "%s: JPEG error stat=0x%08x(0x%08x) queue_state=%ld/%ld/%ld/%ld seq=%ld frame=%ld. Codec stopped. ",
1288 ZR_DEVNAME(zr
), stat
, zr
->last_isr
,
1289 zr
->jpg_que_tail
, zr
->jpg_dma_tail
,
1290 zr
->jpg_dma_head
, zr
->jpg_que_head
,
1291 zr
->jpg_seq_num
, frame
);
1292 printk(KERN_INFO
"stat_com frames:");
1293 for (j
= 0; j
< BUZ_NUM_STAT_COM
; j
++) {
1294 for (i
= 0; i
< zr
->jpg_buffers
.num_buffers
; i
++) {
1295 if (le32_to_cpu(zr
->stat_com
[j
]) == zr
->jpg_buffers
.buffer
[i
].jpg
.frag_tab_bus
)
1296 printk(KERN_CONT
"% d->%d", j
, i
);
1299 printk(KERN_CONT
"\n");
1301 /* Find an entry in stat_com and rotate contents */
1302 if (zr
->jpg_settings
.TmpDcm
== 1)
1303 i
= (zr
->jpg_dma_tail
- zr
->jpg_err_shift
) & BUZ_MASK_STAT_COM
;
1305 i
= ((zr
->jpg_dma_tail
- zr
->jpg_err_shift
) & 1) * 2;
1306 if (zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
) {
1307 /* Mimic zr36067 operation */
1308 zr
->stat_com
[i
] |= cpu_to_le32(1);
1309 if (zr
->jpg_settings
.TmpDcm
!= 1)
1310 zr
->stat_com
[i
+ 1] |= cpu_to_le32(1);
1312 zoran_reap_stat_com(zr
);
1313 zoran_feed_stat_com(zr
);
1314 wake_up_interruptible(&zr
->jpg_capq
);
1315 /* Find an entry in stat_com again after refill */
1316 if (zr
->jpg_settings
.TmpDcm
== 1)
1317 i
= (zr
->jpg_dma_tail
- zr
->jpg_err_shift
) & BUZ_MASK_STAT_COM
;
1319 i
= ((zr
->jpg_dma_tail
- zr
->jpg_err_shift
) & 1) * 2;
1322 /* Rotate stat_comm entries to make current entry first */
1324 __le32 bus_addr
[BUZ_NUM_STAT_COM
];
1326 /* Here we are copying the stat_com array, which
1327 * is already in little endian format, so
1328 * no endian conversions here
1330 memcpy(bus_addr
, zr
->stat_com
, sizeof(bus_addr
));
1332 for (j
= 0; j
< BUZ_NUM_STAT_COM
; j
++)
1333 zr
->stat_com
[j
] = bus_addr
[(i
+ j
) & BUZ_MASK_STAT_COM
];
1335 zr
->jpg_err_shift
+= i
;
1336 zr
->jpg_err_shift
&= BUZ_MASK_STAT_COM
;
1338 if (zr
->codec_mode
== BUZ_MODE_MOTION_COMPRESS
)
1339 zr
->jpg_err_seq
= zr
->jpg_seq_num
; /* + 1; */
1350 unsigned long flags
;
1356 /* Testing interrupts */
1357 spin_lock_irqsave(&zr
->spinlock
, flags
);
1358 while ((stat
= count_reset_interrupt(zr
))) {
1359 if (count
++ > 100) {
1360 btand(~ZR36057_ICR_IntPinEn
, ZR36057_ICR
);
1363 "%s: IRQ lockup while testing, isr=0x%08x, cleared int mask\n",
1364 ZR_DEVNAME(zr
), stat
);
1365 wake_up_interruptible(&zr
->test_q
);
1368 zr
->last_isr
= stat
;
1369 spin_unlock_irqrestore(&zr
->spinlock
, flags
);
1373 spin_lock_irqsave(&zr
->spinlock
, flags
);
1375 /* get/clear interrupt status bits */
1376 stat
= count_reset_interrupt(zr
);
1377 astat
= stat
& IRQ_MASK
;
1383 "zoran_irq: astat: 0x%08x, mask: 0x%08x\n",
1384 astat
, btread(ZR36057_ICR
));
1385 if (astat
& zr
->card
.vsync_int
) { // SW
1387 if (zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
||
1388 zr
->codec_mode
== BUZ_MODE_MOTION_COMPRESS
) {
1389 /* count missed interrupts */
1392 //post_office_read(zr,1,0);
1393 /* Interrupts may still happen when
1394 * zr->v4l_memgrab_active is switched off.
1395 * We simply ignore them */
1397 if (zr
->v4l_memgrab_active
) {
1398 /* A lot more checks should be here ... */
1399 if ((btread(ZR36057_VSSFGR
) & ZR36057_VSSFGR_SnapShot
) == 0)
1402 "%s: BuzIRQ with SnapShot off ???\n",
1405 if (zr
->v4l_grab_frame
!= NO_GRAB_ACTIVE
) {
1406 /* There is a grab on a frame going on, check if it has finished */
1407 if ((btread(ZR36057_VSSFGR
) & ZR36057_VSSFGR_FrameGrab
) == 0) {
1408 /* it is finished, notify the user */
1410 zr
->v4l_buffers
.buffer
[zr
->v4l_grab_frame
].state
= BUZ_STATE_DONE
;
1411 zr
->v4l_buffers
.buffer
[zr
->v4l_grab_frame
].bs
.seq
= zr
->v4l_grab_seq
;
1412 do_gettimeofday(&zr
->v4l_buffers
.buffer
[zr
->v4l_grab_frame
].bs
.timestamp
);
1413 zr
->v4l_grab_frame
= NO_GRAB_ACTIVE
;
1414 zr
->v4l_pend_tail
++;
1418 if (zr
->v4l_grab_frame
== NO_GRAB_ACTIVE
)
1419 wake_up_interruptible(&zr
->v4l_capq
);
1421 /* Check if there is another grab queued */
1423 if (zr
->v4l_grab_frame
== NO_GRAB_ACTIVE
&&
1424 zr
->v4l_pend_tail
!= zr
->v4l_pend_head
) {
1425 int frame
= zr
->v4l_pend
[zr
->v4l_pend_tail
& V4L_MASK_FRAME
];
1428 zr
->v4l_grab_frame
= frame
;
1430 /* Set zr36057 video front end and enable video */
1432 /* Buffer address */
1434 reg
= zr
->v4l_buffers
.buffer
[frame
].v4l
.fbuffer_bus
;
1435 btwrite(reg
, ZR36057_VDTR
);
1436 if (zr
->v4l_settings
.height
> BUZ_MAX_HEIGHT
/ 2)
1437 reg
+= zr
->v4l_settings
.bytesperline
;
1438 btwrite(reg
, ZR36057_VDBR
);
1440 /* video stride, status, and frame grab register */
1442 if (zr
->v4l_settings
.height
> BUZ_MAX_HEIGHT
/ 2)
1443 reg
+= zr
->v4l_settings
.bytesperline
;
1444 reg
= (reg
<< ZR36057_VSSFGR_DispStride
);
1445 reg
|= ZR36057_VSSFGR_VidOvf
;
1446 reg
|= ZR36057_VSSFGR_SnapShot
;
1447 reg
|= ZR36057_VSSFGR_FrameGrab
;
1448 btwrite(reg
, ZR36057_VSSFGR
);
1450 btor(ZR36057_VDCR_VidEn
,
1455 /* even if we don't grab, we do want to increment
1456 * the sequence counter to see lost frames */
1459 #if (IRQ_MASK & ZR36057_ISR_CodRepIRQ)
1460 if (astat
& ZR36057_ISR_CodRepIRQ
) {
1461 zr
->intr_counter_CodRepIRQ
++;
1462 IDEBUG(printk(KERN_DEBUG
"%s: ZR36057_ISR_CodRepIRQ\n",
1464 btand(~ZR36057_ICR_CodRepIRQ
, ZR36057_ICR
);
1466 #endif /* (IRQ_MASK & ZR36057_ISR_CodRepIRQ) */
1468 #if (IRQ_MASK & ZR36057_ISR_JPEGRepIRQ)
1469 if ((astat
& ZR36057_ISR_JPEGRepIRQ
) &&
1470 (zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
||
1471 zr
->codec_mode
== BUZ_MODE_MOTION_COMPRESS
)) {
1472 if (zr36067_debug
> 1 && (!zr
->frame_num
|| zr
->JPEG_error
)) {
1473 char sv
[BUZ_NUM_STAT_COM
+ 1];
1477 "%s: first frame ready: state=0x%08x odd_even=%d field_per_buff=%d delay=%d\n",
1478 ZR_DEVNAME(zr
), stat
,
1479 zr
->jpg_settings
.odd_even
,
1480 zr
->jpg_settings
.field_per_buff
,
1483 for (i
= 0; i
< BUZ_NUM_STAT_COM
; i
++)
1484 sv
[i
] = le32_to_cpu(zr
->stat_com
[i
]) & 1 ? '1' : '0';
1485 sv
[BUZ_NUM_STAT_COM
] = 0;
1487 "%s: stat_com=%s queue_state=%ld/%ld/%ld/%ld\n",
1494 /* Get statistics */
1495 if (zr
->JPEG_missed
> zr
->JPEG_max_missed
)
1496 zr
->JPEG_max_missed
= zr
->JPEG_missed
;
1497 if (zr
->JPEG_missed
< zr
->JPEG_min_missed
)
1498 zr
->JPEG_min_missed
= zr
->JPEG_missed
;
1501 if (zr36067_debug
> 2 && zr
->frame_num
< 6) {
1504 printk(KERN_INFO
"%s: seq=%ld stat_com:",
1505 ZR_DEVNAME(zr
), zr
->jpg_seq_num
);
1506 for (i
= 0; i
< 4; i
++) {
1507 printk(KERN_CONT
" %08x",
1508 le32_to_cpu(zr
->stat_com
[i
]));
1510 printk(KERN_CONT
"\n");
1513 zr
->JPEG_missed
= 0;
1515 zoran_reap_stat_com(zr
);
1516 zoran_feed_stat_com(zr
);
1517 wake_up_interruptible(&zr
->jpg_capq
);
1519 #endif /* (IRQ_MASK & ZR36057_ISR_JPEGRepIRQ) */
1521 /* DATERR, too many fields missed, error processing */
1522 if ((astat
& zr
->card
.jpeg_int
) ||
1523 zr
->JPEG_missed
> 25 ||
1524 zr
->JPEG_error
== 1 ||
1525 ((zr
->codec_mode
== BUZ_MODE_MOTION_DECOMPRESS
) &&
1526 (zr
->frame_num
&& (zr
->JPEG_missed
> zr
->jpg_settings
.field_per_buff
)))) {
1527 error_handler(zr
, astat
, stat
);
1532 dprintk(2, KERN_WARNING
"%s: irq loop %d\n",
1533 ZR_DEVNAME(zr
), count
);
1535 btand(~ZR36057_ICR_IntPinEn
, ZR36057_ICR
);
1538 "%s: IRQ lockup, cleared int mask\n",
1543 zr
->last_isr
= stat
;
1545 spin_unlock_irqrestore(&zr
->spinlock
, flags
);
1551 zoran_set_pci_master (struct zoran
*zr
,
1555 pci_set_master(zr
->pci_dev
);
1559 pci_read_config_word(zr
->pci_dev
, PCI_COMMAND
, &command
);
1560 command
&= ~PCI_COMMAND_MASTER
;
1561 pci_write_config_word(zr
->pci_dev
, PCI_COMMAND
, command
);
1566 zoran_init_hardware (struct zoran
*zr
)
1568 /* Enable bus-mastering */
1569 zoran_set_pci_master(zr
, 1);
1571 /* Initialize the board */
1572 if (zr
->card
.init
) {
1576 decoder_call(zr
, core
, init
, 0);
1577 decoder_call(zr
, core
, s_std
, zr
->norm
);
1578 decoder_call(zr
, video
, s_routing
,
1579 zr
->card
.input
[zr
->input
].muxsel
, 0, 0);
1581 encoder_call(zr
, core
, init
, 0);
1582 encoder_call(zr
, video
, s_std_output
, zr
->norm
);
1583 encoder_call(zr
, video
, s_routing
, 0, 0, 0);
1585 /* toggle JPEG codec sleep to sync PLL */
1586 jpeg_codec_sleep(zr
, 1);
1587 jpeg_codec_sleep(zr
, 0);
1589 /* set individual interrupt enables (without GIRQ1)
1590 * but don't global enable until zoran_open() */
1592 //btwrite(IRQ_MASK & ~ZR36057_ISR_GIRQ1, ZR36057_ICR); // SW
1593 // It looks like using only JPEGRepIRQEn is not always reliable,
1594 // may be when JPEG codec crashes it won't generate IRQ? So,
1595 /*CP*/ // btwrite(IRQ_MASK, ZR36057_ICR); // Enable Vsync interrupts too. SM WHY ? LP
1596 zr36057_init_vfe(zr
);
1598 zr36057_enable_jpg(zr
, BUZ_MODE_IDLE
);
1600 btwrite(IRQ_MASK
, ZR36057_ISR
); // Clears interrupts
1604 zr36057_restart (struct zoran
*zr
)
1606 btwrite(0, ZR36057_SPGPPCR
);
1608 btor(ZR36057_SPGPPCR_SoftReset
, ZR36057_SPGPPCR
);
1611 /* assert P_Reset */
1612 btwrite(0, ZR36057_JPC
);
1613 /* set up GPIO direction - all output */
1614 btwrite(ZR36057_SPGPPCR_SoftReset
| 0, ZR36057_SPGPPCR
);
1616 /* set up GPIO pins and guest bus timing */
1617 btwrite((0x81 << 24) | 0x8888, ZR36057_GPPGCR1
);
1621 * initialize video front end
1625 zr36057_init_vfe (struct zoran
*zr
)
1629 reg
= btread(ZR36057_VFESPFR
);
1630 reg
|= ZR36057_VFESPFR_LittleEndian
;
1631 reg
&= ~ZR36057_VFESPFR_VCLKPol
;
1632 reg
|= ZR36057_VFESPFR_ExtFl
;
1633 reg
|= ZR36057_VFESPFR_TopField
;
1634 btwrite(reg
, ZR36057_VFESPFR
);
1635 reg
= btread(ZR36057_VDCR
);
1636 if (pci_pci_problems
& PCIPCI_TRITON
)
1637 // || zr->revision < 1) // Revision 1 has also Triton support
1638 reg
&= ~ZR36057_VDCR_Triton
;
1640 reg
|= ZR36057_VDCR_Triton
;
1641 btwrite(reg
, ZR36057_VDCR
);