2 * Copyright (C) 2009 Texas Instruments Inc
3 * Copyright (C) 2014 Lad, Prabhakar <prabhakar.csengg@gmail.com>
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * TODO : add support for VBI & HBI data service
20 * add static buffer allocation
23 #include <linux/module.h>
24 #include <linux/interrupt.h>
25 #include <linux/platform_device.h>
26 #include <linux/slab.h>
28 #include <media/v4l2-ioctl.h>
31 #include "vpif_capture.h"
33 MODULE_DESCRIPTION("TI DaVinci VPIF Capture driver");
34 MODULE_LICENSE("GPL");
35 MODULE_VERSION(VPIF_CAPTURE_VERSION
);
37 #define vpif_err(fmt, arg...) v4l2_err(&vpif_obj.v4l2_dev, fmt, ## arg)
38 #define vpif_dbg(level, debug, fmt, arg...) \
39 v4l2_dbg(level, debug, &vpif_obj.v4l2_dev, fmt, ## arg)
43 module_param(debug
, int, 0644);
45 MODULE_PARM_DESC(debug
, "Debug level 0-1");
47 #define VPIF_DRIVER_NAME "vpif_capture"
49 /* global variables */
50 static struct vpif_device vpif_obj
= { {NULL
} };
51 static struct device
*vpif_dev
;
52 static void vpif_calculate_offsets(struct channel_obj
*ch
);
53 static void vpif_config_addr(struct channel_obj
*ch
, int muxmode
);
55 static u8 channel_first_int
[VPIF_NUMBER_OF_OBJECTS
][2] = { {1, 1} };
57 /* Is set to 1 in case of SDTV formats, 2 in case of HDTV formats. */
58 static int ycmux_mode
;
61 struct vpif_cap_buffer
*to_vpif_buffer(struct vb2_v4l2_buffer
*vb
)
63 return container_of(vb
, struct vpif_cap_buffer
, vb
);
67 * vpif_buffer_prepare : callback function for buffer prepare
68 * @vb: ptr to vb2_buffer
70 * This is the callback function for buffer prepare when vb2_qbuf()
71 * function is called. The buffer is prepared and user space virtual address
72 * or user address is converted into physical address
74 static int vpif_buffer_prepare(struct vb2_buffer
*vb
)
76 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
77 struct vb2_queue
*q
= vb
->vb2_queue
;
78 struct channel_obj
*ch
= vb2_get_drv_priv(q
);
79 struct common_obj
*common
;
82 vpif_dbg(2, debug
, "vpif_buffer_prepare\n");
84 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
86 vb2_set_plane_payload(vb
, 0, common
->fmt
.fmt
.pix
.sizeimage
);
87 if (vb2_get_plane_payload(vb
, 0) > vb2_plane_size(vb
, 0))
90 vbuf
->field
= common
->fmt
.fmt
.pix
.field
;
92 addr
= vb2_dma_contig_plane_dma_addr(vb
, 0);
93 if (!IS_ALIGNED((addr
+ common
->ytop_off
), 8) ||
94 !IS_ALIGNED((addr
+ common
->ybtm_off
), 8) ||
95 !IS_ALIGNED((addr
+ common
->ctop_off
), 8) ||
96 !IS_ALIGNED((addr
+ common
->cbtm_off
), 8)) {
97 vpif_dbg(1, debug
, "offset is not aligned\n");
105 * vpif_buffer_queue_setup : Callback function for buffer setup.
107 * @nbuffers: ptr to number of buffers requested by application
108 * @nplanes:: contains number of distinct video planes needed to hold a frame
109 * @sizes[]: contains the size (in bytes) of each plane.
110 * @alloc_devs: ptr to allocation context
112 * This callback function is called when reqbuf() is called to adjust
113 * the buffer count and buffer size
115 static int vpif_buffer_queue_setup(struct vb2_queue
*vq
,
116 unsigned int *nbuffers
, unsigned int *nplanes
,
117 unsigned int sizes
[], struct device
*alloc_devs
[])
119 struct channel_obj
*ch
= vb2_get_drv_priv(vq
);
120 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
121 unsigned size
= common
->fmt
.fmt
.pix
.sizeimage
;
123 vpif_dbg(2, debug
, "vpif_buffer_setup\n");
131 if (vq
->num_buffers
+ *nbuffers
< 3)
132 *nbuffers
= 3 - vq
->num_buffers
;
137 /* Calculate the offset for Y and C data in the buffer */
138 vpif_calculate_offsets(ch
);
144 * vpif_buffer_queue : Callback function to add buffer to DMA queue
145 * @vb: ptr to vb2_buffer
147 static void vpif_buffer_queue(struct vb2_buffer
*vb
)
149 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
150 struct channel_obj
*ch
= vb2_get_drv_priv(vb
->vb2_queue
);
151 struct vpif_cap_buffer
*buf
= to_vpif_buffer(vbuf
);
152 struct common_obj
*common
;
155 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
157 vpif_dbg(2, debug
, "vpif_buffer_queue\n");
159 spin_lock_irqsave(&common
->irqlock
, flags
);
160 /* add the buffer to the DMA queue */
161 list_add_tail(&buf
->list
, &common
->dma_queue
);
162 spin_unlock_irqrestore(&common
->irqlock
, flags
);
166 * vpif_start_streaming : Starts the DMA engine for streaming
167 * @vb: ptr to vb2_buffer
168 * @count: number of buffers
170 static int vpif_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
172 struct vpif_capture_config
*vpif_config_data
=
173 vpif_dev
->platform_data
;
174 struct channel_obj
*ch
= vb2_get_drv_priv(vq
);
175 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
176 struct vpif_params
*vpif
= &ch
->vpifparams
;
177 struct vpif_cap_buffer
*buf
, *tmp
;
178 unsigned long addr
, flags
;
181 spin_lock_irqsave(&common
->irqlock
, flags
);
183 /* Initialize field_id */
186 /* configure 1 or 2 channel mode */
187 if (vpif_config_data
->setup_input_channel_mode
) {
188 ret
= vpif_config_data
->
189 setup_input_channel_mode(vpif
->std_info
.ycmux_mode
);
191 vpif_dbg(1, debug
, "can't set vpif channel mode\n");
196 ret
= v4l2_subdev_call(ch
->sd
, video
, s_stream
, 1);
197 if (ret
&& ret
!= -ENOIOCTLCMD
&& ret
!= -ENODEV
) {
198 vpif_dbg(1, debug
, "stream on failed in subdev\n");
202 /* Call vpif_set_params function to set the parameters and addresses */
203 ret
= vpif_set_video_params(vpif
, ch
->channel_id
);
205 vpif_dbg(1, debug
, "can't set video params\n");
210 vpif_config_addr(ch
, ret
);
212 /* Get the next frame from the buffer queue */
213 common
->cur_frm
= common
->next_frm
= list_entry(common
->dma_queue
.next
,
214 struct vpif_cap_buffer
, list
);
215 /* Remove buffer from the buffer queue */
216 list_del(&common
->cur_frm
->list
);
217 spin_unlock_irqrestore(&common
->irqlock
, flags
);
219 addr
= vb2_dma_contig_plane_dma_addr(&common
->cur_frm
->vb
.vb2_buf
, 0);
221 common
->set_addr(addr
+ common
->ytop_off
,
222 addr
+ common
->ybtm_off
,
223 addr
+ common
->ctop_off
,
224 addr
+ common
->cbtm_off
);
227 * Set interrupt for both the fields in VPIF Register enable channel in
230 channel_first_int
[VPIF_VIDEO_INDEX
][ch
->channel_id
] = 1;
231 if (VPIF_CHANNEL0_VIDEO
== ch
->channel_id
) {
232 channel0_intr_assert();
233 channel0_intr_enable(1);
236 if (VPIF_CHANNEL1_VIDEO
== ch
->channel_id
||
238 channel1_intr_assert();
239 channel1_intr_enable(1);
246 list_for_each_entry_safe(buf
, tmp
, &common
->dma_queue
, list
) {
247 list_del(&buf
->list
);
248 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_QUEUED
);
250 spin_unlock_irqrestore(&common
->irqlock
, flags
);
256 * vpif_stop_streaming : Stop the DMA engine
257 * @vq: ptr to vb2_queue
259 * This callback stops the DMA engine and any remaining buffers
260 * in the DMA queue are released.
262 static void vpif_stop_streaming(struct vb2_queue
*vq
)
264 struct channel_obj
*ch
= vb2_get_drv_priv(vq
);
265 struct common_obj
*common
;
269 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
271 /* Disable channel as per its device type and channel id */
272 if (VPIF_CHANNEL0_VIDEO
== ch
->channel_id
) {
274 channel0_intr_enable(0);
276 if (VPIF_CHANNEL1_VIDEO
== ch
->channel_id
||
279 channel1_intr_enable(0);
284 ret
= v4l2_subdev_call(ch
->sd
, video
, s_stream
, 0);
285 if (ret
&& ret
!= -ENOIOCTLCMD
&& ret
!= -ENODEV
)
286 vpif_dbg(1, debug
, "stream off failed in subdev\n");
288 /* release all active buffers */
289 spin_lock_irqsave(&common
->irqlock
, flags
);
290 if (common
->cur_frm
== common
->next_frm
) {
291 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
,
292 VB2_BUF_STATE_ERROR
);
294 if (common
->cur_frm
!= NULL
)
295 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
,
296 VB2_BUF_STATE_ERROR
);
297 if (common
->next_frm
!= NULL
)
298 vb2_buffer_done(&common
->next_frm
->vb
.vb2_buf
,
299 VB2_BUF_STATE_ERROR
);
302 while (!list_empty(&common
->dma_queue
)) {
303 common
->next_frm
= list_entry(common
->dma_queue
.next
,
304 struct vpif_cap_buffer
, list
);
305 list_del(&common
->next_frm
->list
);
306 vb2_buffer_done(&common
->next_frm
->vb
.vb2_buf
,
307 VB2_BUF_STATE_ERROR
);
309 spin_unlock_irqrestore(&common
->irqlock
, flags
);
312 static struct vb2_ops video_qops
= {
313 .queue_setup
= vpif_buffer_queue_setup
,
314 .buf_prepare
= vpif_buffer_prepare
,
315 .start_streaming
= vpif_start_streaming
,
316 .stop_streaming
= vpif_stop_streaming
,
317 .buf_queue
= vpif_buffer_queue
,
318 .wait_prepare
= vb2_ops_wait_prepare
,
319 .wait_finish
= vb2_ops_wait_finish
,
323 * vpif_process_buffer_complete: process a completed buffer
324 * @common: ptr to common channel object
326 * This function time stamp the buffer and mark it as DONE. It also
327 * wake up any process waiting on the QUEUE and set the next buffer
330 static void vpif_process_buffer_complete(struct common_obj
*common
)
332 common
->cur_frm
->vb
.vb2_buf
.timestamp
= ktime_get_ns();
333 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
, VB2_BUF_STATE_DONE
);
334 /* Make curFrm pointing to nextFrm */
335 common
->cur_frm
= common
->next_frm
;
339 * vpif_schedule_next_buffer: set next buffer address for capture
340 * @common : ptr to common channel object
342 * This function will get next buffer from the dma queue and
343 * set the buffer address in the vpif register for capture.
344 * the buffer is marked active
346 static void vpif_schedule_next_buffer(struct common_obj
*common
)
348 unsigned long addr
= 0;
350 spin_lock(&common
->irqlock
);
351 common
->next_frm
= list_entry(common
->dma_queue
.next
,
352 struct vpif_cap_buffer
, list
);
353 /* Remove that buffer from the buffer queue */
354 list_del(&common
->next_frm
->list
);
355 spin_unlock(&common
->irqlock
);
356 addr
= vb2_dma_contig_plane_dma_addr(&common
->next_frm
->vb
.vb2_buf
, 0);
358 /* Set top and bottom field addresses in VPIF registers */
359 common
->set_addr(addr
+ common
->ytop_off
,
360 addr
+ common
->ybtm_off
,
361 addr
+ common
->ctop_off
,
362 addr
+ common
->cbtm_off
);
366 * vpif_channel_isr : ISR handler for vpif capture
368 * @dev_id: dev_id ptr
370 * It changes status of the captured buffer, takes next buffer from the queue
371 * and sets its address in VPIF registers
373 static irqreturn_t
vpif_channel_isr(int irq
, void *dev_id
)
375 struct vpif_device
*dev
= &vpif_obj
;
376 struct common_obj
*common
;
377 struct channel_obj
*ch
;
381 channel_id
= *(int *)(dev_id
);
382 if (!vpif_intr_status(channel_id
))
385 ch
= dev
->dev
[channel_id
];
387 for (i
= 0; i
< VPIF_NUMBER_OF_OBJECTS
; i
++) {
388 common
= &ch
->common
[i
];
389 /* skip If streaming is not started in this channel */
390 /* Check the field format */
391 if (1 == ch
->vpifparams
.std_info
.frm_fmt
) {
392 /* Progressive mode */
393 spin_lock(&common
->irqlock
);
394 if (list_empty(&common
->dma_queue
)) {
395 spin_unlock(&common
->irqlock
);
398 spin_unlock(&common
->irqlock
);
400 if (!channel_first_int
[i
][channel_id
])
401 vpif_process_buffer_complete(common
);
403 channel_first_int
[i
][channel_id
] = 0;
405 vpif_schedule_next_buffer(common
);
408 channel_first_int
[i
][channel_id
] = 0;
411 * Interlaced mode. If it is first interrupt, ignore
414 if (channel_first_int
[i
][channel_id
]) {
415 channel_first_int
[i
][channel_id
] = 0;
420 /* Get field id from VPIF registers */
421 fid
= vpif_channel_getfid(ch
->channel_id
);
422 if (fid
!= ch
->field_id
) {
424 * If field id does not match stored
425 * field id, make them in sync
432 /* device field id and local field id are in sync */
434 /* this is even field */
435 if (common
->cur_frm
== common
->next_frm
)
438 /* mark the current buffer as done */
439 vpif_process_buffer_complete(common
);
440 } else if (1 == fid
) {
442 spin_lock(&common
->irqlock
);
443 if (list_empty(&common
->dma_queue
) ||
444 (common
->cur_frm
!= common
->next_frm
)) {
445 spin_unlock(&common
->irqlock
);
448 spin_unlock(&common
->irqlock
);
450 vpif_schedule_next_buffer(common
);
458 * vpif_update_std_info() - update standard related info
459 * @ch: ptr to channel object
461 * For a given standard selected by application, update values
462 * in the device data structures
464 static int vpif_update_std_info(struct channel_obj
*ch
)
466 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
467 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
468 const struct vpif_channel_config_params
*config
;
469 struct vpif_channel_config_params
*std_info
= &vpifparams
->std_info
;
470 struct video_obj
*vid_ch
= &ch
->video
;
473 vpif_dbg(2, debug
, "vpif_update_std_info\n");
475 for (index
= 0; index
< vpif_ch_params_count
; index
++) {
476 config
= &vpif_ch_params
[index
];
477 if (config
->hd_sd
== 0) {
478 vpif_dbg(2, debug
, "SD format\n");
479 if (config
->stdid
& vid_ch
->stdid
) {
480 memcpy(std_info
, config
, sizeof(*config
));
484 vpif_dbg(2, debug
, "HD format\n");
485 if (!memcmp(&config
->dv_timings
, &vid_ch
->dv_timings
,
486 sizeof(vid_ch
->dv_timings
))) {
487 memcpy(std_info
, config
, sizeof(*config
));
493 /* standard not found */
494 if (index
== vpif_ch_params_count
)
497 common
->fmt
.fmt
.pix
.width
= std_info
->width
;
498 common
->width
= std_info
->width
;
499 common
->fmt
.fmt
.pix
.height
= std_info
->height
;
500 common
->height
= std_info
->height
;
501 common
->fmt
.fmt
.pix
.sizeimage
= common
->height
* common
->width
* 2;
502 common
->fmt
.fmt
.pix
.bytesperline
= std_info
->width
;
503 vpifparams
->video_params
.hpitch
= std_info
->width
;
504 vpifparams
->video_params
.storage_mode
= std_info
->frm_fmt
;
507 common
->fmt
.fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
509 common
->fmt
.fmt
.pix
.colorspace
= V4L2_COLORSPACE_REC709
;
511 if (ch
->vpifparams
.std_info
.frm_fmt
)
512 common
->fmt
.fmt
.pix
.field
= V4L2_FIELD_NONE
;
514 common
->fmt
.fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
516 if (ch
->vpifparams
.iface
.if_type
== VPIF_IF_RAW_BAYER
)
517 common
->fmt
.fmt
.pix
.pixelformat
= V4L2_PIX_FMT_SBGGR8
;
519 common
->fmt
.fmt
.pix
.pixelformat
= V4L2_PIX_FMT_YUV422P
;
521 common
->fmt
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
527 * vpif_calculate_offsets : This function calculates buffers offsets
528 * @ch : ptr to channel object
530 * This function calculates buffer offsets for Y and C in the top and
533 static void vpif_calculate_offsets(struct channel_obj
*ch
)
535 unsigned int hpitch
, sizeimage
;
536 struct video_obj
*vid_ch
= &(ch
->video
);
537 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
538 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
539 enum v4l2_field field
= common
->fmt
.fmt
.pix
.field
;
541 vpif_dbg(2, debug
, "vpif_calculate_offsets\n");
543 if (V4L2_FIELD_ANY
== field
) {
544 if (vpifparams
->std_info
.frm_fmt
)
545 vid_ch
->buf_field
= V4L2_FIELD_NONE
;
547 vid_ch
->buf_field
= V4L2_FIELD_INTERLACED
;
549 vid_ch
->buf_field
= common
->fmt
.fmt
.pix
.field
;
551 sizeimage
= common
->fmt
.fmt
.pix
.sizeimage
;
553 hpitch
= common
->fmt
.fmt
.pix
.bytesperline
;
555 if ((V4L2_FIELD_NONE
== vid_ch
->buf_field
) ||
556 (V4L2_FIELD_INTERLACED
== vid_ch
->buf_field
)) {
557 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
558 common
->ytop_off
= 0;
559 common
->ybtm_off
= hpitch
;
560 common
->ctop_off
= sizeimage
/ 2;
561 common
->cbtm_off
= sizeimage
/ 2 + hpitch
;
562 } else if (V4L2_FIELD_SEQ_TB
== vid_ch
->buf_field
) {
563 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
564 common
->ytop_off
= 0;
565 common
->ybtm_off
= sizeimage
/ 4;
566 common
->ctop_off
= sizeimage
/ 2;
567 common
->cbtm_off
= common
->ctop_off
+ sizeimage
/ 4;
568 } else if (V4L2_FIELD_SEQ_BT
== vid_ch
->buf_field
) {
569 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
570 common
->ybtm_off
= 0;
571 common
->ytop_off
= sizeimage
/ 4;
572 common
->cbtm_off
= sizeimage
/ 2;
573 common
->ctop_off
= common
->cbtm_off
+ sizeimage
/ 4;
575 if ((V4L2_FIELD_NONE
== vid_ch
->buf_field
) ||
576 (V4L2_FIELD_INTERLACED
== vid_ch
->buf_field
))
577 vpifparams
->video_params
.storage_mode
= 1;
579 vpifparams
->video_params
.storage_mode
= 0;
581 if (1 == vpifparams
->std_info
.frm_fmt
)
582 vpifparams
->video_params
.hpitch
=
583 common
->fmt
.fmt
.pix
.bytesperline
;
585 if ((field
== V4L2_FIELD_ANY
)
586 || (field
== V4L2_FIELD_INTERLACED
))
587 vpifparams
->video_params
.hpitch
=
588 common
->fmt
.fmt
.pix
.bytesperline
* 2;
590 vpifparams
->video_params
.hpitch
=
591 common
->fmt
.fmt
.pix
.bytesperline
;
594 ch
->vpifparams
.video_params
.stdid
= vpifparams
->std_info
.stdid
;
598 * vpif_get_default_field() - Get default field type based on interface
599 * @vpif_params - ptr to vpif params
601 static inline enum v4l2_field
vpif_get_default_field(
602 struct vpif_interface
*iface
)
604 return (iface
->if_type
== VPIF_IF_RAW_BAYER
) ? V4L2_FIELD_NONE
:
605 V4L2_FIELD_INTERLACED
;
609 * vpif_config_addr() - function to configure buffer address in vpif
611 * @muxmode - channel mux mode
613 static void vpif_config_addr(struct channel_obj
*ch
, int muxmode
)
615 struct common_obj
*common
;
617 vpif_dbg(2, debug
, "vpif_config_addr\n");
619 common
= &(ch
->common
[VPIF_VIDEO_INDEX
]);
621 if (VPIF_CHANNEL1_VIDEO
== ch
->channel_id
)
622 common
->set_addr
= ch1_set_videobuf_addr
;
623 else if (2 == muxmode
)
624 common
->set_addr
= ch0_set_videobuf_addr_yc_nmux
;
626 common
->set_addr
= ch0_set_videobuf_addr
;
630 * vpif_input_to_subdev() - Maps input to sub device
631 * @vpif_cfg - global config ptr
632 * @chan_cfg - channel config ptr
633 * @input_index - Given input index from application
635 * lookup the sub device information for a given input index.
636 * we report all the inputs to application. inputs table also
637 * has sub device name for the each input
639 static int vpif_input_to_subdev(
640 struct vpif_capture_config
*vpif_cfg
,
641 struct vpif_capture_chan_config
*chan_cfg
,
644 struct vpif_subdev_info
*subdev_info
;
645 const char *subdev_name
;
648 vpif_dbg(2, debug
, "vpif_input_to_subdev\n");
650 subdev_name
= chan_cfg
->inputs
[input_index
].subdev_name
;
651 if (subdev_name
== NULL
)
654 /* loop through the sub device list to get the sub device info */
655 for (i
= 0; i
< vpif_cfg
->subdev_count
; i
++) {
656 subdev_info
= &vpif_cfg
->subdev_info
[i
];
657 if (!strcmp(subdev_info
->name
, subdev_name
))
664 * vpif_set_input() - Select an input
665 * @vpif_cfg - global config ptr
667 * @_index - Given input index from application
669 * Select the given input.
671 static int vpif_set_input(
672 struct vpif_capture_config
*vpif_cfg
,
673 struct channel_obj
*ch
,
676 struct vpif_capture_chan_config
*chan_cfg
=
677 &vpif_cfg
->chan_config
[ch
->channel_id
];
678 struct vpif_subdev_info
*subdev_info
= NULL
;
679 struct v4l2_subdev
*sd
= NULL
;
680 u32 input
= 0, output
= 0;
684 sd_index
= vpif_input_to_subdev(vpif_cfg
, chan_cfg
, index
);
686 sd
= vpif_obj
.sd
[sd_index
];
687 subdev_info
= &vpif_cfg
->subdev_info
[sd_index
];
690 /* first setup input path from sub device to vpif */
691 if (sd
&& vpif_cfg
->setup_input_path
) {
692 ret
= vpif_cfg
->setup_input_path(ch
->channel_id
,
695 vpif_dbg(1, debug
, "couldn't setup input path for the" \
696 " sub device %s, for input index %d\n",
697 subdev_info
->name
, index
);
703 input
= chan_cfg
->inputs
[index
].input_route
;
704 output
= chan_cfg
->inputs
[index
].output_route
;
705 ret
= v4l2_subdev_call(sd
, video
, s_routing
,
707 if (ret
< 0 && ret
!= -ENOIOCTLCMD
) {
708 vpif_dbg(1, debug
, "Failed to set input\n");
712 ch
->input_idx
= index
;
714 /* copy interface parameters to vpif */
715 ch
->vpifparams
.iface
= chan_cfg
->vpif_if
;
717 /* update tvnorms from the sub device input info */
718 ch
->video_dev
.tvnorms
= chan_cfg
->inputs
[index
].input
.std
;
723 * vpif_querystd() - querystd handler
726 * @std_id: ptr to std id
728 * This function is called to detect standard at the selected input
730 static int vpif_querystd(struct file
*file
, void *priv
, v4l2_std_id
*std_id
)
732 struct video_device
*vdev
= video_devdata(file
);
733 struct channel_obj
*ch
= video_get_drvdata(vdev
);
736 vpif_dbg(2, debug
, "vpif_querystd\n");
738 /* Call querystd function of decoder device */
739 ret
= v4l2_subdev_call(ch
->sd
, video
, querystd
, std_id
);
741 if (ret
== -ENOIOCTLCMD
|| ret
== -ENODEV
)
744 vpif_dbg(1, debug
, "Failed to query standard for sub devices\n");
752 * vpif_g_std() - get STD handler
755 * @std_id: ptr to std id
757 static int vpif_g_std(struct file
*file
, void *priv
, v4l2_std_id
*std
)
759 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
760 struct video_device
*vdev
= video_devdata(file
);
761 struct channel_obj
*ch
= video_get_drvdata(vdev
);
762 struct vpif_capture_chan_config
*chan_cfg
;
763 struct v4l2_input input
;
765 vpif_dbg(2, debug
, "vpif_g_std\n");
767 if (config
->chan_config
[ch
->channel_id
].inputs
== NULL
)
770 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
771 input
= chan_cfg
->inputs
[ch
->input_idx
].input
;
772 if (input
.capabilities
!= V4L2_IN_CAP_STD
)
775 *std
= ch
->video
.stdid
;
780 * vpif_s_std() - set STD handler
783 * @std_id: ptr to std id
785 static int vpif_s_std(struct file
*file
, void *priv
, v4l2_std_id std_id
)
787 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
788 struct video_device
*vdev
= video_devdata(file
);
789 struct channel_obj
*ch
= video_get_drvdata(vdev
);
790 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
791 struct vpif_capture_chan_config
*chan_cfg
;
792 struct v4l2_input input
;
795 vpif_dbg(2, debug
, "vpif_s_std\n");
797 if (config
->chan_config
[ch
->channel_id
].inputs
== NULL
)
800 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
801 input
= chan_cfg
->inputs
[ch
->input_idx
].input
;
802 if (input
.capabilities
!= V4L2_IN_CAP_STD
)
805 if (vb2_is_busy(&common
->buffer_queue
))
808 /* Call encoder subdevice function to set the standard */
809 ch
->video
.stdid
= std_id
;
810 memset(&ch
->video
.dv_timings
, 0, sizeof(ch
->video
.dv_timings
));
812 /* Get the information about the standard */
813 if (vpif_update_std_info(ch
)) {
814 vpif_err("Error getting the standard info\n");
818 /* set standard in the sub device */
819 ret
= v4l2_subdev_call(ch
->sd
, video
, s_std
, std_id
);
820 if (ret
&& ret
!= -ENOIOCTLCMD
&& ret
!= -ENODEV
) {
821 vpif_dbg(1, debug
, "Failed to set standard for sub devices\n");
828 * vpif_enum_input() - ENUMINPUT handler
831 * @input: ptr to input structure
833 static int vpif_enum_input(struct file
*file
, void *priv
,
834 struct v4l2_input
*input
)
837 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
838 struct video_device
*vdev
= video_devdata(file
);
839 struct channel_obj
*ch
= video_get_drvdata(vdev
);
840 struct vpif_capture_chan_config
*chan_cfg
;
842 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
844 if (input
->index
>= chan_cfg
->input_count
)
847 memcpy(input
, &chan_cfg
->inputs
[input
->index
].input
,
853 * vpif_g_input() - Get INPUT handler
856 * @index: ptr to input index
858 static int vpif_g_input(struct file
*file
, void *priv
, unsigned int *index
)
860 struct video_device
*vdev
= video_devdata(file
);
861 struct channel_obj
*ch
= video_get_drvdata(vdev
);
863 *index
= ch
->input_idx
;
868 * vpif_s_input() - Set INPUT handler
871 * @index: input index
873 static int vpif_s_input(struct file
*file
, void *priv
, unsigned int index
)
875 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
876 struct video_device
*vdev
= video_devdata(file
);
877 struct channel_obj
*ch
= video_get_drvdata(vdev
);
878 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
879 struct vpif_capture_chan_config
*chan_cfg
;
881 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
883 if (index
>= chan_cfg
->input_count
)
886 if (vb2_is_busy(&common
->buffer_queue
))
889 return vpif_set_input(config
, ch
, index
);
893 * vpif_enum_fmt_vid_cap() - ENUM_FMT handler
896 * @index: input index
898 static int vpif_enum_fmt_vid_cap(struct file
*file
, void *priv
,
899 struct v4l2_fmtdesc
*fmt
)
901 struct video_device
*vdev
= video_devdata(file
);
902 struct channel_obj
*ch
= video_get_drvdata(vdev
);
904 if (fmt
->index
!= 0) {
905 vpif_dbg(1, debug
, "Invalid format index\n");
909 /* Fill in the information about format */
910 if (ch
->vpifparams
.iface
.if_type
== VPIF_IF_RAW_BAYER
) {
911 fmt
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
912 strcpy(fmt
->description
, "Raw Mode -Bayer Pattern GrRBGb");
913 fmt
->pixelformat
= V4L2_PIX_FMT_SBGGR8
;
915 fmt
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
916 strcpy(fmt
->description
, "YCbCr4:2:2 YC Planar");
917 fmt
->pixelformat
= V4L2_PIX_FMT_YUV422P
;
923 * vpif_try_fmt_vid_cap() - TRY_FMT handler
926 * @fmt: ptr to v4l2 format structure
928 static int vpif_try_fmt_vid_cap(struct file
*file
, void *priv
,
929 struct v4l2_format
*fmt
)
931 struct video_device
*vdev
= video_devdata(file
);
932 struct channel_obj
*ch
= video_get_drvdata(vdev
);
933 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
934 struct common_obj
*common
= &(ch
->common
[VPIF_VIDEO_INDEX
]);
935 struct vpif_params
*vpif_params
= &ch
->vpifparams
;
938 * to supress v4l-compliance warnings silently correct
941 if (vpif_params
->iface
.if_type
== VPIF_IF_RAW_BAYER
) {
942 if (pixfmt
->pixelformat
!= V4L2_PIX_FMT_SBGGR8
)
943 pixfmt
->pixelformat
= V4L2_PIX_FMT_SBGGR8
;
945 if (pixfmt
->pixelformat
!= V4L2_PIX_FMT_YUV422P
)
946 pixfmt
->pixelformat
= V4L2_PIX_FMT_YUV422P
;
949 common
->fmt
.fmt
.pix
.pixelformat
= pixfmt
->pixelformat
;
951 vpif_update_std_info(ch
);
953 pixfmt
->field
= common
->fmt
.fmt
.pix
.field
;
954 pixfmt
->colorspace
= common
->fmt
.fmt
.pix
.colorspace
;
955 pixfmt
->bytesperline
= common
->fmt
.fmt
.pix
.width
;
956 pixfmt
->width
= common
->fmt
.fmt
.pix
.width
;
957 pixfmt
->height
= common
->fmt
.fmt
.pix
.height
;
958 pixfmt
->sizeimage
= pixfmt
->bytesperline
* pixfmt
->height
* 2;
966 * vpif_g_fmt_vid_cap() - Set INPUT handler
969 * @fmt: ptr to v4l2 format structure
971 static int vpif_g_fmt_vid_cap(struct file
*file
, void *priv
,
972 struct v4l2_format
*fmt
)
974 struct video_device
*vdev
= video_devdata(file
);
975 struct channel_obj
*ch
= video_get_drvdata(vdev
);
976 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
978 /* Check the validity of the buffer type */
979 if (common
->fmt
.type
!= fmt
->type
)
982 /* Fill in the information about format */
988 * vpif_s_fmt_vid_cap() - Set FMT handler
991 * @fmt: ptr to v4l2 format structure
993 static int vpif_s_fmt_vid_cap(struct file
*file
, void *priv
,
994 struct v4l2_format
*fmt
)
996 struct video_device
*vdev
= video_devdata(file
);
997 struct channel_obj
*ch
= video_get_drvdata(vdev
);
998 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1001 vpif_dbg(2, debug
, "%s\n", __func__
);
1003 if (vb2_is_busy(&common
->buffer_queue
))
1006 ret
= vpif_try_fmt_vid_cap(file
, priv
, fmt
);
1010 /* store the format in the channel object */
1016 * vpif_querycap() - QUERYCAP handler
1018 * @priv: file handle
1019 * @cap: ptr to v4l2_capability structure
1021 static int vpif_querycap(struct file
*file
, void *priv
,
1022 struct v4l2_capability
*cap
)
1024 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
1026 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
1027 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
1028 strlcpy(cap
->driver
, VPIF_DRIVER_NAME
, sizeof(cap
->driver
));
1029 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
), "platform:%s",
1030 dev_name(vpif_dev
));
1031 strlcpy(cap
->card
, config
->card_name
, sizeof(cap
->card
));
1037 * vpif_enum_dv_timings() - ENUM_DV_TIMINGS handler
1039 * @priv: file handle
1040 * @timings: input timings
1043 vpif_enum_dv_timings(struct file
*file
, void *priv
,
1044 struct v4l2_enum_dv_timings
*timings
)
1046 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
1047 struct video_device
*vdev
= video_devdata(file
);
1048 struct channel_obj
*ch
= video_get_drvdata(vdev
);
1049 struct vpif_capture_chan_config
*chan_cfg
;
1050 struct v4l2_input input
;
1053 if (config
->chan_config
[ch
->channel_id
].inputs
== NULL
)
1056 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
1057 input
= chan_cfg
->inputs
[ch
->input_idx
].input
;
1058 if (input
.capabilities
!= V4L2_IN_CAP_DV_TIMINGS
)
1063 ret
= v4l2_subdev_call(ch
->sd
, pad
, enum_dv_timings
, timings
);
1064 if (ret
== -ENOIOCTLCMD
|| ret
== -ENODEV
)
1071 * vpif_query_dv_timings() - QUERY_DV_TIMINGS handler
1073 * @priv: file handle
1074 * @timings: input timings
1077 vpif_query_dv_timings(struct file
*file
, void *priv
,
1078 struct v4l2_dv_timings
*timings
)
1080 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
1081 struct video_device
*vdev
= video_devdata(file
);
1082 struct channel_obj
*ch
= video_get_drvdata(vdev
);
1083 struct vpif_capture_chan_config
*chan_cfg
;
1084 struct v4l2_input input
;
1087 if (config
->chan_config
[ch
->channel_id
].inputs
== NULL
)
1090 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
1091 input
= chan_cfg
->inputs
[ch
->input_idx
].input
;
1092 if (input
.capabilities
!= V4L2_IN_CAP_DV_TIMINGS
)
1095 ret
= v4l2_subdev_call(ch
->sd
, video
, query_dv_timings
, timings
);
1096 if (ret
== -ENOIOCTLCMD
|| ret
== -ENODEV
)
1103 * vpif_s_dv_timings() - S_DV_TIMINGS handler
1105 * @priv: file handle
1106 * @timings: digital video timings
1108 static int vpif_s_dv_timings(struct file
*file
, void *priv
,
1109 struct v4l2_dv_timings
*timings
)
1111 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
1112 struct video_device
*vdev
= video_devdata(file
);
1113 struct channel_obj
*ch
= video_get_drvdata(vdev
);
1114 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
1115 struct vpif_channel_config_params
*std_info
= &vpifparams
->std_info
;
1116 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1117 struct video_obj
*vid_ch
= &ch
->video
;
1118 struct v4l2_bt_timings
*bt
= &vid_ch
->dv_timings
.bt
;
1119 struct vpif_capture_chan_config
*chan_cfg
;
1120 struct v4l2_input input
;
1123 if (config
->chan_config
[ch
->channel_id
].inputs
== NULL
)
1126 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
1127 input
= chan_cfg
->inputs
[ch
->input_idx
].input
;
1128 if (input
.capabilities
!= V4L2_IN_CAP_DV_TIMINGS
)
1131 if (timings
->type
!= V4L2_DV_BT_656_1120
) {
1132 vpif_dbg(2, debug
, "Timing type not defined\n");
1136 if (vb2_is_busy(&common
->buffer_queue
))
1139 /* Configure subdevice timings, if any */
1140 ret
= v4l2_subdev_call(ch
->sd
, video
, s_dv_timings
, timings
);
1141 if (ret
== -ENOIOCTLCMD
|| ret
== -ENODEV
)
1144 vpif_dbg(2, debug
, "Error setting custom DV timings\n");
1148 if (!(timings
->bt
.width
&& timings
->bt
.height
&&
1149 (timings
->bt
.hbackporch
||
1150 timings
->bt
.hfrontporch
||
1151 timings
->bt
.hsync
) &&
1152 timings
->bt
.vfrontporch
&&
1153 (timings
->bt
.vbackporch
||
1154 timings
->bt
.vsync
))) {
1155 vpif_dbg(2, debug
, "Timings for width, height, "
1156 "horizontal back porch, horizontal sync, "
1157 "horizontal front porch, vertical back porch, "
1158 "vertical sync and vertical back porch "
1159 "must be defined\n");
1163 vid_ch
->dv_timings
= *timings
;
1165 /* Configure video port timings */
1167 std_info
->eav2sav
= V4L2_DV_BT_BLANKING_WIDTH(bt
) - 8;
1168 std_info
->sav2eav
= bt
->width
;
1171 std_info
->l3
= bt
->vsync
+ bt
->vbackporch
+ 1;
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);
1184 vpif_dbg(2, debug
, "Required timing values for "
1185 "interlaced BT format missing\n");
1189 std_info
->l5
= std_info
->vsize
- (bt
->vfrontporch
- 1);
1191 strncpy(std_info
->name
, "Custom timings BT656/1120", VPIF_MAX_NAME
);
1192 std_info
->width
= bt
->width
;
1193 std_info
->height
= bt
->height
;
1194 std_info
->frm_fmt
= bt
->interlaced
? 0 : 1;
1195 std_info
->ycmux_mode
= 0;
1196 std_info
->capture_format
= 0;
1197 std_info
->vbi_supported
= 0;
1198 std_info
->hd_sd
= 1;
1199 std_info
->stdid
= 0;
1206 * vpif_g_dv_timings() - G_DV_TIMINGS handler
1208 * @priv: file handle
1209 * @timings: digital video timings
1211 static int vpif_g_dv_timings(struct file
*file
, void *priv
,
1212 struct v4l2_dv_timings
*timings
)
1214 struct vpif_capture_config
*config
= vpif_dev
->platform_data
;
1215 struct video_device
*vdev
= video_devdata(file
);
1216 struct channel_obj
*ch
= video_get_drvdata(vdev
);
1217 struct video_obj
*vid_ch
= &ch
->video
;
1218 struct vpif_capture_chan_config
*chan_cfg
;
1219 struct v4l2_input input
;
1221 if (config
->chan_config
[ch
->channel_id
].inputs
== NULL
)
1224 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
1225 input
= chan_cfg
->inputs
[ch
->input_idx
].input
;
1226 if (input
.capabilities
!= V4L2_IN_CAP_DV_TIMINGS
)
1229 *timings
= vid_ch
->dv_timings
;
1235 * vpif_log_status() - Status information
1237 * @priv: file handle
1241 static int vpif_log_status(struct file
*filep
, void *priv
)
1243 /* status for sub devices */
1244 v4l2_device_call_all(&vpif_obj
.v4l2_dev
, 0, core
, log_status
);
1249 /* vpif capture ioctl operations */
1250 static const struct v4l2_ioctl_ops vpif_ioctl_ops
= {
1251 .vidioc_querycap
= vpif_querycap
,
1252 .vidioc_enum_fmt_vid_cap
= vpif_enum_fmt_vid_cap
,
1253 .vidioc_g_fmt_vid_cap
= vpif_g_fmt_vid_cap
,
1254 .vidioc_s_fmt_vid_cap
= vpif_s_fmt_vid_cap
,
1255 .vidioc_try_fmt_vid_cap
= vpif_try_fmt_vid_cap
,
1257 .vidioc_enum_input
= vpif_enum_input
,
1258 .vidioc_s_input
= vpif_s_input
,
1259 .vidioc_g_input
= vpif_g_input
,
1261 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
1262 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
1263 .vidioc_querybuf
= vb2_ioctl_querybuf
,
1264 .vidioc_qbuf
= vb2_ioctl_qbuf
,
1265 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
1266 .vidioc_expbuf
= vb2_ioctl_expbuf
,
1267 .vidioc_streamon
= vb2_ioctl_streamon
,
1268 .vidioc_streamoff
= vb2_ioctl_streamoff
,
1270 .vidioc_querystd
= vpif_querystd
,
1271 .vidioc_s_std
= vpif_s_std
,
1272 .vidioc_g_std
= vpif_g_std
,
1274 .vidioc_enum_dv_timings
= vpif_enum_dv_timings
,
1275 .vidioc_query_dv_timings
= vpif_query_dv_timings
,
1276 .vidioc_s_dv_timings
= vpif_s_dv_timings
,
1277 .vidioc_g_dv_timings
= vpif_g_dv_timings
,
1279 .vidioc_log_status
= vpif_log_status
,
1282 /* vpif file operations */
1283 static struct v4l2_file_operations vpif_fops
= {
1284 .owner
= THIS_MODULE
,
1285 .open
= v4l2_fh_open
,
1286 .release
= vb2_fop_release
,
1287 .unlocked_ioctl
= video_ioctl2
,
1288 .mmap
= vb2_fop_mmap
,
1289 .poll
= vb2_fop_poll
1293 * initialize_vpif() - Initialize vpif data structures
1295 * Allocate memory for data structures and initialize them
1297 static int initialize_vpif(void)
1300 int free_channel_objects_index
;
1302 /* Allocate memory for six channel objects */
1303 for (i
= 0; i
< VPIF_CAPTURE_MAX_DEVICES
; i
++) {
1305 kzalloc(sizeof(*vpif_obj
.dev
[i
]), GFP_KERNEL
);
1306 /* If memory allocation fails, return error */
1307 if (!vpif_obj
.dev
[i
]) {
1308 free_channel_objects_index
= i
;
1310 goto vpif_init_free_channel_objects
;
1315 vpif_init_free_channel_objects
:
1316 for (j
= 0; j
< free_channel_objects_index
; j
++)
1317 kfree(vpif_obj
.dev
[j
]);
1321 static int vpif_async_bound(struct v4l2_async_notifier
*notifier
,
1322 struct v4l2_subdev
*subdev
,
1323 struct v4l2_async_subdev
*asd
)
1327 for (i
= 0; i
< vpif_obj
.config
->subdev_count
; i
++)
1328 if (!strcmp(vpif_obj
.config
->subdev_info
[i
].name
,
1330 vpif_obj
.sd
[i
] = subdev
;
1337 static int vpif_probe_complete(void)
1339 struct common_obj
*common
;
1340 struct video_device
*vdev
;
1341 struct channel_obj
*ch
;
1342 struct vb2_queue
*q
;
1345 for (j
= 0; j
< VPIF_CAPTURE_MAX_DEVICES
; j
++) {
1346 ch
= vpif_obj
.dev
[j
];
1348 common
= &(ch
->common
[VPIF_VIDEO_INDEX
]);
1349 spin_lock_init(&common
->irqlock
);
1350 mutex_init(&common
->lock
);
1352 /* select input 0 */
1353 err
= vpif_set_input(vpif_obj
.config
, ch
, 0);
1357 /* set initial format */
1358 ch
->video
.stdid
= V4L2_STD_525_60
;
1359 memset(&ch
->video
.dv_timings
, 0, sizeof(ch
->video
.dv_timings
));
1360 vpif_update_std_info(ch
);
1362 /* Initialize vb2 queue */
1363 q
= &common
->buffer_queue
;
1364 q
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1365 q
->io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
;
1367 q
->ops
= &video_qops
;
1368 q
->mem_ops
= &vb2_dma_contig_memops
;
1369 q
->buf_struct_size
= sizeof(struct vpif_cap_buffer
);
1370 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
1371 q
->min_buffers_needed
= 1;
1372 q
->lock
= &common
->lock
;
1375 err
= vb2_queue_init(q
);
1377 vpif_err("vpif_capture: vb2_queue_init() failed\n");
1381 INIT_LIST_HEAD(&common
->dma_queue
);
1383 /* Initialize the video_device structure */
1384 vdev
= &ch
->video_dev
;
1385 strlcpy(vdev
->name
, VPIF_DRIVER_NAME
, sizeof(vdev
->name
));
1386 vdev
->release
= video_device_release_empty
;
1387 vdev
->fops
= &vpif_fops
;
1388 vdev
->ioctl_ops
= &vpif_ioctl_ops
;
1389 vdev
->v4l2_dev
= &vpif_obj
.v4l2_dev
;
1390 vdev
->vfl_dir
= VFL_DIR_RX
;
1392 vdev
->lock
= &common
->lock
;
1393 video_set_drvdata(&ch
->video_dev
, ch
);
1394 err
= video_register_device(vdev
,
1395 VFL_TYPE_GRABBER
, (j
? 1 : 0));
1400 v4l2_info(&vpif_obj
.v4l2_dev
, "VPIF capture driver initialized\n");
1404 for (k
= 0; k
< j
; k
++) {
1405 /* Get the pointer to the channel object */
1406 ch
= vpif_obj
.dev
[k
];
1407 common
= &ch
->common
[k
];
1408 /* Unregister video device */
1409 video_unregister_device(&ch
->video_dev
);
1412 v4l2_device_unregister(&vpif_obj
.v4l2_dev
);
1417 static int vpif_async_complete(struct v4l2_async_notifier
*notifier
)
1419 return vpif_probe_complete();
1423 * vpif_probe : This function probes the vpif capture driver
1424 * @pdev: platform device pointer
1426 * This creates device entries by register itself to the V4L2 driver and
1427 * initializes fields of each channel objects
1429 static __init
int vpif_probe(struct platform_device
*pdev
)
1431 struct vpif_subdev_info
*subdevdata
;
1432 struct i2c_adapter
*i2c_adap
;
1433 struct resource
*res
;
1438 vpif_dev
= &pdev
->dev
;
1440 err
= initialize_vpif();
1442 v4l2_err(vpif_dev
->driver
, "Error initializing vpif\n");
1446 err
= v4l2_device_register(vpif_dev
, &vpif_obj
.v4l2_dev
);
1448 v4l2_err(vpif_dev
->driver
, "Error registering v4l2 device\n");
1452 while ((res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, res_idx
))) {
1453 err
= devm_request_irq(&pdev
->dev
, res
->start
, vpif_channel_isr
,
1454 IRQF_SHARED
, VPIF_DRIVER_NAME
,
1455 (void *)(&vpif_obj
.dev
[res_idx
]->
1459 goto vpif_unregister
;
1464 vpif_obj
.config
= pdev
->dev
.platform_data
;
1466 subdev_count
= vpif_obj
.config
->subdev_count
;
1467 vpif_obj
.sd
= kzalloc(sizeof(struct v4l2_subdev
*) * subdev_count
,
1469 if (vpif_obj
.sd
== NULL
) {
1470 vpif_err("unable to allocate memory for subdevice pointers\n");
1472 goto vpif_unregister
;
1475 if (!vpif_obj
.config
->asd_sizes
) {
1476 i2c_adap
= i2c_get_adapter(1);
1477 for (i
= 0; i
< subdev_count
; i
++) {
1478 subdevdata
= &vpif_obj
.config
->subdev_info
[i
];
1480 v4l2_i2c_new_subdev_board(&vpif_obj
.v4l2_dev
,
1486 if (!vpif_obj
.sd
[i
]) {
1487 vpif_err("Error registering v4l2 subdevice\n");
1489 goto probe_subdev_out
;
1491 v4l2_info(&vpif_obj
.v4l2_dev
,
1492 "registered sub device %s\n",
1495 vpif_probe_complete();
1497 vpif_obj
.notifier
.subdevs
= vpif_obj
.config
->asd
;
1498 vpif_obj
.notifier
.num_subdevs
= vpif_obj
.config
->asd_sizes
[0];
1499 vpif_obj
.notifier
.bound
= vpif_async_bound
;
1500 vpif_obj
.notifier
.complete
= vpif_async_complete
;
1501 err
= v4l2_async_notifier_register(&vpif_obj
.v4l2_dev
,
1502 &vpif_obj
.notifier
);
1504 vpif_err("Error registering async notifier\n");
1506 goto probe_subdev_out
;
1513 /* free sub devices memory */
1516 v4l2_device_unregister(&vpif_obj
.v4l2_dev
);
1522 * vpif_remove() - driver remove handler
1523 * @device: ptr to platform device structure
1525 * The vidoe device is unregistered
1527 static int vpif_remove(struct platform_device
*device
)
1529 struct common_obj
*common
;
1530 struct channel_obj
*ch
;
1533 v4l2_device_unregister(&vpif_obj
.v4l2_dev
);
1536 /* un-register device */
1537 for (i
= 0; i
< VPIF_CAPTURE_MAX_DEVICES
; i
++) {
1538 /* Get the pointer to the channel object */
1539 ch
= vpif_obj
.dev
[i
];
1540 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1541 /* Unregister video device */
1542 video_unregister_device(&ch
->video_dev
);
1543 kfree(vpif_obj
.dev
[i
]);
1548 #ifdef CONFIG_PM_SLEEP
1550 * vpif_suspend: vpif device suspend
1552 static int vpif_suspend(struct device
*dev
)
1555 struct common_obj
*common
;
1556 struct channel_obj
*ch
;
1559 for (i
= 0; i
< VPIF_CAPTURE_MAX_DEVICES
; i
++) {
1560 /* Get the pointer to the channel object */
1561 ch
= vpif_obj
.dev
[i
];
1562 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1564 if (!vb2_start_streaming_called(&common
->buffer_queue
))
1567 mutex_lock(&common
->lock
);
1568 /* Disable channel */
1569 if (ch
->channel_id
== VPIF_CHANNEL0_VIDEO
) {
1571 channel0_intr_enable(0);
1573 if (ch
->channel_id
== VPIF_CHANNEL1_VIDEO
||
1576 channel1_intr_enable(0);
1578 mutex_unlock(&common
->lock
);
1585 * vpif_resume: vpif device suspend
1587 static int vpif_resume(struct device
*dev
)
1589 struct common_obj
*common
;
1590 struct channel_obj
*ch
;
1593 for (i
= 0; i
< VPIF_CAPTURE_MAX_DEVICES
; i
++) {
1594 /* Get the pointer to the channel object */
1595 ch
= vpif_obj
.dev
[i
];
1596 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1598 if (!vb2_start_streaming_called(&common
->buffer_queue
))
1601 mutex_lock(&common
->lock
);
1602 /* Enable channel */
1603 if (ch
->channel_id
== VPIF_CHANNEL0_VIDEO
) {
1605 channel0_intr_enable(1);
1607 if (ch
->channel_id
== VPIF_CHANNEL1_VIDEO
||
1610 channel1_intr_enable(1);
1612 mutex_unlock(&common
->lock
);
1619 static SIMPLE_DEV_PM_OPS(vpif_pm_ops
, vpif_suspend
, vpif_resume
);
1621 static __refdata
struct platform_driver vpif_driver
= {
1623 .name
= VPIF_DRIVER_NAME
,
1626 .probe
= vpif_probe
,
1627 .remove
= vpif_remove
,
1630 module_platform_driver(vpif_driver
);