2 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
8 * This program is distributed WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/errno.h>
17 #include <linux/interrupt.h>
18 #include <linux/string.h>
19 #include <linux/wait.h>
20 #include <linux/time.h>
21 #include <linux/platform_device.h>
22 #include <linux/irq.h>
24 #include <linux/mutex.h>
25 #include <linux/videodev2.h>
26 #include <linux/slab.h>
28 #include <asm/pgtable.h>
29 #include <mach/cputype.h>
31 #include <media/v4l2-dev.h>
32 #include <media/v4l2-common.h>
33 #include <media/v4l2-ioctl.h>
34 #include <media/v4l2-device.h>
35 #include <media/davinci/vpbe_display.h>
36 #include <media/davinci/vpbe_types.h>
37 #include <media/davinci/vpbe.h>
38 #include <media/davinci/vpbe_venc.h>
39 #include <media/davinci/vpbe_osd.h>
40 #include "vpbe_venc_regs.h"
42 #define VPBE_DISPLAY_DRIVER "vpbe-v4l2"
46 #define VPBE_DEFAULT_NUM_BUFS 3
48 module_param(debug
, int, 0644);
50 static int vpbe_set_osd_display_params(struct vpbe_display
*disp_dev
,
51 struct vpbe_layer
*layer
);
53 static int venc_is_second_field(struct vpbe_display
*disp_dev
)
55 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
59 ret
= v4l2_subdev_call(vpbe_dev
->venc
,
65 v4l2_err(&vpbe_dev
->v4l2_dev
,
66 "Error in getting Field ID 0\n");
71 static void vpbe_isr_even_field(struct vpbe_display
*disp_obj
,
72 struct vpbe_layer
*layer
)
74 struct timespec timevalue
;
76 if (layer
->cur_frm
== layer
->next_frm
)
78 ktime_get_ts(&timevalue
);
79 layer
->cur_frm
->vb
.v4l2_buf
.timestamp
.tv_sec
=
81 layer
->cur_frm
->vb
.v4l2_buf
.timestamp
.tv_usec
=
82 timevalue
.tv_nsec
/ NSEC_PER_USEC
;
83 vb2_buffer_done(&layer
->cur_frm
->vb
, VB2_BUF_STATE_DONE
);
84 /* Make cur_frm pointing to next_frm */
85 layer
->cur_frm
= layer
->next_frm
;
88 static void vpbe_isr_odd_field(struct vpbe_display
*disp_obj
,
89 struct vpbe_layer
*layer
)
91 struct osd_state
*osd_device
= disp_obj
->osd_device
;
94 spin_lock(&disp_obj
->dma_queue_lock
);
95 if (list_empty(&layer
->dma_queue
) ||
96 (layer
->cur_frm
!= layer
->next_frm
)) {
97 spin_unlock(&disp_obj
->dma_queue_lock
);
101 * one field is displayed configure
102 * the next frame if it is available
103 * otherwise hold on current frame
104 * Get next from the buffer queue
106 layer
->next_frm
= list_entry(layer
->dma_queue
.next
,
107 struct vpbe_disp_buffer
, list
);
108 /* Remove that from the buffer queue */
109 list_del(&layer
->next_frm
->list
);
110 spin_unlock(&disp_obj
->dma_queue_lock
);
111 /* Mark state of the frame to active */
112 layer
->next_frm
->vb
.state
= VB2_BUF_STATE_ACTIVE
;
113 addr
= vb2_dma_contig_plane_dma_addr(&layer
->next_frm
->vb
, 0);
114 osd_device
->ops
.start_layer(osd_device
,
115 layer
->layer_info
.id
,
117 disp_obj
->cbcr_ofst
);
120 /* interrupt service routine */
121 static irqreturn_t
venc_isr(int irq
, void *arg
)
123 struct vpbe_display
*disp_dev
= (struct vpbe_display
*)arg
;
124 struct vpbe_layer
*layer
;
125 static unsigned last_event
;
130 if ((NULL
== arg
) || (NULL
== disp_dev
->dev
[0]))
133 if (venc_is_second_field(disp_dev
))
134 event
|= VENC_SECOND_FIELD
;
136 event
|= VENC_FIRST_FIELD
;
138 if (event
== (last_event
& ~VENC_END_OF_FRAME
)) {
140 * If the display is non-interlaced, then we need to flag the
141 * end-of-frame event at every interrupt regardless of the
142 * value of the FIDST bit. We can conclude that the display is
143 * non-interlaced if the value of the FIDST bit is unchanged
144 * from the previous interrupt.
146 event
|= VENC_END_OF_FRAME
;
147 } else if (event
== VENC_SECOND_FIELD
) {
148 /* end-of-frame for interlaced display */
149 event
|= VENC_END_OF_FRAME
;
153 for (i
= 0; i
< VPBE_DISPLAY_MAX_DEVICES
; i
++) {
154 layer
= disp_dev
->dev
[i
];
155 /* If streaming is started in this layer */
159 if (layer
->layer_first_int
) {
160 layer
->layer_first_int
= 0;
163 /* Check the field format */
164 if ((V4L2_FIELD_NONE
== layer
->pix_fmt
.field
) &&
165 (event
& VENC_END_OF_FRAME
)) {
166 /* Progressive mode */
168 vpbe_isr_even_field(disp_dev
, layer
);
169 vpbe_isr_odd_field(disp_dev
, layer
);
171 /* Interlaced mode */
173 layer
->field_id
^= 1;
174 if (event
& VENC_FIRST_FIELD
)
180 * If field id does not match with store
183 if (fid
!= layer
->field_id
) {
184 /* Make them in sync */
185 layer
->field_id
= fid
;
189 * device field id and local field id are
190 * in sync. If this is even field
193 vpbe_isr_even_field(disp_dev
, layer
);
195 vpbe_isr_odd_field(disp_dev
, layer
);
203 * vpbe_buffer_prepare()
204 * This is the callback function called from vb2_qbuf() function
205 * the buffer is prepared and user space virtual address is converted into
208 static int vpbe_buffer_prepare(struct vb2_buffer
*vb
)
210 struct vpbe_fh
*fh
= vb2_get_drv_priv(vb
->vb2_queue
);
211 struct vb2_queue
*q
= vb
->vb2_queue
;
212 struct vpbe_layer
*layer
= fh
->layer
;
213 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
216 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
217 "vpbe_buffer_prepare\n");
219 if (vb
->state
!= VB2_BUF_STATE_ACTIVE
&&
220 vb
->state
!= VB2_BUF_STATE_PREPARED
) {
221 vb2_set_plane_payload(vb
, 0, layer
->pix_fmt
.sizeimage
);
222 if (vb2_plane_vaddr(vb
, 0) &&
223 vb2_get_plane_payload(vb
, 0) > vb2_plane_size(vb
, 0))
226 addr
= vb2_dma_contig_plane_dma_addr(vb
, 0);
228 if (!IS_ALIGNED(addr
, 8)) {
229 v4l2_err(&vpbe_dev
->v4l2_dev
,
230 "buffer_prepare:offset is \
231 not aligned to 32 bytes\n");
240 * vpbe_buffer_setup()
241 * This function allocates memory for the buffers
244 vpbe_buffer_queue_setup(struct vb2_queue
*vq
, const struct v4l2_format
*fmt
,
245 unsigned int *nbuffers
, unsigned int *nplanes
,
246 unsigned int sizes
[], void *alloc_ctxs
[])
249 /* Get the file handle object and layer object */
250 struct vpbe_fh
*fh
= vb2_get_drv_priv(vq
);
251 struct vpbe_layer
*layer
= fh
->layer
;
252 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
254 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "vpbe_buffer_setup\n");
256 /* Store number of buffers allocated in numbuffer member */
257 if (*nbuffers
< VPBE_DEFAULT_NUM_BUFS
)
258 *nbuffers
= layer
->numbuffers
= VPBE_DEFAULT_NUM_BUFS
;
261 sizes
[0] = layer
->pix_fmt
.sizeimage
;
262 alloc_ctxs
[0] = layer
->alloc_ctx
;
268 * vpbe_buffer_queue()
269 * This function adds the buffer to DMA queue
271 static void vpbe_buffer_queue(struct vb2_buffer
*vb
)
273 /* Get the file handle object and layer object */
274 struct vpbe_fh
*fh
= vb2_get_drv_priv(vb
->vb2_queue
);
275 struct vpbe_disp_buffer
*buf
= container_of(vb
,
276 struct vpbe_disp_buffer
, vb
);
277 struct vpbe_layer
*layer
= fh
->layer
;
278 struct vpbe_display
*disp
= fh
->disp_dev
;
279 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
282 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
283 "vpbe_buffer_queue\n");
285 /* add the buffer to the DMA queue */
286 spin_lock_irqsave(&disp
->dma_queue_lock
, flags
);
287 list_add_tail(&buf
->list
, &layer
->dma_queue
);
288 spin_unlock_irqrestore(&disp
->dma_queue_lock
, flags
);
293 * This function is called from the vb2 layer to free memory allocated to
296 static void vpbe_buf_cleanup(struct vb2_buffer
*vb
)
298 /* Get the file handle object and layer object */
299 struct vpbe_fh
*fh
= vb2_get_drv_priv(vb
->vb2_queue
);
300 struct vpbe_layer
*layer
= fh
->layer
;
301 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
302 struct vpbe_disp_buffer
*buf
= container_of(vb
,
303 struct vpbe_disp_buffer
, vb
);
306 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
307 "vpbe_buf_cleanup\n");
309 spin_lock_irqsave(&layer
->irqlock
, flags
);
310 if (vb
->state
== VB2_BUF_STATE_ACTIVE
)
311 list_del_init(&buf
->list
);
312 spin_unlock_irqrestore(&layer
->irqlock
, flags
);
315 static void vpbe_wait_prepare(struct vb2_queue
*vq
)
317 struct vpbe_fh
*fh
= vb2_get_drv_priv(vq
);
318 struct vpbe_layer
*layer
= fh
->layer
;
320 mutex_unlock(&layer
->opslock
);
323 static void vpbe_wait_finish(struct vb2_queue
*vq
)
325 struct vpbe_fh
*fh
= vb2_get_drv_priv(vq
);
326 struct vpbe_layer
*layer
= fh
->layer
;
328 mutex_lock(&layer
->opslock
);
331 static int vpbe_buffer_init(struct vb2_buffer
*vb
)
333 struct vpbe_disp_buffer
*buf
= container_of(vb
,
334 struct vpbe_disp_buffer
, vb
);
336 INIT_LIST_HEAD(&buf
->list
);
340 static int vpbe_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
342 struct vpbe_fh
*fh
= vb2_get_drv_priv(vq
);
343 struct vpbe_layer
*layer
= fh
->layer
;
344 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
347 /* If buffer queue is empty, return error */
348 if (list_empty(&layer
->dma_queue
)) {
349 v4l2_err(&vpbe_dev
->v4l2_dev
, "buffer queue is empty\n");
352 /* Get the next frame from the buffer queue */
353 layer
->next_frm
= layer
->cur_frm
= list_entry(layer
->dma_queue
.next
,
354 struct vpbe_disp_buffer
, list
);
355 /* Remove buffer from the buffer queue */
356 list_del(&layer
->cur_frm
->list
);
357 /* Mark state of the current frame to active */
358 layer
->cur_frm
->vb
.state
= VB2_BUF_STATE_ACTIVE
;
359 /* Initialize field_id and started member */
362 /* Set parameters in OSD and VENC */
363 ret
= vpbe_set_osd_display_params(fh
->disp_dev
, layer
);
368 * if request format is yuv420 semiplanar, need to
369 * enable both video windows
372 layer
->layer_first_int
= 1;
377 static int vpbe_stop_streaming(struct vb2_queue
*vq
)
379 struct vpbe_fh
*fh
= vb2_get_drv_priv(vq
);
380 struct vpbe_layer
*layer
= fh
->layer
;
382 if (!vb2_is_streaming(vq
))
385 /* release all active buffers */
386 while (!list_empty(&layer
->dma_queue
)) {
387 layer
->next_frm
= list_entry(layer
->dma_queue
.next
,
388 struct vpbe_disp_buffer
, list
);
389 list_del(&layer
->next_frm
->list
);
390 vb2_buffer_done(&layer
->next_frm
->vb
, VB2_BUF_STATE_ERROR
);
396 static struct vb2_ops video_qops
= {
397 .queue_setup
= vpbe_buffer_queue_setup
,
398 .wait_prepare
= vpbe_wait_prepare
,
399 .wait_finish
= vpbe_wait_finish
,
400 .buf_init
= vpbe_buffer_init
,
401 .buf_prepare
= vpbe_buffer_prepare
,
402 .start_streaming
= vpbe_start_streaming
,
403 .stop_streaming
= vpbe_stop_streaming
,
404 .buf_cleanup
= vpbe_buf_cleanup
,
405 .buf_queue
= vpbe_buffer_queue
,
410 _vpbe_display_get_other_win_layer(struct vpbe_display
*disp_dev
,
411 struct vpbe_layer
*layer
)
413 enum vpbe_display_device_id thiswin
, otherwin
;
414 thiswin
= layer
->device_id
;
416 otherwin
= (thiswin
== VPBE_DISPLAY_DEVICE_0
) ?
417 VPBE_DISPLAY_DEVICE_1
: VPBE_DISPLAY_DEVICE_0
;
418 return disp_dev
->dev
[otherwin
];
421 static int vpbe_set_osd_display_params(struct vpbe_display
*disp_dev
,
422 struct vpbe_layer
*layer
)
424 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
425 struct osd_state
*osd_device
= disp_dev
->osd_device
;
426 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
430 addr
= vb2_dma_contig_plane_dma_addr(&layer
->cur_frm
->vb
, 0);
431 /* Set address in the display registers */
432 osd_device
->ops
.start_layer(osd_device
,
433 layer
->layer_info
.id
,
435 disp_dev
->cbcr_ofst
);
437 ret
= osd_device
->ops
.enable_layer(osd_device
,
438 layer
->layer_info
.id
, 0);
440 v4l2_err(&vpbe_dev
->v4l2_dev
,
441 "Error in enabling osd window layer 0\n");
445 /* Enable the window */
446 layer
->layer_info
.enable
= 1;
447 if (cfg
->pixfmt
== PIXFMT_NV12
) {
448 struct vpbe_layer
*otherlayer
=
449 _vpbe_display_get_other_win_layer(disp_dev
, layer
);
451 ret
= osd_device
->ops
.enable_layer(osd_device
,
452 otherlayer
->layer_info
.id
, 1);
454 v4l2_err(&vpbe_dev
->v4l2_dev
,
455 "Error in enabling osd window layer 1\n");
458 otherlayer
->layer_info
.enable
= 1;
464 vpbe_disp_calculate_scale_factor(struct vpbe_display
*disp_dev
,
465 struct vpbe_layer
*layer
,
466 int expected_xsize
, int expected_ysize
)
468 struct display_layer_info
*layer_info
= &layer
->layer_info
;
469 struct v4l2_pix_format
*pixfmt
= &layer
->pix_fmt
;
470 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
471 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
472 int calculated_xsize
;
478 v4l2_std_id standard_id
= vpbe_dev
->current_timings
.std_id
;
481 * Application initially set the image format. Current display
482 * size is obtained from the vpbe display controller. expected_xsize
483 * and expected_ysize are set through S_CROP ioctl. Based on this,
484 * driver will calculate the scale factors for vertical and
485 * horizontal direction so that the image is displayed scaled
486 * and expanded. Application uses expansion to display the image
487 * in a square pixel. Otherwise it is displayed using displays
488 * pixel aspect ratio.It is expected that application chooses
489 * the crop coordinates for cropped or scaled display. if crop
490 * size is less than the image size, it is displayed cropped or
491 * it is displayed scaled and/or expanded.
493 * to begin with, set the crop window same as expected. Later we
494 * will override with scaled window size
497 cfg
->xsize
= pixfmt
->width
;
498 cfg
->ysize
= pixfmt
->height
;
499 layer_info
->h_zoom
= ZOOM_X1
; /* no horizontal zoom */
500 layer_info
->v_zoom
= ZOOM_X1
; /* no horizontal zoom */
501 layer_info
->h_exp
= H_EXP_OFF
; /* no horizontal zoom */
502 layer_info
->v_exp
= V_EXP_OFF
; /* no horizontal zoom */
504 if (pixfmt
->width
< expected_xsize
) {
505 h_scale
= vpbe_dev
->current_timings
.xres
/ pixfmt
->width
;
508 else if (h_scale
>= 4)
512 cfg
->xsize
*= h_scale
;
513 if (cfg
->xsize
< expected_xsize
) {
514 if ((standard_id
& V4L2_STD_525_60
) ||
515 (standard_id
& V4L2_STD_625_50
)) {
516 calculated_xsize
= (cfg
->xsize
*
517 VPBE_DISPLAY_H_EXP_RATIO_N
) /
518 VPBE_DISPLAY_H_EXP_RATIO_D
;
519 if (calculated_xsize
<= expected_xsize
) {
521 cfg
->xsize
= calculated_xsize
;
526 layer_info
->h_zoom
= ZOOM_X2
;
527 else if (h_scale
== 4)
528 layer_info
->h_zoom
= ZOOM_X4
;
530 layer_info
->h_exp
= H_EXP_9_OVER_8
;
532 /* no scaling, only cropping. Set display area to crop area */
533 cfg
->xsize
= expected_xsize
;
536 if (pixfmt
->height
< expected_ysize
) {
537 v_scale
= expected_ysize
/ pixfmt
->height
;
540 else if (v_scale
>= 4)
544 cfg
->ysize
*= v_scale
;
545 if (cfg
->ysize
< expected_ysize
) {
546 if ((standard_id
& V4L2_STD_625_50
)) {
547 calculated_xsize
= (cfg
->ysize
*
548 VPBE_DISPLAY_V_EXP_RATIO_N
) /
549 VPBE_DISPLAY_V_EXP_RATIO_D
;
550 if (calculated_xsize
<= expected_ysize
) {
552 cfg
->ysize
= calculated_xsize
;
557 layer_info
->v_zoom
= ZOOM_X2
;
558 else if (v_scale
== 4)
559 layer_info
->v_zoom
= ZOOM_X4
;
561 layer_info
->h_exp
= V_EXP_6_OVER_5
;
563 /* no scaling, only cropping. Set display area to crop area */
564 cfg
->ysize
= expected_ysize
;
566 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
567 "crop display xsize = %d, ysize = %d\n",
568 cfg
->xsize
, cfg
->ysize
);
571 static void vpbe_disp_adj_position(struct vpbe_display
*disp_dev
,
572 struct vpbe_layer
*layer
,
575 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
576 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
578 cfg
->xpos
= min((unsigned int)left
,
579 vpbe_dev
->current_timings
.xres
- cfg
->xsize
);
580 cfg
->ypos
= min((unsigned int)top
,
581 vpbe_dev
->current_timings
.yres
- cfg
->ysize
);
583 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
584 "new xpos = %d, ypos = %d\n",
585 cfg
->xpos
, cfg
->ypos
);
588 static void vpbe_disp_check_window_params(struct vpbe_display
*disp_dev
,
591 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
593 if ((c
->width
== 0) ||
594 ((c
->width
+ c
->left
) > vpbe_dev
->current_timings
.xres
))
595 c
->width
= vpbe_dev
->current_timings
.xres
- c
->left
;
597 if ((c
->height
== 0) || ((c
->height
+ c
->top
) >
598 vpbe_dev
->current_timings
.yres
))
599 c
->height
= vpbe_dev
->current_timings
.yres
- c
->top
;
601 /* window height must be even for interlaced display */
602 if (vpbe_dev
->current_timings
.interlaced
)
603 c
->height
&= (~0x01);
609 * If user application provides width and height, and have bytesperline set
610 * to zero, driver calculates bytesperline and sizeimage based on hardware
613 static int vpbe_try_format(struct vpbe_display
*disp_dev
,
614 struct v4l2_pix_format
*pixfmt
, int check
)
616 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
623 if ((pixfmt
->pixelformat
!= V4L2_PIX_FMT_UYVY
) &&
624 (pixfmt
->pixelformat
!= V4L2_PIX_FMT_NV12
))
625 /* choose default as V4L2_PIX_FMT_UYVY */
626 pixfmt
->pixelformat
= V4L2_PIX_FMT_UYVY
;
628 /* Check the field format */
629 if ((pixfmt
->field
!= V4L2_FIELD_INTERLACED
) &&
630 (pixfmt
->field
!= V4L2_FIELD_NONE
)) {
631 if (vpbe_dev
->current_timings
.interlaced
)
632 pixfmt
->field
= V4L2_FIELD_INTERLACED
;
634 pixfmt
->field
= V4L2_FIELD_NONE
;
637 if (pixfmt
->field
== V4L2_FIELD_INTERLACED
)
640 if (pixfmt
->pixelformat
== V4L2_PIX_FMT_NV12
)
645 max_width
= vpbe_dev
->current_timings
.xres
;
646 max_height
= vpbe_dev
->current_timings
.yres
;
650 if (!pixfmt
->width
|| (pixfmt
->width
< min_width
) ||
651 (pixfmt
->width
> max_width
)) {
652 pixfmt
->width
= vpbe_dev
->current_timings
.xres
;
655 if (!pixfmt
->height
|| (pixfmt
->height
< min_height
) ||
656 (pixfmt
->height
> max_height
)) {
657 pixfmt
->height
= vpbe_dev
->current_timings
.yres
;
660 if (pixfmt
->bytesperline
< (pixfmt
->width
* bpp
))
661 pixfmt
->bytesperline
= pixfmt
->width
* bpp
;
663 /* Make the bytesperline 32 byte aligned */
664 pixfmt
->bytesperline
= ((pixfmt
->width
* bpp
+ 31) & ~31);
666 if (pixfmt
->pixelformat
== V4L2_PIX_FMT_NV12
)
667 pixfmt
->sizeimage
= pixfmt
->bytesperline
* pixfmt
->height
+
668 (pixfmt
->bytesperline
* pixfmt
->height
>> 1);
670 pixfmt
->sizeimage
= pixfmt
->bytesperline
* pixfmt
->height
;
675 static int vpbe_display_g_priority(struct file
*file
, void *priv
,
676 enum v4l2_priority
*p
)
678 struct vpbe_fh
*fh
= file
->private_data
;
679 struct vpbe_layer
*layer
= fh
->layer
;
681 *p
= v4l2_prio_max(&layer
->prio
);
686 static int vpbe_display_s_priority(struct file
*file
, void *priv
,
687 enum v4l2_priority p
)
689 struct vpbe_fh
*fh
= file
->private_data
;
690 struct vpbe_layer
*layer
= fh
->layer
;
693 ret
= v4l2_prio_change(&layer
->prio
, &fh
->prio
, p
);
698 static int vpbe_display_querycap(struct file
*file
, void *priv
,
699 struct v4l2_capability
*cap
)
701 struct vpbe_fh
*fh
= file
->private_data
;
702 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
704 cap
->version
= VPBE_DISPLAY_VERSION_CODE
;
705 cap
->device_caps
= V4L2_CAP_VIDEO_OUTPUT
| V4L2_CAP_STREAMING
;
706 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
707 snprintf(cap
->driver
, sizeof(cap
->driver
), "%s",
708 dev_name(vpbe_dev
->pdev
));
709 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
), "platform:%s",
710 dev_name(vpbe_dev
->pdev
));
711 strlcpy(cap
->card
, vpbe_dev
->cfg
->module_name
, sizeof(cap
->card
));
716 static int vpbe_display_s_crop(struct file
*file
, void *priv
,
717 const struct v4l2_crop
*crop
)
719 struct vpbe_fh
*fh
= file
->private_data
;
720 struct vpbe_layer
*layer
= fh
->layer
;
721 struct vpbe_display
*disp_dev
= fh
->disp_dev
;
722 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
723 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
724 struct osd_state
*osd_device
= disp_dev
->osd_device
;
725 struct v4l2_rect rect
= crop
->c
;
728 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
729 "VIDIOC_S_CROP, layer id = %d\n", layer
->device_id
);
731 if (crop
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
) {
732 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buf type\n");
741 vpbe_disp_check_window_params(disp_dev
, &rect
);
743 osd_device
->ops
.get_layer_config(osd_device
,
744 layer
->layer_info
.id
, cfg
);
746 vpbe_disp_calculate_scale_factor(disp_dev
, layer
,
749 vpbe_disp_adj_position(disp_dev
, layer
, rect
.top
,
751 ret
= osd_device
->ops
.set_layer_config(osd_device
,
752 layer
->layer_info
.id
, cfg
);
754 v4l2_err(&vpbe_dev
->v4l2_dev
,
755 "Error in set layer config:\n");
759 /* apply zooming and h or v expansion */
760 osd_device
->ops
.set_zoom(osd_device
,
761 layer
->layer_info
.id
,
762 layer
->layer_info
.h_zoom
,
763 layer
->layer_info
.v_zoom
);
764 ret
= osd_device
->ops
.set_vid_expansion(osd_device
,
765 layer
->layer_info
.h_exp
,
766 layer
->layer_info
.v_exp
);
768 v4l2_err(&vpbe_dev
->v4l2_dev
,
769 "Error in set vid expansion:\n");
773 if ((layer
->layer_info
.h_zoom
!= ZOOM_X1
) ||
774 (layer
->layer_info
.v_zoom
!= ZOOM_X1
) ||
775 (layer
->layer_info
.h_exp
!= H_EXP_OFF
) ||
776 (layer
->layer_info
.v_exp
!= V_EXP_OFF
))
777 /* Enable expansion filter */
778 osd_device
->ops
.set_interpolation_filter(osd_device
, 1);
780 osd_device
->ops
.set_interpolation_filter(osd_device
, 0);
785 static int vpbe_display_g_crop(struct file
*file
, void *priv
,
786 struct v4l2_crop
*crop
)
788 struct vpbe_fh
*fh
= file
->private_data
;
789 struct vpbe_layer
*layer
= fh
->layer
;
790 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
791 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
792 struct osd_state
*osd_device
= fh
->disp_dev
->osd_device
;
793 struct v4l2_rect
*rect
= &crop
->c
;
795 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
796 "VIDIOC_G_CROP, layer id = %d\n",
799 if (crop
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
) {
800 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buf type\n");
803 osd_device
->ops
.get_layer_config(osd_device
,
804 layer
->layer_info
.id
, cfg
);
805 rect
->top
= cfg
->ypos
;
806 rect
->left
= cfg
->xpos
;
807 rect
->width
= cfg
->xsize
;
808 rect
->height
= cfg
->ysize
;
813 static int vpbe_display_cropcap(struct file
*file
, void *priv
,
814 struct v4l2_cropcap
*cropcap
)
816 struct vpbe_fh
*fh
= file
->private_data
;
817 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
819 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_CROPCAP ioctl\n");
821 cropcap
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
822 cropcap
->bounds
.left
= 0;
823 cropcap
->bounds
.top
= 0;
824 cropcap
->bounds
.width
= vpbe_dev
->current_timings
.xres
;
825 cropcap
->bounds
.height
= vpbe_dev
->current_timings
.yres
;
826 cropcap
->pixelaspect
= vpbe_dev
->current_timings
.aspect
;
827 cropcap
->defrect
= cropcap
->bounds
;
831 static int vpbe_display_g_fmt(struct file
*file
, void *priv
,
832 struct v4l2_format
*fmt
)
834 struct vpbe_fh
*fh
= file
->private_data
;
835 struct vpbe_layer
*layer
= fh
->layer
;
836 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
838 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
839 "VIDIOC_G_FMT, layer id = %d\n",
842 /* If buffer type is video output */
843 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= fmt
->type
) {
844 v4l2_err(&vpbe_dev
->v4l2_dev
, "invalid type\n");
847 /* Fill in the information about format */
848 fmt
->fmt
.pix
= layer
->pix_fmt
;
853 static int vpbe_display_enum_fmt(struct file
*file
, void *priv
,
854 struct v4l2_fmtdesc
*fmt
)
856 struct vpbe_fh
*fh
= file
->private_data
;
857 struct vpbe_layer
*layer
= fh
->layer
;
858 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
859 unsigned int index
= 0;
861 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
862 "VIDIOC_ENUM_FMT, layer id = %d\n",
864 if (fmt
->index
> 1) {
865 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid format index\n");
869 /* Fill in the information about format */
871 memset(fmt
, 0, sizeof(*fmt
));
873 fmt
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
875 strcpy(fmt
->description
, "YUV 4:2:2 - UYVY");
876 fmt
->pixelformat
= V4L2_PIX_FMT_UYVY
;
878 strcpy(fmt
->description
, "Y/CbCr 4:2:0");
879 fmt
->pixelformat
= V4L2_PIX_FMT_NV12
;
885 static int vpbe_display_s_fmt(struct file
*file
, void *priv
,
886 struct v4l2_format
*fmt
)
888 struct vpbe_fh
*fh
= file
->private_data
;
889 struct vpbe_layer
*layer
= fh
->layer
;
890 struct vpbe_display
*disp_dev
= fh
->disp_dev
;
891 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
892 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
893 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
894 struct osd_state
*osd_device
= disp_dev
->osd_device
;
897 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
898 "VIDIOC_S_FMT, layer id = %d\n",
901 /* If streaming is started, return error */
902 if (layer
->started
) {
903 v4l2_err(&vpbe_dev
->v4l2_dev
, "Streaming is started\n");
906 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= fmt
->type
) {
907 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "invalid type\n");
910 /* Check for valid pixel format */
911 ret
= vpbe_try_format(disp_dev
, pixfmt
, 1);
915 /* YUV420 is requested, check availability of the
916 other video window */
918 layer
->pix_fmt
= *pixfmt
;
919 if (pixfmt
->pixelformat
== V4L2_PIX_FMT_NV12
) {
920 struct vpbe_layer
*otherlayer
;
922 otherlayer
= _vpbe_display_get_other_win_layer(disp_dev
, layer
);
923 /* if other layer is available, only
924 * claim it, do not configure it
926 ret
= osd_device
->ops
.request_layer(osd_device
,
927 otherlayer
->layer_info
.id
);
929 v4l2_err(&vpbe_dev
->v4l2_dev
,
930 "Display Manager failed to allocate layer\n");
935 /* Get osd layer config */
936 osd_device
->ops
.get_layer_config(osd_device
,
937 layer
->layer_info
.id
, cfg
);
938 /* Store the pixel format in the layer object */
939 cfg
->xsize
= pixfmt
->width
;
940 cfg
->ysize
= pixfmt
->height
;
941 cfg
->line_length
= pixfmt
->bytesperline
;
944 cfg
->interlaced
= vpbe_dev
->current_timings
.interlaced
;
946 if (V4L2_PIX_FMT_UYVY
== pixfmt
->pixelformat
)
947 cfg
->pixfmt
= PIXFMT_YCBCRI
;
949 /* Change of the default pixel format for both video windows */
950 if (V4L2_PIX_FMT_NV12
== pixfmt
->pixelformat
) {
951 struct vpbe_layer
*otherlayer
;
952 cfg
->pixfmt
= PIXFMT_NV12
;
953 otherlayer
= _vpbe_display_get_other_win_layer(disp_dev
,
955 otherlayer
->layer_info
.config
.pixfmt
= PIXFMT_NV12
;
958 /* Set the layer config in the osd window */
959 ret
= osd_device
->ops
.set_layer_config(osd_device
,
960 layer
->layer_info
.id
, cfg
);
962 v4l2_err(&vpbe_dev
->v4l2_dev
,
963 "Error in S_FMT params:\n");
967 /* Readback and fill the local copy of current pix format */
968 osd_device
->ops
.get_layer_config(osd_device
,
969 layer
->layer_info
.id
, cfg
);
974 static int vpbe_display_try_fmt(struct file
*file
, void *priv
,
975 struct v4l2_format
*fmt
)
977 struct vpbe_fh
*fh
= file
->private_data
;
978 struct vpbe_display
*disp_dev
= fh
->disp_dev
;
979 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
980 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
982 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_TRY_FMT\n");
984 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= fmt
->type
) {
985 v4l2_err(&vpbe_dev
->v4l2_dev
, "invalid type\n");
989 /* Check for valid field format */
990 return vpbe_try_format(disp_dev
, pixfmt
, 0);
995 * vpbe_display_s_std - Set the given standard in the encoder
997 * Sets the standard if supported by the current encoder. Return the status.
998 * 0 - success & -EINVAL on error
1000 static int vpbe_display_s_std(struct file
*file
, void *priv
,
1003 struct vpbe_fh
*fh
= priv
;
1004 struct vpbe_layer
*layer
= fh
->layer
;
1005 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1008 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_S_STD\n");
1010 /* If streaming is started, return error */
1011 if (layer
->started
) {
1012 v4l2_err(&vpbe_dev
->v4l2_dev
, "Streaming is started\n");
1015 if (NULL
!= vpbe_dev
->ops
.s_std
) {
1016 ret
= vpbe_dev
->ops
.s_std(vpbe_dev
, std_id
);
1018 v4l2_err(&vpbe_dev
->v4l2_dev
,
1019 "Failed to set standard for sub devices\n");
1030 * vpbe_display_g_std - Get the standard in the current encoder
1032 * Get the standard in the current encoder. Return the status. 0 - success
1035 static int vpbe_display_g_std(struct file
*file
, void *priv
,
1036 v4l2_std_id
*std_id
)
1038 struct vpbe_fh
*fh
= priv
;
1039 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1041 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_G_STD\n");
1043 /* Get the standard from the current encoder */
1044 if (vpbe_dev
->current_timings
.timings_type
& VPBE_ENC_STD
) {
1045 *std_id
= vpbe_dev
->current_timings
.std_id
;
1053 * vpbe_display_enum_output - enumerate outputs
1055 * Enumerates the outputs available at the vpbe display
1056 * returns the status, -EINVAL if end of output list
1058 static int vpbe_display_enum_output(struct file
*file
, void *priv
,
1059 struct v4l2_output
*output
)
1061 struct vpbe_fh
*fh
= priv
;
1062 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1065 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_ENUM_OUTPUT\n");
1067 /* Enumerate outputs */
1069 if (NULL
== vpbe_dev
->ops
.enum_outputs
)
1072 ret
= vpbe_dev
->ops
.enum_outputs(vpbe_dev
, output
);
1074 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1075 "Failed to enumerate outputs\n");
1083 * vpbe_display_s_output - Set output to
1084 * the output specified by the index
1086 static int vpbe_display_s_output(struct file
*file
, void *priv
,
1089 struct vpbe_fh
*fh
= priv
;
1090 struct vpbe_layer
*layer
= fh
->layer
;
1091 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1094 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_S_OUTPUT\n");
1095 /* If streaming is started, return error */
1096 if (layer
->started
) {
1097 v4l2_err(&vpbe_dev
->v4l2_dev
, "Streaming is started\n");
1100 if (NULL
== vpbe_dev
->ops
.set_output
)
1103 ret
= vpbe_dev
->ops
.set_output(vpbe_dev
, i
);
1105 v4l2_err(&vpbe_dev
->v4l2_dev
,
1106 "Failed to set output for sub devices\n");
1114 * vpbe_display_g_output - Get output from subdevice
1115 * for a given by the index
1117 static int vpbe_display_g_output(struct file
*file
, void *priv
,
1120 struct vpbe_fh
*fh
= priv
;
1121 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1123 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_G_OUTPUT\n");
1124 /* Get the standard from the current encoder */
1125 *i
= vpbe_dev
->current_out_index
;
1131 * vpbe_display_enum_dv_timings - Enumerate the dv timings
1133 * enum the timings in the current encoder. Return the status. 0 - success
1137 vpbe_display_enum_dv_timings(struct file
*file
, void *priv
,
1138 struct v4l2_enum_dv_timings
*timings
)
1140 struct vpbe_fh
*fh
= priv
;
1141 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1144 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_ENUM_DV_TIMINGS\n");
1146 /* Enumerate outputs */
1147 if (NULL
== vpbe_dev
->ops
.enum_dv_timings
)
1150 ret
= vpbe_dev
->ops
.enum_dv_timings(vpbe_dev
, timings
);
1152 v4l2_err(&vpbe_dev
->v4l2_dev
,
1153 "Failed to enumerate dv timings info\n");
1161 * vpbe_display_s_dv_timings - Set the dv timings
1163 * Set the timings in the current encoder. Return the status. 0 - success
1167 vpbe_display_s_dv_timings(struct file
*file
, void *priv
,
1168 struct v4l2_dv_timings
*timings
)
1170 struct vpbe_fh
*fh
= priv
;
1171 struct vpbe_layer
*layer
= fh
->layer
;
1172 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1175 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_S_DV_TIMINGS\n");
1178 /* If streaming is started, return error */
1179 if (layer
->started
) {
1180 v4l2_err(&vpbe_dev
->v4l2_dev
, "Streaming is started\n");
1184 /* Set the given standard in the encoder */
1185 if (!vpbe_dev
->ops
.s_dv_timings
)
1188 ret
= vpbe_dev
->ops
.s_dv_timings(vpbe_dev
, timings
);
1190 v4l2_err(&vpbe_dev
->v4l2_dev
,
1191 "Failed to set the dv timings info\n");
1199 * vpbe_display_g_dv_timings - Set the dv timings
1201 * Get the timings in the current encoder. Return the status. 0 - success
1205 vpbe_display_g_dv_timings(struct file
*file
, void *priv
,
1206 struct v4l2_dv_timings
*dv_timings
)
1208 struct vpbe_fh
*fh
= priv
;
1209 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1211 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_G_DV_TIMINGS\n");
1213 /* Get the given standard in the encoder */
1215 if (vpbe_dev
->current_timings
.timings_type
&
1216 VPBE_ENC_DV_TIMINGS
) {
1217 *dv_timings
= vpbe_dev
->current_timings
.dv_timings
;
1225 static int vpbe_display_streamoff(struct file
*file
, void *priv
,
1226 enum v4l2_buf_type buf_type
)
1228 struct vpbe_fh
*fh
= file
->private_data
;
1229 struct vpbe_layer
*layer
= fh
->layer
;
1230 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1231 struct osd_state
*osd_device
= fh
->disp_dev
->osd_device
;
1234 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1235 "VIDIOC_STREAMOFF,layer id = %d\n",
1238 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= buf_type
) {
1239 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buffer type\n");
1243 /* If io is allowed for this file handle, return error */
1244 if (!fh
->io_allowed
) {
1245 v4l2_err(&vpbe_dev
->v4l2_dev
, "No io_allowed\n");
1249 /* If streaming is not started, return error */
1250 if (!layer
->started
) {
1251 v4l2_err(&vpbe_dev
->v4l2_dev
, "streaming not started in layer"
1252 " id = %d\n", layer
->device_id
);
1256 osd_device
->ops
.disable_layer(osd_device
,
1257 layer
->layer_info
.id
);
1259 ret
= vb2_streamoff(&layer
->buffer_queue
, buf_type
);
1264 static int vpbe_display_streamon(struct file
*file
, void *priv
,
1265 enum v4l2_buf_type buf_type
)
1267 struct vpbe_fh
*fh
= file
->private_data
;
1268 struct vpbe_layer
*layer
= fh
->layer
;
1269 struct vpbe_display
*disp_dev
= fh
->disp_dev
;
1270 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1271 struct osd_state
*osd_device
= disp_dev
->osd_device
;
1274 osd_device
->ops
.disable_layer(osd_device
,
1275 layer
->layer_info
.id
);
1277 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "VIDIOC_STREAMON, layerid=%d\n",
1280 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= buf_type
) {
1281 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buffer type\n");
1285 /* If file handle is not allowed IO, return error */
1286 if (!fh
->io_allowed
) {
1287 v4l2_err(&vpbe_dev
->v4l2_dev
, "No io_allowed\n");
1290 /* If Streaming is already started, return error */
1291 if (layer
->started
) {
1292 v4l2_err(&vpbe_dev
->v4l2_dev
, "layer is already streaming\n");
1297 * Call vb2_streamon to start streaming
1300 ret
= vb2_streamon(&layer
->buffer_queue
, buf_type
);
1302 v4l2_err(&vpbe_dev
->v4l2_dev
,
1303 "error in vb2_streamon\n");
1309 static int vpbe_display_dqbuf(struct file
*file
, void *priv
,
1310 struct v4l2_buffer
*buf
)
1312 struct vpbe_fh
*fh
= file
->private_data
;
1313 struct vpbe_layer
*layer
= fh
->layer
;
1314 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1317 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1318 "VIDIOC_DQBUF, layer id = %d\n",
1321 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= buf
->type
) {
1322 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buffer type\n");
1325 /* If this file handle is not allowed to do IO, return error */
1326 if (!fh
->io_allowed
) {
1327 v4l2_err(&vpbe_dev
->v4l2_dev
, "No io_allowed\n");
1330 if (file
->f_flags
& O_NONBLOCK
)
1331 /* Call videobuf_dqbuf for non blocking mode */
1332 ret
= vb2_dqbuf(&layer
->buffer_queue
, buf
, 1);
1334 /* Call videobuf_dqbuf for blocking mode */
1335 ret
= vb2_dqbuf(&layer
->buffer_queue
, buf
, 0);
1340 static int vpbe_display_qbuf(struct file
*file
, void *priv
,
1341 struct v4l2_buffer
*p
)
1343 struct vpbe_fh
*fh
= file
->private_data
;
1344 struct vpbe_layer
*layer
= fh
->layer
;
1345 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1347 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1348 "VIDIOC_QBUF, layer id = %d\n",
1351 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= p
->type
) {
1352 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buffer type\n");
1356 /* If this file handle is not allowed to do IO, return error */
1357 if (!fh
->io_allowed
) {
1358 v4l2_err(&vpbe_dev
->v4l2_dev
, "No io_allowed\n");
1362 return vb2_qbuf(&layer
->buffer_queue
, p
);
1365 static int vpbe_display_querybuf(struct file
*file
, void *priv
,
1366 struct v4l2_buffer
*buf
)
1368 struct vpbe_fh
*fh
= file
->private_data
;
1369 struct vpbe_layer
*layer
= fh
->layer
;
1370 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1372 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1373 "VIDIOC_QUERYBUF, layer id = %d\n",
1376 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= buf
->type
) {
1377 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buffer type\n");
1380 /* Call vb2_querybuf to get information */
1381 return vb2_querybuf(&layer
->buffer_queue
, buf
);
1384 static int vpbe_display_reqbufs(struct file
*file
, void *priv
,
1385 struct v4l2_requestbuffers
*req_buf
)
1387 struct vpbe_fh
*fh
= file
->private_data
;
1388 struct vpbe_layer
*layer
= fh
->layer
;
1389 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1390 struct vb2_queue
*q
;
1392 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "vpbe_display_reqbufs\n");
1394 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= req_buf
->type
) {
1395 v4l2_err(&vpbe_dev
->v4l2_dev
, "Invalid buffer type\n");
1399 /* If io users of the layer is not zero, return error */
1400 if (0 != layer
->io_usrs
) {
1401 v4l2_err(&vpbe_dev
->v4l2_dev
, "not IO user\n");
1404 /* Initialize videobuf queue as per the buffer type */
1405 layer
->alloc_ctx
= vb2_dma_contig_init_ctx(vpbe_dev
->pdev
);
1406 if (IS_ERR(layer
->alloc_ctx
)) {
1407 v4l2_err(&vpbe_dev
->v4l2_dev
, "Failed to get the context\n");
1408 return PTR_ERR(layer
->alloc_ctx
);
1410 q
= &layer
->buffer_queue
;
1411 memset(q
, 0, sizeof(*q
));
1412 q
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
1413 q
->io_modes
= VB2_MMAP
| VB2_USERPTR
;
1415 q
->ops
= &video_qops
;
1416 q
->mem_ops
= &vb2_dma_contig_memops
;
1417 q
->buf_struct_size
= sizeof(struct vpbe_disp_buffer
);
1418 q
->timestamp_type
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
1420 ret
= vb2_queue_init(q
);
1422 v4l2_err(&vpbe_dev
->v4l2_dev
, "vb2_queue_init() failed\n");
1423 vb2_dma_contig_cleanup_ctx(layer
->alloc_ctx
);
1426 /* Set io allowed member of file handle to TRUE */
1428 /* Increment io usrs member of layer object to 1 */
1430 /* Store type of memory requested in layer object */
1431 layer
->memory
= req_buf
->memory
;
1432 /* Initialize buffer queue */
1433 INIT_LIST_HEAD(&layer
->dma_queue
);
1434 /* Allocate buffers */
1435 return vb2_reqbufs(q
, req_buf
);
1439 * vpbe_display_mmap()
1440 * It is used to map kernel space buffers into user spaces
1442 static int vpbe_display_mmap(struct file
*filep
, struct vm_area_struct
*vma
)
1444 /* Get the layer object and file handle object */
1445 struct vpbe_fh
*fh
= filep
->private_data
;
1446 struct vpbe_layer
*layer
= fh
->layer
;
1447 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1450 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "vpbe_display_mmap\n");
1452 if (mutex_lock_interruptible(&layer
->opslock
))
1453 return -ERESTARTSYS
;
1454 ret
= vb2_mmap(&layer
->buffer_queue
, vma
);
1455 mutex_unlock(&layer
->opslock
);
1459 /* vpbe_display_poll(): It is used for select/poll system call
1461 static unsigned int vpbe_display_poll(struct file
*filep
, poll_table
*wait
)
1463 struct vpbe_fh
*fh
= filep
->private_data
;
1464 struct vpbe_layer
*layer
= fh
->layer
;
1465 struct vpbe_device
*vpbe_dev
= fh
->disp_dev
->vpbe_dev
;
1466 unsigned int err
= 0;
1468 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "vpbe_display_poll\n");
1469 if (layer
->started
) {
1470 mutex_lock(&layer
->opslock
);
1471 err
= vb2_poll(&layer
->buffer_queue
, filep
, wait
);
1472 mutex_unlock(&layer
->opslock
);
1478 * vpbe_display_open()
1479 * It creates object of file handle structure and stores it in private_data
1480 * member of filepointer
1482 static int vpbe_display_open(struct file
*file
)
1484 struct vpbe_fh
*fh
= NULL
;
1485 struct vpbe_layer
*layer
= video_drvdata(file
);
1486 struct vpbe_display
*disp_dev
= layer
->disp_dev
;
1487 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
1488 struct osd_state
*osd_device
= disp_dev
->osd_device
;
1491 /* Allocate memory for the file handle object */
1492 fh
= kmalloc(sizeof(struct vpbe_fh
), GFP_KERNEL
);
1494 v4l2_err(&vpbe_dev
->v4l2_dev
,
1495 "unable to allocate memory for file handle object\n");
1498 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1499 "vpbe display open plane = %d\n",
1502 /* store pointer to fh in private_data member of filep */
1503 file
->private_data
= fh
;
1505 fh
->disp_dev
= disp_dev
;
1508 if (mutex_lock_interruptible(&layer
->opslock
))
1509 return -ERESTARTSYS
;
1510 /* First claim the layer for this device */
1511 err
= osd_device
->ops
.request_layer(osd_device
,
1512 layer
->layer_info
.id
);
1513 mutex_unlock(&layer
->opslock
);
1515 /* Couldn't get layer */
1516 v4l2_err(&vpbe_dev
->v4l2_dev
,
1517 "Display Manager failed to allocate layer\n");
1522 /* Increment layer usrs counter */
1524 /* Set io_allowed member to false */
1526 /* Initialize priority of this instance to default priority */
1527 fh
->prio
= V4L2_PRIORITY_UNSET
;
1528 v4l2_prio_open(&layer
->prio
, &fh
->prio
);
1529 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
,
1530 "vpbe display device opened successfully\n");
1535 * vpbe_display_release()
1536 * This function deletes buffer queue, frees the buffers and the davinci
1537 * display file * handle
1539 static int vpbe_display_release(struct file
*file
)
1541 /* Get the layer object and file handle object */
1542 struct vpbe_fh
*fh
= file
->private_data
;
1543 struct vpbe_layer
*layer
= fh
->layer
;
1544 struct osd_layer_config
*cfg
= &layer
->layer_info
.config
;
1545 struct vpbe_display
*disp_dev
= fh
->disp_dev
;
1546 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
1547 struct osd_state
*osd_device
= disp_dev
->osd_device
;
1549 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "vpbe_display_release\n");
1551 mutex_lock(&layer
->opslock
);
1552 /* if this instance is doing IO */
1553 if (fh
->io_allowed
) {
1554 /* Reset io_usrs member of layer object */
1557 osd_device
->ops
.disable_layer(osd_device
,
1558 layer
->layer_info
.id
);
1560 /* Free buffers allocated */
1561 vb2_queue_release(&layer
->buffer_queue
);
1562 vb2_dma_contig_cleanup_ctx(&layer
->buffer_queue
);
1565 /* Decrement layer usrs counter */
1567 /* If this file handle has initialize encoder device, reset it */
1569 if (cfg
->pixfmt
== PIXFMT_NV12
) {
1570 struct vpbe_layer
*otherlayer
;
1572 _vpbe_display_get_other_win_layer(disp_dev
, layer
);
1573 osd_device
->ops
.disable_layer(osd_device
,
1574 otherlayer
->layer_info
.id
);
1575 osd_device
->ops
.release_layer(osd_device
,
1576 otherlayer
->layer_info
.id
);
1578 osd_device
->ops
.disable_layer(osd_device
,
1579 layer
->layer_info
.id
);
1580 osd_device
->ops
.release_layer(osd_device
,
1581 layer
->layer_info
.id
);
1583 /* Close the priority */
1584 v4l2_prio_close(&layer
->prio
, fh
->prio
);
1585 file
->private_data
= NULL
;
1586 mutex_unlock(&layer
->opslock
);
1588 /* Free memory allocated to file handle object */
1591 disp_dev
->cbcr_ofst
= 0;
1596 /* vpbe capture ioctl operations */
1597 static const struct v4l2_ioctl_ops vpbe_ioctl_ops
= {
1598 .vidioc_querycap
= vpbe_display_querycap
,
1599 .vidioc_g_fmt_vid_out
= vpbe_display_g_fmt
,
1600 .vidioc_enum_fmt_vid_out
= vpbe_display_enum_fmt
,
1601 .vidioc_s_fmt_vid_out
= vpbe_display_s_fmt
,
1602 .vidioc_try_fmt_vid_out
= vpbe_display_try_fmt
,
1603 .vidioc_reqbufs
= vpbe_display_reqbufs
,
1604 .vidioc_querybuf
= vpbe_display_querybuf
,
1605 .vidioc_qbuf
= vpbe_display_qbuf
,
1606 .vidioc_dqbuf
= vpbe_display_dqbuf
,
1607 .vidioc_streamon
= vpbe_display_streamon
,
1608 .vidioc_streamoff
= vpbe_display_streamoff
,
1609 .vidioc_cropcap
= vpbe_display_cropcap
,
1610 .vidioc_g_crop
= vpbe_display_g_crop
,
1611 .vidioc_s_crop
= vpbe_display_s_crop
,
1612 .vidioc_g_priority
= vpbe_display_g_priority
,
1613 .vidioc_s_priority
= vpbe_display_s_priority
,
1614 .vidioc_s_std
= vpbe_display_s_std
,
1615 .vidioc_g_std
= vpbe_display_g_std
,
1616 .vidioc_enum_output
= vpbe_display_enum_output
,
1617 .vidioc_s_output
= vpbe_display_s_output
,
1618 .vidioc_g_output
= vpbe_display_g_output
,
1619 .vidioc_s_dv_timings
= vpbe_display_s_dv_timings
,
1620 .vidioc_g_dv_timings
= vpbe_display_g_dv_timings
,
1621 .vidioc_enum_dv_timings
= vpbe_display_enum_dv_timings
,
1624 static struct v4l2_file_operations vpbe_fops
= {
1625 .owner
= THIS_MODULE
,
1626 .open
= vpbe_display_open
,
1627 .release
= vpbe_display_release
,
1628 .unlocked_ioctl
= video_ioctl2
,
1629 .mmap
= vpbe_display_mmap
,
1630 .poll
= vpbe_display_poll
1633 static int vpbe_device_get(struct device
*dev
, void *data
)
1635 struct platform_device
*pdev
= to_platform_device(dev
);
1636 struct vpbe_display
*vpbe_disp
= data
;
1638 if (strcmp("vpbe_controller", pdev
->name
) == 0)
1639 vpbe_disp
->vpbe_dev
= platform_get_drvdata(pdev
);
1641 if (strstr(pdev
->name
, "vpbe-osd") != NULL
)
1642 vpbe_disp
->osd_device
= platform_get_drvdata(pdev
);
1647 static int init_vpbe_layer(int i
, struct vpbe_display
*disp_dev
,
1648 struct platform_device
*pdev
)
1650 struct vpbe_layer
*vpbe_display_layer
= NULL
;
1651 struct video_device
*vbd
= NULL
;
1653 /* Allocate memory for four plane display objects */
1656 kzalloc(sizeof(struct vpbe_layer
), GFP_KERNEL
);
1658 /* If memory allocation fails, return error */
1659 if (!disp_dev
->dev
[i
]) {
1660 printk(KERN_ERR
"ran out of memory\n");
1663 spin_lock_init(&disp_dev
->dev
[i
]->irqlock
);
1664 mutex_init(&disp_dev
->dev
[i
]->opslock
);
1666 /* Get the pointer to the layer object */
1667 vpbe_display_layer
= disp_dev
->dev
[i
];
1668 vbd
= &vpbe_display_layer
->video_dev
;
1669 /* Initialize field of video device */
1670 vbd
->release
= video_device_release_empty
;
1671 vbd
->fops
= &vpbe_fops
;
1672 vbd
->ioctl_ops
= &vpbe_ioctl_ops
;
1674 vbd
->v4l2_dev
= &disp_dev
->vpbe_dev
->v4l2_dev
;
1675 vbd
->lock
= &vpbe_display_layer
->opslock
;
1676 vbd
->vfl_dir
= VFL_DIR_TX
;
1678 if (disp_dev
->vpbe_dev
->current_timings
.timings_type
&
1680 vbd
->tvnorms
= (V4L2_STD_525_60
| V4L2_STD_625_50
);
1682 snprintf(vbd
->name
, sizeof(vbd
->name
),
1683 "DaVinci_VPBE Display_DRIVER_V%d.%d.%d",
1684 (VPBE_DISPLAY_VERSION_CODE
>> 16) & 0xff,
1685 (VPBE_DISPLAY_VERSION_CODE
>> 8) & 0xff,
1686 (VPBE_DISPLAY_VERSION_CODE
) & 0xff);
1688 vpbe_display_layer
->device_id
= i
;
1690 vpbe_display_layer
->layer_info
.id
=
1691 ((i
== VPBE_DISPLAY_DEVICE_0
) ? WIN_VID0
: WIN_VID1
);
1693 /* Initialize prio member of layer object */
1694 v4l2_prio_init(&vpbe_display_layer
->prio
);
1699 static int register_device(struct vpbe_layer
*vpbe_display_layer
,
1700 struct vpbe_display
*disp_dev
,
1701 struct platform_device
*pdev
)
1705 v4l2_info(&disp_dev
->vpbe_dev
->v4l2_dev
,
1706 "Trying to register VPBE display device.\n");
1707 v4l2_info(&disp_dev
->vpbe_dev
->v4l2_dev
,
1708 "layer=%x,layer->video_dev=%x\n",
1709 (int)vpbe_display_layer
,
1710 (int)&vpbe_display_layer
->video_dev
);
1712 err
= video_register_device(&vpbe_display_layer
->video_dev
,
1718 vpbe_display_layer
->disp_dev
= disp_dev
;
1719 /* set the driver data in platform device */
1720 platform_set_drvdata(pdev
, disp_dev
);
1721 video_set_drvdata(&vpbe_display_layer
->video_dev
,
1722 vpbe_display_layer
);
1730 * vpbe_display_probe()
1731 * This function creates device entries by register itself to the V4L2 driver
1732 * and initializes fields of each layer objects
1734 static int vpbe_display_probe(struct platform_device
*pdev
)
1736 struct vpbe_layer
*vpbe_display_layer
;
1737 struct vpbe_display
*disp_dev
;
1738 struct resource
*res
= NULL
;
1744 printk(KERN_DEBUG
"vpbe_display_probe\n");
1745 /* Allocate memory for vpbe_display */
1746 disp_dev
= devm_kzalloc(&pdev
->dev
, sizeof(struct vpbe_display
),
1751 spin_lock_init(&disp_dev
->dma_queue_lock
);
1753 * Scan all the platform devices to find the vpbe
1754 * controller device and get the vpbe_dev object
1756 err
= bus_for_each_dev(&platform_bus_type
, NULL
, disp_dev
,
1760 /* Initialize the vpbe display controller */
1761 if (NULL
!= disp_dev
->vpbe_dev
->ops
.initialize
) {
1762 err
= disp_dev
->vpbe_dev
->ops
.initialize(&pdev
->dev
,
1763 disp_dev
->vpbe_dev
);
1765 v4l2_err(&disp_dev
->vpbe_dev
->v4l2_dev
,
1766 "Error initing vpbe\n");
1772 for (i
= 0; i
< VPBE_DISPLAY_MAX_DEVICES
; i
++) {
1773 if (init_vpbe_layer(i
, disp_dev
, pdev
)) {
1779 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
1781 v4l2_err(&disp_dev
->vpbe_dev
->v4l2_dev
,
1782 "Unable to get VENC interrupt resource\n");
1788 err
= devm_request_irq(&pdev
->dev
, irq
, venc_isr
, IRQF_DISABLED
,
1789 VPBE_DISPLAY_DRIVER
, disp_dev
);
1791 v4l2_err(&disp_dev
->vpbe_dev
->v4l2_dev
,
1792 "Unable to request interrupt\n");
1796 for (i
= 0; i
< VPBE_DISPLAY_MAX_DEVICES
; i
++) {
1797 if (register_device(disp_dev
->dev
[i
], disp_dev
, pdev
)) {
1803 printk(KERN_DEBUG
"Successfully completed the probing of vpbe v4l2 device\n");
1807 for (k
= 0; k
< VPBE_DISPLAY_MAX_DEVICES
; k
++) {
1808 /* Get the pointer to the layer object */
1809 vpbe_display_layer
= disp_dev
->dev
[k
];
1810 /* Unregister video device */
1811 if (vpbe_display_layer
) {
1812 video_unregister_device(
1813 &vpbe_display_layer
->video_dev
);
1814 kfree(disp_dev
->dev
[k
]);
1821 * vpbe_display_remove()
1822 * It un-register hardware layer from V4L2 driver
1824 static int vpbe_display_remove(struct platform_device
*pdev
)
1826 struct vpbe_layer
*vpbe_display_layer
;
1827 struct vpbe_display
*disp_dev
= platform_get_drvdata(pdev
);
1828 struct vpbe_device
*vpbe_dev
= disp_dev
->vpbe_dev
;
1831 v4l2_dbg(1, debug
, &vpbe_dev
->v4l2_dev
, "vpbe_display_remove\n");
1833 /* deinitialize the vpbe display controller */
1834 if (NULL
!= vpbe_dev
->ops
.deinitialize
)
1835 vpbe_dev
->ops
.deinitialize(&pdev
->dev
, vpbe_dev
);
1836 /* un-register device */
1837 for (i
= 0; i
< VPBE_DISPLAY_MAX_DEVICES
; i
++) {
1838 /* Get the pointer to the layer object */
1839 vpbe_display_layer
= disp_dev
->dev
[i
];
1840 /* Unregister video device */
1841 video_unregister_device(&vpbe_display_layer
->video_dev
);
1844 for (i
= 0; i
< VPBE_DISPLAY_MAX_DEVICES
; i
++) {
1845 kfree(disp_dev
->dev
[i
]);
1846 disp_dev
->dev
[i
] = NULL
;
1852 static struct platform_driver vpbe_display_driver
= {
1854 .name
= VPBE_DISPLAY_DRIVER
,
1855 .owner
= THIS_MODULE
,
1856 .bus
= &platform_bus_type
,
1858 .probe
= vpbe_display_probe
,
1859 .remove
= vpbe_display_remove
,
1862 module_platform_driver(vpbe_display_driver
);
1864 MODULE_DESCRIPTION("TI DM644x/DM355/DM365 VPBE Display controller");
1865 MODULE_LICENSE("GPL");
1866 MODULE_AUTHOR("Texas Instruments");