tty/serial: atmel_serial: whitespace and braces modifications
[zen-stable.git] / drivers / staging / dt3155v4l / dt3155v4l.c
blob05aa41cf875bb9df300bf071c2202fbb9a45d46b
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 ***************************************************************************/
21 #include <linux/version.h>
22 #include <linux/stringify.h>
23 #include <linux/delay.h>
24 #include <linux/kthread.h>
25 #include <linux/slab.h>
26 #include <media/v4l2-dev.h>
27 #include <media/v4l2-ioctl.h>
28 #include <media/videobuf2-dma-contig.h>
30 #include "dt3155v4l.h"
32 #define DT3155_VENDOR_ID 0x8086
33 #define DT3155_DEVICE_ID 0x1223
35 /* DT3155_CHUNK_SIZE is 4M (2^22) 8 full size buffers */
36 #define DT3155_CHUNK_SIZE (1U << 22)
38 #define DT3155_COH_FLAGS (GFP_KERNEL | GFP_DMA32 | __GFP_COLD | __GFP_NOWARN)
40 #define DT3155_BUF_SIZE (768 * 576)
42 #ifdef CONFIG_DT3155_STREAMING
43 #define DT3155_CAPTURE_METHOD V4L2_CAP_STREAMING
44 #else
45 #define DT3155_CAPTURE_METHOD V4L2_CAP_READWRITE
46 #endif
48 /* global initializers (for all boards) */
49 #ifdef CONFIG_DT3155_CCIR
50 static const u8 csr2_init = VT_50HZ;
51 #define DT3155_CURRENT_NORM V4L2_STD_625_50
52 static const unsigned int img_width = 768;
53 static const unsigned int img_height = 576;
54 static const unsigned int frames_per_sec = 25;
55 static const struct v4l2_fmtdesc frame_std[] = {
57 .index = 0,
58 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
59 .flags = 0,
60 .description = "CCIR/50Hz 8 bits gray",
61 .pixelformat = V4L2_PIX_FMT_GREY,
64 #else
65 static const u8 csr2_init = VT_60HZ;
66 #define DT3155_CURRENT_NORM V4L2_STD_525_60
67 static const unsigned int img_width = 640;
68 static const unsigned int img_height = 480;
69 static const unsigned int frames_per_sec = 30;
70 static const struct v4l2_fmtdesc frame_std[] = {
72 .index = 0,
73 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
74 .flags = 0,
75 .description = "RS-170/60Hz 8 bits gray",
76 .pixelformat = V4L2_PIX_FMT_GREY,
79 #endif
81 #define NUM_OF_FORMATS ARRAY_SIZE(frame_std)
83 static u8 config_init = ACQ_MODE_EVEN;
85 /**
86 * read_i2c_reg - reads an internal i2c register
88 * @addr: dt3155 mmio base address
89 * @index: index (internal address) of register to read
90 * @data: pointer to byte the read data will be placed in
92 * returns: zero on success or error code
94 * This function starts reading the specified (by index) register
95 * and busy waits for the process to finish. The result is placed
96 * in a byte pointed by data.
98 static int
99 read_i2c_reg(void __iomem *addr, u8 index, u8 *data)
101 u32 tmp = index;
103 iowrite32((tmp<<17) | IIC_READ, addr + IIC_CSR2);
104 mmiowb();
105 udelay(45); /* wait at least 43 usec for NEW_CYCLE to clear */
106 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE) {
107 /* error: NEW_CYCLE not cleared */
108 printk(KERN_ERR "dt3155: NEW_CYCLE not cleared\n");
109 return -EIO;
111 tmp = ioread32(addr + IIC_CSR1);
112 if (tmp & DIRECT_ABORT) {
113 /* error: DIRECT_ABORT set */
114 printk(KERN_ERR "dt3155: DIRECT_ABORT set\n");
115 /* reset DIRECT_ABORT bit */
116 iowrite32(DIRECT_ABORT, addr + IIC_CSR1);
117 return -EIO;
119 *data = tmp>>24;
120 return 0;
124 * write_i2c_reg - writes to an internal i2c register
126 * @addr: dt3155 mmio base address
127 * @index: index (internal address) of register to read
128 * @data: data to be written
130 * returns: zero on success or error code
132 * This function starts writting the specified (by index) register
133 * and busy waits for the process to finish.
135 static int
136 write_i2c_reg(void __iomem *addr, u8 index, u8 data)
138 u32 tmp = index;
140 iowrite32((tmp<<17) | IIC_WRITE | data, addr + IIC_CSR2);
141 mmiowb();
142 udelay(65); /* wait at least 63 usec for NEW_CYCLE to clear */
143 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE) {
144 /* error: NEW_CYCLE not cleared */
145 printk(KERN_ERR "dt3155: NEW_CYCLE not cleared\n");
146 return -EIO;
148 if (ioread32(addr + IIC_CSR1) & DIRECT_ABORT) {
149 /* error: DIRECT_ABORT set */
150 printk(KERN_ERR "dt3155: DIRECT_ABORT set\n");
151 /* reset DIRECT_ABORT bit */
152 iowrite32(DIRECT_ABORT, addr + IIC_CSR1);
153 return -EIO;
155 return 0;
159 * write_i2c_reg_nowait - writes to an internal i2c register
161 * @addr: dt3155 mmio base address
162 * @index: index (internal address) of register to read
163 * @data: data to be written
165 * This function starts writting the specified (by index) register
166 * and then returns.
168 static void write_i2c_reg_nowait(void __iomem *addr, u8 index, u8 data)
170 u32 tmp = index;
172 iowrite32((tmp<<17) | IIC_WRITE | data, addr + IIC_CSR2);
173 mmiowb();
177 * wait_i2c_reg - waits the read/write to finish
179 * @addr: dt3155 mmio base address
181 * returns: zero on success or error code
183 * This function waits reading/writting to finish.
185 static int wait_i2c_reg(void __iomem *addr)
187 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE)
188 udelay(65); /* wait at least 63 usec for NEW_CYCLE to clear */
189 if (ioread32(addr + IIC_CSR2) & NEW_CYCLE) {
190 /* error: NEW_CYCLE not cleared */
191 printk(KERN_ERR "dt3155: NEW_CYCLE not cleared\n");
192 return -EIO;
194 if (ioread32(addr + IIC_CSR1) & DIRECT_ABORT) {
195 /* error: DIRECT_ABORT set */
196 printk(KERN_ERR "dt3155: DIRECT_ABORT set\n");
197 /* reset DIRECT_ABORT bit */
198 iowrite32(DIRECT_ABORT, addr + IIC_CSR1);
199 return -EIO;
201 return 0;
204 static int
205 dt3155_start_acq(struct dt3155_priv *pd)
207 struct vb2_buffer *vb = pd->curr_buf;
208 dma_addr_t dma_addr;
210 dma_addr = vb2_dma_contig_plane_paddr(vb, 0);
211 iowrite32(dma_addr, pd->regs + EVEN_DMA_START);
212 iowrite32(dma_addr + img_width, pd->regs + ODD_DMA_START);
213 iowrite32(img_width, pd->regs + EVEN_DMA_STRIDE);
214 iowrite32(img_width, pd->regs + ODD_DMA_STRIDE);
215 /* enable interrupts, clear all irq flags */
216 iowrite32(FLD_START_EN | FLD_END_ODD_EN | FLD_START |
217 FLD_END_EVEN | FLD_END_ODD, pd->regs + INT_CSR);
218 iowrite32(FIFO_EN | SRST | FLD_CRPT_ODD | FLD_CRPT_EVEN |
219 FLD_DN_ODD | FLD_DN_EVEN | CAP_CONT_EVEN | CAP_CONT_ODD,
220 pd->regs + CSR1);
221 wait_i2c_reg(pd->regs);
222 write_i2c_reg(pd->regs, CONFIG, pd->config);
223 write_i2c_reg(pd->regs, EVEN_CSR, CSR_ERROR | CSR_DONE);
224 write_i2c_reg(pd->regs, ODD_CSR, CSR_ERROR | CSR_DONE);
226 /* start the board */
227 write_i2c_reg(pd->regs, CSR2, pd->csr2 | BUSY_EVEN | BUSY_ODD);
228 return 0; /* success */
232 * driver-specific callbacks (vb2_ops)
234 static int
235 dt3155_queue_setup(struct vb2_queue *q, unsigned int *num_buffers,
236 unsigned int *num_planes, unsigned long sizes[],
237 void *alloc_ctxs[])
239 struct dt3155_priv *pd = vb2_get_drv_priv(q);
240 void *ret;
242 if (*num_buffers == 0)
243 *num_buffers = 1;
244 *num_planes = 1;
245 sizes[0] = img_width * img_height;
246 if (pd->q->alloc_ctx[0])
247 return 0;
248 ret = vb2_dma_contig_init_ctx(&pd->pdev->dev);
249 if (IS_ERR(ret))
250 return PTR_ERR(ret);
251 pd->q->alloc_ctx[0] = ret;
252 return 0;
255 static void
256 dt3155_wait_prepare(struct vb2_queue *q)
258 struct dt3155_priv *pd = vb2_get_drv_priv(q);
260 mutex_unlock(pd->vdev->lock);
263 static void
264 dt3155_wait_finish(struct vb2_queue *q)
266 struct dt3155_priv *pd = vb2_get_drv_priv(q);
268 mutex_lock(pd->vdev->lock);
271 static int
272 dt3155_buf_prepare(struct vb2_buffer *vb)
274 vb2_set_plane_payload(vb, 0, img_width * img_height);
275 return 0;
278 static int
279 dt3155_start_streaming(struct vb2_queue *q)
281 return 0;
284 static int
285 dt3155_stop_streaming(struct vb2_queue *q)
287 struct dt3155_priv *pd = vb2_get_drv_priv(q);
288 struct vb2_buffer *vb;
290 spin_lock_irq(&pd->lock);
291 while (!list_empty(&pd->dmaq)) {
292 vb = list_first_entry(&pd->dmaq, typeof(*vb), done_entry);
293 list_del(&vb->done_entry);
294 vb2_buffer_done(vb, VB2_BUF_STATE_ERROR);
296 spin_unlock_irq(&pd->lock);
297 msleep(45); /* irq hendler will stop the hardware */
298 return 0;
301 static void
302 dt3155_buf_queue(struct vb2_buffer *vb)
304 struct dt3155_priv *pd = vb2_get_drv_priv(vb->vb2_queue);
306 /* pd->q->streaming = 1 when dt3155_buf_queue() is invoked */
307 spin_lock_irq(&pd->lock);
308 if (pd->curr_buf)
309 list_add_tail(&vb->done_entry, &pd->dmaq);
310 else {
311 pd->curr_buf = vb;
312 dt3155_start_acq(pd);
314 spin_unlock_irq(&pd->lock);
317 * end driver-specific callbacks
320 const struct vb2_ops q_ops = {
321 .queue_setup = dt3155_queue_setup,
322 .wait_prepare = dt3155_wait_prepare,
323 .wait_finish = dt3155_wait_finish,
324 .buf_prepare = dt3155_buf_prepare,
325 .start_streaming = dt3155_start_streaming,
326 .stop_streaming = dt3155_stop_streaming,
327 .buf_queue = dt3155_buf_queue,
330 static irqreturn_t
331 dt3155_irq_handler_even(int irq, void *dev_id)
333 struct dt3155_priv *ipd = dev_id;
334 struct vb2_buffer *ivb;
335 dma_addr_t dma_addr;
336 u32 tmp;
338 tmp = ioread32(ipd->regs + INT_CSR) & (FLD_START | FLD_END_ODD);
339 if (!tmp)
340 return IRQ_NONE; /* not our irq */
341 if ((tmp & FLD_START) && !(tmp & FLD_END_ODD)) {
342 iowrite32(FLD_START_EN | FLD_END_ODD_EN | FLD_START,
343 ipd->regs + INT_CSR);
344 ipd->field_count++;
345 return IRQ_HANDLED; /* start of field irq */
347 if ((tmp & FLD_START) && (tmp & FLD_END_ODD)) {
348 if (!ipd->stats.start_before_end++)
349 printk(KERN_ERR "dt3155: irq: START before END\n");
351 /* check for corrupted fields */
352 /* write_i2c_reg(ipd->regs, EVEN_CSR, CSR_ERROR | CSR_DONE); */
353 /* write_i2c_reg(ipd->regs, ODD_CSR, CSR_ERROR | CSR_DONE); */
354 tmp = ioread32(ipd->regs + CSR1) & (FLD_CRPT_EVEN | FLD_CRPT_ODD);
355 if (tmp) {
356 if (!ipd->stats.corrupted_fields++)
357 printk(KERN_ERR "dt3155: corrupted field %u\n", tmp);
358 iowrite32(FIFO_EN | SRST | FLD_CRPT_ODD | FLD_CRPT_EVEN |
359 FLD_DN_ODD | FLD_DN_EVEN |
360 CAP_CONT_EVEN | CAP_CONT_ODD,
361 ipd->regs + CSR1);
362 mmiowb();
365 spin_lock(&ipd->lock);
366 if (ipd->curr_buf) {
367 do_gettimeofday(&ipd->curr_buf->v4l2_buf.timestamp);
368 ipd->curr_buf->v4l2_buf.sequence = (ipd->field_count) >> 1;
369 vb2_buffer_done(ipd->curr_buf, VB2_BUF_STATE_DONE);
372 if (!ipd->q->streaming || list_empty(&ipd->dmaq))
373 goto stop_dma;
374 ivb = list_first_entry(&ipd->dmaq, typeof(*ivb), done_entry);
375 list_del(&ivb->done_entry);
376 ipd->curr_buf = ivb;
377 dma_addr = vb2_dma_contig_plane_paddr(ivb, 0);
378 iowrite32(dma_addr, ipd->regs + EVEN_DMA_START);
379 iowrite32(dma_addr + img_width, ipd->regs + ODD_DMA_START);
380 iowrite32(img_width, ipd->regs + EVEN_DMA_STRIDE);
381 iowrite32(img_width, ipd->regs + ODD_DMA_STRIDE);
382 mmiowb();
383 /* enable interrupts, clear all irq flags */
384 iowrite32(FLD_START_EN | FLD_END_ODD_EN | FLD_START |
385 FLD_END_EVEN | FLD_END_ODD, ipd->regs + INT_CSR);
386 spin_unlock(&ipd->lock);
387 return IRQ_HANDLED;
389 stop_dma:
390 ipd->curr_buf = NULL;
391 /* stop the board */
392 write_i2c_reg_nowait(ipd->regs, CSR2, ipd->csr2);
393 iowrite32(FIFO_EN | SRST | FLD_CRPT_ODD | FLD_CRPT_EVEN |
394 FLD_DN_ODD | FLD_DN_EVEN, ipd->regs + CSR1);
395 /* disable interrupts, clear all irq flags */
396 iowrite32(FLD_START | FLD_END_EVEN | FLD_END_ODD, ipd->regs + INT_CSR);
397 spin_unlock(&ipd->lock);
398 return IRQ_HANDLED;
401 static int
402 dt3155_open(struct file *filp)
404 int ret = 0;
405 struct dt3155_priv *pd = video_drvdata(filp);
407 printk(KERN_INFO "dt3155: open(): minor: %i, users: %i\n",
408 pd->vdev->minor, pd->users);
410 if (!pd->users) {
411 pd->q = kzalloc(sizeof(*pd->q), GFP_KERNEL);
412 if (!pd->q) {
413 printk(KERN_ERR "dt3155: error: alloc queue\n");
414 ret = -ENOMEM;
415 goto err_alloc_queue;
417 pd->q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
418 pd->q->io_modes = VB2_READ | VB2_MMAP;
419 pd->q->ops = &q_ops;
420 pd->q->mem_ops = &vb2_dma_contig_memops;
421 pd->q->drv_priv = pd;
422 pd->curr_buf = NULL;
423 pd->field_count = 0;
424 vb2_queue_init(pd->q); /* cannot fail */
425 INIT_LIST_HEAD(&pd->dmaq);
426 spin_lock_init(&pd->lock);
427 /* disable all irqs, clear all irq flags */
428 iowrite32(FLD_START | FLD_END_EVEN | FLD_END_ODD,
429 pd->regs + INT_CSR);
430 pd->irq_handler = dt3155_irq_handler_even;
431 ret = request_irq(pd->pdev->irq, pd->irq_handler,
432 IRQF_SHARED, DT3155_NAME, pd);
433 if (ret) {
434 printk(KERN_ERR "dt3155: error: request_irq\n");
435 goto err_request_irq;
438 pd->users++;
439 return 0; /* success */
440 err_request_irq:
441 kfree(pd->q);
442 pd->q = NULL;
443 err_alloc_queue:
444 return ret;
447 static int
448 dt3155_release(struct file *filp)
450 struct dt3155_priv *pd = video_drvdata(filp);
452 printk(KERN_INFO "dt3155: release(): minor: %i, users: %i\n",
453 pd->vdev->minor, pd->users - 1);
455 pd->users--;
456 BUG_ON(pd->users < 0);
457 if (!pd->users) {
458 vb2_queue_release(pd->q);
459 free_irq(pd->pdev->irq, pd);
460 if (pd->q->alloc_ctx[0])
461 vb2_dma_contig_cleanup_ctx(pd->q->alloc_ctx[0]);
462 kfree(pd->q);
463 pd->q = NULL;
465 return 0;
468 static ssize_t
469 dt3155_read(struct file *filp, char __user *user, size_t size, loff_t *loff)
471 struct dt3155_priv *pd = video_drvdata(filp);
473 return vb2_read(pd->q, user, size, loff, filp->f_flags & O_NONBLOCK);
476 static unsigned int
477 dt3155_poll(struct file *filp, struct poll_table_struct *polltbl)
479 struct dt3155_priv *pd = video_drvdata(filp);
481 return vb2_poll(pd->q, filp, polltbl);
484 static int
485 dt3155_mmap(struct file *filp, struct vm_area_struct *vma)
487 struct dt3155_priv *pd = video_drvdata(filp);
489 return vb2_mmap(pd->q, vma);
492 static const struct v4l2_file_operations dt3155_fops = {
493 .owner = THIS_MODULE,
494 .open = dt3155_open,
495 .release = dt3155_release,
496 .read = dt3155_read,
497 .poll = dt3155_poll,
498 .unlocked_ioctl = video_ioctl2, /* V4L2 ioctl handler */
499 .mmap = dt3155_mmap,
502 static int
503 dt3155_ioc_streamon(struct file *filp, void *p, enum v4l2_buf_type type)
505 struct dt3155_priv *pd = video_drvdata(filp);
507 return vb2_streamon(pd->q, type);
510 static int
511 dt3155_ioc_streamoff(struct file *filp, void *p, enum v4l2_buf_type type)
513 struct dt3155_priv *pd = video_drvdata(filp);
515 return vb2_streamoff(pd->q, type);
518 static int
519 dt3155_ioc_querycap(struct file *filp, void *p, struct v4l2_capability *cap)
521 struct dt3155_priv *pd = video_drvdata(filp);
523 strcpy(cap->driver, DT3155_NAME);
524 strcpy(cap->card, DT3155_NAME " frame grabber");
525 sprintf(cap->bus_info, "PCI:%s", pci_name(pd->pdev));
526 cap->version =
527 KERNEL_VERSION(DT3155_VER_MAJ, DT3155_VER_MIN, DT3155_VER_EXT);
528 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE |
529 DT3155_CAPTURE_METHOD;
530 return 0;
533 static int
534 dt3155_ioc_enum_fmt_vid_cap(struct file *filp, void *p, struct v4l2_fmtdesc *f)
536 if (f->index >= NUM_OF_FORMATS)
537 return -EINVAL;
538 *f = frame_std[f->index];
539 return 0;
542 static int
543 dt3155_ioc_g_fmt_vid_cap(struct file *filp, void *p, struct v4l2_format *f)
545 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
546 return -EINVAL;
547 f->fmt.pix.width = img_width;
548 f->fmt.pix.height = img_height;
549 f->fmt.pix.pixelformat = V4L2_PIX_FMT_GREY;
550 f->fmt.pix.field = V4L2_FIELD_NONE;
551 f->fmt.pix.bytesperline = f->fmt.pix.width;
552 f->fmt.pix.sizeimage = f->fmt.pix.width * f->fmt.pix.height;
553 f->fmt.pix.colorspace = 0;
554 f->fmt.pix.priv = 0;
555 return 0;
558 static int
559 dt3155_ioc_try_fmt_vid_cap(struct file *filp, void *p, struct v4l2_format *f)
561 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
562 return -EINVAL;
563 if (f->fmt.pix.width == img_width &&
564 f->fmt.pix.height == img_height &&
565 f->fmt.pix.pixelformat == V4L2_PIX_FMT_GREY &&
566 f->fmt.pix.field == V4L2_FIELD_NONE &&
567 f->fmt.pix.bytesperline == f->fmt.pix.width &&
568 f->fmt.pix.sizeimage == f->fmt.pix.width * f->fmt.pix.height)
569 return 0;
570 else
571 return -EINVAL;
574 static int
575 dt3155_ioc_s_fmt_vid_cap(struct file *filp, void *p, struct v4l2_format *f)
577 return dt3155_ioc_g_fmt_vid_cap(filp, p, f);
580 static int
581 dt3155_ioc_reqbufs(struct file *filp, void *p, struct v4l2_requestbuffers *b)
583 struct dt3155_priv *pd = video_drvdata(filp);
585 return vb2_reqbufs(pd->q, b);
588 static int
589 dt3155_ioc_querybuf(struct file *filp, void *p, struct v4l2_buffer *b)
591 struct dt3155_priv *pd = video_drvdata(filp);
593 return vb2_querybuf(pd->q, b);
596 static int
597 dt3155_ioc_qbuf(struct file *filp, void *p, struct v4l2_buffer *b)
599 struct dt3155_priv *pd = video_drvdata(filp);
601 return vb2_qbuf(pd->q, b);
604 static int
605 dt3155_ioc_dqbuf(struct file *filp, void *p, struct v4l2_buffer *b)
607 struct dt3155_priv *pd = video_drvdata(filp);
609 return vb2_dqbuf(pd->q, b, filp->f_flags & O_NONBLOCK);
612 static int
613 dt3155_ioc_querystd(struct file *filp, void *p, v4l2_std_id *norm)
615 *norm = DT3155_CURRENT_NORM;
616 return 0;
619 static int
620 dt3155_ioc_g_std(struct file *filp, void *p, v4l2_std_id *norm)
622 *norm = DT3155_CURRENT_NORM;
623 return 0;
626 static int
627 dt3155_ioc_s_std(struct file *filp, void *p, v4l2_std_id *norm)
629 if (*norm & DT3155_CURRENT_NORM)
630 return 0;
631 return -EINVAL;
634 static int
635 dt3155_ioc_enum_input(struct file *filp, void *p, struct v4l2_input *input)
637 if (input->index)
638 return -EINVAL;
639 strcpy(input->name, "Coax in");
640 input->type = V4L2_INPUT_TYPE_CAMERA;
642 * FIXME: input->std = 0 according to v4l2 API
643 * VIDIOC_G_STD, VIDIOC_S_STD, VIDIOC_QUERYSTD and VIDIOC_ENUMSTD
644 * should return -EINVAL
646 input->std = DT3155_CURRENT_NORM;
647 input->status = 0;/* FIXME: add sync detection & V4L2_IN_ST_NO_H_LOCK */
648 return 0;
651 static int
652 dt3155_ioc_g_input(struct file *filp, void *p, unsigned int *i)
654 *i = 0;
655 return 0;
658 static int
659 dt3155_ioc_s_input(struct file *filp, void *p, unsigned int i)
661 if (i)
662 return -EINVAL;
663 return 0;
666 static int
667 dt3155_ioc_g_parm(struct file *filp, void *p, struct v4l2_streamparm *parms)
669 if (parms->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
670 return -EINVAL;
671 parms->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
672 parms->parm.capture.capturemode = 0;
673 parms->parm.capture.timeperframe.numerator = 1001;
674 parms->parm.capture.timeperframe.denominator = frames_per_sec * 1000;
675 parms->parm.capture.extendedmode = 0;
676 parms->parm.capture.readbuffers = 1; /* FIXME: 2 buffers? */
677 return 0;
680 static int
681 dt3155_ioc_s_parm(struct file *filp, void *p, struct v4l2_streamparm *parms)
683 if (parms->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
684 return -EINVAL;
685 parms->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
686 parms->parm.capture.capturemode = 0;
687 parms->parm.capture.timeperframe.numerator = 1001;
688 parms->parm.capture.timeperframe.denominator = frames_per_sec * 1000;
689 parms->parm.capture.extendedmode = 0;
690 parms->parm.capture.readbuffers = 1; /* FIXME: 2 buffers? */
691 return 0;
694 static const struct v4l2_ioctl_ops dt3155_ioctl_ops = {
695 .vidioc_streamon = dt3155_ioc_streamon,
696 .vidioc_streamoff = dt3155_ioc_streamoff,
697 .vidioc_querycap = dt3155_ioc_querycap,
699 .vidioc_g_priority = dt3155_ioc_g_priority,
700 .vidioc_s_priority = dt3155_ioc_s_priority,
702 .vidioc_enum_fmt_vid_cap = dt3155_ioc_enum_fmt_vid_cap,
703 .vidioc_try_fmt_vid_cap = dt3155_ioc_try_fmt_vid_cap,
704 .vidioc_g_fmt_vid_cap = dt3155_ioc_g_fmt_vid_cap,
705 .vidioc_s_fmt_vid_cap = dt3155_ioc_s_fmt_vid_cap,
706 .vidioc_reqbufs = dt3155_ioc_reqbufs,
707 .vidioc_querybuf = dt3155_ioc_querybuf,
708 .vidioc_qbuf = dt3155_ioc_qbuf,
709 .vidioc_dqbuf = dt3155_ioc_dqbuf,
710 .vidioc_querystd = dt3155_ioc_querystd,
711 .vidioc_g_std = dt3155_ioc_g_std,
712 .vidioc_s_std = dt3155_ioc_s_std,
713 .vidioc_enum_input = dt3155_ioc_enum_input,
714 .vidioc_g_input = dt3155_ioc_g_input,
715 .vidioc_s_input = dt3155_ioc_s_input,
717 .vidioc_queryctrl = dt3155_ioc_queryctrl,
718 .vidioc_g_ctrl = dt3155_ioc_g_ctrl,
719 .vidioc_s_ctrl = dt3155_ioc_s_ctrl,
720 .vidioc_querymenu = dt3155_ioc_querymenu,
721 .vidioc_g_ext_ctrls = dt3155_ioc_g_ext_ctrls,
722 .vidioc_s_ext_ctrls = dt3155_ioc_s_ext_ctrls,
724 .vidioc_g_parm = dt3155_ioc_g_parm,
725 .vidioc_s_parm = dt3155_ioc_s_parm,
727 .vidioc_cropcap = dt3155_ioc_cropcap,
728 .vidioc_g_crop = dt3155_ioc_g_crop,
729 .vidioc_s_crop = dt3155_ioc_s_crop,
730 .vidioc_enum_framesizes = dt3155_ioc_enum_framesizes,
731 .vidioc_enum_frameintervals = dt3155_ioc_enum_frameintervals,
735 static int __devinit
736 dt3155_init_board(struct pci_dev *pdev)
738 struct dt3155_priv *pd = pci_get_drvdata(pdev);
739 void *buf_cpu;
740 dma_addr_t buf_dma;
741 int i;
742 u8 tmp;
744 pci_set_master(pdev); /* dt3155 needs it */
746 /* resetting the adapter */
747 iowrite32(FLD_CRPT_ODD | FLD_CRPT_EVEN | FLD_DN_ODD | FLD_DN_EVEN,
748 pd->regs + CSR1);
749 mmiowb();
750 msleep(20);
752 /* initializing adaper registers */
753 iowrite32(FIFO_EN | SRST, pd->regs + CSR1);
754 mmiowb();
755 iowrite32(0xEEEEEE01, pd->regs + EVEN_PIXEL_FMT);
756 iowrite32(0xEEEEEE01, pd->regs + ODD_PIXEL_FMT);
757 iowrite32(0x00000020, pd->regs + FIFO_TRIGER);
758 iowrite32(0x00000103, pd->regs + XFER_MODE);
759 iowrite32(0, pd->regs + RETRY_WAIT_CNT);
760 iowrite32(0, pd->regs + INT_CSR);
761 iowrite32(1, pd->regs + EVEN_FLD_MASK);
762 iowrite32(1, pd->regs + ODD_FLD_MASK);
763 iowrite32(0, pd->regs + MASK_LENGTH);
764 iowrite32(0x0005007C, pd->regs + FIFO_FLAG_CNT);
765 iowrite32(0x01010101, pd->regs + IIC_CLK_DUR);
766 mmiowb();
768 /* verifying that we have a DT3155 board (not just a SAA7116 chip) */
769 read_i2c_reg(pd->regs, DT_ID, &tmp);
770 if (tmp != DT3155_ID)
771 return -ENODEV;
773 /* initialize AD LUT */
774 write_i2c_reg(pd->regs, AD_ADDR, 0);
775 for (i = 0; i < 256; i++)
776 write_i2c_reg(pd->regs, AD_LUT, i);
778 /* initialize ADC references */
779 /* FIXME: pos_ref & neg_ref depend on VT_50HZ */
780 write_i2c_reg(pd->regs, AD_ADDR, AD_CMD_REG);
781 write_i2c_reg(pd->regs, AD_CMD, VIDEO_CNL_1 | SYNC_CNL_1 | SYNC_LVL_3);
782 write_i2c_reg(pd->regs, AD_ADDR, AD_POS_REF);
783 write_i2c_reg(pd->regs, AD_CMD, 34);
784 write_i2c_reg(pd->regs, AD_ADDR, AD_NEG_REF);
785 write_i2c_reg(pd->regs, AD_CMD, 0);
787 /* initialize PM LUT */
788 write_i2c_reg(pd->regs, CONFIG, pd->config | PM_LUT_PGM);
789 for (i = 0; i < 256; i++) {
790 write_i2c_reg(pd->regs, PM_LUT_ADDR, i);
791 write_i2c_reg(pd->regs, PM_LUT_DATA, i);
793 write_i2c_reg(pd->regs, CONFIG, pd->config | PM_LUT_PGM | PM_LUT_SEL);
794 for (i = 0; i < 256; i++) {
795 write_i2c_reg(pd->regs, PM_LUT_ADDR, i);
796 write_i2c_reg(pd->regs, PM_LUT_DATA, i);
798 write_i2c_reg(pd->regs, CONFIG, pd->config); /* ACQ_MODE_EVEN */
800 /* select chanel 1 for input and set sync level */
801 write_i2c_reg(pd->regs, AD_ADDR, AD_CMD_REG);
802 write_i2c_reg(pd->regs, AD_CMD, VIDEO_CNL_1 | SYNC_CNL_1 | SYNC_LVL_3);
804 /* allocate memory, and initialize the DMA machine */
805 buf_cpu = dma_alloc_coherent(&pdev->dev, DT3155_BUF_SIZE, &buf_dma,
806 GFP_KERNEL);
807 if (!buf_cpu) {
808 printk(KERN_ERR "dt3155: dma_alloc_coherent "
809 "(in dt3155_init_board) failed\n");
810 return -ENOMEM;
812 iowrite32(buf_dma, pd->regs + EVEN_DMA_START);
813 iowrite32(buf_dma, pd->regs + ODD_DMA_START);
814 iowrite32(0, pd->regs + EVEN_DMA_STRIDE);
815 iowrite32(0, pd->regs + ODD_DMA_STRIDE);
817 /* Perform a pseudo even field acquire */
818 iowrite32(FIFO_EN | SRST | CAP_CONT_ODD, pd->regs + CSR1);
819 write_i2c_reg(pd->regs, CSR2, pd->csr2 | SYNC_SNTL);
820 write_i2c_reg(pd->regs, CONFIG, pd->config);
821 write_i2c_reg(pd->regs, EVEN_CSR, CSR_SNGL);
822 write_i2c_reg(pd->regs, CSR2, pd->csr2 | BUSY_EVEN | SYNC_SNTL);
823 msleep(100);
824 read_i2c_reg(pd->regs, CSR2, &tmp);
825 write_i2c_reg(pd->regs, EVEN_CSR, CSR_ERROR | CSR_SNGL | CSR_DONE);
826 write_i2c_reg(pd->regs, ODD_CSR, CSR_ERROR | CSR_SNGL | CSR_DONE);
827 write_i2c_reg(pd->regs, CSR2, pd->csr2);
828 iowrite32(FIFO_EN | SRST | FLD_DN_EVEN | FLD_DN_ODD, pd->regs + CSR1);
830 /* deallocate memory */
831 dma_free_coherent(&pdev->dev, DT3155_BUF_SIZE, buf_cpu, buf_dma);
832 if (tmp & BUSY_EVEN) {
833 printk(KERN_ERR "dt3155: BUSY_EVEN not cleared\n");
834 return -EIO;
836 return 0;
839 static struct video_device dt3155_vdev = {
840 .name = DT3155_NAME,
841 .fops = &dt3155_fops,
842 .ioctl_ops = &dt3155_ioctl_ops,
843 .minor = -1,
844 .release = video_device_release,
845 .tvnorms = DT3155_CURRENT_NORM,
846 .current_norm = DT3155_CURRENT_NORM,
849 /* same as in drivers/base/dma-coherent.c */
850 struct dma_coherent_mem {
851 void *virt_base;
852 dma_addr_t device_base;
853 int size;
854 int flags;
855 unsigned long *bitmap;
858 static int __devinit
859 dt3155_alloc_coherent(struct device *dev, size_t size, int flags)
861 struct dma_coherent_mem *mem;
862 dma_addr_t dev_base;
863 int pages = size >> PAGE_SHIFT;
864 int bitmap_size = BITS_TO_LONGS(pages) * sizeof(long);
866 if ((flags & DMA_MEMORY_MAP) == 0)
867 goto out;
868 if (!size)
869 goto out;
870 if (dev->dma_mem)
871 goto out;
873 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
874 if (!mem)
875 goto out;
876 mem->virt_base = dma_alloc_coherent(dev, size, &dev_base,
877 DT3155_COH_FLAGS);
878 if (!mem->virt_base)
879 goto err_alloc_coherent;
880 mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL);
881 if (!mem->bitmap)
882 goto err_bitmap;
884 /* coherent_dma_mask is already set to 32 bits */
885 mem->device_base = dev_base;
886 mem->size = pages;
887 mem->flags = flags;
888 dev->dma_mem = mem;
889 return DMA_MEMORY_MAP;
891 err_bitmap:
892 dma_free_coherent(dev, size, mem->virt_base, dev_base);
893 err_alloc_coherent:
894 kfree(mem);
895 out:
896 return 0;
899 static void __devexit
900 dt3155_free_coherent(struct device *dev)
902 struct dma_coherent_mem *mem = dev->dma_mem;
904 if (!mem)
905 return;
906 dev->dma_mem = NULL;
907 dma_free_coherent(dev, mem->size << PAGE_SHIFT,
908 mem->virt_base, mem->device_base);
909 kfree(mem->bitmap);
910 kfree(mem);
913 static int __devinit
914 dt3155_probe(struct pci_dev *pdev, const struct pci_device_id *id)
916 int err;
917 struct dt3155_priv *pd;
919 printk(KERN_INFO "dt3155: probe()\n");
920 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
921 if (err) {
922 printk(KERN_ERR "dt3155: cannot set dma_mask\n");
923 return -ENODEV;
925 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
926 if (err) {
927 printk(KERN_ERR "dt3155: cannot set dma_coherent_mask\n");
928 return -ENODEV;
930 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
931 if (!pd) {
932 printk(KERN_ERR "dt3155: cannot allocate dt3155_priv\n");
933 return -ENOMEM;
935 pd->vdev = video_device_alloc();
936 if (!pd->vdev) {
937 printk(KERN_ERR "dt3155: cannot allocate vdev structure\n");
938 goto err_video_device_alloc;
940 *pd->vdev = dt3155_vdev;
941 pci_set_drvdata(pdev, pd); /* for use in dt3155_remove() */
942 video_set_drvdata(pd->vdev, pd); /* for use in video_fops */
943 pd->users = 0;
944 pd->pdev = pdev;
945 INIT_LIST_HEAD(&pd->dmaq);
946 mutex_init(&pd->mux);
947 pd->vdev->lock = &pd->mux; /* for locking v4l2_file_operations */
948 spin_lock_init(&pd->lock);
949 pd->csr2 = csr2_init;
950 pd->config = config_init;
951 err = pci_enable_device(pdev);
952 if (err) {
953 printk(KERN_ERR "dt3155: pci_dev not enabled\n");
954 goto err_enable_dev;
956 err = pci_request_region(pdev, 0, pci_name(pdev));
957 if (err)
958 goto err_req_region;
959 pd->regs = pci_iomap(pdev, 0, pci_resource_len(pd->pdev, 0));
960 if (!pd->regs) {
961 err = -ENOMEM;
962 printk(KERN_ERR "dt3155: pci_iomap failed\n");
963 goto err_pci_iomap;
965 err = dt3155_init_board(pdev);
966 if (err) {
967 printk(KERN_ERR "dt3155: dt3155_init_board failed\n");
968 goto err_init_board;
970 err = video_register_device(pd->vdev, VFL_TYPE_GRABBER, -1);
971 if (err) {
972 printk(KERN_ERR "dt3155: Cannot register video device\n");
973 goto err_init_board;
975 err = dt3155_alloc_coherent(&pdev->dev, DT3155_CHUNK_SIZE,
976 DMA_MEMORY_MAP);
977 if (err)
978 printk(KERN_INFO "dt3155: preallocated 8 buffers\n");
979 printk(KERN_INFO "dt3155: /dev/video%i is ready\n", pd->vdev->minor);
980 return 0; /* success */
982 err_init_board:
983 pci_iounmap(pdev, pd->regs);
984 err_pci_iomap:
985 pci_release_region(pdev, 0);
986 err_req_region:
987 pci_disable_device(pdev);
988 err_enable_dev:
989 video_device_release(pd->vdev);
990 err_video_device_alloc:
991 kfree(pd);
992 return err;
995 static void __devexit
996 dt3155_remove(struct pci_dev *pdev)
998 struct dt3155_priv *pd = pci_get_drvdata(pdev);
1000 printk(KERN_INFO "dt3155: remove()\n");
1001 dt3155_free_coherent(&pdev->dev);
1002 video_unregister_device(pd->vdev);
1003 pci_iounmap(pdev, pd->regs);
1004 pci_release_region(pdev, 0);
1005 pci_disable_device(pdev);
1007 * video_device_release() is invoked automatically
1008 * see: struct video_device dt3155_vdev
1010 kfree(pd);
1013 static DEFINE_PCI_DEVICE_TABLE(pci_ids) = {
1014 { PCI_DEVICE(DT3155_VENDOR_ID, DT3155_DEVICE_ID) },
1015 { 0, /* zero marks the end */ },
1017 MODULE_DEVICE_TABLE(pci, pci_ids);
1019 static struct pci_driver pci_driver = {
1020 .name = DT3155_NAME,
1021 .id_table = pci_ids,
1022 .probe = dt3155_probe,
1023 .remove = __devexit_p(dt3155_remove),
1026 static int __init
1027 dt3155_init_module(void)
1029 int err;
1031 printk(KERN_INFO "dt3155: ==================\n");
1032 printk(KERN_INFO "dt3155: init()\n");
1033 err = pci_register_driver(&pci_driver);
1034 if (err) {
1035 printk(KERN_ERR "dt3155: cannot register pci_driver\n");
1036 return err;
1038 return 0; /* succes */
1041 static void __exit
1042 dt3155_exit_module(void)
1044 pci_unregister_driver(&pci_driver);
1045 printk(KERN_INFO "dt3155: exit()\n");
1046 printk(KERN_INFO "dt3155: ==================\n");
1049 module_init(dt3155_init_module);
1050 module_exit(dt3155_exit_module);
1052 MODULE_DESCRIPTION("video4linux pci-driver for dt3155 frame grabber");
1053 MODULE_AUTHOR("Marin Mitov <mitov@issp.bas.bg>");
1054 MODULE_VERSION(DT3155_VERSION);
1055 MODULE_LICENSE("GPL");