DMA-API: staging: et131x: replace dma_set_mask()+dma_set_coherent_mask() with new...
[deliverable/linux.git] / drivers / staging / media / dt3155v4l / dt3155v4l.c
CommitLineData
717f4a5f
MM
1/***************************************************************************
2 * Copyright (C) 2006-2010 by Marin Mitov *
3 * mitov@issp.bas.bg *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
99c97852 21#include <linux/module.h>
d42bffb8
MM
22#include <linux/version.h>
23#include <linux/stringify.h>
7ec21181 24#include <linux/delay.h>
d42bffb8 25#include <linux/kthread.h>
dac95cb8 26#include <linux/slab.h>
a57941c2
MM
27#include <media/v4l2-dev.h>
28#include <media/v4l2-ioctl.h>
0dcb953a 29#include <media/v4l2-common.h>
8ded351a 30#include <media/videobuf2-dma-contig.h>
d42bffb8
MM
31
32#include "dt3155v4l.h"
d42bffb8
MM
33
34#define DT3155_VENDOR_ID 0x8086
35#define DT3155_DEVICE_ID 0x1223
36
a57941c2
MM
37/* DT3155_CHUNK_SIZE is 4M (2^22) 8 full size buffers */
38#define DT3155_CHUNK_SIZE (1U << 22)
39
40#define DT3155_COH_FLAGS (GFP_KERNEL | GFP_DMA32 | __GFP_COLD | __GFP_NOWARN)
41
42#define DT3155_BUF_SIZE (768 * 576)
43
8ded351a
MM
44#ifdef CONFIG_DT3155_STREAMING
45#define DT3155_CAPTURE_METHOD V4L2_CAP_STREAMING
46#else
47#define DT3155_CAPTURE_METHOD V4L2_CAP_READWRITE
48#endif
49
d42bffb8
MM
50/* global initializers (for all boards) */
51#ifdef CONFIG_DT3155_CCIR
52static const u8 csr2_init = VT_50HZ;
53#define DT3155_CURRENT_NORM V4L2_STD_625_50
54static const unsigned int img_width = 768;
55static const unsigned int img_height = 576;
56static const unsigned int frames_per_sec = 25;
57static const struct v4l2_fmtdesc frame_std[] = {
58 {
59 .index = 0,
60 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
61 .flags = 0,
62 .description = "CCIR/50Hz 8 bits gray",
63 .pixelformat = V4L2_PIX_FMT_GREY,
64 },
65};
66#else
67static const u8 csr2_init = VT_60HZ;
68#define DT3155_CURRENT_NORM V4L2_STD_525_60
69static const unsigned int img_width = 640;
70static const unsigned int img_height = 480;
71static const unsigned int frames_per_sec = 30;
72static const struct v4l2_fmtdesc frame_std[] = {
73 {
74 .index = 0,
75 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
76 .flags = 0,
77 .description = "RS-170/60Hz 8 bits gray",
78 .pixelformat = V4L2_PIX_FMT_GREY,
79 },
80};
81#endif
82
83#define NUM_OF_FORMATS ARRAY_SIZE(frame_std)
84
85static u8 config_init = ACQ_MODE_EVEN;
86
87/**
88 * read_i2c_reg - reads an internal i2c register
89 *
90 * @addr: dt3155 mmio base address
91 * @index: index (internal address) of register to read
92 * @data: pointer to byte the read data will be placed in
93 *
94 * returns: zero on success or error code
95 *
96 * This function starts reading the specified (by index) register
97 * and busy waits for the process to finish. The result is placed
98 * in a byte pointed by data.
99 */
100static int
2342df0e 101read_i2c_reg(void __iomem *addr, u8 index, u8 *data)
d42bffb8
MM
102{
103 u32 tmp = index;
104
105 iowrite32((tmp<<17) | IIC_READ, addr + IIC_CSR2);
106 mmiowb();
107 udelay(45); /* wait at least 43 usec for NEW_CYCLE to clear */
c94a2e47
HS
108 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE)
109 return -EIO; /* error: NEW_CYCLE not cleared */
d42bffb8
MM
110 tmp = ioread32(addr + IIC_CSR1);
111 if (tmp & DIRECT_ABORT) {
d42bffb8
MM
112 /* reset DIRECT_ABORT bit */
113 iowrite32(DIRECT_ABORT, addr + IIC_CSR1);
c94a2e47 114 return -EIO; /* error: DIRECT_ABORT set */
d42bffb8
MM
115 }
116 *data = tmp>>24;
117 return 0;
118}
119
120/**
121 * write_i2c_reg - writes to an internal i2c register
122 *
123 * @addr: dt3155 mmio base address
124 * @index: index (internal address) of register to read
125 * @data: data to be written
126 *
127 * returns: zero on success or error code
128 *
129 * This function starts writting the specified (by index) register
130 * and busy waits for the process to finish.
131 */
132static int
2342df0e 133write_i2c_reg(void __iomem *addr, u8 index, u8 data)
d42bffb8
MM
134{
135 u32 tmp = index;
136
137 iowrite32((tmp<<17) | IIC_WRITE | data, addr + IIC_CSR2);
138 mmiowb();
139 udelay(65); /* wait at least 63 usec for NEW_CYCLE to clear */
c94a2e47
HS
140 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE)
141 return -EIO; /* error: NEW_CYCLE not cleared */
d42bffb8 142 if (ioread32(addr + IIC_CSR1) & DIRECT_ABORT) {
d42bffb8
MM
143 /* reset DIRECT_ABORT bit */
144 iowrite32(DIRECT_ABORT, addr + IIC_CSR1);
c94a2e47 145 return -EIO; /* error: DIRECT_ABORT set */
d42bffb8
MM
146 }
147 return 0;
148}
149
150/**
151 * write_i2c_reg_nowait - writes to an internal i2c register
152 *
153 * @addr: dt3155 mmio base address
154 * @index: index (internal address) of register to read
155 * @data: data to be written
156 *
157 * This function starts writting the specified (by index) register
158 * and then returns.
159 */
2342df0e 160static void write_i2c_reg_nowait(void __iomem *addr, u8 index, u8 data)
d42bffb8
MM
161{
162 u32 tmp = index;
163
164 iowrite32((tmp<<17) | IIC_WRITE | data, addr + IIC_CSR2);
165 mmiowb();
166}
167
168/**
169 * wait_i2c_reg - waits the read/write to finish
170 *
171 * @addr: dt3155 mmio base address
172 *
173 * returns: zero on success or error code
174 *
175 * This function waits reading/writting to finish.
176 */
2342df0e 177static int wait_i2c_reg(void __iomem *addr)
d42bffb8
MM
178{
179 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE)
180 udelay(65); /* wait at least 63 usec for NEW_CYCLE to clear */
c94a2e47
HS
181 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE)
182 return -EIO; /* error: NEW_CYCLE not cleared */
d42bffb8 183 if (ioread32(addr + IIC_CSR1) & DIRECT_ABORT) {
d42bffb8
MM
184 /* reset DIRECT_ABORT bit */
185 iowrite32(DIRECT_ABORT, addr + IIC_CSR1);
c94a2e47 186 return -EIO; /* error: DIRECT_ABORT set */
d42bffb8
MM
187 }
188 return 0;
189}
190
d42bffb8
MM
191static int
192dt3155_start_acq(struct dt3155_priv *pd)
193{
8ded351a 194 struct vb2_buffer *vb = pd->curr_buf;
d42bffb8
MM
195 dma_addr_t dma_addr;
196
1f28291c 197 dma_addr = vb2_dma_contig_plane_dma_addr(vb, 0);
d42bffb8 198 iowrite32(dma_addr, pd->regs + EVEN_DMA_START);
8ded351a
MM
199 iowrite32(dma_addr + img_width, pd->regs + ODD_DMA_START);
200 iowrite32(img_width, pd->regs + EVEN_DMA_STRIDE);
201 iowrite32(img_width, pd->regs + ODD_DMA_STRIDE);
d42bffb8
MM
202 /* enable interrupts, clear all irq flags */
203 iowrite32(FLD_START_EN | FLD_END_ODD_EN | FLD_START |
204 FLD_END_EVEN | FLD_END_ODD, pd->regs + INT_CSR);
205 iowrite32(FIFO_EN | SRST | FLD_CRPT_ODD | FLD_CRPT_EVEN |
206 FLD_DN_ODD | FLD_DN_EVEN | CAP_CONT_EVEN | CAP_CONT_ODD,
207 pd->regs + CSR1);
208 wait_i2c_reg(pd->regs);
209 write_i2c_reg(pd->regs, CONFIG, pd->config);
210 write_i2c_reg(pd->regs, EVEN_CSR, CSR_ERROR | CSR_DONE);
211 write_i2c_reg(pd->regs, ODD_CSR, CSR_ERROR | CSR_DONE);
212
213 /* start the board */
214 write_i2c_reg(pd->regs, CSR2, pd->csr2 | BUSY_EVEN | BUSY_ODD);
215 return 0; /* success */
216}
217
8ded351a
MM
218/*
219 * driver-specific callbacks (vb2_ops)
220 */
d42bffb8 221static int
527f18be
DC
222dt3155_queue_setup(struct vb2_queue *q, const struct v4l2_format *fmt,
223 unsigned int *num_buffers, unsigned int *num_planes,
224 unsigned int sizes[], void *alloc_ctxs[])
225
8ded351a
MM
226{
227 struct dt3155_priv *pd = vb2_get_drv_priv(q);
228 void *ret;
229
230 if (*num_buffers == 0)
231 *num_buffers = 1;
232 *num_planes = 1;
233 sizes[0] = img_width * img_height;
234 if (pd->q->alloc_ctx[0])
235 return 0;
236 ret = vb2_dma_contig_init_ctx(&pd->pdev->dev);
237 if (IS_ERR(ret))
238 return PTR_ERR(ret);
239 pd->q->alloc_ctx[0] = ret;
240 return 0;
241}
242
243static void
244dt3155_wait_prepare(struct vb2_queue *q)
d42bffb8 245{
8ded351a 246 struct dt3155_priv *pd = vb2_get_drv_priv(q);
d42bffb8 247
8ded351a
MM
248 mutex_unlock(pd->vdev->lock);
249}
d42bffb8 250
8ded351a
MM
251static void
252dt3155_wait_finish(struct vb2_queue *q)
253{
254 struct dt3155_priv *pd = vb2_get_drv_priv(q);
255
256 mutex_lock(pd->vdev->lock);
d42bffb8
MM
257}
258
d42bffb8 259static int
8ded351a 260dt3155_buf_prepare(struct vb2_buffer *vb)
d42bffb8 261{
8ded351a 262 vb2_set_plane_payload(vb, 0, img_width * img_height);
d42bffb8
MM
263 return 0;
264}
265
8ded351a
MM
266static int
267dt3155_stop_streaming(struct vb2_queue *q)
d42bffb8 268{
8ded351a
MM
269 struct dt3155_priv *pd = vb2_get_drv_priv(q);
270 struct vb2_buffer *vb;
271
272 spin_lock_irq(&pd->lock);
273 while (!list_empty(&pd->dmaq)) {
274 vb = list_first_entry(&pd->dmaq, typeof(*vb), done_entry);
275 list_del(&vb->done_entry);
276 vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
277 }
278 spin_unlock_irq(&pd->lock);
279 msleep(45); /* irq hendler will stop the hardware */
280 return 0;
d42bffb8
MM
281}
282
d42bffb8 283static void
8ded351a 284dt3155_buf_queue(struct vb2_buffer *vb)
d42bffb8 285{
8ded351a
MM
286 struct dt3155_priv *pd = vb2_get_drv_priv(vb->vb2_queue);
287
288 /* pd->q->streaming = 1 when dt3155_buf_queue() is invoked */
289 spin_lock_irq(&pd->lock);
290 if (pd->curr_buf)
291 list_add_tail(&vb->done_entry, &pd->dmaq);
292 else {
293 pd->curr_buf = vb;
294 dt3155_start_acq(pd);
295 }
296 spin_unlock_irq(&pd->lock);
d42bffb8 297}
8ded351a
MM
298/*
299 * end driver-specific callbacks
300 */
d42bffb8 301
8ded351a
MM
302const struct vb2_ops q_ops = {
303 .queue_setup = dt3155_queue_setup,
304 .wait_prepare = dt3155_wait_prepare,
305 .wait_finish = dt3155_wait_finish,
d42bffb8 306 .buf_prepare = dt3155_buf_prepare,
8ded351a 307 .stop_streaming = dt3155_stop_streaming,
d42bffb8 308 .buf_queue = dt3155_buf_queue,
d42bffb8
MM
309};
310
311static irqreturn_t
312dt3155_irq_handler_even(int irq, void *dev_id)
313{
314 struct dt3155_priv *ipd = dev_id;
8ded351a 315 struct vb2_buffer *ivb;
d42bffb8
MM
316 dma_addr_t dma_addr;
317 u32 tmp;
318
319 tmp = ioread32(ipd->regs + INT_CSR) & (FLD_START | FLD_END_ODD);
320 if (!tmp)
321 return IRQ_NONE; /* not our irq */
322 if ((tmp & FLD_START) && !(tmp & FLD_END_ODD)) {
323 iowrite32(FLD_START_EN | FLD_END_ODD_EN | FLD_START,
324 ipd->regs + INT_CSR);
325 ipd->field_count++;
326 return IRQ_HANDLED; /* start of field irq */
327 }
c94a2e47 328 if ((tmp & FLD_START) && (tmp & FLD_END_ODD))
5ba321cf 329 ipd->stats.start_before_end++;
d42bffb8
MM
330 /* check for corrupted fields */
331/* write_i2c_reg(ipd->regs, EVEN_CSR, CSR_ERROR | CSR_DONE); */
332/* write_i2c_reg(ipd->regs, ODD_CSR, CSR_ERROR | CSR_DONE); */
333 tmp = ioread32(ipd->regs + CSR1) & (FLD_CRPT_EVEN | FLD_CRPT_ODD);
334 if (tmp) {
c94a2e47 335 ipd->stats.corrupted_fields++;
d42bffb8
MM
336 iowrite32(FIFO_EN | SRST | FLD_CRPT_ODD | FLD_CRPT_EVEN |
337 FLD_DN_ODD | FLD_DN_EVEN |
338 CAP_CONT_EVEN | CAP_CONT_ODD,
339 ipd->regs + CSR1);
340 mmiowb();
341 }
342
343 spin_lock(&ipd->lock);
8ded351a 344 if (ipd->curr_buf) {
0dcb953a 345 v4l2_get_timestamp(&ipd->curr_buf->v4l2_buf.timestamp);
8ded351a
MM
346 ipd->curr_buf->v4l2_buf.sequence = (ipd->field_count) >> 1;
347 vb2_buffer_done(ipd->curr_buf, VB2_BUF_STATE_DONE);
348 }
349
350 if (!ipd->q->streaming || list_empty(&ipd->dmaq))
d42bffb8 351 goto stop_dma;
8ded351a
MM
352 ivb = list_first_entry(&ipd->dmaq, typeof(*ivb), done_entry);
353 list_del(&ivb->done_entry);
354 ipd->curr_buf = ivb;
1f28291c 355 dma_addr = vb2_dma_contig_plane_dma_addr(ivb, 0);
d42bffb8 356 iowrite32(dma_addr, ipd->regs + EVEN_DMA_START);
8ded351a
MM
357 iowrite32(dma_addr + img_width, ipd->regs + ODD_DMA_START);
358 iowrite32(img_width, ipd->regs + EVEN_DMA_STRIDE);
359 iowrite32(img_width, ipd->regs + ODD_DMA_STRIDE);
d42bffb8
MM
360 mmiowb();
361 /* enable interrupts, clear all irq flags */
362 iowrite32(FLD_START_EN | FLD_END_ODD_EN | FLD_START |
363 FLD_END_EVEN | FLD_END_ODD, ipd->regs + INT_CSR);
364 spin_unlock(&ipd->lock);
365 return IRQ_HANDLED;
366
367stop_dma:
368 ipd->curr_buf = NULL;
369 /* stop the board */
370 write_i2c_reg_nowait(ipd->regs, CSR2, ipd->csr2);
8ded351a
MM
371 iowrite32(FIFO_EN | SRST | FLD_CRPT_ODD | FLD_CRPT_EVEN |
372 FLD_DN_ODD | FLD_DN_EVEN, ipd->regs + CSR1);
d42bffb8
MM
373 /* disable interrupts, clear all irq flags */
374 iowrite32(FLD_START | FLD_END_EVEN | FLD_END_ODD, ipd->regs + INT_CSR);
375 spin_unlock(&ipd->lock);
376 return IRQ_HANDLED;
377}
378
d42bffb8
MM
379static int
380dt3155_open(struct file *filp)
381{
382 int ret = 0;
383 struct dt3155_priv *pd = video_drvdata(filp);
384
0d0c1596
HV
385 if (mutex_lock_interruptible(&pd->mux))
386 return -ERESTARTSYS;
d42bffb8 387 if (!pd->users) {
8ded351a
MM
388 pd->q = kzalloc(sizeof(*pd->q), GFP_KERNEL);
389 if (!pd->q) {
d42bffb8
MM
390 ret = -ENOMEM;
391 goto err_alloc_queue;
392 }
8ded351a 393 pd->q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
0dcb953a 394 pd->q->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
8ded351a
MM
395 pd->q->io_modes = VB2_READ | VB2_MMAP;
396 pd->q->ops = &q_ops;
397 pd->q->mem_ops = &vb2_dma_contig_memops;
398 pd->q->drv_priv = pd;
399 pd->curr_buf = NULL;
400 pd->field_count = 0;
067d8513
MCC
401 ret = vb2_queue_init(pd->q);
402 if (ret < 0)
228b791b 403 goto err_request_irq;
8ded351a
MM
404 INIT_LIST_HEAD(&pd->dmaq);
405 spin_lock_init(&pd->lock);
d42bffb8
MM
406 /* disable all irqs, clear all irq flags */
407 iowrite32(FLD_START | FLD_END_EVEN | FLD_END_ODD,
408 pd->regs + INT_CSR);
17078647 409 ret = request_irq(pd->pdev->irq, dt3155_irq_handler_even,
d42bffb8 410 IRQF_SHARED, DT3155_NAME, pd);
c94a2e47 411 if (ret)
d42bffb8 412 goto err_request_irq;
d42bffb8
MM
413 }
414 pd->users++;
228b791b 415 mutex_unlock(&pd->mux);
8ded351a 416 return 0; /* success */
d42bffb8 417err_request_irq:
8ded351a
MM
418 kfree(pd->q);
419 pd->q = NULL;
d42bffb8 420err_alloc_queue:
0d0c1596 421 mutex_unlock(&pd->mux);
d42bffb8
MM
422 return ret;
423}
424
425static int
426dt3155_release(struct file *filp)
427{
428 struct dt3155_priv *pd = video_drvdata(filp);
d42bffb8 429
0d0c1596 430 mutex_lock(&pd->mux);
d42bffb8
MM
431 pd->users--;
432 BUG_ON(pd->users < 0);
d42bffb8 433 if (!pd->users) {
8ded351a 434 vb2_queue_release(pd->q);
d42bffb8 435 free_irq(pd->pdev->irq, pd);
8ded351a
MM
436 if (pd->q->alloc_ctx[0])
437 vb2_dma_contig_cleanup_ctx(pd->q->alloc_ctx[0]);
438 kfree(pd->q);
439 pd->q = NULL;
d42bffb8 440 }
0d0c1596 441 mutex_unlock(&pd->mux);
8ded351a 442 return 0;
d42bffb8
MM
443}
444
445static ssize_t
446dt3155_read(struct file *filp, char __user *user, size_t size, loff_t *loff)
447{
448 struct dt3155_priv *pd = video_drvdata(filp);
0d0c1596 449 ssize_t res;
8ded351a 450
0d0c1596
HV
451 if (mutex_lock_interruptible(&pd->mux))
452 return -ERESTARTSYS;
453 res = vb2_read(pd->q, user, size, loff, filp->f_flags & O_NONBLOCK);
454 mutex_unlock(&pd->mux);
455 return res;
d42bffb8
MM
456}
457
458static unsigned int
459dt3155_poll(struct file *filp, struct poll_table_struct *polltbl)
460{
461 struct dt3155_priv *pd = video_drvdata(filp);
0d0c1596 462 unsigned int res;
d42bffb8 463
0d0c1596
HV
464 mutex_lock(&pd->mux);
465 res = vb2_poll(pd->q, filp, polltbl);
466 mutex_unlock(&pd->mux);
467 return res;
d42bffb8
MM
468}
469
470static int
471dt3155_mmap(struct file *filp, struct vm_area_struct *vma)
472{
473 struct dt3155_priv *pd = video_drvdata(filp);
0d0c1596 474 int res;
d42bffb8 475
0d0c1596
HV
476 if (mutex_lock_interruptible(&pd->mux))
477 return -ERESTARTSYS;
478 res = vb2_mmap(pd->q, vma);
479 mutex_unlock(&pd->mux);
480 return res;
d42bffb8
MM
481}
482
483static const struct v4l2_file_operations dt3155_fops = {
484 .owner = THIS_MODULE,
485 .open = dt3155_open,
486 .release = dt3155_release,
487 .read = dt3155_read,
488 .poll = dt3155_poll,
489 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
490 .mmap = dt3155_mmap,
491};
492
493static int
494dt3155_ioc_streamon(struct file *filp, void *p, enum v4l2_buf_type type)
495{
496 struct dt3155_priv *pd = video_drvdata(filp);
8ded351a
MM
497
498 return vb2_streamon(pd->q, type);
d42bffb8
MM
499}
500
501static int
502dt3155_ioc_streamoff(struct file *filp, void *p, enum v4l2_buf_type type)
503{
504 struct dt3155_priv *pd = video_drvdata(filp);
8ded351a
MM
505
506 return vb2_streamoff(pd->q, type);
d42bffb8
MM
507}
508
509static int
510dt3155_ioc_querycap(struct file *filp, void *p, struct v4l2_capability *cap)
511{
512 struct dt3155_priv *pd = video_drvdata(filp);
513
514 strcpy(cap->driver, DT3155_NAME);
515 strcpy(cap->card, DT3155_NAME " frame grabber");
516 sprintf(cap->bus_info, "PCI:%s", pci_name(pd->pdev));
517 cap->version =
518 KERNEL_VERSION(DT3155_VER_MAJ, DT3155_VER_MIN, DT3155_VER_EXT);
519 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
8ded351a 520 DT3155_CAPTURE_METHOD;
d42bffb8
MM
521 return 0;
522}
523
524static int
525dt3155_ioc_enum_fmt_vid_cap(struct file *filp, void *p, struct v4l2_fmtdesc *f)
526{
527 if (f->index >= NUM_OF_FORMATS)
528 return -EINVAL;
529 *f = frame_std[f->index];
530 return 0;
531}
532
533static int
534dt3155_ioc_g_fmt_vid_cap(struct file *filp, void *p, struct v4l2_format *f)
535{
536 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
537 return -EINVAL;
538 f->fmt.pix.width = img_width;
539 f->fmt.pix.height = img_height;
540 f->fmt.pix.pixelformat = V4L2_PIX_FMT_GREY;
541 f->fmt.pix.field = V4L2_FIELD_NONE;
542 f->fmt.pix.bytesperline = f->fmt.pix.width;
543 f->fmt.pix.sizeimage = f->fmt.pix.width * f->fmt.pix.height;
544 f->fmt.pix.colorspace = 0;
545 f->fmt.pix.priv = 0;
546 return 0;
547}
548
549static int
550dt3155_ioc_try_fmt_vid_cap(struct file *filp, void *p, struct v4l2_format *f)
551{
552 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
553 return -EINVAL;
554 if (f->fmt.pix.width == img_width &&
555 f->fmt.pix.height == img_height &&
556 f->fmt.pix.pixelformat == V4L2_PIX_FMT_GREY &&
557 f->fmt.pix.field == V4L2_FIELD_NONE &&
558 f->fmt.pix.bytesperline == f->fmt.pix.width &&
559 f->fmt.pix.sizeimage == f->fmt.pix.width * f->fmt.pix.height)
560 return 0;
561 else
562 return -EINVAL;
563}
564
565static int
566dt3155_ioc_s_fmt_vid_cap(struct file *filp, void *p, struct v4l2_format *f)
567{
8ded351a 568 return dt3155_ioc_g_fmt_vid_cap(filp, p, f);
d42bffb8
MM
569}
570
571static int
572dt3155_ioc_reqbufs(struct file *filp, void *p, struct v4l2_requestbuffers *b)
573{
574 struct dt3155_priv *pd = video_drvdata(filp);
d42bffb8 575
8ded351a 576 return vb2_reqbufs(pd->q, b);
d42bffb8
MM
577}
578
579static int
580dt3155_ioc_querybuf(struct file *filp, void *p, struct v4l2_buffer *b)
581{
582 struct dt3155_priv *pd = video_drvdata(filp);
d42bffb8 583
8ded351a 584 return vb2_querybuf(pd->q, b);
d42bffb8
MM
585}
586
587static int
588dt3155_ioc_qbuf(struct file *filp, void *p, struct v4l2_buffer *b)
589{
590 struct dt3155_priv *pd = video_drvdata(filp);
d42bffb8 591
8ded351a 592 return vb2_qbuf(pd->q, b);
d42bffb8
MM
593}
594
595static int
596dt3155_ioc_dqbuf(struct file *filp, void *p, struct v4l2_buffer *b)
597{
598 struct dt3155_priv *pd = video_drvdata(filp);
d42bffb8 599
8ded351a 600 return vb2_dqbuf(pd->q, b, filp->f_flags & O_NONBLOCK);
d42bffb8
MM
601}
602
603static int
604dt3155_ioc_querystd(struct file *filp, void *p, v4l2_std_id *norm)
605{
606 *norm = DT3155_CURRENT_NORM;
607 return 0;
608}
609
610static int
611dt3155_ioc_g_std(struct file *filp, void *p, v4l2_std_id *norm)
612{
613 *norm = DT3155_CURRENT_NORM;
614 return 0;
615}
616
617static int
314527ac 618dt3155_ioc_s_std(struct file *filp, void *p, v4l2_std_id norm)
d42bffb8 619{
314527ac 620 if (norm & DT3155_CURRENT_NORM)
d42bffb8
MM
621 return 0;
622 return -EINVAL;
623}
624
625static int
626dt3155_ioc_enum_input(struct file *filp, void *p, struct v4l2_input *input)
627{
628 if (input->index)
629 return -EINVAL;
630 strcpy(input->name, "Coax in");
631 input->type = V4L2_INPUT_TYPE_CAMERA;
fdd2d934
MM
632 /*
633 * FIXME: input->std = 0 according to v4l2 API
634 * VIDIOC_G_STD, VIDIOC_S_STD, VIDIOC_QUERYSTD and VIDIOC_ENUMSTD
635 * should return -EINVAL
636 */
637 input->std = DT3155_CURRENT_NORM;
d42bffb8
MM
638 input->status = 0;/* FIXME: add sync detection & V4L2_IN_ST_NO_H_LOCK */
639 return 0;
640}
641
642static int
643dt3155_ioc_g_input(struct file *filp, void *p, unsigned int *i)
644{
645 *i = 0;
646 return 0;
647}
648
649static int
650dt3155_ioc_s_input(struct file *filp, void *p, unsigned int i)
651{
652 if (i)
653 return -EINVAL;
654 return 0;
655}
656
657static int
658dt3155_ioc_g_parm(struct file *filp, void *p, struct v4l2_streamparm *parms)
659{
660 if (parms->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
661 return -EINVAL;
662 parms->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
663 parms->parm.capture.capturemode = 0;
664 parms->parm.capture.timeperframe.numerator = 1001;
665 parms->parm.capture.timeperframe.denominator = frames_per_sec * 1000;
666 parms->parm.capture.extendedmode = 0;
fdd2d934 667 parms->parm.capture.readbuffers = 1; /* FIXME: 2 buffers? */
d42bffb8
MM
668 return 0;
669}
670
671static int
672dt3155_ioc_s_parm(struct file *filp, void *p, struct v4l2_streamparm *parms)
673{
674 if (parms->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
675 return -EINVAL;
676 parms->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
677 parms->parm.capture.capturemode = 0;
678 parms->parm.capture.timeperframe.numerator = 1001;
679 parms->parm.capture.timeperframe.denominator = frames_per_sec * 1000;
680 parms->parm.capture.extendedmode = 0;
fdd2d934 681 parms->parm.capture.readbuffers = 1; /* FIXME: 2 buffers? */
d42bffb8
MM
682 return 0;
683}
684
685static const struct v4l2_ioctl_ops dt3155_ioctl_ops = {
686 .vidioc_streamon = dt3155_ioc_streamon,
687 .vidioc_streamoff = dt3155_ioc_streamoff,
688 .vidioc_querycap = dt3155_ioc_querycap,
689/*
690 .vidioc_g_priority = dt3155_ioc_g_priority,
691 .vidioc_s_priority = dt3155_ioc_s_priority,
692*/
693 .vidioc_enum_fmt_vid_cap = dt3155_ioc_enum_fmt_vid_cap,
694 .vidioc_try_fmt_vid_cap = dt3155_ioc_try_fmt_vid_cap,
695 .vidioc_g_fmt_vid_cap = dt3155_ioc_g_fmt_vid_cap,
696 .vidioc_s_fmt_vid_cap = dt3155_ioc_s_fmt_vid_cap,
697 .vidioc_reqbufs = dt3155_ioc_reqbufs,
698 .vidioc_querybuf = dt3155_ioc_querybuf,
699 .vidioc_qbuf = dt3155_ioc_qbuf,
700 .vidioc_dqbuf = dt3155_ioc_dqbuf,
701 .vidioc_querystd = dt3155_ioc_querystd,
702 .vidioc_g_std = dt3155_ioc_g_std,
703 .vidioc_s_std = dt3155_ioc_s_std,
704 .vidioc_enum_input = dt3155_ioc_enum_input,
705 .vidioc_g_input = dt3155_ioc_g_input,
706 .vidioc_s_input = dt3155_ioc_s_input,
707/*
708 .vidioc_queryctrl = dt3155_ioc_queryctrl,
709 .vidioc_g_ctrl = dt3155_ioc_g_ctrl,
710 .vidioc_s_ctrl = dt3155_ioc_s_ctrl,
711 .vidioc_querymenu = dt3155_ioc_querymenu,
712 .vidioc_g_ext_ctrls = dt3155_ioc_g_ext_ctrls,
713 .vidioc_s_ext_ctrls = dt3155_ioc_s_ext_ctrls,
714*/
715 .vidioc_g_parm = dt3155_ioc_g_parm,
716 .vidioc_s_parm = dt3155_ioc_s_parm,
717/*
718 .vidioc_cropcap = dt3155_ioc_cropcap,
719 .vidioc_g_crop = dt3155_ioc_g_crop,
720 .vidioc_s_crop = dt3155_ioc_s_crop,
721 .vidioc_enum_framesizes = dt3155_ioc_enum_framesizes,
722 .vidioc_enum_frameintervals = dt3155_ioc_enum_frameintervals,
d42bffb8
MM
723*/
724};
725
2a91a6d1 726static int
8ded351a 727dt3155_init_board(struct pci_dev *pdev)
d42bffb8 728{
8ded351a 729 struct dt3155_priv *pd = pci_get_drvdata(pdev);
a57941c2
MM
730 void *buf_cpu;
731 dma_addr_t buf_dma;
d42bffb8
MM
732 int i;
733 u8 tmp;
a57941c2 734
8ded351a 735 pci_set_master(pdev); /* dt3155 needs it */
d42bffb8
MM
736
737 /* resetting the adapter */
738 iowrite32(FLD_CRPT_ODD | FLD_CRPT_EVEN | FLD_DN_ODD | FLD_DN_EVEN,
739 pd->regs + CSR1);
740 mmiowb();
8ded351a 741 msleep(20);
d42bffb8
MM
742
743 /* initializing adaper registers */
744 iowrite32(FIFO_EN | SRST, pd->regs + CSR1);
745 mmiowb();
746 iowrite32(0xEEEEEE01, pd->regs + EVEN_PIXEL_FMT);
747 iowrite32(0xEEEEEE01, pd->regs + ODD_PIXEL_FMT);
748 iowrite32(0x00000020, pd->regs + FIFO_TRIGER);
749 iowrite32(0x00000103, pd->regs + XFER_MODE);
750 iowrite32(0, pd->regs + RETRY_WAIT_CNT);
751 iowrite32(0, pd->regs + INT_CSR);
752 iowrite32(1, pd->regs + EVEN_FLD_MASK);
753 iowrite32(1, pd->regs + ODD_FLD_MASK);
754 iowrite32(0, pd->regs + MASK_LENGTH);
755 iowrite32(0x0005007C, pd->regs + FIFO_FLAG_CNT);
756 iowrite32(0x01010101, pd->regs + IIC_CLK_DUR);
757 mmiowb();
758
759 /* verifying that we have a DT3155 board (not just a SAA7116 chip) */
760 read_i2c_reg(pd->regs, DT_ID, &tmp);
761 if (tmp != DT3155_ID)
762 return -ENODEV;
763
764 /* initialize AD LUT */
765 write_i2c_reg(pd->regs, AD_ADDR, 0);
766 for (i = 0; i < 256; i++)
767 write_i2c_reg(pd->regs, AD_LUT, i);
768
769 /* initialize ADC references */
770 /* FIXME: pos_ref & neg_ref depend on VT_50HZ */
771 write_i2c_reg(pd->regs, AD_ADDR, AD_CMD_REG);
772 write_i2c_reg(pd->regs, AD_CMD, VIDEO_CNL_1 | SYNC_CNL_1 | SYNC_LVL_3);
773 write_i2c_reg(pd->regs, AD_ADDR, AD_POS_REF);
774 write_i2c_reg(pd->regs, AD_CMD, 34);
775 write_i2c_reg(pd->regs, AD_ADDR, AD_NEG_REF);
776 write_i2c_reg(pd->regs, AD_CMD, 0);
777
778 /* initialize PM LUT */
779 write_i2c_reg(pd->regs, CONFIG, pd->config | PM_LUT_PGM);
780 for (i = 0; i < 256; i++) {
781 write_i2c_reg(pd->regs, PM_LUT_ADDR, i);
782 write_i2c_reg(pd->regs, PM_LUT_DATA, i);
783 }
784 write_i2c_reg(pd->regs, CONFIG, pd->config | PM_LUT_PGM | PM_LUT_SEL);
785 for (i = 0; i < 256; i++) {
786 write_i2c_reg(pd->regs, PM_LUT_ADDR, i);
787 write_i2c_reg(pd->regs, PM_LUT_DATA, i);
788 }
789 write_i2c_reg(pd->regs, CONFIG, pd->config); /* ACQ_MODE_EVEN */
790
6dc8f382 791 /* select channel 1 for input and set sync level */
d42bffb8
MM
792 write_i2c_reg(pd->regs, AD_ADDR, AD_CMD_REG);
793 write_i2c_reg(pd->regs, AD_CMD, VIDEO_CNL_1 | SYNC_CNL_1 | SYNC_LVL_3);
794
a57941c2 795 /* allocate memory, and initialize the DMA machine */
8ded351a 796 buf_cpu = dma_alloc_coherent(&pdev->dev, DT3155_BUF_SIZE, &buf_dma,
a57941c2 797 GFP_KERNEL);
c94a2e47 798 if (!buf_cpu)
d42bffb8 799 return -ENOMEM;
a57941c2
MM
800 iowrite32(buf_dma, pd->regs + EVEN_DMA_START);
801 iowrite32(buf_dma, pd->regs + ODD_DMA_START);
d42bffb8
MM
802 iowrite32(0, pd->regs + EVEN_DMA_STRIDE);
803 iowrite32(0, pd->regs + ODD_DMA_STRIDE);
804
805 /* Perform a pseudo even field acquire */
806 iowrite32(FIFO_EN | SRST | CAP_CONT_ODD, pd->regs + CSR1);
807 write_i2c_reg(pd->regs, CSR2, pd->csr2 | SYNC_SNTL);
808 write_i2c_reg(pd->regs, CONFIG, pd->config);
809 write_i2c_reg(pd->regs, EVEN_CSR, CSR_SNGL);
810 write_i2c_reg(pd->regs, CSR2, pd->csr2 | BUSY_EVEN | SYNC_SNTL);
811 msleep(100);
812 read_i2c_reg(pd->regs, CSR2, &tmp);
813 write_i2c_reg(pd->regs, EVEN_CSR, CSR_ERROR | CSR_SNGL | CSR_DONE);
814 write_i2c_reg(pd->regs, ODD_CSR, CSR_ERROR | CSR_SNGL | CSR_DONE);
815 write_i2c_reg(pd->regs, CSR2, pd->csr2);
816 iowrite32(FIFO_EN | SRST | FLD_DN_EVEN | FLD_DN_ODD, pd->regs + CSR1);
817
a57941c2 818 /* deallocate memory */
8ded351a 819 dma_free_coherent(&pdev->dev, DT3155_BUF_SIZE, buf_cpu, buf_dma);
c94a2e47 820 if (tmp & BUSY_EVEN)
d42bffb8 821 return -EIO;
d42bffb8
MM
822 return 0;
823}
824
825static struct video_device dt3155_vdev = {
826 .name = DT3155_NAME,
827 .fops = &dt3155_fops,
828 .ioctl_ops = &dt3155_ioctl_ops,
829 .minor = -1,
830 .release = video_device_release,
fdd2d934 831 .tvnorms = DT3155_CURRENT_NORM,
d42bffb8
MM
832};
833
a57941c2
MM
834/* same as in drivers/base/dma-coherent.c */
835struct dma_coherent_mem {
836 void *virt_base;
8ded351a 837 dma_addr_t device_base;
a57941c2
MM
838 int size;
839 int flags;
840 unsigned long *bitmap;
841};
842
2a91a6d1 843static int
a57941c2
MM
844dt3155_alloc_coherent(struct device *dev, size_t size, int flags)
845{
f932e3a3
MM
846 struct dma_coherent_mem *mem;
847 dma_addr_t dev_base;
a57941c2
MM
848 int pages = size >> PAGE_SHIFT;
849 int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long);
850
851 if ((flags & DMA_MEMORY_MAP) == 0)
852 goto out;
853 if (!size)
854 goto out;
855 if (dev->dma_mem)
856 goto out;
857
f932e3a3
MM
858 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
859 if (!mem)
a57941c2 860 goto out;
f932e3a3
MM
861 mem->virt_base = dma_alloc_coherent(dev, size, &dev_base,
862 DT3155_COH_FLAGS);
863 if (!mem->virt_base)
864 goto err_alloc_coherent;
865 mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
866 if (!mem->bitmap)
a57941c2
MM
867 goto err_bitmap;
868
f932e3a3
MM
869 /* coherent_dma_mask is already set to 32 bits */
870 mem->device_base = dev_base;
871 mem->size = pages;
872 mem->flags = flags;
873 dev->dma_mem = mem;
a57941c2
MM
874 return DMA_MEMORY_MAP;
875
a57941c2 876err_bitmap:
f932e3a3
MM
877 dma_free_coherent(dev, size, mem->virt_base, dev_base);
878err_alloc_coherent:
879 kfree(mem);
a57941c2
MM
880out:
881 return 0;
882}
883
4ce7986d 884static void
a57941c2
MM
885dt3155_free_coherent(struct device *dev)
886{
887 struct dma_coherent_mem *mem = dev->dma_mem;
888
889 if (!mem)
890 return;
891 dev->dma_mem = NULL;
892 dma_free_coherent(dev, mem->size << PAGE_SHIFT,
893 mem->virt_base, mem->device_base);
894 kfree(mem->bitmap);
895 kfree(mem);
896}
897
2a91a6d1 898static int
8ded351a 899dt3155_probe(struct pci_dev *pdev, const struct pci_device_id *id)
d42bffb8 900{
a57941c2 901 int err;
d42bffb8
MM
902 struct dt3155_priv *pd;
903
8ded351a 904 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
c94a2e47 905 if (err)
d42bffb8 906 return -ENODEV;
8ded351a 907 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
c94a2e47 908 if (err)
a57941c2 909 return -ENODEV;
d42bffb8 910 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
c94a2e47 911 if (!pd)
d42bffb8 912 return -ENOMEM;
d42bffb8 913 pd->vdev = video_device_alloc();
c94a2e47 914 if (!pd->vdev)
d42bffb8 915 goto err_video_device_alloc;
d42bffb8 916 *pd->vdev = dt3155_vdev;
8ded351a 917 pci_set_drvdata(pdev, pd); /* for use in dt3155_remove() */
a57941c2 918 video_set_drvdata(pd->vdev, pd); /* for use in video_fops */
d42bffb8 919 pd->users = 0;
8ded351a 920 pd->pdev = pdev;
d42bffb8 921 INIT_LIST_HEAD(&pd->dmaq);
d42bffb8 922 mutex_init(&pd->mux);
8ded351a
MM
923 pd->vdev->lock = &pd->mux; /* for locking v4l2_file_operations */
924 spin_lock_init(&pd->lock);
d42bffb8
MM
925 pd->csr2 = csr2_init;
926 pd->config = config_init;
8ded351a 927 err = pci_enable_device(pdev);
c94a2e47 928 if (err)
d42bffb8 929 goto err_enable_dev;
8ded351a 930 err = pci_request_region(pdev, 0, pci_name(pdev));
d42bffb8
MM
931 if (err)
932 goto err_req_region;
8ded351a 933 pd->regs = pci_iomap(pdev, 0, pci_resource_len(pd->pdev, 0));
aecf33db 934 if (!pd->regs) {
d42bffb8 935 err = -ENOMEM;
d42bffb8 936 goto err_pci_iomap;
aecf33db 937 }
8ded351a 938 err = dt3155_init_board(pdev);
c94a2e47 939 if (err)
d42bffb8 940 goto err_init_board;
d42bffb8 941 err = video_register_device(pd->vdev, VFL_TYPE_GRABBER, -1);
a57941c2 942 if (err)
c94a2e47
HS
943 goto err_init_board;
944 if (dt3155_alloc_coherent(&pdev->dev, DT3155_CHUNK_SIZE,
945 DMA_MEMORY_MAP))
946 dev_info(&pdev->dev, "preallocated 8 buffers\n");
947 dev_info(&pdev->dev, "/dev/video%i is ready\n", pd->vdev->minor);
d42bffb8
MM
948 return 0; /* success */
949
950err_init_board:
8ded351a 951 pci_iounmap(pdev, pd->regs);
d42bffb8 952err_pci_iomap:
8ded351a 953 pci_release_region(pdev, 0);
d42bffb8 954err_req_region:
8ded351a 955 pci_disable_device(pdev);
d42bffb8
MM
956err_enable_dev:
957 video_device_release(pd->vdev);
958err_video_device_alloc:
959 kfree(pd);
960 return err;
961}
962
4ce7986d 963static void
8ded351a 964dt3155_remove(struct pci_dev *pdev)
d42bffb8 965{
8ded351a 966 struct dt3155_priv *pd = pci_get_drvdata(pdev);
d42bffb8 967
8ded351a 968 dt3155_free_coherent(&pdev->dev);
d42bffb8 969 video_unregister_device(pd->vdev);
8ded351a
MM
970 pci_iounmap(pdev, pd->regs);
971 pci_release_region(pdev, 0);
972 pci_disable_device(pdev);
d42bffb8
MM
973 /*
974 * video_device_release() is invoked automatically
975 * see: struct video_device dt3155_vdev
976 */
977 kfree(pd);
978}
979
980static DEFINE_PCI_DEVICE_TABLE(pci_ids) = {
981 { PCI_DEVICE(DT3155_VENDOR_ID, DT3155_DEVICE_ID) },
982 { 0, /* zero marks the end */ },
983};
984MODULE_DEVICE_TABLE(pci, pci_ids);
985
986static struct pci_driver pci_driver = {
987 .name = DT3155_NAME,
988 .id_table = pci_ids,
989 .probe = dt3155_probe,
79fc8d89 990 .remove = dt3155_remove,
d42bffb8
MM
991};
992
1a3acd3d 993module_pci_driver(pci_driver);
d42bffb8
MM
994
995MODULE_DESCRIPTION("video4linux pci-driver for dt3155 frame grabber");
996MODULE_AUTHOR("Marin Mitov <mitov@issp.bas.bg>");
997MODULE_VERSION(DT3155_VERSION);
998MODULE_LICENSE("GPL");
This page took 0.306947 seconds and 5 git commands to generate.