blob: cf2723c7197f1071b49ad9a9b148216e022f4b02 [file] [log] [blame]
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -03001/*
2 * Driver for the Conexant CX25821 PCIe bridge
3 *
4 * Copyright (C) 2009 Conexant Systems Inc.
5 * Authors <hiep.huynh@conexant.com>, <shu.lin@conexant.com>
6 *
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.
11 *
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
15 *
16 * GNU General Public License for more details.
17 *
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.
21 */
22
Joe Perches36d89f72010-11-07 17:48:21 -030023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030025#include "cx25821-video.h"
26#include "cx25821-video-upstream-ch2.h"
27
28#include <linux/fs.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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Ruslan Pisareve4115bb2010-09-27 10:01:36 -030037#include <linux/uaccess.h>
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030038
39MODULE_DESCRIPTION("v4l2 driver module for cx25821 based TV cards");
40MODULE_AUTHOR("Hiep Huynh <hiep.huynh@conexant.com>");
41MODULE_LICENSE("GPL");
42
Leonid V. Fedorenchik0b225972011-09-02 11:55:44 +080043static int _intr_msk = FLD_VID_SRC_RISC1 | FLD_VID_SRC_UF | FLD_VID_SRC_SYNC |
44 FLD_VID_SRC_OPC_ERR;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030045
46static __le32 *cx25821_update_riscprogram_ch2(struct cx25821_dev *dev,
Ruslan Pisareve4115bb2010-09-27 10:01:36 -030047 __le32 *rp, unsigned int offset,
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030048 unsigned int bpl, u32 sync_line,
49 unsigned int lines,
50 int fifo_enable, int field_type)
51{
52 unsigned int line, i;
53 int dist_betwn_starts = bpl * 2;
54
55 *(rp++) = cpu_to_le32(RISC_RESYNC | sync_line);
56
57 if (USE_RISC_NOOP_VIDEO) {
Ruslan Pisareve4115bb2010-09-27 10:01:36 -030058 for (i = 0; i < NUM_NO_OPS; i++)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030059 *(rp++) = cpu_to_le32(RISC_NOOP);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030060 }
61
62 /* scan lines */
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 */
67
Leonid V. Fedorenchik3a59fab2011-10-22 01:43:43 -030068 if ((lines <= NTSC_FIELD_HEIGHT) ||
69 (line < (NTSC_FIELD_HEIGHT - 1)) || !(dev->_isNTSC_ch2)) {
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030070 offset += dist_betwn_starts;
71 }
72 }
73
74 return rp;
75}
76
77static __le32 *cx25821_risc_field_upstream_ch2(struct cx25821_dev *dev,
Ruslan Pisareve4115bb2010-09-27 10:01:36 -030078 __le32 *rp,
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030079 dma_addr_t databuf_phys_addr,
80 unsigned int offset,
81 u32 sync_line, unsigned int bpl,
82 unsigned int lines,
83 int fifo_enable, int field_type)
84{
85 unsigned int line, i;
86 struct sram_channel *sram_ch =
Leonid V. Fedorenchik2a4492d2011-10-22 01:43:42 -030087 dev->channels[dev->_channel2_upstream_select].sram_channels;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030088 int dist_betwn_starts = bpl * 2;
89
90 /* sync instruction */
Ruslan Pisareve4115bb2010-09-27 10:01:36 -030091 if (sync_line != NO_SYNC_LINE)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030092 *(rp++) = cpu_to_le32(RISC_RESYNC | sync_line);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030093
94 if (USE_RISC_NOOP_VIDEO) {
Ruslan Pisareve4115bb2010-09-27 10:01:36 -030095 for (i = 0; i < NUM_NO_OPS; i++)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030096 *(rp++) = cpu_to_le32(RISC_NOOP);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -030097 }
98
99 /* scan lines */
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 */
104
Leonid V. Fedorenchik3a59fab2011-10-22 01:43:43 -0300105 if ((lines <= NTSC_FIELD_HEIGHT) ||
106 (line < (NTSC_FIELD_HEIGHT - 1)) || !(dev->_isNTSC_ch2)) {
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300107 offset += dist_betwn_starts;
108 }
109
Mauro Carvalho Chehab3e9442c2010-07-04 15:37:05 -0300110 /*
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
113 the FIFO.
114 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300115 if (fifo_enable && line == 3) {
116 *(rp++) = RISC_WRITECR;
117 *(rp++) = sram_ch->dma_ctl;
118 *(rp++) = FLD_VID_FIFO_EN;
119 *(rp++) = 0x00000001;
120 }
121 }
122
123 return rp;
124}
125
Mauro Carvalho Chehabdafc4562012-10-27 12:42:59 -0300126static int cx25821_risc_buffer_upstream_ch2(struct cx25821_dev *dev,
127 struct pci_dev *pci,
128 unsigned int top_offset,
129 unsigned int bpl,
130 unsigned int lines)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300131{
132 __le32 *rp;
133 int fifo_enable = 0;
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300134 int singlefield_lines = lines >> 1; /*get line count for single field */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300135 int odd_num_lines = singlefield_lines;
136 int frame = 0;
137 int frame_size = 0;
138 int databuf_offset = 0;
139 int risc_program_size = 0;
140 int risc_flag = RISC_CNT_RESET;
141 unsigned int bottom_offset = bpl;
142 dma_addr_t risc_phys_jump_addr;
143
144 if (dev->_isNTSC_ch2) {
145 odd_num_lines = singlefield_lines + 1;
146 risc_program_size = FRAME1_VID_PROG_SIZE;
Leonid V. Fedorenchik9737153b2011-09-02 11:55:41 +0800147 if (bpl == Y411_LINE_SZ)
148 frame_size = FRAME_SIZE_NTSC_Y411;
149 else
150 frame_size = FRAME_SIZE_NTSC_Y422;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300151 } else {
152 risc_program_size = PAL_VID_PROG_SIZE;
Leonid V. Fedorenchik9737153b2011-09-02 11:55:41 +0800153 if (bpl == Y411_LINE_SZ)
154 frame_size = FRAME_SIZE_PAL_Y411;
155 else
156 frame_size = FRAME_SIZE_PAL_Y422;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300157 }
158
159 /* Virtual address of Risc buffer program */
160 rp = dev->_dma_virt_addr_ch2;
161
162 for (frame = 0; frame < NUM_FRAMES; frame++) {
163 databuf_offset = frame_size * frame;
164
165 if (UNSET != top_offset) {
166 fifo_enable = (frame == 0) ? FIFO_ENABLE : FIFO_DISABLE;
167 rp = cx25821_risc_field_upstream_ch2(dev, rp,
Leonid V. Fedorenchik0b225972011-09-02 11:55:44 +0800168 dev->_data_buf_phys_addr_ch2 + databuf_offset,
169 top_offset, 0, bpl, odd_num_lines, fifo_enable,
170 ODD_FIELD);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300171 }
172
173 fifo_enable = FIFO_DISABLE;
174
Leonid V. Fedorenchik3940de72011-10-22 01:43:41 -0300175 /* Even field */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300176 rp = cx25821_risc_field_upstream_ch2(dev, rp,
Leonid V. Fedorenchik6d71b8f2011-09-02 11:55:43 +0800177 dev->_data_buf_phys_addr_ch2 + databuf_offset,
178 bottom_offset, 0x200, bpl, singlefield_lines,
179 fifo_enable, EVEN_FIELD);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300180
181 if (frame == 0) {
182 risc_flag = RISC_CNT_RESET;
Leonid V. Fedorenchik6d71b8f2011-09-02 11:55:43 +0800183 risc_phys_jump_addr = dev->_dma_phys_start_addr_ch2 +
184 risc_program_size;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300185 } else {
186 risc_flag = RISC_CNT_INC;
187 risc_phys_jump_addr = dev->_dma_phys_start_addr_ch2;
188 }
189
Mauro Carvalho Chehab3e9442c2010-07-04 15:37:05 -0300190 /*
Leonid V. Fedorenchik3940de72011-10-22 01:43:41 -0300191 * Loop to 2ndFrameRISC or to Start of
192 * Risc program & generate IRQ
193 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300194 *(rp++) = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | risc_flag);
195 *(rp++) = cpu_to_le32(risc_phys_jump_addr);
196 *(rp++) = cpu_to_le32(0);
197 }
198
199 return 0;
200}
201
202void cx25821_stop_upstream_video_ch2(struct cx25821_dev *dev)
203{
204 struct sram_channel *sram_ch =
Leonid V. Fedorenchik2a4492d2011-10-22 01:43:42 -0300205 dev->channels[VID_UPSTREAM_SRAM_CHANNEL_J].sram_channels;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300206 u32 tmp = 0;
207
208 if (!dev->_is_running_ch2) {
Joe Perches36d89f72010-11-07 17:48:21 -0300209 pr_info("No video file is currently running so return!\n");
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300210 return;
211 }
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300212 /* Disable RISC interrupts */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300213 tmp = cx_read(sram_ch->int_msk);
214 cx_write(sram_ch->int_msk, tmp & ~_intr_msk);
215
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300216 /* Turn OFF risc and fifo */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300217 tmp = cx_read(sram_ch->dma_ctl);
218 cx_write(sram_ch->dma_ctl, tmp & ~(FLD_VID_FIFO_EN | FLD_VID_RISC_EN));
219
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300220 /* Clear data buffer memory */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300221 if (dev->_data_buf_virt_addr_ch2)
222 memset(dev->_data_buf_virt_addr_ch2, 0,
223 dev->_data_buf_size_ch2);
224
225 dev->_is_running_ch2 = 0;
226 dev->_is_first_frame_ch2 = 0;
227 dev->_frame_count_ch2 = 0;
228 dev->_file_status_ch2 = END_OF_FILE;
229
Ilia Mirkinb0091782011-03-13 00:28:58 -0500230 kfree(dev->_irq_queues_ch2);
231 dev->_irq_queues_ch2 = NULL;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300232
Ilia Mirkinb0091782011-03-13 00:28:58 -0500233 kfree(dev->_filename_ch2);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300234
235 tmp = cx_read(VID_CH_MODE_SEL);
236 cx_write(VID_CH_MODE_SEL, tmp & 0xFFFFFE00);
237}
238
239void cx25821_free_mem_upstream_ch2(struct cx25821_dev *dev)
240{
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300241 if (dev->_is_running_ch2)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300242 cx25821_stop_upstream_video_ch2(dev);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300243
244 if (dev->_dma_virt_addr_ch2) {
245 pci_free_consistent(dev->pci, dev->_risc_size_ch2,
246 dev->_dma_virt_addr_ch2,
247 dev->_dma_phys_addr_ch2);
248 dev->_dma_virt_addr_ch2 = NULL;
249 }
250
251 if (dev->_data_buf_virt_addr_ch2) {
252 pci_free_consistent(dev->pci, dev->_data_buf_size_ch2,
253 dev->_data_buf_virt_addr_ch2,
254 dev->_data_buf_phys_addr_ch2);
255 dev->_data_buf_virt_addr_ch2 = NULL;
256 }
257}
258
Mauro Carvalho Chehabdafc4562012-10-27 12:42:59 -0300259static int cx25821_get_frame_ch2(struct cx25821_dev *dev,
260 struct sram_channel *sram_ch)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300261{
262 struct file *myfile;
263 int frame_index_temp = dev->_frame_index_ch2;
264 int i = 0;
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300265 int line_size = (dev->_pixel_format_ch2 == PIXEL_FRMT_411) ?
266 Y411_LINE_SZ : Y422_LINE_SZ;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300267 int frame_size = 0;
268 int frame_offset = 0;
269 ssize_t vfs_read_retval = 0;
270 char mybuf[line_size];
271 loff_t file_offset;
272 loff_t pos;
273 mm_segment_t old_fs;
274
275 if (dev->_file_status_ch2 == END_OF_FILE)
276 return 0;
277
278 if (dev->_isNTSC_ch2) {
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300279 frame_size = (line_size == Y411_LINE_SZ) ?
280 FRAME_SIZE_NTSC_Y411 : FRAME_SIZE_NTSC_Y422;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300281 } else {
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300282 frame_size = (line_size == Y411_LINE_SZ) ?
283 FRAME_SIZE_PAL_Y411 : FRAME_SIZE_PAL_Y422;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300284 }
285
286 frame_offset = (frame_index_temp > 0) ? frame_size : 0;
287 file_offset = dev->_frame_count_ch2 * frame_size;
288
289 myfile = filp_open(dev->_filename_ch2, O_RDONLY | O_LARGEFILE, 0);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300290 if (IS_ERR(myfile)) {
291 const int open_errno = -PTR_ERR(myfile);
Joe Perches36d89f72010-11-07 17:48:21 -0300292 pr_err("%s(): ERROR opening file(%s) with errno = %d!\n",
293 __func__, dev->_filename_ch2, open_errno);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300294 return PTR_ERR(myfile);
295 } else {
296 if (!(myfile->f_op)) {
Joe Perches36d89f72010-11-07 17:48:21 -0300297 pr_err("%s(): File has no file operations registered!\n",
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300298 __func__);
299 filp_close(myfile, NULL);
300 return -EIO;
301 }
302
303 if (!myfile->f_op->read) {
Joe Perches36d89f72010-11-07 17:48:21 -0300304 pr_err("%s(): File has no READ operations registered!\n",
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300305 __func__);
306 filp_close(myfile, NULL);
307 return -EIO;
308 }
309
310 pos = myfile->f_pos;
311 old_fs = get_fs();
312 set_fs(KERNEL_DS);
313
314 for (i = 0; i < dev->_lines_count_ch2; i++) {
315 pos = file_offset;
316
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300317 vfs_read_retval = vfs_read(myfile, mybuf, line_size,
318 &pos);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300319
320 if (vfs_read_retval > 0 && vfs_read_retval == line_size
321 && dev->_data_buf_virt_addr_ch2 != NULL) {
322 memcpy((void *)(dev->_data_buf_virt_addr_ch2 +
323 frame_offset / 4), mybuf,
Leonid V. Fedorenchik2a4492d2011-10-22 01:43:42 -0300324 vfs_read_retval);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300325 }
326
327 file_offset += vfs_read_retval;
328 frame_offset += vfs_read_retval;
329
330 if (vfs_read_retval < line_size) {
Joe Perches36d89f72010-11-07 17:48:21 -0300331 pr_info("Done: exit %s() since no more bytes to read from Video file\n",
332 __func__);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300333 break;
334 }
335 }
336
337 if (i > 0)
338 dev->_frame_count_ch2++;
339
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300340 dev->_file_status_ch2 = (vfs_read_retval == line_size) ?
341 IN_PROGRESS : END_OF_FILE;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300342
343 set_fs(old_fs);
344 filp_close(myfile, NULL);
345 }
346
347 return 0;
348}
349
350static void cx25821_vidups_handler_ch2(struct work_struct *work)
351{
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300352 struct cx25821_dev *dev = container_of(work, struct cx25821_dev,
353 _irq_work_entry_ch2);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300354
355 if (!dev) {
Joe Perches36d89f72010-11-07 17:48:21 -0300356 pr_err("ERROR %s(): since container_of(work_struct) FAILED!\n",
357 __func__);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300358 return;
359 }
360
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300361 cx25821_get_frame_ch2(dev, dev->channels[dev->
362 _channel2_upstream_select].sram_channels);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300363}
364
Mauro Carvalho Chehabdafc4562012-10-27 12:42:59 -0300365static int cx25821_openfile_ch2(struct cx25821_dev *dev,
366 struct sram_channel *sram_ch)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300367{
368 struct file *myfile;
369 int i = 0, j = 0;
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300370 int line_size = (dev->_pixel_format_ch2 == PIXEL_FRMT_411) ?
371 Y411_LINE_SZ : Y422_LINE_SZ;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300372 ssize_t vfs_read_retval = 0;
373 char mybuf[line_size];
374 loff_t pos;
375 loff_t offset = (unsigned long)0;
376 mm_segment_t old_fs;
377
378 myfile = filp_open(dev->_filename_ch2, O_RDONLY | O_LARGEFILE, 0);
379
380 if (IS_ERR(myfile)) {
381 const int open_errno = -PTR_ERR(myfile);
Joe Perches36d89f72010-11-07 17:48:21 -0300382 pr_err("%s(): ERROR opening file(%s) with errno = %d!\n",
383 __func__, dev->_filename_ch2, open_errno);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300384 return PTR_ERR(myfile);
385 } else {
386 if (!(myfile->f_op)) {
Joe Perches36d89f72010-11-07 17:48:21 -0300387 pr_err("%s(): File has no file operations registered!\n",
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300388 __func__);
389 filp_close(myfile, NULL);
390 return -EIO;
391 }
392
393 if (!myfile->f_op->read) {
Joe Perches36d89f72010-11-07 17:48:21 -0300394 pr_err("%s(): File has no READ operations registered! Returning\n",
395 __func__);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300396 filp_close(myfile, NULL);
397 return -EIO;
398 }
399
400 pos = myfile->f_pos;
401 old_fs = get_fs();
402 set_fs(KERNEL_DS);
403
404 for (j = 0; j < NUM_FRAMES; j++) {
405 for (i = 0; i < dev->_lines_count_ch2; i++) {
406 pos = offset;
407
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300408 vfs_read_retval = vfs_read(myfile, mybuf,
409 line_size, &pos);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300410
Leonid V. Fedorenchik3a59fab2011-10-22 01:43:43 -0300411 if (vfs_read_retval > 0 &&
412 vfs_read_retval == line_size &&
413 dev->_data_buf_virt_addr_ch2 != NULL) {
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300414 memcpy((void *)(dev->
415 _data_buf_virt_addr_ch2
416 + offset / 4), mybuf,
Leonid V. Fedorenchik2a4492d2011-10-22 01:43:42 -0300417 vfs_read_retval);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300418 }
419
420 offset += vfs_read_retval;
421
422 if (vfs_read_retval < line_size) {
Joe Perches36d89f72010-11-07 17:48:21 -0300423 pr_info("Done: exit %s() since no more bytes to read from Video file\n",
424 __func__);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300425 break;
426 }
427 }
428
429 if (i > 0)
430 dev->_frame_count_ch2++;
431
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300432 if (vfs_read_retval < line_size)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300433 break;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300434 }
435
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300436 dev->_file_status_ch2 = (vfs_read_retval == line_size) ?
437 IN_PROGRESS : END_OF_FILE;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300438
439 set_fs(old_fs);
440 myfile->f_pos = 0;
441 filp_close(myfile, NULL);
442 }
443
444 return 0;
445}
446
447static int cx25821_upstream_buffer_prepare_ch2(struct cx25821_dev *dev,
448 struct sram_channel *sram_ch,
449 int bpl)
450{
451 int ret = 0;
452 dma_addr_t dma_addr;
453 dma_addr_t data_dma_addr;
454
455 if (dev->_dma_virt_addr_ch2 != NULL) {
456 pci_free_consistent(dev->pci, dev->upstream_riscbuf_size_ch2,
457 dev->_dma_virt_addr_ch2,
458 dev->_dma_phys_addr_ch2);
459 }
460
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300461 dev->_dma_virt_addr_ch2 = pci_alloc_consistent(dev->pci,
462 dev->upstream_riscbuf_size_ch2, &dma_addr);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300463 dev->_dma_virt_start_addr_ch2 = dev->_dma_virt_addr_ch2;
464 dev->_dma_phys_start_addr_ch2 = dma_addr;
465 dev->_dma_phys_addr_ch2 = dma_addr;
466 dev->_risc_size_ch2 = dev->upstream_riscbuf_size_ch2;
467
468 if (!dev->_dma_virt_addr_ch2) {
Joe Perches36d89f72010-11-07 17:48:21 -0300469 pr_err("FAILED to allocate memory for Risc buffer! Returning\n");
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300470 return -ENOMEM;
471 }
472
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300473 /* Iniitize at this address until n bytes to 0 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300474 memset(dev->_dma_virt_addr_ch2, 0, dev->_risc_size_ch2);
475
476 if (dev->_data_buf_virt_addr_ch2 != NULL) {
477 pci_free_consistent(dev->pci, dev->upstream_databuf_size_ch2,
478 dev->_data_buf_virt_addr_ch2,
479 dev->_data_buf_phys_addr_ch2);
480 }
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300481 /* For Video Data buffer allocation */
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300482 dev->_data_buf_virt_addr_ch2 = pci_alloc_consistent(dev->pci,
483 dev->upstream_databuf_size_ch2, &data_dma_addr);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300484 dev->_data_buf_phys_addr_ch2 = data_dma_addr;
485 dev->_data_buf_size_ch2 = dev->upstream_databuf_size_ch2;
486
487 if (!dev->_data_buf_virt_addr_ch2) {
Joe Perches36d89f72010-11-07 17:48:21 -0300488 pr_err("FAILED to allocate memory for data buffer! Returning\n");
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300489 return -ENOMEM;
490 }
491
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300492 /* Initialize at this address until n bytes to 0 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300493 memset(dev->_data_buf_virt_addr_ch2, 0, dev->_data_buf_size_ch2);
494
495 ret = cx25821_openfile_ch2(dev, sram_ch);
496 if (ret < 0)
497 return ret;
498
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300499 /* Creating RISC programs */
Leonid V. Fedorenchik6d71b8f2011-09-02 11:55:43 +0800500 ret = cx25821_risc_buffer_upstream_ch2(dev, dev->pci, 0, bpl,
501 dev->_lines_count_ch2);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300502 if (ret < 0) {
Joe Perches36d89f72010-11-07 17:48:21 -0300503 pr_info("Failed creating Video Upstream Risc programs!\n");
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300504 goto error;
505 }
506
507 return 0;
508
Leonid V. Fedorenchikcc9518f2011-09-02 11:55:42 +0800509error:
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300510 return ret;
511}
512
Mauro Carvalho Chehabdafc4562012-10-27 12:42:59 -0300513static int cx25821_video_upstream_irq_ch2(struct cx25821_dev *dev,
514 int chan_num,
515 u32 status)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300516{
517 u32 int_msk_tmp;
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300518 struct sram_channel *channel = dev->channels[chan_num].sram_channels;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300519 int singlefield_lines = NTSC_FIELD_HEIGHT;
520 int line_size_in_bytes = Y422_LINE_SZ;
521 int odd_risc_prog_size = 0;
522 dma_addr_t risc_phys_jump_addr;
523 __le32 *rp;
524
525 if (status & FLD_VID_SRC_RISC1) {
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300526 /* We should only process one program per call */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300527 u32 prog_cnt = cx_read(channel->gpcnt);
528
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300529 /*
530 * Since we've identified our IRQ, clear our bits from the
531 * interrupt mask and interrupt status registers
532 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300533 int_msk_tmp = cx_read(channel->int_msk);
534 cx_write(channel->int_msk, int_msk_tmp & ~_intr_msk);
535 cx_write(channel->int_stat, _intr_msk);
536
537 spin_lock(&dev->slock);
538
539 dev->_frame_index_ch2 = prog_cnt;
540
541 queue_work(dev->_irq_queues_ch2, &dev->_irq_work_entry_ch2);
542
543 if (dev->_is_first_frame_ch2) {
544 dev->_is_first_frame_ch2 = 0;
545
546 if (dev->_isNTSC_ch2) {
547 singlefield_lines += 1;
548 odd_risc_prog_size = ODD_FLD_NTSC_PROG_SIZE;
549 } else {
550 singlefield_lines = PAL_FIELD_HEIGHT;
551 odd_risc_prog_size = ODD_FLD_PAL_PROG_SIZE;
552 }
553
554 if (dev->_dma_virt_start_addr_ch2 != NULL) {
Leonid V. Fedorenchik9737153b2011-09-02 11:55:41 +0800555 if (dev->_pixel_format_ch2 == PIXEL_FRMT_411)
556 line_size_in_bytes = Y411_LINE_SZ;
557 else
558 line_size_in_bytes = Y422_LINE_SZ;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300559 risc_phys_jump_addr =
Leonid V. Fedorenchik2a4492d2011-10-22 01:43:42 -0300560 dev->_dma_phys_start_addr_ch2 +
561 odd_risc_prog_size;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300562
563 rp = cx25821_update_riscprogram_ch2(dev,
Leonid V. Fedorenchik0b225972011-09-02 11:55:44 +0800564 dev->_dma_virt_start_addr_ch2,
565 TOP_OFFSET, line_size_in_bytes,
566 0x0, singlefield_lines,
567 FIFO_DISABLE, ODD_FIELD);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300568
Mauro Carvalho Chehab3e9442c2010-07-04 15:37:05 -0300569 /* Jump to Even Risc program of 1st Frame */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300570 *(rp++) = cpu_to_le32(RISC_JUMP);
571 *(rp++) = cpu_to_le32(risc_phys_jump_addr);
572 *(rp++) = cpu_to_le32(0);
573 }
574 }
575
576 spin_unlock(&dev->slock);
577 }
578
579 if (dev->_file_status_ch2 == END_OF_FILE) {
Joe Perches36d89f72010-11-07 17:48:21 -0300580 pr_info("EOF Channel 2 Framecount = %d\n",
581 dev->_frame_count_ch2);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300582 return -1;
583 }
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300584 /* ElSE, set the interrupt mask register, re-enable irq. */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300585 int_msk_tmp = cx_read(channel->int_msk);
586 cx_write(channel->int_msk, int_msk_tmp |= _intr_msk);
587
588 return 0;
589}
590
591static irqreturn_t cx25821_upstream_irq_ch2(int irq, void *dev_id)
592{
593 struct cx25821_dev *dev = dev_id;
Hans Verkuil30fdf032012-04-20 06:26:19 -0300594 u32 vid_status;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300595 int handled = 0;
596 int channel_num = 0;
597 struct sram_channel *sram_ch;
598
599 if (!dev)
600 return -1;
601
602 channel_num = VID_UPSTREAM_SRAM_CHANNEL_J;
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300603 sram_ch = dev->channels[channel_num].sram_channels;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300604
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300605 vid_status = cx_read(sram_ch->int_stat);
606
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300607 /* Only deal with our interrupt */
Leonid V. Fedorenchikdf253422011-10-22 01:43:44 -0300608 if (vid_status)
609 handled = cx25821_video_upstream_irq_ch2(dev, channel_num,
610 vid_status);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300611
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300612 if (handled < 0)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300613 cx25821_stop_upstream_video_ch2(dev);
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300614 else
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300615 handled += handled;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300616
617 return IRQ_RETVAL(handled);
618}
619
620static void cx25821_set_pixelengine_ch2(struct cx25821_dev *dev,
621 struct sram_channel *ch, int pix_format)
622{
623 int width = WIDTH_D1;
624 int height = dev->_lines_count_ch2;
625 int num_lines, odd_num_lines;
626 u32 value;
627 int vip_mode = PIXEL_ENGINE_VIP1;
628
629 value = ((pix_format & 0x3) << 12) | (vip_mode & 0x7);
630 value &= 0xFFFFFFEF;
631 value |= dev->_isNTSC_ch2 ? 0 : 0x10;
632 cx_write(ch->vid_fmt_ctl, value);
633
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300634 /*
635 * set number of active pixels in each line. Default is 720
636 * pixels in both NTSC and PAL format
637 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300638 cx_write(ch->vid_active_ctl1, width);
639
640 num_lines = (height / 2) & 0x3FF;
641 odd_num_lines = num_lines;
642
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300643 if (dev->_isNTSC_ch2)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300644 odd_num_lines += 1;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300645
646 value = (num_lines << 16) | odd_num_lines;
647
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300648 /* set number of active lines in field 0 (top) and field 1 (bottom) */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300649 cx_write(ch->vid_active_ctl2, value);
650
651 cx_write(ch->vid_cdt_size, VID_CDT_SIZE >> 3);
652}
653
Mauro Carvalho Chehabdafc4562012-10-27 12:42:59 -0300654static int cx25821_start_video_dma_upstream_ch2(struct cx25821_dev *dev,
655 struct sram_channel *sram_ch)
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300656{
657 u32 tmp = 0;
658 int err = 0;
659
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300660 /*
661 * 656/VIP SRC Upstream Channel I & J and 7 - Host Bus Interface
662 * for channel A-C
663 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300664 tmp = cx_read(VID_CH_MODE_SEL);
665 cx_write(VID_CH_MODE_SEL, tmp | 0x1B0001FF);
666
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300667 /*
668 * Set the physical start address of the RISC program in the initial
669 * program counter(IPC) member of the cmds.
670 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300671 cx_write(sram_ch->cmds_start + 0, dev->_dma_phys_addr_ch2);
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300672 cx_write(sram_ch->cmds_start + 4, 0); /* Risc IPC High 64 bits 63-32 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300673
674 /* reset counter */
675 cx_write(sram_ch->gpcnt_ctl, 3);
676
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300677 /* Clear our bits from the interrupt status register. */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300678 cx_write(sram_ch->int_stat, _intr_msk);
679
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300680 /* Set the interrupt mask register, enable irq. */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300681 cx_set(PCI_INT_MSK, cx_read(PCI_INT_MSK) | (1 << sram_ch->irq_bit));
682 tmp = cx_read(sram_ch->int_msk);
683 cx_write(sram_ch->int_msk, tmp |= _intr_msk);
684
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300685 err = request_irq(dev->pci->irq, cx25821_upstream_irq_ch2,
Yong Zhang18e93512011-09-07 16:10:22 +0800686 IRQF_SHARED, dev->name, dev);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300687 if (err < 0) {
Joe Perches36d89f72010-11-07 17:48:21 -0300688 pr_err("%s: can't get upstream IRQ %d\n",
689 dev->name, dev->pci->irq);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300690 goto fail_irq;
691 }
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300692 /* Start the DMA engine */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300693 tmp = cx_read(sram_ch->dma_ctl);
694 cx_set(sram_ch->dma_ctl, tmp | FLD_VID_RISC_EN);
695
696 dev->_is_running_ch2 = 1;
697 dev->_is_first_frame_ch2 = 1;
698
699 return 0;
700
Leonid V. Fedorenchikcc9518f2011-09-02 11:55:42 +0800701fail_irq:
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300702 cx25821_dev_unregister(dev);
703 return err;
704}
705
706int cx25821_vidupstream_init_ch2(struct cx25821_dev *dev, int channel_select,
707 int pixel_format)
708{
709 struct sram_channel *sram_ch;
710 u32 tmp;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300711 int err = 0;
712 int data_frame_size = 0;
713 int risc_buffer_size = 0;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300714
715 if (dev->_is_running_ch2) {
Joe Perches36d89f72010-11-07 17:48:21 -0300716 pr_info("Video Channel is still running so return!\n");
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300717 return 0;
718 }
719
720 dev->_channel2_upstream_select = channel_select;
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300721 sram_ch = dev->channels[channel_select].sram_channels;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300722
723 INIT_WORK(&dev->_irq_work_entry_ch2, cx25821_vidups_handler_ch2);
724 dev->_irq_queues_ch2 =
725 create_singlethread_workqueue("cx25821_workqueue2");
726
727 if (!dev->_irq_queues_ch2) {
Joe Perches36d89f72010-11-07 17:48:21 -0300728 pr_err("create_singlethread_workqueue() for Video FAILED!\n");
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300729 return -ENOMEM;
730 }
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300731 /*
732 * 656/VIP SRC Upstream Channel I & J and 7 -
733 * Host Bus Interface for channel A-C
734 */
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300735 tmp = cx_read(VID_CH_MODE_SEL);
736 cx_write(VID_CH_MODE_SEL, tmp | 0x1B0001FF);
737
738 dev->_is_running_ch2 = 0;
739 dev->_frame_count_ch2 = 0;
740 dev->_file_status_ch2 = RESET_STATUS;
741 dev->_lines_count_ch2 = dev->_isNTSC_ch2 ? 480 : 576;
742 dev->_pixel_format_ch2 = pixel_format;
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300743 dev->_line_size_ch2 = (dev->_pixel_format_ch2 == PIXEL_FRMT_422) ?
744 (WIDTH_D1 * 2) : (WIDTH_D1 * 3) / 2;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300745 data_frame_size = dev->_isNTSC_ch2 ? NTSC_DATA_BUF_SZ : PAL_DATA_BUF_SZ;
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300746 risc_buffer_size = dev->_isNTSC_ch2 ?
747 NTSC_RISC_BUF_SIZE : PAL_RISC_BUF_SIZE;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300748
Peter Senna Tschudineaddb092012-09-08 10:01:58 -0300749 if (dev->input_filename_ch2)
750 dev->_filename_ch2 = kstrdup(dev->input_filename_ch2,
751 GFP_KERNEL);
752 else
753 dev->_filename_ch2 = kstrdup(dev->_defaultname_ch2,
754 GFP_KERNEL);
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300755
Peter Senna Tschudineaddb092012-09-08 10:01:58 -0300756 if (!dev->_filename_ch2) {
757 err = -ENOENT;
758 goto error;
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300759 }
760
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300761 /* Default if filename is empty string */
Dan Carpenter546196a2012-09-29 03:12:53 -0300762 if (strcmp(dev->_filename_ch2, "") == 0) {
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300763 if (dev->_isNTSC_ch2) {
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300764 dev->_filename_ch2 = (dev->_pixel_format_ch2 ==
765 PIXEL_FRMT_411) ? "/root/vid411.yuv" :
766 "/root/vidtest.yuv";
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300767 } else {
Leonid V. Fedorenchik85b79822011-10-22 01:43:45 -0300768 dev->_filename_ch2 = (dev->_pixel_format_ch2 ==
769 PIXEL_FRMT_411) ? "/root/pal411.yuv" :
770 "/root/pal422.yuv";
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300771 }
772 }
773
Peter Senna Tschudineaddb092012-09-08 10:01:58 -0300774 err = cx25821_sram_channel_setup_upstream(dev, sram_ch,
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300775 dev->_line_size_ch2, 0);
776
777 /* setup fifo + format */
778 cx25821_set_pixelengine_ch2(dev, sram_ch, dev->_pixel_format_ch2);
779
780 dev->upstream_riscbuf_size_ch2 = risc_buffer_size * 2;
781 dev->upstream_databuf_size_ch2 = data_frame_size * 2;
782
Ruslan Pisareve4115bb2010-09-27 10:01:36 -0300783 /* Allocating buffers and prepare RISC program */
Peter Senna Tschudineaddb092012-09-08 10:01:58 -0300784 err = cx25821_upstream_buffer_prepare_ch2(dev, sram_ch,
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300785 dev->_line_size_ch2);
Peter Senna Tschudineaddb092012-09-08 10:01:58 -0300786 if (err < 0) {
Joe Perches36d89f72010-11-07 17:48:21 -0300787 pr_err("%s: Failed to set up Video upstream buffers!\n",
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300788 dev->name);
789 goto error;
790 }
791
792 cx25821_start_video_dma_upstream_ch2(dev, sram_ch);
793
794 return 0;
795
Leonid V. Fedorenchikcc9518f2011-09-02 11:55:42 +0800796error:
Mauro Carvalho Chehab1a9fc852009-09-13 11:30:11 -0300797 cx25821_dev_unregister(dev);
798
799 return err;
800}