2 * vpif-display - VPIF display driver
3 * Display driver for TI DaVinci VPIF
5 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
6 * Copyright (C) 2014 Lad, Prabhakar <prabhakar.csengg@gmail.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation version 2.
12 * This program is distributed .as is. WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/platform_device.h>
21 #include <linux/slab.h>
23 #include <media/v4l2-ioctl.h>
26 #include "vpif_display.h"
28 MODULE_DESCRIPTION("TI DaVinci VPIF Display driver");
29 MODULE_LICENSE("GPL");
30 MODULE_VERSION(VPIF_DISPLAY_VERSION
);
32 #define VPIF_V4L2_STD (V4L2_STD_525_60 | V4L2_STD_625_50)
34 #define vpif_err(fmt, arg...) v4l2_err(&vpif_obj.v4l2_dev, fmt, ## arg)
35 #define vpif_dbg(level, debug, fmt, arg...) \
36 v4l2_dbg(level, debug, &vpif_obj.v4l2_dev, fmt, ## arg)
40 module_param(debug
, int, 0644);
42 MODULE_PARM_DESC(debug
, "Debug level 0-1");
44 #define VPIF_DRIVER_NAME "vpif_display"
45 MODULE_ALIAS("platform:" VPIF_DRIVER_NAME
);
47 /* Is set to 1 in case of SDTV formats, 2 in case of HDTV formats. */
48 static int ycmux_mode
;
50 static u8 channel_first_int
[VPIF_NUMOBJECTS
][2] = { {1, 1} };
52 static struct vpif_device vpif_obj
= { {NULL
} };
53 static struct device
*vpif_dev
;
54 static void vpif_calculate_offsets(struct channel_obj
*ch
);
55 static void vpif_config_addr(struct channel_obj
*ch
, int muxmode
);
58 struct vpif_disp_buffer
*to_vpif_buffer(struct vb2_v4l2_buffer
*vb
)
60 return container_of(vb
, struct vpif_disp_buffer
, vb
);
64 * vpif_buffer_prepare : callback function for buffer prepare
65 * @vb: ptr to vb2_buffer
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
71 static int vpif_buffer_prepare(struct vb2_buffer
*vb
)
73 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
74 struct channel_obj
*ch
= vb2_get_drv_priv(vb
->vb2_queue
);
75 struct common_obj
*common
;
77 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
79 vb2_set_plane_payload(vb
, 0, common
->fmt
.fmt
.pix
.sizeimage
);
80 if (vb2_get_plane_payload(vb
, 0) > vb2_plane_size(vb
, 0))
83 vbuf
->field
= common
->fmt
.fmt
.pix
.field
;
85 if (vb
->vb2_queue
->type
!= V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
) {
86 unsigned long addr
= vb2_dma_contig_plane_dma_addr(vb
, 0);
88 if (!ISALIGNED(addr
+ common
->ytop_off
) ||
89 !ISALIGNED(addr
+ common
->ybtm_off
) ||
90 !ISALIGNED(addr
+ common
->ctop_off
) ||
91 !ISALIGNED(addr
+ common
->cbtm_off
)) {
92 vpif_err("buffer offset not aligned to 8 bytes\n");
101 * vpif_buffer_queue_setup : Callback function for buffer setup.
103 * @nbuffers: ptr to number of buffers requested by application
104 * @nplanes:: contains number of distinct video planes needed to hold a frame
105 * @sizes: contains the size (in bytes) of each plane.
106 * @alloc_devs: ptr to allocation context
108 * This callback function is called when reqbuf() is called to adjust
109 * the buffer count and buffer size
111 static int vpif_buffer_queue_setup(struct vb2_queue
*vq
,
112 unsigned int *nbuffers
, unsigned int *nplanes
,
113 unsigned int sizes
[], struct device
*alloc_devs
[])
115 struct channel_obj
*ch
= vb2_get_drv_priv(vq
);
116 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
117 unsigned size
= common
->fmt
.fmt
.pix
.sizeimage
;
125 if (vq
->num_buffers
+ *nbuffers
< 3)
126 *nbuffers
= 3 - vq
->num_buffers
;
131 /* Calculate the offset for Y and C data in the buffer */
132 vpif_calculate_offsets(ch
);
138 * vpif_buffer_queue : Callback function to add buffer to DMA queue
139 * @vb: ptr to vb2_buffer
141 * This callback fucntion queues the buffer to DMA engine
143 static void vpif_buffer_queue(struct vb2_buffer
*vb
)
145 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
146 struct vpif_disp_buffer
*buf
= to_vpif_buffer(vbuf
);
147 struct channel_obj
*ch
= vb2_get_drv_priv(vb
->vb2_queue
);
148 struct common_obj
*common
;
151 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
153 /* add the buffer to the DMA queue */
154 spin_lock_irqsave(&common
->irqlock
, flags
);
155 list_add_tail(&buf
->list
, &common
->dma_queue
);
156 spin_unlock_irqrestore(&common
->irqlock
, flags
);
160 * vpif_start_streaming : Starts the DMA engine for streaming
161 * @vq: ptr to vb2_buffer
162 * @count: number of buffers
164 static int vpif_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
166 struct vpif_display_config
*vpif_config_data
=
167 vpif_dev
->platform_data
;
168 struct channel_obj
*ch
= vb2_get_drv_priv(vq
);
169 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
170 struct vpif_params
*vpif
= &ch
->vpifparams
;
171 struct vpif_disp_buffer
*buf
, *tmp
;
172 unsigned long addr
, flags
;
175 spin_lock_irqsave(&common
->irqlock
, flags
);
177 /* Initialize field_id */
181 if (vpif_config_data
->set_clock
) {
182 ret
= vpif_config_data
->set_clock(ch
->vpifparams
.std_info
.
183 ycmux_mode
, ch
->vpifparams
.std_info
.hd_sd
);
185 vpif_err("can't set clock\n");
190 /* set the parameters and addresses */
191 ret
= vpif_set_video_params(vpif
, ch
->channel_id
+ 2);
196 vpif_config_addr(ch
, ret
);
197 /* Get the next frame from the buffer queue */
198 common
->next_frm
= common
->cur_frm
=
199 list_entry(common
->dma_queue
.next
,
200 struct vpif_disp_buffer
, list
);
202 list_del(&common
->cur_frm
->list
);
203 spin_unlock_irqrestore(&common
->irqlock
, flags
);
205 addr
= vb2_dma_contig_plane_dma_addr(&common
->cur_frm
->vb
.vb2_buf
, 0);
206 common
->set_addr((addr
+ common
->ytop_off
),
207 (addr
+ common
->ybtm_off
),
208 (addr
+ common
->ctop_off
),
209 (addr
+ common
->cbtm_off
));
212 * Set interrupt for both the fields in VPIF
213 * Register enable channel in VPIF register
215 channel_first_int
[VPIF_VIDEO_INDEX
][ch
->channel_id
] = 1;
216 if (VPIF_CHANNEL2_VIDEO
== ch
->channel_id
) {
217 channel2_intr_assert();
218 channel2_intr_enable(1);
220 if (vpif_config_data
->chan_config
[VPIF_CHANNEL2_VIDEO
].clip_en
)
221 channel2_clipping_enable(1);
224 if (VPIF_CHANNEL3_VIDEO
== ch
->channel_id
|| ycmux_mode
== 2) {
225 channel3_intr_assert();
226 channel3_intr_enable(1);
228 if (vpif_config_data
->chan_config
[VPIF_CHANNEL3_VIDEO
].clip_en
)
229 channel3_clipping_enable(1);
235 list_for_each_entry_safe(buf
, tmp
, &common
->dma_queue
, list
) {
236 list_del(&buf
->list
);
237 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_QUEUED
);
239 spin_unlock_irqrestore(&common
->irqlock
, flags
);
245 * vpif_stop_streaming : Stop the DMA engine
246 * @vq: ptr to vb2_queue
248 * This callback stops the DMA engine and any remaining buffers
249 * in the DMA queue are released.
251 static void vpif_stop_streaming(struct vb2_queue
*vq
)
253 struct channel_obj
*ch
= vb2_get_drv_priv(vq
);
254 struct common_obj
*common
;
257 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
259 /* Disable channel */
260 if (VPIF_CHANNEL2_VIDEO
== ch
->channel_id
) {
262 channel2_intr_enable(0);
264 if (VPIF_CHANNEL3_VIDEO
== ch
->channel_id
|| ycmux_mode
== 2) {
266 channel3_intr_enable(0);
269 /* release all active buffers */
270 spin_lock_irqsave(&common
->irqlock
, flags
);
271 if (common
->cur_frm
== common
->next_frm
) {
272 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
,
273 VB2_BUF_STATE_ERROR
);
276 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
,
277 VB2_BUF_STATE_ERROR
);
278 if (common
->next_frm
)
279 vb2_buffer_done(&common
->next_frm
->vb
.vb2_buf
,
280 VB2_BUF_STATE_ERROR
);
283 while (!list_empty(&common
->dma_queue
)) {
284 common
->next_frm
= list_entry(common
->dma_queue
.next
,
285 struct vpif_disp_buffer
, list
);
286 list_del(&common
->next_frm
->list
);
287 vb2_buffer_done(&common
->next_frm
->vb
.vb2_buf
,
288 VB2_BUF_STATE_ERROR
);
290 spin_unlock_irqrestore(&common
->irqlock
, flags
);
293 static const struct vb2_ops video_qops
= {
294 .queue_setup
= vpif_buffer_queue_setup
,
295 .wait_prepare
= vb2_ops_wait_prepare
,
296 .wait_finish
= vb2_ops_wait_finish
,
297 .buf_prepare
= vpif_buffer_prepare
,
298 .start_streaming
= vpif_start_streaming
,
299 .stop_streaming
= vpif_stop_streaming
,
300 .buf_queue
= vpif_buffer_queue
,
303 static void process_progressive_mode(struct common_obj
*common
)
307 spin_lock(&common
->irqlock
);
308 /* Get the next buffer from buffer queue */
309 common
->next_frm
= list_entry(common
->dma_queue
.next
,
310 struct vpif_disp_buffer
, list
);
311 /* Remove that buffer from the buffer queue */
312 list_del(&common
->next_frm
->list
);
313 spin_unlock(&common
->irqlock
);
315 /* Set top and bottom field addrs in VPIF registers */
316 addr
= vb2_dma_contig_plane_dma_addr(&common
->next_frm
->vb
.vb2_buf
, 0);
317 common
->set_addr(addr
+ common
->ytop_off
,
318 addr
+ common
->ybtm_off
,
319 addr
+ common
->ctop_off
,
320 addr
+ common
->cbtm_off
);
323 static void process_interlaced_mode(int fid
, struct common_obj
*common
)
325 /* device field id and local field id are in sync */
326 /* If this is even field */
328 if (common
->cur_frm
== common
->next_frm
)
331 /* one frame is displayed If next frame is
332 * available, release cur_frm and move on */
333 /* Copy frame display time */
334 common
->cur_frm
->vb
.vb2_buf
.timestamp
= ktime_get_ns();
335 /* Change status of the cur_frm */
336 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
,
338 /* Make cur_frm pointing to next_frm */
339 common
->cur_frm
= common
->next_frm
;
341 } else if (1 == fid
) { /* odd field */
342 spin_lock(&common
->irqlock
);
343 if (list_empty(&common
->dma_queue
)
344 || (common
->cur_frm
!= common
->next_frm
)) {
345 spin_unlock(&common
->irqlock
);
348 spin_unlock(&common
->irqlock
);
349 /* one field is displayed configure the next
350 * frame if it is available else hold on current
352 /* Get next from the buffer queue */
353 process_progressive_mode(common
);
358 * vpif_channel_isr: It changes status of the displayed buffer, takes next
359 * buffer from the queue and sets its address in VPIF registers
361 static irqreturn_t
vpif_channel_isr(int irq
, void *dev_id
)
363 struct vpif_device
*dev
= &vpif_obj
;
364 struct channel_obj
*ch
;
365 struct common_obj
*common
;
369 channel_id
= *(int *)(dev_id
);
370 if (!vpif_intr_status(channel_id
+ 2))
373 ch
= dev
->dev
[channel_id
];
374 for (i
= 0; i
< VPIF_NUMOBJECTS
; i
++) {
375 common
= &ch
->common
[i
];
376 /* If streaming is started in this channel */
378 if (1 == ch
->vpifparams
.std_info
.frm_fmt
) {
379 spin_lock(&common
->irqlock
);
380 if (list_empty(&common
->dma_queue
)) {
381 spin_unlock(&common
->irqlock
);
384 spin_unlock(&common
->irqlock
);
386 /* Progressive mode */
387 if (!channel_first_int
[i
][channel_id
]) {
388 /* Mark status of the cur_frm to
389 * done and unlock semaphore on it */
390 common
->cur_frm
->vb
.vb2_buf
.timestamp
=
392 vb2_buffer_done(&common
->cur_frm
->vb
.vb2_buf
,
394 /* Make cur_frm pointing to next_frm */
395 common
->cur_frm
= common
->next_frm
;
398 channel_first_int
[i
][channel_id
] = 0;
399 process_progressive_mode(common
);
401 /* Interlaced mode */
402 /* If it is first interrupt, ignore it */
404 if (channel_first_int
[i
][channel_id
]) {
405 channel_first_int
[i
][channel_id
] = 0;
411 /* Get field id from VPIF registers */
412 fid
= vpif_channel_getfid(ch
->channel_id
+ 2);
413 /* If fid does not match with stored field id */
414 if (fid
!= ch
->field_id
) {
415 /* Make them in sync */
422 process_interlaced_mode(fid
, common
);
429 static int vpif_update_std_info(struct channel_obj
*ch
)
431 struct video_obj
*vid_ch
= &ch
->video
;
432 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
433 struct vpif_channel_config_params
*std_info
= &vpifparams
->std_info
;
434 const struct vpif_channel_config_params
*config
;
438 for (i
= 0; i
< vpif_ch_params_count
; i
++) {
439 config
= &vpif_ch_params
[i
];
440 if (config
->hd_sd
== 0) {
441 vpif_dbg(2, debug
, "SD format\n");
442 if (config
->stdid
& vid_ch
->stdid
) {
443 memcpy(std_info
, config
, sizeof(*config
));
449 if (i
== vpif_ch_params_count
) {
450 vpif_dbg(1, debug
, "Format not found\n");
457 static int vpif_update_resolution(struct channel_obj
*ch
)
459 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
460 struct video_obj
*vid_ch
= &ch
->video
;
461 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
462 struct vpif_channel_config_params
*std_info
= &vpifparams
->std_info
;
464 if (!vid_ch
->stdid
&& !vid_ch
->dv_timings
.bt
.height
)
468 if (vpif_update_std_info(ch
))
472 common
->fmt
.fmt
.pix
.pixelformat
= V4L2_PIX_FMT_YUV422P
;
473 common
->fmt
.fmt
.pix
.width
= std_info
->width
;
474 common
->fmt
.fmt
.pix
.height
= std_info
->height
;
475 vpif_dbg(1, debug
, "Pixel details: Width = %d,Height = %d\n",
476 common
->fmt
.fmt
.pix
.width
, common
->fmt
.fmt
.pix
.height
);
478 /* Set height and width paramateres */
479 common
->height
= std_info
->height
;
480 common
->width
= std_info
->width
;
481 common
->fmt
.fmt
.pix
.sizeimage
= common
->height
* common
->width
* 2;
484 common
->fmt
.fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
486 common
->fmt
.fmt
.pix
.colorspace
= V4L2_COLORSPACE_REC709
;
488 if (ch
->vpifparams
.std_info
.frm_fmt
)
489 common
->fmt
.fmt
.pix
.field
= V4L2_FIELD_NONE
;
491 common
->fmt
.fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
497 * vpif_calculate_offsets: This function calculates buffers offset for Y and C
498 * in the top and bottom field
500 static void vpif_calculate_offsets(struct channel_obj
*ch
)
502 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
503 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
504 enum v4l2_field field
= common
->fmt
.fmt
.pix
.field
;
505 struct video_obj
*vid_ch
= &ch
->video
;
506 unsigned int hpitch
, sizeimage
;
508 if (V4L2_FIELD_ANY
== common
->fmt
.fmt
.pix
.field
) {
509 if (ch
->vpifparams
.std_info
.frm_fmt
)
510 vid_ch
->buf_field
= V4L2_FIELD_NONE
;
512 vid_ch
->buf_field
= V4L2_FIELD_INTERLACED
;
514 vid_ch
->buf_field
= common
->fmt
.fmt
.pix
.field
;
517 sizeimage
= common
->fmt
.fmt
.pix
.sizeimage
;
519 hpitch
= common
->fmt
.fmt
.pix
.bytesperline
;
520 if ((V4L2_FIELD_NONE
== vid_ch
->buf_field
) ||
521 (V4L2_FIELD_INTERLACED
== vid_ch
->buf_field
)) {
522 common
->ytop_off
= 0;
523 common
->ybtm_off
= hpitch
;
524 common
->ctop_off
= sizeimage
/ 2;
525 common
->cbtm_off
= sizeimage
/ 2 + hpitch
;
526 } else if (V4L2_FIELD_SEQ_TB
== vid_ch
->buf_field
) {
527 common
->ytop_off
= 0;
528 common
->ybtm_off
= sizeimage
/ 4;
529 common
->ctop_off
= sizeimage
/ 2;
530 common
->cbtm_off
= common
->ctop_off
+ sizeimage
/ 4;
531 } else if (V4L2_FIELD_SEQ_BT
== vid_ch
->buf_field
) {
532 common
->ybtm_off
= 0;
533 common
->ytop_off
= sizeimage
/ 4;
534 common
->cbtm_off
= sizeimage
/ 2;
535 common
->ctop_off
= common
->cbtm_off
+ sizeimage
/ 4;
538 if ((V4L2_FIELD_NONE
== vid_ch
->buf_field
) ||
539 (V4L2_FIELD_INTERLACED
== vid_ch
->buf_field
)) {
540 vpifparams
->video_params
.storage_mode
= 1;
542 vpifparams
->video_params
.storage_mode
= 0;
545 if (ch
->vpifparams
.std_info
.frm_fmt
== 1) {
546 vpifparams
->video_params
.hpitch
=
547 common
->fmt
.fmt
.pix
.bytesperline
;
549 if ((field
== V4L2_FIELD_ANY
) ||
550 (field
== V4L2_FIELD_INTERLACED
))
551 vpifparams
->video_params
.hpitch
=
552 common
->fmt
.fmt
.pix
.bytesperline
* 2;
554 vpifparams
->video_params
.hpitch
=
555 common
->fmt
.fmt
.pix
.bytesperline
;
558 ch
->vpifparams
.video_params
.stdid
= ch
->vpifparams
.std_info
.stdid
;
561 static void vpif_config_addr(struct channel_obj
*ch
, int muxmode
)
563 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
565 if (VPIF_CHANNEL3_VIDEO
== ch
->channel_id
) {
566 common
->set_addr
= ch3_set_videobuf_addr
;
569 common
->set_addr
= ch2_set_videobuf_addr_yc_nmux
;
571 common
->set_addr
= ch2_set_videobuf_addr
;
575 /* functions implementing ioctls */
577 * vpif_querycap() - QUERYCAP handler
580 * @cap: ptr to v4l2_capability structure
582 static int vpif_querycap(struct file
*file
, void *priv
,
583 struct v4l2_capability
*cap
)
585 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
587 cap
->device_caps
= V4L2_CAP_VIDEO_OUTPUT
| V4L2_CAP_STREAMING
;
588 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
589 strlcpy(cap
->driver
, VPIF_DRIVER_NAME
, sizeof(cap
->driver
));
590 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
), "platform:%s",
592 strlcpy(cap
->card
, config
->card_name
, sizeof(cap
->card
));
597 static int vpif_enum_fmt_vid_out(struct file
*file
, void *priv
,
598 struct v4l2_fmtdesc
*fmt
)
603 /* Fill in the information about format */
604 fmt
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
605 strcpy(fmt
->description
, "YCbCr4:2:2 YC Planar");
606 fmt
->pixelformat
= V4L2_PIX_FMT_YUV422P
;
611 static int vpif_g_fmt_vid_out(struct file
*file
, void *priv
,
612 struct v4l2_format
*fmt
)
614 struct video_device
*vdev
= video_devdata(file
);
615 struct channel_obj
*ch
= video_get_drvdata(vdev
);
616 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
618 /* Check the validity of the buffer type */
619 if (common
->fmt
.type
!= fmt
->type
)
622 if (vpif_update_resolution(ch
))
628 static int vpif_try_fmt_vid_out(struct file
*file
, void *priv
,
629 struct v4l2_format
*fmt
)
631 struct video_device
*vdev
= video_devdata(file
);
632 struct channel_obj
*ch
= video_get_drvdata(vdev
);
633 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
634 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
637 * to supress v4l-compliance warnings silently correct
640 if (pixfmt
->pixelformat
!= V4L2_PIX_FMT_YUV422P
)
641 pixfmt
->pixelformat
= common
->fmt
.fmt
.pix
.pixelformat
;
643 if (vpif_update_resolution(ch
))
646 pixfmt
->colorspace
= common
->fmt
.fmt
.pix
.colorspace
;
647 pixfmt
->field
= common
->fmt
.fmt
.pix
.field
;
648 pixfmt
->bytesperline
= common
->fmt
.fmt
.pix
.width
;
649 pixfmt
->width
= common
->fmt
.fmt
.pix
.width
;
650 pixfmt
->height
= common
->fmt
.fmt
.pix
.height
;
651 pixfmt
->sizeimage
= pixfmt
->bytesperline
* pixfmt
->height
* 2;
656 static int vpif_s_fmt_vid_out(struct file
*file
, void *priv
,
657 struct v4l2_format
*fmt
)
659 struct video_device
*vdev
= video_devdata(file
);
660 struct channel_obj
*ch
= video_get_drvdata(vdev
);
661 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
662 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
665 if (vb2_is_busy(&common
->buffer_queue
))
668 ret
= vpif_try_fmt_vid_out(file
, priv
, fmt
);
672 /* store the pix format in the channel object */
673 common
->fmt
.fmt
.pix
= *pixfmt
;
675 /* store the format in the channel object */
680 static int vpif_s_std(struct file
*file
, void *priv
, v4l2_std_id std_id
)
682 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
683 struct video_device
*vdev
= video_devdata(file
);
684 struct channel_obj
*ch
= video_get_drvdata(vdev
);
685 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
686 struct vpif_display_chan_config
*chan_cfg
;
687 struct v4l2_output output
;
690 if (!config
->chan_config
[ch
->channel_id
].outputs
)
693 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
694 output
= chan_cfg
->outputs
[ch
->output_idx
].output
;
695 if (output
.capabilities
!= V4L2_OUT_CAP_STD
)
698 if (vb2_is_busy(&common
->buffer_queue
))
702 if (!(std_id
& VPIF_V4L2_STD
))
705 /* Call encoder subdevice function to set the standard */
706 ch
->video
.stdid
= std_id
;
707 memset(&ch
->video
.dv_timings
, 0, sizeof(ch
->video
.dv_timings
));
708 /* Get the information about the standard */
709 if (vpif_update_resolution(ch
))
712 common
->fmt
.fmt
.pix
.bytesperline
= common
->fmt
.fmt
.pix
.width
;
714 ret
= v4l2_device_call_until_err(&vpif_obj
.v4l2_dev
, 1, video
,
715 s_std_output
, std_id
);
717 vpif_err("Failed to set output standard\n");
721 ret
= v4l2_device_call_until_err(&vpif_obj
.v4l2_dev
, 1, video
,
724 vpif_err("Failed to set standard for sub devices\n");
728 static int vpif_g_std(struct file
*file
, void *priv
, v4l2_std_id
*std
)
730 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
731 struct video_device
*vdev
= video_devdata(file
);
732 struct channel_obj
*ch
= video_get_drvdata(vdev
);
733 struct vpif_display_chan_config
*chan_cfg
;
734 struct v4l2_output output
;
736 if (!config
->chan_config
[ch
->channel_id
].outputs
)
739 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
740 output
= chan_cfg
->outputs
[ch
->output_idx
].output
;
741 if (output
.capabilities
!= V4L2_OUT_CAP_STD
)
744 *std
= ch
->video
.stdid
;
748 static int vpif_enum_output(struct file
*file
, void *fh
,
749 struct v4l2_output
*output
)
752 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
753 struct video_device
*vdev
= video_devdata(file
);
754 struct channel_obj
*ch
= video_get_drvdata(vdev
);
755 struct vpif_display_chan_config
*chan_cfg
;
757 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
758 if (output
->index
>= chan_cfg
->output_count
) {
759 vpif_dbg(1, debug
, "Invalid output index\n");
763 *output
= chan_cfg
->outputs
[output
->index
].output
;
768 * vpif_output_to_subdev() - Maps output to sub device
769 * @vpif_cfg: global config ptr
770 * @chan_cfg: channel config ptr
771 * @index: Given output index from application
773 * lookup the sub device information for a given output index.
774 * we report all the output to application. output table also
775 * has sub device name for the each output
778 vpif_output_to_subdev(struct vpif_display_config
*vpif_cfg
,
779 struct vpif_display_chan_config
*chan_cfg
, int index
)
781 struct vpif_subdev_info
*subdev_info
;
782 const char *subdev_name
;
785 vpif_dbg(2, debug
, "vpif_output_to_subdev\n");
787 if (!chan_cfg
->outputs
)
790 subdev_name
= chan_cfg
->outputs
[index
].subdev_name
;
794 /* loop through the sub device list to get the sub device info */
795 for (i
= 0; i
< vpif_cfg
->subdev_count
; i
++) {
796 subdev_info
= &vpif_cfg
->subdevinfo
[i
];
797 if (!strcmp(subdev_info
->name
, subdev_name
))
804 * vpif_set_output() - Select an output
805 * @vpif_cfg: global config ptr
807 * @index: Given output index from application
809 * Select the given output.
811 static int vpif_set_output(struct vpif_display_config
*vpif_cfg
,
812 struct channel_obj
*ch
, int index
)
814 struct vpif_display_chan_config
*chan_cfg
=
815 &vpif_cfg
->chan_config
[ch
->channel_id
];
816 struct v4l2_subdev
*sd
= NULL
;
817 u32 input
= 0, output
= 0;
821 sd_index
= vpif_output_to_subdev(vpif_cfg
, chan_cfg
, index
);
823 sd
= vpif_obj
.sd
[sd_index
];
826 input
= chan_cfg
->outputs
[index
].input_route
;
827 output
= chan_cfg
->outputs
[index
].output_route
;
828 ret
= v4l2_subdev_call(sd
, video
, s_routing
, input
, output
, 0);
829 if (ret
< 0 && ret
!= -ENOIOCTLCMD
) {
830 vpif_err("Failed to set output\n");
835 ch
->output_idx
= index
;
837 if (chan_cfg
->outputs
)
838 /* update tvnorms from the sub device output info */
839 ch
->video_dev
.tvnorms
= chan_cfg
->outputs
[index
].output
.std
;
843 static int vpif_s_output(struct file
*file
, void *priv
, unsigned int i
)
845 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
846 struct video_device
*vdev
= video_devdata(file
);
847 struct channel_obj
*ch
= video_get_drvdata(vdev
);
848 struct vpif_display_chan_config
*chan_cfg
;
849 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
851 if (vb2_is_busy(&common
->buffer_queue
))
854 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
856 if (i
>= chan_cfg
->output_count
)
859 return vpif_set_output(config
, ch
, i
);
862 static int vpif_g_output(struct file
*file
, void *priv
, unsigned int *i
)
864 struct video_device
*vdev
= video_devdata(file
);
865 struct channel_obj
*ch
= video_get_drvdata(vdev
);
873 * vpif_enum_dv_timings() - ENUM_DV_TIMINGS handler
876 * @timings: input timings
879 vpif_enum_dv_timings(struct file
*file
, void *priv
,
880 struct v4l2_enum_dv_timings
*timings
)
882 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
883 struct video_device
*vdev
= video_devdata(file
);
884 struct channel_obj
*ch
= video_get_drvdata(vdev
);
885 struct vpif_display_chan_config
*chan_cfg
;
886 struct v4l2_output output
;
889 if (!config
->chan_config
[ch
->channel_id
].outputs
)
892 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
893 output
= chan_cfg
->outputs
[ch
->output_idx
].output
;
894 if (output
.capabilities
!= V4L2_OUT_CAP_DV_TIMINGS
)
899 ret
= v4l2_subdev_call(ch
->sd
, pad
, enum_dv_timings
, timings
);
900 if (ret
== -ENOIOCTLCMD
|| ret
== -ENODEV
)
906 * vpif_s_dv_timings() - S_DV_TIMINGS handler
909 * @timings: digital video timings
911 static int vpif_s_dv_timings(struct file
*file
, void *priv
,
912 struct v4l2_dv_timings
*timings
)
914 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
915 struct video_device
*vdev
= video_devdata(file
);
916 struct channel_obj
*ch
= video_get_drvdata(vdev
);
917 struct vpif_params
*vpifparams
= &ch
->vpifparams
;
918 struct common_obj
*common
= &ch
->common
[VPIF_VIDEO_INDEX
];
919 struct vpif_channel_config_params
*std_info
= &vpifparams
->std_info
;
920 struct video_obj
*vid_ch
= &ch
->video
;
921 struct v4l2_bt_timings
*bt
= &vid_ch
->dv_timings
.bt
;
922 struct vpif_display_chan_config
*chan_cfg
;
923 struct v4l2_output output
;
926 if (!config
->chan_config
[ch
->channel_id
].outputs
)
929 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
930 output
= chan_cfg
->outputs
[ch
->output_idx
].output
;
931 if (output
.capabilities
!= V4L2_OUT_CAP_DV_TIMINGS
)
934 if (vb2_is_busy(&common
->buffer_queue
))
937 if (timings
->type
!= V4L2_DV_BT_656_1120
) {
938 vpif_dbg(2, debug
, "Timing type not defined\n");
942 /* Configure subdevice timings, if any */
943 ret
= v4l2_subdev_call(ch
->sd
, video
, s_dv_timings
, timings
);
944 if (ret
== -ENOIOCTLCMD
|| ret
== -ENODEV
)
947 vpif_dbg(2, debug
, "Error setting custom DV timings\n");
951 if (!(timings
->bt
.width
&& timings
->bt
.height
&&
952 (timings
->bt
.hbackporch
||
953 timings
->bt
.hfrontporch
||
954 timings
->bt
.hsync
) &&
955 timings
->bt
.vfrontporch
&&
956 (timings
->bt
.vbackporch
||
957 timings
->bt
.vsync
))) {
958 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");
962 vid_ch
->dv_timings
= *timings
;
964 /* Configure video port timings */
966 std_info
->eav2sav
= V4L2_DV_BT_BLANKING_WIDTH(bt
) - 8;
967 std_info
->sav2eav
= bt
->width
;
970 std_info
->l3
= bt
->vsync
+ bt
->vbackporch
+ 1;
972 std_info
->vsize
= V4L2_DV_BT_FRAME_HEIGHT(bt
);
973 if (bt
->interlaced
) {
974 if (bt
->il_vbackporch
|| bt
->il_vfrontporch
|| bt
->il_vsync
) {
975 std_info
->l5
= std_info
->vsize
/2 -
976 (bt
->vfrontporch
- 1);
977 std_info
->l7
= std_info
->vsize
/2 + 1;
978 std_info
->l9
= std_info
->l7
+ bt
->il_vsync
+
979 bt
->il_vbackporch
+ 1;
980 std_info
->l11
= std_info
->vsize
-
981 (bt
->il_vfrontporch
- 1);
983 vpif_dbg(2, debug
, "Required timing values for interlaced BT format missing\n");
987 std_info
->l5
= std_info
->vsize
- (bt
->vfrontporch
- 1);
989 strncpy(std_info
->name
, "Custom timings BT656/1120",
991 std_info
->width
= bt
->width
;
992 std_info
->height
= bt
->height
;
993 std_info
->frm_fmt
= bt
->interlaced
? 0 : 1;
994 std_info
->ycmux_mode
= 0;
995 std_info
->capture_format
= 0;
996 std_info
->vbi_supported
= 0;
1005 * vpif_g_dv_timings() - G_DV_TIMINGS handler
1007 * @priv: file handle
1008 * @timings: digital video timings
1010 static int vpif_g_dv_timings(struct file
*file
, void *priv
,
1011 struct v4l2_dv_timings
*timings
)
1013 struct vpif_display_config
*config
= vpif_dev
->platform_data
;
1014 struct video_device
*vdev
= video_devdata(file
);
1015 struct channel_obj
*ch
= video_get_drvdata(vdev
);
1016 struct vpif_display_chan_config
*chan_cfg
;
1017 struct video_obj
*vid_ch
= &ch
->video
;
1018 struct v4l2_output output
;
1020 if (!config
->chan_config
[ch
->channel_id
].outputs
)
1023 chan_cfg
= &config
->chan_config
[ch
->channel_id
];
1024 output
= chan_cfg
->outputs
[ch
->output_idx
].output
;
1026 if (output
.capabilities
!= V4L2_OUT_CAP_DV_TIMINGS
)
1029 *timings
= vid_ch
->dv_timings
;
1037 * vpif_log_status() - Status information
1039 * @priv: file handle
1043 static int vpif_log_status(struct file
*filep
, void *priv
)
1045 /* status for sub devices */
1046 v4l2_device_call_all(&vpif_obj
.v4l2_dev
, 0, core
, log_status
);
1051 /* vpif display ioctl operations */
1052 static const struct v4l2_ioctl_ops vpif_ioctl_ops
= {
1053 .vidioc_querycap
= vpif_querycap
,
1054 .vidioc_enum_fmt_vid_out
= vpif_enum_fmt_vid_out
,
1055 .vidioc_g_fmt_vid_out
= vpif_g_fmt_vid_out
,
1056 .vidioc_s_fmt_vid_out
= vpif_s_fmt_vid_out
,
1057 .vidioc_try_fmt_vid_out
= vpif_try_fmt_vid_out
,
1059 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
1060 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
1061 .vidioc_querybuf
= vb2_ioctl_querybuf
,
1062 .vidioc_qbuf
= vb2_ioctl_qbuf
,
1063 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
1064 .vidioc_expbuf
= vb2_ioctl_expbuf
,
1065 .vidioc_streamon
= vb2_ioctl_streamon
,
1066 .vidioc_streamoff
= vb2_ioctl_streamoff
,
1068 .vidioc_s_std
= vpif_s_std
,
1069 .vidioc_g_std
= vpif_g_std
,
1071 .vidioc_enum_output
= vpif_enum_output
,
1072 .vidioc_s_output
= vpif_s_output
,
1073 .vidioc_g_output
= vpif_g_output
,
1075 .vidioc_enum_dv_timings
= vpif_enum_dv_timings
,
1076 .vidioc_s_dv_timings
= vpif_s_dv_timings
,
1077 .vidioc_g_dv_timings
= vpif_g_dv_timings
,
1079 .vidioc_log_status
= vpif_log_status
,
1082 static const struct v4l2_file_operations vpif_fops
= {
1083 .owner
= THIS_MODULE
,
1084 .open
= v4l2_fh_open
,
1085 .release
= vb2_fop_release
,
1086 .unlocked_ioctl
= video_ioctl2
,
1087 .mmap
= vb2_fop_mmap
,
1088 .poll
= vb2_fop_poll
1091 /*Configure the channels, buffer sizei, request irq */
1092 static int initialize_vpif(void)
1094 int free_channel_objects_index
;
1097 /* Allocate memory for six channel objects */
1098 for (i
= 0; i
< VPIF_DISPLAY_MAX_DEVICES
; i
++) {
1100 kzalloc(sizeof(struct channel_obj
), GFP_KERNEL
);
1101 /* If memory allocation fails, return error */
1102 if (!vpif_obj
.dev
[i
]) {
1103 free_channel_objects_index
= i
;
1105 goto vpif_init_free_channel_objects
;
1111 vpif_init_free_channel_objects
:
1112 for (j
= 0; j
< free_channel_objects_index
; j
++)
1113 kfree(vpif_obj
.dev
[j
]);
1117 static void free_vpif_objs(void)
1121 for (i
= 0; i
< VPIF_DISPLAY_MAX_DEVICES
; i
++)
1122 kfree(vpif_obj
.dev
[i
]);
1125 static int vpif_async_bound(struct v4l2_async_notifier
*notifier
,
1126 struct v4l2_subdev
*subdev
,
1127 struct v4l2_async_subdev
*asd
)
1131 for (i
= 0; i
< vpif_obj
.config
->subdev_count
; i
++)
1132 if (!strcmp(vpif_obj
.config
->subdevinfo
[i
].name
,
1134 vpif_obj
.sd
[i
] = subdev
;
1135 vpif_obj
.sd
[i
]->grp_id
= 1 << i
;
1142 static int vpif_probe_complete(void)
1144 struct common_obj
*common
;
1145 struct video_device
*vdev
;
1146 struct channel_obj
*ch
;
1147 struct vb2_queue
*q
;
1150 for (j
= 0; j
< VPIF_DISPLAY_MAX_DEVICES
; j
++) {
1151 ch
= vpif_obj
.dev
[j
];
1152 /* Initialize field of the channel objects */
1153 for (k
= 0; k
< VPIF_NUMOBJECTS
; k
++) {
1154 common
= &ch
->common
[k
];
1155 spin_lock_init(&common
->irqlock
);
1156 mutex_init(&common
->lock
);
1157 common
->set_addr
= NULL
;
1158 common
->ytop_off
= 0;
1159 common
->ybtm_off
= 0;
1160 common
->ctop_off
= 0;
1161 common
->cbtm_off
= 0;
1162 common
->cur_frm
= NULL
;
1163 common
->next_frm
= NULL
;
1164 memset(&common
->fmt
, 0, sizeof(common
->fmt
));
1166 ch
->initialized
= 0;
1167 if (vpif_obj
.config
->subdev_count
)
1168 ch
->sd
= vpif_obj
.sd
[0];
1171 memset(&ch
->vpifparams
, 0, sizeof(ch
->vpifparams
));
1173 ch
->common
[VPIF_VIDEO_INDEX
].fmt
.type
=
1174 V4L2_BUF_TYPE_VIDEO_OUTPUT
;
1176 /* select output 0 */
1177 err
= vpif_set_output(vpif_obj
.config
, ch
, 0);
1181 /* set initial format */
1182 ch
->video
.stdid
= V4L2_STD_525_60
;
1183 memset(&ch
->video
.dv_timings
, 0, sizeof(ch
->video
.dv_timings
));
1184 vpif_update_resolution(ch
);
1186 /* Initialize vb2 queue */
1187 q
= &common
->buffer_queue
;
1188 q
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
1189 q
->io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
;
1191 q
->ops
= &video_qops
;
1192 q
->mem_ops
= &vb2_dma_contig_memops
;
1193 q
->buf_struct_size
= sizeof(struct vpif_disp_buffer
);
1194 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
1195 q
->min_buffers_needed
= 1;
1196 q
->lock
= &common
->lock
;
1198 err
= vb2_queue_init(q
);
1200 vpif_err("vpif_display: vb2_queue_init() failed\n");
1204 INIT_LIST_HEAD(&common
->dma_queue
);
1206 /* register video device */
1207 vpif_dbg(1, debug
, "channel=%p,channel->video_dev=%p\n",
1208 ch
, &ch
->video_dev
);
1210 /* Initialize the video_device structure */
1211 vdev
= &ch
->video_dev
;
1212 strlcpy(vdev
->name
, VPIF_DRIVER_NAME
, sizeof(vdev
->name
));
1213 vdev
->release
= video_device_release_empty
;
1214 vdev
->fops
= &vpif_fops
;
1215 vdev
->ioctl_ops
= &vpif_ioctl_ops
;
1216 vdev
->v4l2_dev
= &vpif_obj
.v4l2_dev
;
1217 vdev
->vfl_dir
= VFL_DIR_TX
;
1219 vdev
->lock
= &common
->lock
;
1220 video_set_drvdata(&ch
->video_dev
, ch
);
1221 err
= video_register_device(vdev
, VFL_TYPE_GRABBER
,
1230 for (k
= 0; k
< j
; k
++) {
1231 ch
= vpif_obj
.dev
[k
];
1232 common
= &ch
->common
[k
];
1233 video_unregister_device(&ch
->video_dev
);
1238 static int vpif_async_complete(struct v4l2_async_notifier
*notifier
)
1240 return vpif_probe_complete();
1243 static const struct v4l2_async_notifier_operations vpif_async_ops
= {
1244 .bound
= vpif_async_bound
,
1245 .complete
= vpif_async_complete
,
1249 * vpif_probe: This function creates device entries by register itself to the
1250 * V4L2 driver and initializes fields of each channel objects
1252 static __init
int vpif_probe(struct platform_device
*pdev
)
1254 struct vpif_subdev_info
*subdevdata
;
1255 struct i2c_adapter
*i2c_adap
;
1256 struct resource
*res
;
1261 if (!pdev
->dev
.platform_data
) {
1262 dev_warn(&pdev
->dev
, "Missing platform data. Giving up.\n");
1266 vpif_dev
= &pdev
->dev
;
1267 err
= initialize_vpif();
1270 v4l2_err(vpif_dev
->driver
, "Error initializing vpif\n");
1274 err
= v4l2_device_register(vpif_dev
, &vpif_obj
.v4l2_dev
);
1276 v4l2_err(vpif_dev
->driver
, "Error registering v4l2 device\n");
1280 while ((res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, res_idx
))) {
1281 err
= devm_request_irq(&pdev
->dev
, res
->start
, vpif_channel_isr
,
1282 IRQF_SHARED
, VPIF_DRIVER_NAME
,
1283 (void *)(&vpif_obj
.dev
[res_idx
]->
1287 vpif_err("VPIF IRQ request failed\n");
1288 goto vpif_unregister
;
1293 vpif_obj
.config
= pdev
->dev
.platform_data
;
1294 subdev_count
= vpif_obj
.config
->subdev_count
;
1295 subdevdata
= vpif_obj
.config
->subdevinfo
;
1296 vpif_obj
.sd
= kcalloc(subdev_count
, sizeof(*vpif_obj
.sd
), GFP_KERNEL
);
1299 goto vpif_unregister
;
1302 if (!vpif_obj
.config
->asd_sizes
) {
1303 i2c_adap
= i2c_get_adapter(vpif_obj
.config
->i2c_adapter_id
);
1304 for (i
= 0; i
< subdev_count
; i
++) {
1306 v4l2_i2c_new_subdev_board(&vpif_obj
.v4l2_dev
,
1311 if (!vpif_obj
.sd
[i
]) {
1312 vpif_err("Error registering v4l2 subdevice\n");
1314 goto probe_subdev_out
;
1318 vpif_obj
.sd
[i
]->grp_id
= 1 << i
;
1320 err
= vpif_probe_complete();
1322 goto probe_subdev_out
;
1325 vpif_obj
.notifier
.subdevs
= vpif_obj
.config
->asd
;
1326 vpif_obj
.notifier
.num_subdevs
= vpif_obj
.config
->asd_sizes
[0];
1327 vpif_obj
.notifier
.ops
= &vpif_async_ops
;
1328 err
= v4l2_async_notifier_register(&vpif_obj
.v4l2_dev
,
1329 &vpif_obj
.notifier
);
1331 vpif_err("Error registering async notifier\n");
1333 goto probe_subdev_out
;
1342 v4l2_device_unregister(&vpif_obj
.v4l2_dev
);
1350 * vpif_remove: It un-register channels from V4L2 driver
1352 static int vpif_remove(struct platform_device
*device
)
1354 struct channel_obj
*ch
;
1357 v4l2_device_unregister(&vpif_obj
.v4l2_dev
);
1360 /* un-register device */
1361 for (i
= 0; i
< VPIF_DISPLAY_MAX_DEVICES
; i
++) {
1362 /* Get the pointer to the channel object */
1363 ch
= vpif_obj
.dev
[i
];
1364 /* Unregister video device */
1365 video_unregister_device(&ch
->video_dev
);
1372 #ifdef CONFIG_PM_SLEEP
1373 static int vpif_suspend(struct device
*dev
)
1375 struct common_obj
*common
;
1376 struct channel_obj
*ch
;
1379 for (i
= 0; i
< VPIF_DISPLAY_MAX_DEVICES
; i
++) {
1380 /* Get the pointer to the channel object */
1381 ch
= vpif_obj
.dev
[i
];
1382 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1384 if (!vb2_start_streaming_called(&common
->buffer_queue
))
1387 mutex_lock(&common
->lock
);
1388 /* Disable channel */
1389 if (ch
->channel_id
== VPIF_CHANNEL2_VIDEO
) {
1391 channel2_intr_enable(0);
1393 if (ch
->channel_id
== VPIF_CHANNEL3_VIDEO
||
1396 channel3_intr_enable(0);
1398 mutex_unlock(&common
->lock
);
1404 static int vpif_resume(struct device
*dev
)
1407 struct common_obj
*common
;
1408 struct channel_obj
*ch
;
1411 for (i
= 0; i
< VPIF_DISPLAY_MAX_DEVICES
; i
++) {
1412 /* Get the pointer to the channel object */
1413 ch
= vpif_obj
.dev
[i
];
1414 common
= &ch
->common
[VPIF_VIDEO_INDEX
];
1416 if (!vb2_start_streaming_called(&common
->buffer_queue
))
1419 mutex_lock(&common
->lock
);
1420 /* Enable channel */
1421 if (ch
->channel_id
== VPIF_CHANNEL2_VIDEO
) {
1423 channel2_intr_enable(1);
1425 if (ch
->channel_id
== VPIF_CHANNEL3_VIDEO
||
1428 channel3_intr_enable(1);
1430 mutex_unlock(&common
->lock
);
1438 static SIMPLE_DEV_PM_OPS(vpif_pm_ops
, vpif_suspend
, vpif_resume
);
1440 static __refdata
struct platform_driver vpif_driver
= {
1442 .name
= VPIF_DRIVER_NAME
,
1445 .probe
= vpif_probe
,
1446 .remove
= vpif_remove
,
1449 module_platform_driver(vpif_driver
);