]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - drivers/media/platform/davinci/vpif_capture.c
Merge tag 'media/v4.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[mirror_ubuntu-hirsute-kernel.git] / drivers / media / platform / davinci / vpif_capture.c
1 /*
2 * Copyright (C) 2009 Texas Instruments Inc
3 * Copyright (C) 2014 Lad, Prabhakar <prabhakar.csengg@gmail.com>
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 * TODO : add support for VBI & HBI data service
16 * add static buffer allocation
17 */
18
19 #include <linux/module.h>
20 #include <linux/interrupt.h>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23
24 #include <media/v4l2-ioctl.h>
25
26 #include "vpif.h"
27 #include "vpif_capture.h"
28
29 MODULE_DESCRIPTION("TI DaVinci VPIF Capture driver");
30 MODULE_LICENSE("GPL");
31 MODULE_VERSION(VPIF_CAPTURE_VERSION);
32
33 #define vpif_err(fmt, arg...) v4l2_err(&vpif_obj.v4l2_dev, fmt, ## arg)
34 #define vpif_dbg(level, debug, fmt, arg...) \
35 v4l2_dbg(level, debug, &vpif_obj.v4l2_dev, fmt, ## arg)
36
37 static int debug = 1;
38
39 module_param(debug, int, 0644);
40
41 MODULE_PARM_DESC(debug, "Debug level 0-1");
42
43 #define VPIF_DRIVER_NAME "vpif_capture"
44 MODULE_ALIAS("platform:" VPIF_DRIVER_NAME);
45
46 /* global variables */
47 static struct vpif_device vpif_obj = { {NULL} };
48 static struct device *vpif_dev;
49 static void vpif_calculate_offsets(struct channel_obj *ch);
50 static void vpif_config_addr(struct channel_obj *ch, int muxmode);
51
52 static u8 channel_first_int[VPIF_NUMBER_OF_OBJECTS][2] = { {1, 1} };
53
54 /* Is set to 1 in case of SDTV formats, 2 in case of HDTV formats. */
55 static int ycmux_mode;
56
57 static inline
58 struct vpif_cap_buffer *to_vpif_buffer(struct vb2_v4l2_buffer *vb)
59 {
60 return container_of(vb, struct vpif_cap_buffer, vb);
61 }
62
63 /**
64 * vpif_buffer_prepare : callback function for buffer prepare
65 * @vb: ptr to vb2_buffer
66 *
67 * This is the callback function for buffer prepare when vb2_qbuf()
68 * function is called. The buffer is prepared and user space virtual address
69 * or user address is converted into physical address
70 */
71 static int vpif_buffer_prepare(struct vb2_buffer *vb)
72 {
73 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
74 struct vb2_queue *q = vb->vb2_queue;
75 struct channel_obj *ch = vb2_get_drv_priv(q);
76 struct common_obj *common;
77 unsigned long addr;
78
79 vpif_dbg(2, debug, "vpif_buffer_prepare\n");
80
81 common = &ch->common[VPIF_VIDEO_INDEX];
82
83 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage);
84 if (vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
85 return -EINVAL;
86
87 vbuf->field = common->fmt.fmt.pix.field;
88
89 addr = vb2_dma_contig_plane_dma_addr(vb, 0);
90 if (!IS_ALIGNED((addr + common->ytop_off), 8) ||
91 !IS_ALIGNED((addr + common->ybtm_off), 8) ||
92 !IS_ALIGNED((addr + common->ctop_off), 8) ||
93 !IS_ALIGNED((addr + common->cbtm_off), 8)) {
94 vpif_dbg(1, debug, "offset is not aligned\n");
95 return -EINVAL;
96 }
97
98 return 0;
99 }
100
101 /**
102 * vpif_buffer_queue_setup : Callback function for buffer setup.
103 * @vq: vb2_queue ptr
104 * @nbuffers: ptr to number of buffers requested by application
105 * @nplanes:: contains number of distinct video planes needed to hold a frame
106 * @sizes[]: contains the size (in bytes) of each plane.
107 * @alloc_devs: ptr to allocation context
108 *
109 * This callback function is called when reqbuf() is called to adjust
110 * the buffer count and buffer size
111 */
112 static int vpif_buffer_queue_setup(struct vb2_queue *vq,
113 unsigned int *nbuffers, unsigned int *nplanes,
114 unsigned int sizes[], struct device *alloc_devs[])
115 {
116 struct channel_obj *ch = vb2_get_drv_priv(vq);
117 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
118 unsigned size = common->fmt.fmt.pix.sizeimage;
119
120 vpif_dbg(2, debug, "vpif_buffer_setup\n");
121
122 if (*nplanes) {
123 if (sizes[0] < size)
124 return -EINVAL;
125 size = sizes[0];
126 }
127
128 if (vq->num_buffers + *nbuffers < 3)
129 *nbuffers = 3 - vq->num_buffers;
130
131 *nplanes = 1;
132 sizes[0] = size;
133
134 /* Calculate the offset for Y and C data in the buffer */
135 vpif_calculate_offsets(ch);
136
137 return 0;
138 }
139
140 /**
141 * vpif_buffer_queue : Callback function to add buffer to DMA queue
142 * @vb: ptr to vb2_buffer
143 */
144 static void vpif_buffer_queue(struct vb2_buffer *vb)
145 {
146 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
147 struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue);
148 struct vpif_cap_buffer *buf = to_vpif_buffer(vbuf);
149 struct common_obj *common;
150 unsigned long flags;
151
152 common = &ch->common[VPIF_VIDEO_INDEX];
153
154 vpif_dbg(2, debug, "vpif_buffer_queue\n");
155
156 spin_lock_irqsave(&common->irqlock, flags);
157 /* add the buffer to the DMA queue */
158 list_add_tail(&buf->list, &common->dma_queue);
159 spin_unlock_irqrestore(&common->irqlock, flags);
160 }
161
162 /**
163 * vpif_start_streaming : Starts the DMA engine for streaming
164 * @vb: ptr to vb2_buffer
165 * @count: number of buffers
166 */
167 static int vpif_start_streaming(struct vb2_queue *vq, unsigned int count)
168 {
169 struct vpif_capture_config *vpif_config_data =
170 vpif_dev->platform_data;
171 struct channel_obj *ch = vb2_get_drv_priv(vq);
172 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
173 struct vpif_params *vpif = &ch->vpifparams;
174 struct vpif_cap_buffer *buf, *tmp;
175 unsigned long addr, flags;
176 int ret;
177
178 /* Initialize field_id */
179 ch->field_id = 0;
180
181 /* configure 1 or 2 channel mode */
182 if (vpif_config_data->setup_input_channel_mode) {
183 ret = vpif_config_data->
184 setup_input_channel_mode(vpif->std_info.ycmux_mode);
185 if (ret < 0) {
186 vpif_dbg(1, debug, "can't set vpif channel mode\n");
187 goto err;
188 }
189 }
190
191 ret = v4l2_subdev_call(ch->sd, video, s_stream, 1);
192 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV) {
193 vpif_dbg(1, debug, "stream on failed in subdev\n");
194 goto err;
195 }
196
197 /* Call vpif_set_params function to set the parameters and addresses */
198 ret = vpif_set_video_params(vpif, ch->channel_id);
199 if (ret < 0) {
200 vpif_dbg(1, debug, "can't set video params\n");
201 goto err;
202 }
203
204 ycmux_mode = ret;
205 vpif_config_addr(ch, ret);
206
207 /* Get the next frame from the buffer queue */
208 spin_lock_irqsave(&common->irqlock, flags);
209 common->cur_frm = common->next_frm = list_entry(common->dma_queue.next,
210 struct vpif_cap_buffer, list);
211 /* Remove buffer from the buffer queue */
212 list_del(&common->cur_frm->list);
213 spin_unlock_irqrestore(&common->irqlock, flags);
214
215 addr = vb2_dma_contig_plane_dma_addr(&common->cur_frm->vb.vb2_buf, 0);
216
217 common->set_addr(addr + common->ytop_off,
218 addr + common->ybtm_off,
219 addr + common->ctop_off,
220 addr + common->cbtm_off);
221
222 /**
223 * Set interrupt for both the fields in VPIF Register enable channel in
224 * VPIF register
225 */
226 channel_first_int[VPIF_VIDEO_INDEX][ch->channel_id] = 1;
227 if (VPIF_CHANNEL0_VIDEO == ch->channel_id) {
228 channel0_intr_assert();
229 channel0_intr_enable(1);
230 enable_channel0(1);
231 }
232 if (VPIF_CHANNEL1_VIDEO == ch->channel_id ||
233 ycmux_mode == 2) {
234 channel1_intr_assert();
235 channel1_intr_enable(1);
236 enable_channel1(1);
237 }
238
239 return 0;
240
241 err:
242 spin_lock_irqsave(&common->irqlock, flags);
243 list_for_each_entry_safe(buf, tmp, &common->dma_queue, list) {
244 list_del(&buf->list);
245 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_QUEUED);
246 }
247 spin_unlock_irqrestore(&common->irqlock, flags);
248
249 return ret;
250 }
251
252 /**
253 * vpif_stop_streaming : Stop the DMA engine
254 * @vq: ptr to vb2_queue
255 *
256 * This callback stops the DMA engine and any remaining buffers
257 * in the DMA queue are released.
258 */
259 static void vpif_stop_streaming(struct vb2_queue *vq)
260 {
261 struct channel_obj *ch = vb2_get_drv_priv(vq);
262 struct common_obj *common;
263 unsigned long flags;
264 int ret;
265
266 common = &ch->common[VPIF_VIDEO_INDEX];
267
268 /* Disable channel as per its device type and channel id */
269 if (VPIF_CHANNEL0_VIDEO == ch->channel_id) {
270 enable_channel0(0);
271 channel0_intr_enable(0);
272 }
273 if (VPIF_CHANNEL1_VIDEO == ch->channel_id ||
274 ycmux_mode == 2) {
275 enable_channel1(0);
276 channel1_intr_enable(0);
277 }
278
279 ycmux_mode = 0;
280
281 ret = v4l2_subdev_call(ch->sd, video, s_stream, 0);
282 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV)
283 vpif_dbg(1, debug, "stream off failed in subdev\n");
284
285 /* release all active buffers */
286 if (common->cur_frm == common->next_frm) {
287 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
288 VB2_BUF_STATE_ERROR);
289 } else {
290 if (common->cur_frm)
291 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
292 VB2_BUF_STATE_ERROR);
293 if (common->next_frm)
294 vb2_buffer_done(&common->next_frm->vb.vb2_buf,
295 VB2_BUF_STATE_ERROR);
296 }
297
298 spin_lock_irqsave(&common->irqlock, flags);
299 while (!list_empty(&common->dma_queue)) {
300 common->next_frm = list_entry(common->dma_queue.next,
301 struct vpif_cap_buffer, list);
302 list_del(&common->next_frm->list);
303 vb2_buffer_done(&common->next_frm->vb.vb2_buf,
304 VB2_BUF_STATE_ERROR);
305 }
306 spin_unlock_irqrestore(&common->irqlock, flags);
307 }
308
309 static struct vb2_ops video_qops = {
310 .queue_setup = vpif_buffer_queue_setup,
311 .buf_prepare = vpif_buffer_prepare,
312 .start_streaming = vpif_start_streaming,
313 .stop_streaming = vpif_stop_streaming,
314 .buf_queue = vpif_buffer_queue,
315 .wait_prepare = vb2_ops_wait_prepare,
316 .wait_finish = vb2_ops_wait_finish,
317 };
318
319 /**
320 * vpif_process_buffer_complete: process a completed buffer
321 * @common: ptr to common channel object
322 *
323 * This function time stamp the buffer and mark it as DONE. It also
324 * wake up any process waiting on the QUEUE and set the next buffer
325 * as current
326 */
327 static void vpif_process_buffer_complete(struct common_obj *common)
328 {
329 common->cur_frm->vb.vb2_buf.timestamp = ktime_get_ns();
330 vb2_buffer_done(&common->cur_frm->vb.vb2_buf, VB2_BUF_STATE_DONE);
331 /* Make curFrm pointing to nextFrm */
332 common->cur_frm = common->next_frm;
333 }
334
335 /**
336 * vpif_schedule_next_buffer: set next buffer address for capture
337 * @common : ptr to common channel object
338 *
339 * This function will get next buffer from the dma queue and
340 * set the buffer address in the vpif register for capture.
341 * the buffer is marked active
342 */
343 static void vpif_schedule_next_buffer(struct common_obj *common)
344 {
345 unsigned long addr = 0;
346
347 spin_lock(&common->irqlock);
348 common->next_frm = list_entry(common->dma_queue.next,
349 struct vpif_cap_buffer, list);
350 /* Remove that buffer from the buffer queue */
351 list_del(&common->next_frm->list);
352 spin_unlock(&common->irqlock);
353 addr = vb2_dma_contig_plane_dma_addr(&common->next_frm->vb.vb2_buf, 0);
354
355 /* Set top and bottom field addresses in VPIF registers */
356 common->set_addr(addr + common->ytop_off,
357 addr + common->ybtm_off,
358 addr + common->ctop_off,
359 addr + common->cbtm_off);
360 }
361
362 /**
363 * vpif_channel_isr : ISR handler for vpif capture
364 * @irq: irq number
365 * @dev_id: dev_id ptr
366 *
367 * It changes status of the captured buffer, takes next buffer from the queue
368 * and sets its address in VPIF registers
369 */
370 static irqreturn_t vpif_channel_isr(int irq, void *dev_id)
371 {
372 struct vpif_device *dev = &vpif_obj;
373 struct common_obj *common;
374 struct channel_obj *ch;
375 int channel_id;
376 int fid = -1, i;
377
378 channel_id = *(int *)(dev_id);
379 if (!vpif_intr_status(channel_id))
380 return IRQ_NONE;
381
382 ch = dev->dev[channel_id];
383
384 for (i = 0; i < VPIF_NUMBER_OF_OBJECTS; i++) {
385 common = &ch->common[i];
386 /* skip If streaming is not started in this channel */
387 /* Check the field format */
388 if (1 == ch->vpifparams.std_info.frm_fmt) {
389 /* Progressive mode */
390 spin_lock(&common->irqlock);
391 if (list_empty(&common->dma_queue)) {
392 spin_unlock(&common->irqlock);
393 continue;
394 }
395 spin_unlock(&common->irqlock);
396
397 if (!channel_first_int[i][channel_id])
398 vpif_process_buffer_complete(common);
399
400 channel_first_int[i][channel_id] = 0;
401
402 vpif_schedule_next_buffer(common);
403
404
405 channel_first_int[i][channel_id] = 0;
406 } else {
407 /**
408 * Interlaced mode. If it is first interrupt, ignore
409 * it
410 */
411 if (channel_first_int[i][channel_id]) {
412 channel_first_int[i][channel_id] = 0;
413 continue;
414 }
415 if (0 == i) {
416 ch->field_id ^= 1;
417 /* Get field id from VPIF registers */
418 fid = vpif_channel_getfid(ch->channel_id);
419 if (fid != ch->field_id) {
420 /**
421 * If field id does not match stored
422 * field id, make them in sync
423 */
424 if (0 == fid)
425 ch->field_id = fid;
426 return IRQ_HANDLED;
427 }
428 }
429 /* device field id and local field id are in sync */
430 if (0 == fid) {
431 /* this is even field */
432 if (common->cur_frm == common->next_frm)
433 continue;
434
435 /* mark the current buffer as done */
436 vpif_process_buffer_complete(common);
437 } else if (1 == fid) {
438 /* odd field */
439 spin_lock(&common->irqlock);
440 if (list_empty(&common->dma_queue) ||
441 (common->cur_frm != common->next_frm)) {
442 spin_unlock(&common->irqlock);
443 continue;
444 }
445 spin_unlock(&common->irqlock);
446
447 vpif_schedule_next_buffer(common);
448 }
449 }
450 }
451 return IRQ_HANDLED;
452 }
453
454 /**
455 * vpif_update_std_info() - update standard related info
456 * @ch: ptr to channel object
457 *
458 * For a given standard selected by application, update values
459 * in the device data structures
460 */
461 static int vpif_update_std_info(struct channel_obj *ch)
462 {
463 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
464 struct vpif_params *vpifparams = &ch->vpifparams;
465 const struct vpif_channel_config_params *config;
466 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
467 struct video_obj *vid_ch = &ch->video;
468 int index;
469
470 vpif_dbg(2, debug, "vpif_update_std_info\n");
471
472 for (index = 0; index < vpif_ch_params_count; index++) {
473 config = &vpif_ch_params[index];
474 if (config->hd_sd == 0) {
475 vpif_dbg(2, debug, "SD format\n");
476 if (config->stdid & vid_ch->stdid) {
477 memcpy(std_info, config, sizeof(*config));
478 break;
479 }
480 } else {
481 vpif_dbg(2, debug, "HD format\n");
482 if (!memcmp(&config->dv_timings, &vid_ch->dv_timings,
483 sizeof(vid_ch->dv_timings))) {
484 memcpy(std_info, config, sizeof(*config));
485 break;
486 }
487 }
488 }
489
490 /* standard not found */
491 if (index == vpif_ch_params_count)
492 return -EINVAL;
493
494 common->fmt.fmt.pix.width = std_info->width;
495 common->width = std_info->width;
496 common->fmt.fmt.pix.height = std_info->height;
497 common->height = std_info->height;
498 common->fmt.fmt.pix.sizeimage = common->height * common->width * 2;
499 common->fmt.fmt.pix.bytesperline = std_info->width;
500 vpifparams->video_params.hpitch = std_info->width;
501 vpifparams->video_params.storage_mode = std_info->frm_fmt;
502
503 if (vid_ch->stdid)
504 common->fmt.fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
505 else
506 common->fmt.fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
507
508 if (ch->vpifparams.std_info.frm_fmt)
509 common->fmt.fmt.pix.field = V4L2_FIELD_NONE;
510 else
511 common->fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
512
513 if (ch->vpifparams.iface.if_type == VPIF_IF_RAW_BAYER)
514 common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_SBGGR8;
515 else
516 common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV422P;
517
518 common->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
519
520 return 0;
521 }
522
523 /**
524 * vpif_calculate_offsets : This function calculates buffers offsets
525 * @ch : ptr to channel object
526 *
527 * This function calculates buffer offsets for Y and C in the top and
528 * bottom field
529 */
530 static void vpif_calculate_offsets(struct channel_obj *ch)
531 {
532 unsigned int hpitch, sizeimage;
533 struct video_obj *vid_ch = &(ch->video);
534 struct vpif_params *vpifparams = &ch->vpifparams;
535 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
536 enum v4l2_field field = common->fmt.fmt.pix.field;
537
538 vpif_dbg(2, debug, "vpif_calculate_offsets\n");
539
540 if (V4L2_FIELD_ANY == field) {
541 if (vpifparams->std_info.frm_fmt)
542 vid_ch->buf_field = V4L2_FIELD_NONE;
543 else
544 vid_ch->buf_field = V4L2_FIELD_INTERLACED;
545 } else
546 vid_ch->buf_field = common->fmt.fmt.pix.field;
547
548 sizeimage = common->fmt.fmt.pix.sizeimage;
549
550 hpitch = common->fmt.fmt.pix.bytesperline;
551
552 if ((V4L2_FIELD_NONE == vid_ch->buf_field) ||
553 (V4L2_FIELD_INTERLACED == vid_ch->buf_field)) {
554 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
555 common->ytop_off = 0;
556 common->ybtm_off = hpitch;
557 common->ctop_off = sizeimage / 2;
558 common->cbtm_off = sizeimage / 2 + hpitch;
559 } else if (V4L2_FIELD_SEQ_TB == vid_ch->buf_field) {
560 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
561 common->ytop_off = 0;
562 common->ybtm_off = sizeimage / 4;
563 common->ctop_off = sizeimage / 2;
564 common->cbtm_off = common->ctop_off + sizeimage / 4;
565 } else if (V4L2_FIELD_SEQ_BT == vid_ch->buf_field) {
566 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
567 common->ybtm_off = 0;
568 common->ytop_off = sizeimage / 4;
569 common->cbtm_off = sizeimage / 2;
570 common->ctop_off = common->cbtm_off + sizeimage / 4;
571 }
572 if ((V4L2_FIELD_NONE == vid_ch->buf_field) ||
573 (V4L2_FIELD_INTERLACED == vid_ch->buf_field))
574 vpifparams->video_params.storage_mode = 1;
575 else
576 vpifparams->video_params.storage_mode = 0;
577
578 if (1 == vpifparams->std_info.frm_fmt)
579 vpifparams->video_params.hpitch =
580 common->fmt.fmt.pix.bytesperline;
581 else {
582 if ((field == V4L2_FIELD_ANY)
583 || (field == V4L2_FIELD_INTERLACED))
584 vpifparams->video_params.hpitch =
585 common->fmt.fmt.pix.bytesperline * 2;
586 else
587 vpifparams->video_params.hpitch =
588 common->fmt.fmt.pix.bytesperline;
589 }
590
591 ch->vpifparams.video_params.stdid = vpifparams->std_info.stdid;
592 }
593
594 /**
595 * vpif_get_default_field() - Get default field type based on interface
596 * @vpif_params - ptr to vpif params
597 */
598 static inline enum v4l2_field vpif_get_default_field(
599 struct vpif_interface *iface)
600 {
601 return (iface->if_type == VPIF_IF_RAW_BAYER) ? V4L2_FIELD_NONE :
602 V4L2_FIELD_INTERLACED;
603 }
604
605 /**
606 * vpif_config_addr() - function to configure buffer address in vpif
607 * @ch - channel ptr
608 * @muxmode - channel mux mode
609 */
610 static void vpif_config_addr(struct channel_obj *ch, int muxmode)
611 {
612 struct common_obj *common;
613
614 vpif_dbg(2, debug, "vpif_config_addr\n");
615
616 common = &(ch->common[VPIF_VIDEO_INDEX]);
617
618 if (VPIF_CHANNEL1_VIDEO == ch->channel_id)
619 common->set_addr = ch1_set_videobuf_addr;
620 else if (2 == muxmode)
621 common->set_addr = ch0_set_videobuf_addr_yc_nmux;
622 else
623 common->set_addr = ch0_set_videobuf_addr;
624 }
625
626 /**
627 * vpif_input_to_subdev() - Maps input to sub device
628 * @vpif_cfg - global config ptr
629 * @chan_cfg - channel config ptr
630 * @input_index - Given input index from application
631 *
632 * lookup the sub device information for a given input index.
633 * we report all the inputs to application. inputs table also
634 * has sub device name for the each input
635 */
636 static int vpif_input_to_subdev(
637 struct vpif_capture_config *vpif_cfg,
638 struct vpif_capture_chan_config *chan_cfg,
639 int input_index)
640 {
641 struct vpif_subdev_info *subdev_info;
642 const char *subdev_name;
643 int i;
644
645 vpif_dbg(2, debug, "vpif_input_to_subdev\n");
646
647 if (!chan_cfg)
648 return -1;
649 if (input_index >= chan_cfg->input_count)
650 return -1;
651 subdev_name = chan_cfg->inputs[input_index].subdev_name;
652 if (!subdev_name)
653 return -1;
654
655 /* loop through the sub device list to get the sub device info */
656 for (i = 0; i < vpif_cfg->subdev_count; i++) {
657 subdev_info = &vpif_cfg->subdev_info[i];
658 if (!strcmp(subdev_info->name, subdev_name))
659 return i;
660 }
661 return -1;
662 }
663
664 /**
665 * vpif_set_input() - Select an input
666 * @vpif_cfg - global config ptr
667 * @ch - channel
668 * @_index - Given input index from application
669 *
670 * Select the given input.
671 */
672 static int vpif_set_input(
673 struct vpif_capture_config *vpif_cfg,
674 struct channel_obj *ch,
675 int index)
676 {
677 struct vpif_capture_chan_config *chan_cfg =
678 &vpif_cfg->chan_config[ch->channel_id];
679 struct vpif_subdev_info *subdev_info = NULL;
680 struct v4l2_subdev *sd = NULL;
681 u32 input = 0, output = 0;
682 int sd_index;
683 int ret;
684
685 sd_index = vpif_input_to_subdev(vpif_cfg, chan_cfg, index);
686 if (sd_index >= 0) {
687 sd = vpif_obj.sd[sd_index];
688 subdev_info = &vpif_cfg->subdev_info[sd_index];
689 } else {
690 /* no subdevice, no input to setup */
691 return 0;
692 }
693
694 /* first setup input path from sub device to vpif */
695 if (sd && vpif_cfg->setup_input_path) {
696 ret = vpif_cfg->setup_input_path(ch->channel_id,
697 subdev_info->name);
698 if (ret < 0) {
699 vpif_dbg(1, debug, "couldn't setup input path for the" \
700 " sub device %s, for input index %d\n",
701 subdev_info->name, index);
702 return ret;
703 }
704 }
705
706 if (sd) {
707 input = chan_cfg->inputs[index].input_route;
708 output = chan_cfg->inputs[index].output_route;
709 ret = v4l2_subdev_call(sd, video, s_routing,
710 input, output, 0);
711 if (ret < 0 && ret != -ENOIOCTLCMD) {
712 vpif_dbg(1, debug, "Failed to set input\n");
713 return ret;
714 }
715 }
716 ch->input_idx = index;
717 ch->sd = sd;
718 /* copy interface parameters to vpif */
719 ch->vpifparams.iface = chan_cfg->vpif_if;
720
721 /* update tvnorms from the sub device input info */
722 ch->video_dev.tvnorms = chan_cfg->inputs[index].input.std;
723 return 0;
724 }
725
726 /**
727 * vpif_querystd() - querystd handler
728 * @file: file ptr
729 * @priv: file handle
730 * @std_id: ptr to std id
731 *
732 * This function is called to detect standard at the selected input
733 */
734 static int vpif_querystd(struct file *file, void *priv, v4l2_std_id *std_id)
735 {
736 struct video_device *vdev = video_devdata(file);
737 struct channel_obj *ch = video_get_drvdata(vdev);
738 int ret;
739
740 vpif_dbg(2, debug, "vpif_querystd\n");
741
742 /* Call querystd function of decoder device */
743 ret = v4l2_subdev_call(ch->sd, video, querystd, std_id);
744
745 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
746 return -ENODATA;
747 if (ret) {
748 vpif_dbg(1, debug, "Failed to query standard for sub devices\n");
749 return ret;
750 }
751
752 return 0;
753 }
754
755 /**
756 * vpif_g_std() - get STD handler
757 * @file: file ptr
758 * @priv: file handle
759 * @std_id: ptr to std id
760 */
761 static int vpif_g_std(struct file *file, void *priv, v4l2_std_id *std)
762 {
763 struct vpif_capture_config *config = vpif_dev->platform_data;
764 struct video_device *vdev = video_devdata(file);
765 struct channel_obj *ch = video_get_drvdata(vdev);
766 struct vpif_capture_chan_config *chan_cfg;
767 struct v4l2_input input;
768
769 vpif_dbg(2, debug, "vpif_g_std\n");
770
771 if (!config->chan_config[ch->channel_id].inputs)
772 return -ENODATA;
773
774 chan_cfg = &config->chan_config[ch->channel_id];
775 input = chan_cfg->inputs[ch->input_idx].input;
776 if (input.capabilities != V4L2_IN_CAP_STD)
777 return -ENODATA;
778
779 *std = ch->video.stdid;
780 return 0;
781 }
782
783 /**
784 * vpif_s_std() - set STD handler
785 * @file: file ptr
786 * @priv: file handle
787 * @std_id: ptr to std id
788 */
789 static int vpif_s_std(struct file *file, void *priv, v4l2_std_id std_id)
790 {
791 struct vpif_capture_config *config = vpif_dev->platform_data;
792 struct video_device *vdev = video_devdata(file);
793 struct channel_obj *ch = video_get_drvdata(vdev);
794 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
795 struct vpif_capture_chan_config *chan_cfg;
796 struct v4l2_input input;
797 int ret;
798
799 vpif_dbg(2, debug, "vpif_s_std\n");
800
801 if (!config->chan_config[ch->channel_id].inputs)
802 return -ENODATA;
803
804 chan_cfg = &config->chan_config[ch->channel_id];
805 input = chan_cfg->inputs[ch->input_idx].input;
806 if (input.capabilities != V4L2_IN_CAP_STD)
807 return -ENODATA;
808
809 if (vb2_is_busy(&common->buffer_queue))
810 return -EBUSY;
811
812 /* Call encoder subdevice function to set the standard */
813 ch->video.stdid = std_id;
814 memset(&ch->video.dv_timings, 0, sizeof(ch->video.dv_timings));
815
816 /* Get the information about the standard */
817 if (vpif_update_std_info(ch)) {
818 vpif_err("Error getting the standard info\n");
819 return -EINVAL;
820 }
821
822 /* set standard in the sub device */
823 ret = v4l2_subdev_call(ch->sd, video, s_std, std_id);
824 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV) {
825 vpif_dbg(1, debug, "Failed to set standard for sub devices\n");
826 return ret;
827 }
828 return 0;
829 }
830
831 /**
832 * vpif_enum_input() - ENUMINPUT handler
833 * @file: file ptr
834 * @priv: file handle
835 * @input: ptr to input structure
836 */
837 static int vpif_enum_input(struct file *file, void *priv,
838 struct v4l2_input *input)
839 {
840
841 struct vpif_capture_config *config = vpif_dev->platform_data;
842 struct video_device *vdev = video_devdata(file);
843 struct channel_obj *ch = video_get_drvdata(vdev);
844 struct vpif_capture_chan_config *chan_cfg;
845
846 chan_cfg = &config->chan_config[ch->channel_id];
847
848 if (input->index >= chan_cfg->input_count)
849 return -EINVAL;
850
851 memcpy(input, &chan_cfg->inputs[input->index].input,
852 sizeof(*input));
853 return 0;
854 }
855
856 /**
857 * vpif_g_input() - Get INPUT handler
858 * @file: file ptr
859 * @priv: file handle
860 * @index: ptr to input index
861 */
862 static int vpif_g_input(struct file *file, void *priv, unsigned int *index)
863 {
864 struct video_device *vdev = video_devdata(file);
865 struct channel_obj *ch = video_get_drvdata(vdev);
866
867 *index = ch->input_idx;
868 return 0;
869 }
870
871 /**
872 * vpif_s_input() - Set INPUT handler
873 * @file: file ptr
874 * @priv: file handle
875 * @index: input index
876 */
877 static int vpif_s_input(struct file *file, void *priv, unsigned int index)
878 {
879 struct vpif_capture_config *config = vpif_dev->platform_data;
880 struct video_device *vdev = video_devdata(file);
881 struct channel_obj *ch = video_get_drvdata(vdev);
882 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
883 struct vpif_capture_chan_config *chan_cfg;
884
885 chan_cfg = &config->chan_config[ch->channel_id];
886
887 if (index >= chan_cfg->input_count)
888 return -EINVAL;
889
890 if (vb2_is_busy(&common->buffer_queue))
891 return -EBUSY;
892
893 return vpif_set_input(config, ch, index);
894 }
895
896 /**
897 * vpif_enum_fmt_vid_cap() - ENUM_FMT handler
898 * @file: file ptr
899 * @priv: file handle
900 * @index: input index
901 */
902 static int vpif_enum_fmt_vid_cap(struct file *file, void *priv,
903 struct v4l2_fmtdesc *fmt)
904 {
905 struct video_device *vdev = video_devdata(file);
906 struct channel_obj *ch = video_get_drvdata(vdev);
907
908 if (fmt->index != 0) {
909 vpif_dbg(1, debug, "Invalid format index\n");
910 return -EINVAL;
911 }
912
913 /* Fill in the information about format */
914 if (ch->vpifparams.iface.if_type == VPIF_IF_RAW_BAYER) {
915 fmt->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
916 strcpy(fmt->description, "Raw Mode -Bayer Pattern GrRBGb");
917 fmt->pixelformat = V4L2_PIX_FMT_SBGGR8;
918 } else {
919 fmt->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
920 strcpy(fmt->description, "YCbCr4:2:2 YC Planar");
921 fmt->pixelformat = V4L2_PIX_FMT_YUV422P;
922 }
923 return 0;
924 }
925
926 /**
927 * vpif_try_fmt_vid_cap() - TRY_FMT handler
928 * @file: file ptr
929 * @priv: file handle
930 * @fmt: ptr to v4l2 format structure
931 */
932 static int vpif_try_fmt_vid_cap(struct file *file, void *priv,
933 struct v4l2_format *fmt)
934 {
935 struct video_device *vdev = video_devdata(file);
936 struct channel_obj *ch = video_get_drvdata(vdev);
937 struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
938 struct common_obj *common = &(ch->common[VPIF_VIDEO_INDEX]);
939 struct vpif_params *vpif_params = &ch->vpifparams;
940
941 /*
942 * to supress v4l-compliance warnings silently correct
943 * the pixelformat
944 */
945 if (vpif_params->iface.if_type == VPIF_IF_RAW_BAYER) {
946 if (pixfmt->pixelformat != V4L2_PIX_FMT_SBGGR8)
947 pixfmt->pixelformat = V4L2_PIX_FMT_SBGGR8;
948 } else {
949 if (pixfmt->pixelformat != V4L2_PIX_FMT_YUV422P)
950 pixfmt->pixelformat = V4L2_PIX_FMT_YUV422P;
951 }
952
953 common->fmt.fmt.pix.pixelformat = pixfmt->pixelformat;
954
955 vpif_update_std_info(ch);
956
957 pixfmt->field = common->fmt.fmt.pix.field;
958 pixfmt->colorspace = common->fmt.fmt.pix.colorspace;
959 pixfmt->bytesperline = common->fmt.fmt.pix.width;
960 pixfmt->width = common->fmt.fmt.pix.width;
961 pixfmt->height = common->fmt.fmt.pix.height;
962 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height * 2;
963 pixfmt->priv = 0;
964
965 return 0;
966 }
967
968
969 /**
970 * vpif_g_fmt_vid_cap() - Set INPUT handler
971 * @file: file ptr
972 * @priv: file handle
973 * @fmt: ptr to v4l2 format structure
974 */
975 static int vpif_g_fmt_vid_cap(struct file *file, void *priv,
976 struct v4l2_format *fmt)
977 {
978 struct video_device *vdev = video_devdata(file);
979 struct channel_obj *ch = video_get_drvdata(vdev);
980 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
981
982 /* Check the validity of the buffer type */
983 if (common->fmt.type != fmt->type)
984 return -EINVAL;
985
986 /* Fill in the information about format */
987 *fmt = common->fmt;
988 return 0;
989 }
990
991 /**
992 * vpif_s_fmt_vid_cap() - Set FMT handler
993 * @file: file ptr
994 * @priv: file handle
995 * @fmt: ptr to v4l2 format structure
996 */
997 static int vpif_s_fmt_vid_cap(struct file *file, void *priv,
998 struct v4l2_format *fmt)
999 {
1000 struct video_device *vdev = video_devdata(file);
1001 struct channel_obj *ch = video_get_drvdata(vdev);
1002 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
1003 int ret;
1004
1005 vpif_dbg(2, debug, "%s\n", __func__);
1006
1007 if (vb2_is_busy(&common->buffer_queue))
1008 return -EBUSY;
1009
1010 ret = vpif_try_fmt_vid_cap(file, priv, fmt);
1011 if (ret)
1012 return ret;
1013
1014 /* store the format in the channel object */
1015 common->fmt = *fmt;
1016 return 0;
1017 }
1018
1019 /**
1020 * vpif_querycap() - QUERYCAP handler
1021 * @file: file ptr
1022 * @priv: file handle
1023 * @cap: ptr to v4l2_capability structure
1024 */
1025 static int vpif_querycap(struct file *file, void *priv,
1026 struct v4l2_capability *cap)
1027 {
1028 struct vpif_capture_config *config = vpif_dev->platform_data;
1029
1030 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1031 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
1032 strlcpy(cap->driver, VPIF_DRIVER_NAME, sizeof(cap->driver));
1033 snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s",
1034 dev_name(vpif_dev));
1035 strlcpy(cap->card, config->card_name, sizeof(cap->card));
1036
1037 return 0;
1038 }
1039
1040 /**
1041 * vpif_enum_dv_timings() - ENUM_DV_TIMINGS handler
1042 * @file: file ptr
1043 * @priv: file handle
1044 * @timings: input timings
1045 */
1046 static int
1047 vpif_enum_dv_timings(struct file *file, void *priv,
1048 struct v4l2_enum_dv_timings *timings)
1049 {
1050 struct vpif_capture_config *config = vpif_dev->platform_data;
1051 struct video_device *vdev = video_devdata(file);
1052 struct channel_obj *ch = video_get_drvdata(vdev);
1053 struct vpif_capture_chan_config *chan_cfg;
1054 struct v4l2_input input;
1055 int ret;
1056
1057 if (!config->chan_config[ch->channel_id].inputs)
1058 return -ENODATA;
1059
1060 chan_cfg = &config->chan_config[ch->channel_id];
1061 input = chan_cfg->inputs[ch->input_idx].input;
1062 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1063 return -ENODATA;
1064
1065 timings->pad = 0;
1066
1067 ret = v4l2_subdev_call(ch->sd, pad, enum_dv_timings, timings);
1068 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
1069 return -EINVAL;
1070
1071 return ret;
1072 }
1073
1074 /**
1075 * vpif_query_dv_timings() - QUERY_DV_TIMINGS handler
1076 * @file: file ptr
1077 * @priv: file handle
1078 * @timings: input timings
1079 */
1080 static int
1081 vpif_query_dv_timings(struct file *file, void *priv,
1082 struct v4l2_dv_timings *timings)
1083 {
1084 struct vpif_capture_config *config = vpif_dev->platform_data;
1085 struct video_device *vdev = video_devdata(file);
1086 struct channel_obj *ch = video_get_drvdata(vdev);
1087 struct vpif_capture_chan_config *chan_cfg;
1088 struct v4l2_input input;
1089 int ret;
1090
1091 if (!config->chan_config[ch->channel_id].inputs)
1092 return -ENODATA;
1093
1094 chan_cfg = &config->chan_config[ch->channel_id];
1095 input = chan_cfg->inputs[ch->input_idx].input;
1096 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1097 return -ENODATA;
1098
1099 ret = v4l2_subdev_call(ch->sd, video, query_dv_timings, timings);
1100 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
1101 return -ENODATA;
1102
1103 return ret;
1104 }
1105
1106 /**
1107 * vpif_s_dv_timings() - S_DV_TIMINGS handler
1108 * @file: file ptr
1109 * @priv: file handle
1110 * @timings: digital video timings
1111 */
1112 static int vpif_s_dv_timings(struct file *file, void *priv,
1113 struct v4l2_dv_timings *timings)
1114 {
1115 struct vpif_capture_config *config = vpif_dev->platform_data;
1116 struct video_device *vdev = video_devdata(file);
1117 struct channel_obj *ch = video_get_drvdata(vdev);
1118 struct vpif_params *vpifparams = &ch->vpifparams;
1119 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
1120 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
1121 struct video_obj *vid_ch = &ch->video;
1122 struct v4l2_bt_timings *bt = &vid_ch->dv_timings.bt;
1123 struct vpif_capture_chan_config *chan_cfg;
1124 struct v4l2_input input;
1125 int ret;
1126
1127 if (!config->chan_config[ch->channel_id].inputs)
1128 return -ENODATA;
1129
1130 chan_cfg = &config->chan_config[ch->channel_id];
1131 input = chan_cfg->inputs[ch->input_idx].input;
1132 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1133 return -ENODATA;
1134
1135 if (timings->type != V4L2_DV_BT_656_1120) {
1136 vpif_dbg(2, debug, "Timing type not defined\n");
1137 return -EINVAL;
1138 }
1139
1140 if (vb2_is_busy(&common->buffer_queue))
1141 return -EBUSY;
1142
1143 /* Configure subdevice timings, if any */
1144 ret = v4l2_subdev_call(ch->sd, video, s_dv_timings, timings);
1145 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
1146 ret = 0;
1147 if (ret < 0) {
1148 vpif_dbg(2, debug, "Error setting custom DV timings\n");
1149 return ret;
1150 }
1151
1152 if (!(timings->bt.width && timings->bt.height &&
1153 (timings->bt.hbackporch ||
1154 timings->bt.hfrontporch ||
1155 timings->bt.hsync) &&
1156 timings->bt.vfrontporch &&
1157 (timings->bt.vbackporch ||
1158 timings->bt.vsync))) {
1159 vpif_dbg(2, debug, "Timings for width, height, horizontal back porch, horizontal sync, horizontal front porch, vertical back porch, vertical sync and vertical back porch must be defined\n");
1160 return -EINVAL;
1161 }
1162
1163 vid_ch->dv_timings = *timings;
1164
1165 /* Configure video port timings */
1166
1167 std_info->eav2sav = V4L2_DV_BT_BLANKING_WIDTH(bt) - 8;
1168 std_info->sav2eav = bt->width;
1169
1170 std_info->l1 = 1;
1171 std_info->l3 = bt->vsync + bt->vbackporch + 1;
1172
1173 std_info->vsize = V4L2_DV_BT_FRAME_HEIGHT(bt);
1174 if (bt->interlaced) {
1175 if (bt->il_vbackporch || bt->il_vfrontporch || bt->il_vsync) {
1176 std_info->l5 = std_info->vsize/2 -
1177 (bt->vfrontporch - 1);
1178 std_info->l7 = std_info->vsize/2 + 1;
1179 std_info->l9 = std_info->l7 + bt->il_vsync +
1180 bt->il_vbackporch + 1;
1181 std_info->l11 = std_info->vsize -
1182 (bt->il_vfrontporch - 1);
1183 } else {
1184 vpif_dbg(2, debug, "Required timing values for interlaced BT format missing\n");
1185 return -EINVAL;
1186 }
1187 } else {
1188 std_info->l5 = std_info->vsize - (bt->vfrontporch - 1);
1189 }
1190 strncpy(std_info->name, "Custom timings BT656/1120", VPIF_MAX_NAME);
1191 std_info->width = bt->width;
1192 std_info->height = bt->height;
1193 std_info->frm_fmt = bt->interlaced ? 0 : 1;
1194 std_info->ycmux_mode = 0;
1195 std_info->capture_format = 0;
1196 std_info->vbi_supported = 0;
1197 std_info->hd_sd = 1;
1198 std_info->stdid = 0;
1199
1200 vid_ch->stdid = 0;
1201 return 0;
1202 }
1203
1204 /**
1205 * vpif_g_dv_timings() - G_DV_TIMINGS handler
1206 * @file: file ptr
1207 * @priv: file handle
1208 * @timings: digital video timings
1209 */
1210 static int vpif_g_dv_timings(struct file *file, void *priv,
1211 struct v4l2_dv_timings *timings)
1212 {
1213 struct vpif_capture_config *config = vpif_dev->platform_data;
1214 struct video_device *vdev = video_devdata(file);
1215 struct channel_obj *ch = video_get_drvdata(vdev);
1216 struct video_obj *vid_ch = &ch->video;
1217 struct vpif_capture_chan_config *chan_cfg;
1218 struct v4l2_input input;
1219
1220 if (!config->chan_config[ch->channel_id].inputs)
1221 return -ENODATA;
1222
1223 chan_cfg = &config->chan_config[ch->channel_id];
1224 input = chan_cfg->inputs[ch->input_idx].input;
1225 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1226 return -ENODATA;
1227
1228 *timings = vid_ch->dv_timings;
1229
1230 return 0;
1231 }
1232
1233 /*
1234 * vpif_log_status() - Status information
1235 * @file: file ptr
1236 * @priv: file handle
1237 *
1238 * Returns zero.
1239 */
1240 static int vpif_log_status(struct file *filep, void *priv)
1241 {
1242 /* status for sub devices */
1243 v4l2_device_call_all(&vpif_obj.v4l2_dev, 0, core, log_status);
1244
1245 return 0;
1246 }
1247
1248 /* vpif capture ioctl operations */
1249 static const struct v4l2_ioctl_ops vpif_ioctl_ops = {
1250 .vidioc_querycap = vpif_querycap,
1251 .vidioc_enum_fmt_vid_cap = vpif_enum_fmt_vid_cap,
1252 .vidioc_g_fmt_vid_cap = vpif_g_fmt_vid_cap,
1253 .vidioc_s_fmt_vid_cap = vpif_s_fmt_vid_cap,
1254 .vidioc_try_fmt_vid_cap = vpif_try_fmt_vid_cap,
1255
1256 .vidioc_enum_input = vpif_enum_input,
1257 .vidioc_s_input = vpif_s_input,
1258 .vidioc_g_input = vpif_g_input,
1259
1260 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1261 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1262 .vidioc_querybuf = vb2_ioctl_querybuf,
1263 .vidioc_qbuf = vb2_ioctl_qbuf,
1264 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1265 .vidioc_expbuf = vb2_ioctl_expbuf,
1266 .vidioc_streamon = vb2_ioctl_streamon,
1267 .vidioc_streamoff = vb2_ioctl_streamoff,
1268
1269 .vidioc_querystd = vpif_querystd,
1270 .vidioc_s_std = vpif_s_std,
1271 .vidioc_g_std = vpif_g_std,
1272
1273 .vidioc_enum_dv_timings = vpif_enum_dv_timings,
1274 .vidioc_query_dv_timings = vpif_query_dv_timings,
1275 .vidioc_s_dv_timings = vpif_s_dv_timings,
1276 .vidioc_g_dv_timings = vpif_g_dv_timings,
1277
1278 .vidioc_log_status = vpif_log_status,
1279 };
1280
1281 /* vpif file operations */
1282 static struct v4l2_file_operations vpif_fops = {
1283 .owner = THIS_MODULE,
1284 .open = v4l2_fh_open,
1285 .release = vb2_fop_release,
1286 .unlocked_ioctl = video_ioctl2,
1287 .mmap = vb2_fop_mmap,
1288 .poll = vb2_fop_poll
1289 };
1290
1291 /**
1292 * initialize_vpif() - Initialize vpif data structures
1293 *
1294 * Allocate memory for data structures and initialize them
1295 */
1296 static int initialize_vpif(void)
1297 {
1298 int err, i, j;
1299 int free_channel_objects_index;
1300
1301 /* Allocate memory for six channel objects */
1302 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1303 vpif_obj.dev[i] =
1304 kzalloc(sizeof(*vpif_obj.dev[i]), GFP_KERNEL);
1305 /* If memory allocation fails, return error */
1306 if (!vpif_obj.dev[i]) {
1307 free_channel_objects_index = i;
1308 err = -ENOMEM;
1309 goto vpif_init_free_channel_objects;
1310 }
1311 }
1312 return 0;
1313
1314 vpif_init_free_channel_objects:
1315 for (j = 0; j < free_channel_objects_index; j++)
1316 kfree(vpif_obj.dev[j]);
1317 return err;
1318 }
1319
1320 static int vpif_async_bound(struct v4l2_async_notifier *notifier,
1321 struct v4l2_subdev *subdev,
1322 struct v4l2_async_subdev *asd)
1323 {
1324 int i;
1325
1326 for (i = 0; i < vpif_obj.config->subdev_count; i++)
1327 if (!strcmp(vpif_obj.config->subdev_info[i].name,
1328 subdev->name)) {
1329 vpif_obj.sd[i] = subdev;
1330 return 0;
1331 }
1332
1333 return -EINVAL;
1334 }
1335
1336 static int vpif_probe_complete(void)
1337 {
1338 struct common_obj *common;
1339 struct video_device *vdev;
1340 struct channel_obj *ch;
1341 struct vb2_queue *q;
1342 int j, err, k;
1343
1344 for (j = 0; j < VPIF_CAPTURE_MAX_DEVICES; j++) {
1345 ch = vpif_obj.dev[j];
1346 ch->channel_id = j;
1347 common = &(ch->common[VPIF_VIDEO_INDEX]);
1348 spin_lock_init(&common->irqlock);
1349 mutex_init(&common->lock);
1350
1351 /* select input 0 */
1352 err = vpif_set_input(vpif_obj.config, ch, 0);
1353 if (err)
1354 goto probe_out;
1355
1356 /* set initial format */
1357 ch->video.stdid = V4L2_STD_525_60;
1358 memset(&ch->video.dv_timings, 0, sizeof(ch->video.dv_timings));
1359 vpif_update_std_info(ch);
1360
1361 /* Initialize vb2 queue */
1362 q = &common->buffer_queue;
1363 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1364 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
1365 q->drv_priv = ch;
1366 q->ops = &video_qops;
1367 q->mem_ops = &vb2_dma_contig_memops;
1368 q->buf_struct_size = sizeof(struct vpif_cap_buffer);
1369 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1370 q->min_buffers_needed = 1;
1371 q->lock = &common->lock;
1372 q->dev = vpif_dev;
1373
1374 err = vb2_queue_init(q);
1375 if (err) {
1376 vpif_err("vpif_capture: vb2_queue_init() failed\n");
1377 goto probe_out;
1378 }
1379
1380 INIT_LIST_HEAD(&common->dma_queue);
1381
1382 /* Initialize the video_device structure */
1383 vdev = &ch->video_dev;
1384 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name));
1385 vdev->release = video_device_release_empty;
1386 vdev->fops = &vpif_fops;
1387 vdev->ioctl_ops = &vpif_ioctl_ops;
1388 vdev->v4l2_dev = &vpif_obj.v4l2_dev;
1389 vdev->vfl_dir = VFL_DIR_RX;
1390 vdev->queue = q;
1391 vdev->lock = &common->lock;
1392 video_set_drvdata(&ch->video_dev, ch);
1393 err = video_register_device(vdev,
1394 VFL_TYPE_GRABBER, (j ? 1 : 0));
1395 if (err)
1396 goto probe_out;
1397 }
1398
1399 v4l2_info(&vpif_obj.v4l2_dev, "VPIF capture driver initialized\n");
1400 return 0;
1401
1402 probe_out:
1403 for (k = 0; k < j; k++) {
1404 /* Get the pointer to the channel object */
1405 ch = vpif_obj.dev[k];
1406 common = &ch->common[k];
1407 /* Unregister video device */
1408 video_unregister_device(&ch->video_dev);
1409 }
1410 kfree(vpif_obj.sd);
1411 v4l2_device_unregister(&vpif_obj.v4l2_dev);
1412
1413 return err;
1414 }
1415
1416 static int vpif_async_complete(struct v4l2_async_notifier *notifier)
1417 {
1418 return vpif_probe_complete();
1419 }
1420
1421 /**
1422 * vpif_probe : This function probes the vpif capture driver
1423 * @pdev: platform device pointer
1424 *
1425 * This creates device entries by register itself to the V4L2 driver and
1426 * initializes fields of each channel objects
1427 */
1428 static __init int vpif_probe(struct platform_device *pdev)
1429 {
1430 struct vpif_subdev_info *subdevdata;
1431 struct i2c_adapter *i2c_adap;
1432 struct resource *res;
1433 int subdev_count;
1434 int res_idx = 0;
1435 int i, err;
1436
1437 if (!pdev->dev.platform_data) {
1438 dev_warn(&pdev->dev, "Missing platform data. Giving up.\n");
1439 return -EINVAL;
1440 }
1441
1442 vpif_dev = &pdev->dev;
1443
1444 err = initialize_vpif();
1445 if (err) {
1446 v4l2_err(vpif_dev->driver, "Error initializing vpif\n");
1447 return err;
1448 }
1449
1450 err = v4l2_device_register(vpif_dev, &vpif_obj.v4l2_dev);
1451 if (err) {
1452 v4l2_err(vpif_dev->driver, "Error registering v4l2 device\n");
1453 return err;
1454 }
1455
1456 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, res_idx))) {
1457 err = devm_request_irq(&pdev->dev, res->start, vpif_channel_isr,
1458 IRQF_SHARED, VPIF_DRIVER_NAME,
1459 (void *)(&vpif_obj.dev[res_idx]->
1460 channel_id));
1461 if (err) {
1462 err = -EINVAL;
1463 goto vpif_unregister;
1464 }
1465 res_idx++;
1466 }
1467
1468 vpif_obj.config = pdev->dev.platform_data;
1469
1470 subdev_count = vpif_obj.config->subdev_count;
1471 vpif_obj.sd = kcalloc(subdev_count, sizeof(*vpif_obj.sd), GFP_KERNEL);
1472 if (!vpif_obj.sd) {
1473 err = -ENOMEM;
1474 goto vpif_unregister;
1475 }
1476
1477 if (!vpif_obj.config->asd_sizes) {
1478 int i2c_id = vpif_obj.config->i2c_adapter_id;
1479
1480 i2c_adap = i2c_get_adapter(i2c_id);
1481 WARN_ON(!i2c_adap);
1482 for (i = 0; i < subdev_count; i++) {
1483 subdevdata = &vpif_obj.config->subdev_info[i];
1484 vpif_obj.sd[i] =
1485 v4l2_i2c_new_subdev_board(&vpif_obj.v4l2_dev,
1486 i2c_adap,
1487 &subdevdata->
1488 board_info,
1489 NULL);
1490
1491 if (!vpif_obj.sd[i]) {
1492 vpif_err("Error registering v4l2 subdevice\n");
1493 err = -ENODEV;
1494 goto probe_subdev_out;
1495 }
1496 v4l2_info(&vpif_obj.v4l2_dev,
1497 "registered sub device %s\n",
1498 subdevdata->name);
1499 }
1500 vpif_probe_complete();
1501 } else {
1502 vpif_obj.notifier.subdevs = vpif_obj.config->asd;
1503 vpif_obj.notifier.num_subdevs = vpif_obj.config->asd_sizes[0];
1504 vpif_obj.notifier.bound = vpif_async_bound;
1505 vpif_obj.notifier.complete = vpif_async_complete;
1506 err = v4l2_async_notifier_register(&vpif_obj.v4l2_dev,
1507 &vpif_obj.notifier);
1508 if (err) {
1509 vpif_err("Error registering async notifier\n");
1510 err = -EINVAL;
1511 goto probe_subdev_out;
1512 }
1513 }
1514
1515 return 0;
1516
1517 probe_subdev_out:
1518 /* free sub devices memory */
1519 kfree(vpif_obj.sd);
1520 vpif_unregister:
1521 v4l2_device_unregister(&vpif_obj.v4l2_dev);
1522
1523 return err;
1524 }
1525
1526 /**
1527 * vpif_remove() - driver remove handler
1528 * @device: ptr to platform device structure
1529 *
1530 * The vidoe device is unregistered
1531 */
1532 static int vpif_remove(struct platform_device *device)
1533 {
1534 struct common_obj *common;
1535 struct channel_obj *ch;
1536 int i;
1537
1538 v4l2_device_unregister(&vpif_obj.v4l2_dev);
1539
1540 kfree(vpif_obj.sd);
1541 /* un-register device */
1542 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1543 /* Get the pointer to the channel object */
1544 ch = vpif_obj.dev[i];
1545 common = &ch->common[VPIF_VIDEO_INDEX];
1546 /* Unregister video device */
1547 video_unregister_device(&ch->video_dev);
1548 kfree(vpif_obj.dev[i]);
1549 }
1550 return 0;
1551 }
1552
1553 #ifdef CONFIG_PM_SLEEP
1554 /**
1555 * vpif_suspend: vpif device suspend
1556 */
1557 static int vpif_suspend(struct device *dev)
1558 {
1559
1560 struct common_obj *common;
1561 struct channel_obj *ch;
1562 int i;
1563
1564 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1565 /* Get the pointer to the channel object */
1566 ch = vpif_obj.dev[i];
1567 common = &ch->common[VPIF_VIDEO_INDEX];
1568
1569 if (!vb2_start_streaming_called(&common->buffer_queue))
1570 continue;
1571
1572 mutex_lock(&common->lock);
1573 /* Disable channel */
1574 if (ch->channel_id == VPIF_CHANNEL0_VIDEO) {
1575 enable_channel0(0);
1576 channel0_intr_enable(0);
1577 }
1578 if (ch->channel_id == VPIF_CHANNEL1_VIDEO ||
1579 ycmux_mode == 2) {
1580 enable_channel1(0);
1581 channel1_intr_enable(0);
1582 }
1583 mutex_unlock(&common->lock);
1584 }
1585
1586 return 0;
1587 }
1588
1589 /*
1590 * vpif_resume: vpif device suspend
1591 */
1592 static int vpif_resume(struct device *dev)
1593 {
1594 struct common_obj *common;
1595 struct channel_obj *ch;
1596 int i;
1597
1598 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1599 /* Get the pointer to the channel object */
1600 ch = vpif_obj.dev[i];
1601 common = &ch->common[VPIF_VIDEO_INDEX];
1602
1603 if (!vb2_start_streaming_called(&common->buffer_queue))
1604 continue;
1605
1606 mutex_lock(&common->lock);
1607 /* Enable channel */
1608 if (ch->channel_id == VPIF_CHANNEL0_VIDEO) {
1609 enable_channel0(1);
1610 channel0_intr_enable(1);
1611 }
1612 if (ch->channel_id == VPIF_CHANNEL1_VIDEO ||
1613 ycmux_mode == 2) {
1614 enable_channel1(1);
1615 channel1_intr_enable(1);
1616 }
1617 mutex_unlock(&common->lock);
1618 }
1619
1620 return 0;
1621 }
1622 #endif
1623
1624 static SIMPLE_DEV_PM_OPS(vpif_pm_ops, vpif_suspend, vpif_resume);
1625
1626 static __refdata struct platform_driver vpif_driver = {
1627 .driver = {
1628 .name = VPIF_DRIVER_NAME,
1629 .pm = &vpif_pm_ops,
1630 },
1631 .probe = vpif_probe,
1632 .remove = vpif_remove,
1633 };
1634
1635 module_platform_driver(vpif_driver);