2 * Driver for the Conexant CX25821 PCIe bridge
4 * Copyright (C) 2009 Conexant Systems Inc.
5 * Authors <hiep.huynh@conexant.com>, <shu.lin@conexant.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include "cx25821-video.h"
26 #include "cx25821-video-upstream-ch2.h"
29 #include <linux/errno.h>
30 #include <linux/kernel.h>
31 #include <linux/init.h>
32 #include <linux/module.h>
33 #include <linux/syscalls.h>
34 #include <linux/file.h>
35 #include <linux/fcntl.h>
36 #include <linux/slab.h>
37 #include <linux/uaccess.h>
39 MODULE_DESCRIPTION("v4l2 driver module for cx25821 based TV cards");
40 MODULE_AUTHOR("Hiep Huynh <hiep.huynh@conexant.com>");
41 MODULE_LICENSE("GPL");
43 static int _intr_msk
= FLD_VID_SRC_RISC1
| FLD_VID_SRC_UF
| FLD_VID_SRC_SYNC
|
46 static __le32
*cx25821_update_riscprogram_ch2(struct cx25821_dev
*dev
,
47 __le32
*rp
, unsigned int offset
,
48 unsigned int bpl
, u32 sync_line
,
50 int fifo_enable
, int field_type
)
53 int dist_betwn_starts
= bpl
* 2;
55 *(rp
++) = cpu_to_le32(RISC_RESYNC
| sync_line
);
57 if (USE_RISC_NOOP_VIDEO
) {
58 for (i
= 0; i
< NUM_NO_OPS
; i
++)
59 *(rp
++) = cpu_to_le32(RISC_NOOP
);
63 for (line
= 0; line
< lines
; line
++) {
64 *(rp
++) = cpu_to_le32(RISC_READ
| RISC_SOL
| RISC_EOL
| bpl
);
65 *(rp
++) = cpu_to_le32(dev
->_data_buf_phys_addr_ch2
+ offset
);
66 *(rp
++) = cpu_to_le32(0); /* bits 63-32 */
68 if ((lines
<= NTSC_FIELD_HEIGHT
) ||
69 (line
< (NTSC_FIELD_HEIGHT
- 1)) || !(dev
->_isNTSC_ch2
)) {
70 offset
+= dist_betwn_starts
;
77 static __le32
*cx25821_risc_field_upstream_ch2(struct cx25821_dev
*dev
,
79 dma_addr_t databuf_phys_addr
,
81 u32 sync_line
, unsigned int bpl
,
83 int fifo_enable
, int field_type
)
86 struct sram_channel
*sram_ch
=
87 dev
->channels
[dev
->_channel2_upstream_select
].sram_channels
;
88 int dist_betwn_starts
= bpl
* 2;
90 /* sync instruction */
91 if (sync_line
!= NO_SYNC_LINE
)
92 *(rp
++) = cpu_to_le32(RISC_RESYNC
| sync_line
);
94 if (USE_RISC_NOOP_VIDEO
) {
95 for (i
= 0; i
< NUM_NO_OPS
; i
++)
96 *(rp
++) = cpu_to_le32(RISC_NOOP
);
100 for (line
= 0; line
< lines
; line
++) {
101 *(rp
++) = cpu_to_le32(RISC_READ
| RISC_SOL
| RISC_EOL
| bpl
);
102 *(rp
++) = cpu_to_le32(databuf_phys_addr
+ offset
);
103 *(rp
++) = cpu_to_le32(0); /* bits 63-32 */
105 if ((lines
<= NTSC_FIELD_HEIGHT
) ||
106 (line
< (NTSC_FIELD_HEIGHT
- 1)) || !(dev
->_isNTSC_ch2
)) {
107 offset
+= dist_betwn_starts
;
111 check if we need to enable the FIFO after the first 4 lines
112 For the upstream video channel, the risc engine will enable
115 if (fifo_enable
&& line
== 3) {
116 *(rp
++) = RISC_WRITECR
;
117 *(rp
++) = sram_ch
->dma_ctl
;
118 *(rp
++) = FLD_VID_FIFO_EN
;
119 *(rp
++) = 0x00000001;
126 int cx25821_risc_buffer_upstream_ch2(struct cx25821_dev
*dev
,
128 unsigned int top_offset
, unsigned int bpl
,
133 int singlefield_lines
= lines
>> 1; /*get line count for single field */
134 int odd_num_lines
= singlefield_lines
;
137 int databuf_offset
= 0;
138 int risc_program_size
= 0;
139 int risc_flag
= RISC_CNT_RESET
;
140 unsigned int bottom_offset
= bpl
;
141 dma_addr_t risc_phys_jump_addr
;
143 if (dev
->_isNTSC_ch2
) {
144 odd_num_lines
= singlefield_lines
+ 1;
145 risc_program_size
= FRAME1_VID_PROG_SIZE
;
146 if (bpl
== Y411_LINE_SZ
)
147 frame_size
= FRAME_SIZE_NTSC_Y411
;
149 frame_size
= FRAME_SIZE_NTSC_Y422
;
151 risc_program_size
= PAL_VID_PROG_SIZE
;
152 if (bpl
== Y411_LINE_SZ
)
153 frame_size
= FRAME_SIZE_PAL_Y411
;
155 frame_size
= FRAME_SIZE_PAL_Y422
;
158 /* Virtual address of Risc buffer program */
159 rp
= dev
->_dma_virt_addr_ch2
;
161 for (frame
= 0; frame
< NUM_FRAMES
; frame
++) {
162 databuf_offset
= frame_size
* frame
;
164 if (UNSET
!= top_offset
) {
165 fifo_enable
= (frame
== 0) ? FIFO_ENABLE
: FIFO_DISABLE
;
166 rp
= cx25821_risc_field_upstream_ch2(dev
, rp
,
167 dev
->_data_buf_phys_addr_ch2
+ databuf_offset
,
168 top_offset
, 0, bpl
, odd_num_lines
, fifo_enable
,
172 fifo_enable
= FIFO_DISABLE
;
175 rp
= cx25821_risc_field_upstream_ch2(dev
, rp
,
176 dev
->_data_buf_phys_addr_ch2
+ databuf_offset
,
177 bottom_offset
, 0x200, bpl
, singlefield_lines
,
178 fifo_enable
, EVEN_FIELD
);
181 risc_flag
= RISC_CNT_RESET
;
182 risc_phys_jump_addr
= dev
->_dma_phys_start_addr_ch2
+
185 risc_flag
= RISC_CNT_INC
;
186 risc_phys_jump_addr
= dev
->_dma_phys_start_addr_ch2
;
190 * Loop to 2ndFrameRISC or to Start of
191 * Risc program & generate IRQ
193 *(rp
++) = cpu_to_le32(RISC_JUMP
| RISC_IRQ1
| risc_flag
);
194 *(rp
++) = cpu_to_le32(risc_phys_jump_addr
);
195 *(rp
++) = cpu_to_le32(0);
201 void cx25821_stop_upstream_video_ch2(struct cx25821_dev
*dev
)
203 struct sram_channel
*sram_ch
=
204 dev
->channels
[VID_UPSTREAM_SRAM_CHANNEL_J
].sram_channels
;
207 if (!dev
->_is_running_ch2
) {
208 pr_info("No video file is currently running so return!\n");
211 /* Disable RISC interrupts */
212 tmp
= cx_read(sram_ch
->int_msk
);
213 cx_write(sram_ch
->int_msk
, tmp
& ~_intr_msk
);
215 /* Turn OFF risc and fifo */
216 tmp
= cx_read(sram_ch
->dma_ctl
);
217 cx_write(sram_ch
->dma_ctl
, tmp
& ~(FLD_VID_FIFO_EN
| FLD_VID_RISC_EN
));
219 /* Clear data buffer memory */
220 if (dev
->_data_buf_virt_addr_ch2
)
221 memset(dev
->_data_buf_virt_addr_ch2
, 0,
222 dev
->_data_buf_size_ch2
);
224 dev
->_is_running_ch2
= 0;
225 dev
->_is_first_frame_ch2
= 0;
226 dev
->_frame_count_ch2
= 0;
227 dev
->_file_status_ch2
= END_OF_FILE
;
229 kfree(dev
->_irq_queues_ch2
);
230 dev
->_irq_queues_ch2
= NULL
;
232 kfree(dev
->_filename_ch2
);
234 tmp
= cx_read(VID_CH_MODE_SEL
);
235 cx_write(VID_CH_MODE_SEL
, tmp
& 0xFFFFFE00);
238 void cx25821_free_mem_upstream_ch2(struct cx25821_dev
*dev
)
240 if (dev
->_is_running_ch2
)
241 cx25821_stop_upstream_video_ch2(dev
);
243 if (dev
->_dma_virt_addr_ch2
) {
244 pci_free_consistent(dev
->pci
, dev
->_risc_size_ch2
,
245 dev
->_dma_virt_addr_ch2
,
246 dev
->_dma_phys_addr_ch2
);
247 dev
->_dma_virt_addr_ch2
= NULL
;
250 if (dev
->_data_buf_virt_addr_ch2
) {
251 pci_free_consistent(dev
->pci
, dev
->_data_buf_size_ch2
,
252 dev
->_data_buf_virt_addr_ch2
,
253 dev
->_data_buf_phys_addr_ch2
);
254 dev
->_data_buf_virt_addr_ch2
= NULL
;
258 int cx25821_get_frame_ch2(struct cx25821_dev
*dev
, struct sram_channel
*sram_ch
)
261 int frame_index_temp
= dev
->_frame_index_ch2
;
263 int line_size
= (dev
->_pixel_format_ch2
== PIXEL_FRMT_411
) ?
264 Y411_LINE_SZ
: Y422_LINE_SZ
;
266 int frame_offset
= 0;
267 ssize_t vfs_read_retval
= 0;
268 char mybuf
[line_size
];
273 if (dev
->_file_status_ch2
== END_OF_FILE
)
276 if (dev
->_isNTSC_ch2
) {
277 frame_size
= (line_size
== Y411_LINE_SZ
) ?
278 FRAME_SIZE_NTSC_Y411
: FRAME_SIZE_NTSC_Y422
;
280 frame_size
= (line_size
== Y411_LINE_SZ
) ?
281 FRAME_SIZE_PAL_Y411
: FRAME_SIZE_PAL_Y422
;
284 frame_offset
= (frame_index_temp
> 0) ? frame_size
: 0;
285 file_offset
= dev
->_frame_count_ch2
* frame_size
;
287 myfile
= filp_open(dev
->_filename_ch2
, O_RDONLY
| O_LARGEFILE
, 0);
288 if (IS_ERR(myfile
)) {
289 const int open_errno
= -PTR_ERR(myfile
);
290 pr_err("%s(): ERROR opening file(%s) with errno = %d!\n",
291 __func__
, dev
->_filename_ch2
, open_errno
);
292 return PTR_ERR(myfile
);
294 if (!(myfile
->f_op
)) {
295 pr_err("%s(): File has no file operations registered!\n",
297 filp_close(myfile
, NULL
);
301 if (!myfile
->f_op
->read
) {
302 pr_err("%s(): File has no READ operations registered!\n",
304 filp_close(myfile
, NULL
);
312 for (i
= 0; i
< dev
->_lines_count_ch2
; i
++) {
315 vfs_read_retval
= vfs_read(myfile
, mybuf
, line_size
,
318 if (vfs_read_retval
> 0 && vfs_read_retval
== line_size
319 && dev
->_data_buf_virt_addr_ch2
!= NULL
) {
320 memcpy((void *)(dev
->_data_buf_virt_addr_ch2
+
321 frame_offset
/ 4), mybuf
,
325 file_offset
+= vfs_read_retval
;
326 frame_offset
+= vfs_read_retval
;
328 if (vfs_read_retval
< line_size
) {
329 pr_info("Done: exit %s() since no more bytes to read from Video file\n",
336 dev
->_frame_count_ch2
++;
338 dev
->_file_status_ch2
= (vfs_read_retval
== line_size
) ?
339 IN_PROGRESS
: END_OF_FILE
;
342 filp_close(myfile
, NULL
);
348 static void cx25821_vidups_handler_ch2(struct work_struct
*work
)
350 struct cx25821_dev
*dev
= container_of(work
, struct cx25821_dev
,
351 _irq_work_entry_ch2
);
354 pr_err("ERROR %s(): since container_of(work_struct) FAILED!\n",
359 cx25821_get_frame_ch2(dev
, dev
->channels
[dev
->
360 _channel2_upstream_select
].sram_channels
);
363 int cx25821_openfile_ch2(struct cx25821_dev
*dev
, struct sram_channel
*sram_ch
)
367 int line_size
= (dev
->_pixel_format_ch2
== PIXEL_FRMT_411
) ?
368 Y411_LINE_SZ
: Y422_LINE_SZ
;
369 ssize_t vfs_read_retval
= 0;
370 char mybuf
[line_size
];
372 loff_t offset
= (unsigned long)0;
375 myfile
= filp_open(dev
->_filename_ch2
, O_RDONLY
| O_LARGEFILE
, 0);
377 if (IS_ERR(myfile
)) {
378 const int open_errno
= -PTR_ERR(myfile
);
379 pr_err("%s(): ERROR opening file(%s) with errno = %d!\n",
380 __func__
, dev
->_filename_ch2
, open_errno
);
381 return PTR_ERR(myfile
);
383 if (!(myfile
->f_op
)) {
384 pr_err("%s(): File has no file operations registered!\n",
386 filp_close(myfile
, NULL
);
390 if (!myfile
->f_op
->read
) {
391 pr_err("%s(): File has no READ operations registered! Returning\n",
393 filp_close(myfile
, NULL
);
401 for (j
= 0; j
< NUM_FRAMES
; j
++) {
402 for (i
= 0; i
< dev
->_lines_count_ch2
; i
++) {
405 vfs_read_retval
= vfs_read(myfile
, mybuf
,
408 if (vfs_read_retval
> 0 &&
409 vfs_read_retval
== line_size
&&
410 dev
->_data_buf_virt_addr_ch2
!= NULL
) {
411 memcpy((void *)(dev
->
412 _data_buf_virt_addr_ch2
413 + offset
/ 4), mybuf
,
417 offset
+= vfs_read_retval
;
419 if (vfs_read_retval
< line_size
) {
420 pr_info("Done: exit %s() since no more bytes to read from Video file\n",
427 dev
->_frame_count_ch2
++;
429 if (vfs_read_retval
< line_size
)
433 dev
->_file_status_ch2
= (vfs_read_retval
== line_size
) ?
434 IN_PROGRESS
: END_OF_FILE
;
438 filp_close(myfile
, NULL
);
444 static int cx25821_upstream_buffer_prepare_ch2(struct cx25821_dev
*dev
,
445 struct sram_channel
*sram_ch
,
450 dma_addr_t data_dma_addr
;
452 if (dev
->_dma_virt_addr_ch2
!= NULL
) {
453 pci_free_consistent(dev
->pci
, dev
->upstream_riscbuf_size_ch2
,
454 dev
->_dma_virt_addr_ch2
,
455 dev
->_dma_phys_addr_ch2
);
458 dev
->_dma_virt_addr_ch2
= pci_alloc_consistent(dev
->pci
,
459 dev
->upstream_riscbuf_size_ch2
, &dma_addr
);
460 dev
->_dma_virt_start_addr_ch2
= dev
->_dma_virt_addr_ch2
;
461 dev
->_dma_phys_start_addr_ch2
= dma_addr
;
462 dev
->_dma_phys_addr_ch2
= dma_addr
;
463 dev
->_risc_size_ch2
= dev
->upstream_riscbuf_size_ch2
;
465 if (!dev
->_dma_virt_addr_ch2
) {
466 pr_err("FAILED to allocate memory for Risc buffer! Returning\n");
470 /* Iniitize at this address until n bytes to 0 */
471 memset(dev
->_dma_virt_addr_ch2
, 0, dev
->_risc_size_ch2
);
473 if (dev
->_data_buf_virt_addr_ch2
!= NULL
) {
474 pci_free_consistent(dev
->pci
, dev
->upstream_databuf_size_ch2
,
475 dev
->_data_buf_virt_addr_ch2
,
476 dev
->_data_buf_phys_addr_ch2
);
478 /* For Video Data buffer allocation */
479 dev
->_data_buf_virt_addr_ch2
= pci_alloc_consistent(dev
->pci
,
480 dev
->upstream_databuf_size_ch2
, &data_dma_addr
);
481 dev
->_data_buf_phys_addr_ch2
= data_dma_addr
;
482 dev
->_data_buf_size_ch2
= dev
->upstream_databuf_size_ch2
;
484 if (!dev
->_data_buf_virt_addr_ch2
) {
485 pr_err("FAILED to allocate memory for data buffer! Returning\n");
489 /* Initialize at this address until n bytes to 0 */
490 memset(dev
->_data_buf_virt_addr_ch2
, 0, dev
->_data_buf_size_ch2
);
492 ret
= cx25821_openfile_ch2(dev
, sram_ch
);
496 /* Creating RISC programs */
497 ret
= cx25821_risc_buffer_upstream_ch2(dev
, dev
->pci
, 0, bpl
,
498 dev
->_lines_count_ch2
);
500 pr_info("Failed creating Video Upstream Risc programs!\n");
510 int cx25821_video_upstream_irq_ch2(struct cx25821_dev
*dev
, int chan_num
,
514 struct sram_channel
*channel
= dev
->channels
[chan_num
].sram_channels
;
515 int singlefield_lines
= NTSC_FIELD_HEIGHT
;
516 int line_size_in_bytes
= Y422_LINE_SZ
;
517 int odd_risc_prog_size
= 0;
518 dma_addr_t risc_phys_jump_addr
;
521 if (status
& FLD_VID_SRC_RISC1
) {
522 /* We should only process one program per call */
523 u32 prog_cnt
= cx_read(channel
->gpcnt
);
526 * Since we've identified our IRQ, clear our bits from the
527 * interrupt mask and interrupt status registers
529 int_msk_tmp
= cx_read(channel
->int_msk
);
530 cx_write(channel
->int_msk
, int_msk_tmp
& ~_intr_msk
);
531 cx_write(channel
->int_stat
, _intr_msk
);
533 spin_lock(&dev
->slock
);
535 dev
->_frame_index_ch2
= prog_cnt
;
537 queue_work(dev
->_irq_queues_ch2
, &dev
->_irq_work_entry_ch2
);
539 if (dev
->_is_first_frame_ch2
) {
540 dev
->_is_first_frame_ch2
= 0;
542 if (dev
->_isNTSC_ch2
) {
543 singlefield_lines
+= 1;
544 odd_risc_prog_size
= ODD_FLD_NTSC_PROG_SIZE
;
546 singlefield_lines
= PAL_FIELD_HEIGHT
;
547 odd_risc_prog_size
= ODD_FLD_PAL_PROG_SIZE
;
550 if (dev
->_dma_virt_start_addr_ch2
!= NULL
) {
551 if (dev
->_pixel_format_ch2
== PIXEL_FRMT_411
)
552 line_size_in_bytes
= Y411_LINE_SZ
;
554 line_size_in_bytes
= Y422_LINE_SZ
;
555 risc_phys_jump_addr
=
556 dev
->_dma_phys_start_addr_ch2
+
559 rp
= cx25821_update_riscprogram_ch2(dev
,
560 dev
->_dma_virt_start_addr_ch2
,
561 TOP_OFFSET
, line_size_in_bytes
,
562 0x0, singlefield_lines
,
563 FIFO_DISABLE
, ODD_FIELD
);
565 /* Jump to Even Risc program of 1st Frame */
566 *(rp
++) = cpu_to_le32(RISC_JUMP
);
567 *(rp
++) = cpu_to_le32(risc_phys_jump_addr
);
568 *(rp
++) = cpu_to_le32(0);
572 spin_unlock(&dev
->slock
);
575 if (dev
->_file_status_ch2
== END_OF_FILE
) {
576 pr_info("EOF Channel 2 Framecount = %d\n",
577 dev
->_frame_count_ch2
);
580 /* ElSE, set the interrupt mask register, re-enable irq. */
581 int_msk_tmp
= cx_read(channel
->int_msk
);
582 cx_write(channel
->int_msk
, int_msk_tmp
|= _intr_msk
);
587 static irqreturn_t
cx25821_upstream_irq_ch2(int irq
, void *dev_id
)
589 struct cx25821_dev
*dev
= dev_id
;
590 u32 msk_stat
, vid_status
;
593 struct sram_channel
*sram_ch
;
598 channel_num
= VID_UPSTREAM_SRAM_CHANNEL_J
;
599 sram_ch
= dev
->channels
[channel_num
].sram_channels
;
601 msk_stat
= cx_read(sram_ch
->int_mstat
);
602 vid_status
= cx_read(sram_ch
->int_stat
);
604 /* Only deal with our interrupt */
606 handled
= cx25821_video_upstream_irq_ch2(dev
, channel_num
,
610 cx25821_stop_upstream_video_ch2(dev
);
614 return IRQ_RETVAL(handled
);
617 static void cx25821_set_pixelengine_ch2(struct cx25821_dev
*dev
,
618 struct sram_channel
*ch
, int pix_format
)
620 int width
= WIDTH_D1
;
621 int height
= dev
->_lines_count_ch2
;
622 int num_lines
, odd_num_lines
;
624 int vip_mode
= PIXEL_ENGINE_VIP1
;
626 value
= ((pix_format
& 0x3) << 12) | (vip_mode
& 0x7);
628 value
|= dev
->_isNTSC_ch2
? 0 : 0x10;
629 cx_write(ch
->vid_fmt_ctl
, value
);
632 * set number of active pixels in each line. Default is 720
633 * pixels in both NTSC and PAL format
635 cx_write(ch
->vid_active_ctl1
, width
);
637 num_lines
= (height
/ 2) & 0x3FF;
638 odd_num_lines
= num_lines
;
640 if (dev
->_isNTSC_ch2
)
643 value
= (num_lines
<< 16) | odd_num_lines
;
645 /* set number of active lines in field 0 (top) and field 1 (bottom) */
646 cx_write(ch
->vid_active_ctl2
, value
);
648 cx_write(ch
->vid_cdt_size
, VID_CDT_SIZE
>> 3);
651 int cx25821_start_video_dma_upstream_ch2(struct cx25821_dev
*dev
,
652 struct sram_channel
*sram_ch
)
658 * 656/VIP SRC Upstream Channel I & J and 7 - Host Bus Interface
661 tmp
= cx_read(VID_CH_MODE_SEL
);
662 cx_write(VID_CH_MODE_SEL
, tmp
| 0x1B0001FF);
665 * Set the physical start address of the RISC program in the initial
666 * program counter(IPC) member of the cmds.
668 cx_write(sram_ch
->cmds_start
+ 0, dev
->_dma_phys_addr_ch2
);
669 cx_write(sram_ch
->cmds_start
+ 4, 0); /* Risc IPC High 64 bits 63-32 */
672 cx_write(sram_ch
->gpcnt_ctl
, 3);
674 /* Clear our bits from the interrupt status register. */
675 cx_write(sram_ch
->int_stat
, _intr_msk
);
677 /* Set the interrupt mask register, enable irq. */
678 cx_set(PCI_INT_MSK
, cx_read(PCI_INT_MSK
) | (1 << sram_ch
->irq_bit
));
679 tmp
= cx_read(sram_ch
->int_msk
);
680 cx_write(sram_ch
->int_msk
, tmp
|= _intr_msk
);
682 err
= request_irq(dev
->pci
->irq
, cx25821_upstream_irq_ch2
,
683 IRQF_SHARED
, dev
->name
, dev
);
685 pr_err("%s: can't get upstream IRQ %d\n",
686 dev
->name
, dev
->pci
->irq
);
689 /* Start the DMA engine */
690 tmp
= cx_read(sram_ch
->dma_ctl
);
691 cx_set(sram_ch
->dma_ctl
, tmp
| FLD_VID_RISC_EN
);
693 dev
->_is_running_ch2
= 1;
694 dev
->_is_first_frame_ch2
= 1;
699 cx25821_dev_unregister(dev
);
703 int cx25821_vidupstream_init_ch2(struct cx25821_dev
*dev
, int channel_select
,
706 struct sram_channel
*sram_ch
;
710 int data_frame_size
= 0;
711 int risc_buffer_size
= 0;
714 if (dev
->_is_running_ch2
) {
715 pr_info("Video Channel is still running so return!\n");
719 dev
->_channel2_upstream_select
= channel_select
;
720 sram_ch
= dev
->channels
[channel_select
].sram_channels
;
722 INIT_WORK(&dev
->_irq_work_entry_ch2
, cx25821_vidups_handler_ch2
);
723 dev
->_irq_queues_ch2
=
724 create_singlethread_workqueue("cx25821_workqueue2");
726 if (!dev
->_irq_queues_ch2
) {
727 pr_err("create_singlethread_workqueue() for Video FAILED!\n");
731 * 656/VIP SRC Upstream Channel I & J and 7 -
732 * Host Bus Interface for channel A-C
734 tmp
= cx_read(VID_CH_MODE_SEL
);
735 cx_write(VID_CH_MODE_SEL
, tmp
| 0x1B0001FF);
737 dev
->_is_running_ch2
= 0;
738 dev
->_frame_count_ch2
= 0;
739 dev
->_file_status_ch2
= RESET_STATUS
;
740 dev
->_lines_count_ch2
= dev
->_isNTSC_ch2
? 480 : 576;
741 dev
->_pixel_format_ch2
= pixel_format
;
742 dev
->_line_size_ch2
= (dev
->_pixel_format_ch2
== PIXEL_FRMT_422
) ?
743 (WIDTH_D1
* 2) : (WIDTH_D1
* 3) / 2;
744 data_frame_size
= dev
->_isNTSC_ch2
? NTSC_DATA_BUF_SZ
: PAL_DATA_BUF_SZ
;
745 risc_buffer_size
= dev
->_isNTSC_ch2
?
746 NTSC_RISC_BUF_SIZE
: PAL_RISC_BUF_SIZE
;
748 if (dev
->input_filename_ch2
) {
749 str_length
= strlen(dev
->input_filename_ch2
);
750 dev
->_filename_ch2
= kmemdup(dev
->input_filename_ch2
,
751 str_length
+ 1, GFP_KERNEL
);
753 if (!dev
->_filename_ch2
)
756 str_length
= strlen(dev
->_defaultname_ch2
);
757 dev
->_filename_ch2
= kmemdup(dev
->_defaultname_ch2
,
758 str_length
+ 1, GFP_KERNEL
);
760 if (!dev
->_filename_ch2
)
764 /* Default if filename is empty string */
765 if (strcmp(dev
->input_filename_ch2
, "") == 0) {
766 if (dev
->_isNTSC_ch2
) {
767 dev
->_filename_ch2
= (dev
->_pixel_format_ch2
==
768 PIXEL_FRMT_411
) ? "/root/vid411.yuv" :
771 dev
->_filename_ch2
= (dev
->_pixel_format_ch2
==
772 PIXEL_FRMT_411
) ? "/root/pal411.yuv" :
777 retval
= cx25821_sram_channel_setup_upstream(dev
, sram_ch
,
778 dev
->_line_size_ch2
, 0);
780 /* setup fifo + format */
781 cx25821_set_pixelengine_ch2(dev
, sram_ch
, dev
->_pixel_format_ch2
);
783 dev
->upstream_riscbuf_size_ch2
= risc_buffer_size
* 2;
784 dev
->upstream_databuf_size_ch2
= data_frame_size
* 2;
786 /* Allocating buffers and prepare RISC program */
787 retval
= cx25821_upstream_buffer_prepare_ch2(dev
, sram_ch
,
788 dev
->_line_size_ch2
);
790 pr_err("%s: Failed to set up Video upstream buffers!\n",
795 cx25821_start_video_dma_upstream_ch2(dev
, sram_ch
);
800 cx25821_dev_unregister(dev
);