4 * Copyright (C) 2005-2010 Texas Instruments.
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.
10 * Leveraged code from the OMAP2 camera driver
11 * Video-for-Linux (Version 2) camera capture driver for
12 * the OMAP24xx camera controller.
14 * Author: Andy Lowe (source@mvista.com)
16 * Copyright (C) 2004 MontaVista Software, Inc.
17 * Copyright (C) 2010 Texas Instruments.
20 * 20-APR-2006 Khasim Modified VRFB based Rotation,
21 * The image data is always read from 0 degree
23 * to the virtual space of desired rotation angle
24 * 4-DEC-2006 Jian Changed to support better memory management
26 * 17-Nov-2008 Hardik Changed driver to use video_ioctl2
28 * 23-Feb-2010 Vaibhav H Modified to use new DSS2 interface
32 #include <linux/init.h>
33 #include <linux/module.h>
34 #include <linux/vmalloc.h>
35 #include <linux/sched.h>
36 #include <linux/types.h>
37 #include <linux/platform_device.h>
38 #include <linux/irq.h>
39 #include <linux/videodev2.h>
40 #include <linux/dma-mapping.h>
41 #include <linux/slab.h>
43 #include <media/videobuf-dma-contig.h>
44 #include <media/v4l2-device.h>
45 #include <media/v4l2-ioctl.h>
47 #include <video/omapvrfb.h>
48 #include <video/omapfb_dss.h>
50 #include "omap_voutlib.h"
51 #include "omap_voutdef.h"
52 #include "omap_vout_vrfb.h"
54 MODULE_AUTHOR("Texas Instruments");
55 MODULE_DESCRIPTION("OMAP Video for Linux Video out driver");
56 MODULE_LICENSE("GPL");
58 /* Driver Configuration macros */
59 #define VOUT_NAME "omap_vout"
61 enum omap_vout_channels
{
66 static struct videobuf_queue_ops video_vbq_ops
;
67 /* Variables configurable through module params*/
68 static u32 video1_numbuffers
= 3;
69 static u32 video2_numbuffers
= 3;
70 static u32 video1_bufsize
= OMAP_VOUT_MAX_BUF_SIZE
;
71 static u32 video2_bufsize
= OMAP_VOUT_MAX_BUF_SIZE
;
72 static bool vid1_static_vrfb_alloc
;
73 static bool vid2_static_vrfb_alloc
;
76 /* Module parameters */
77 module_param(video1_numbuffers
, uint
, S_IRUGO
);
78 MODULE_PARM_DESC(video1_numbuffers
,
79 "Number of buffers to be allocated at init time for Video1 device.");
81 module_param(video2_numbuffers
, uint
, S_IRUGO
);
82 MODULE_PARM_DESC(video2_numbuffers
,
83 "Number of buffers to be allocated at init time for Video2 device.");
85 module_param(video1_bufsize
, uint
, S_IRUGO
);
86 MODULE_PARM_DESC(video1_bufsize
,
87 "Size of the buffer to be allocated for video1 device");
89 module_param(video2_bufsize
, uint
, S_IRUGO
);
90 MODULE_PARM_DESC(video2_bufsize
,
91 "Size of the buffer to be allocated for video2 device");
93 module_param(vid1_static_vrfb_alloc
, bool, S_IRUGO
);
94 MODULE_PARM_DESC(vid1_static_vrfb_alloc
,
95 "Static allocation of the VRFB buffer for video1 device");
97 module_param(vid2_static_vrfb_alloc
, bool, S_IRUGO
);
98 MODULE_PARM_DESC(vid2_static_vrfb_alloc
,
99 "Static allocation of the VRFB buffer for video2 device");
101 module_param(debug
, bool, S_IRUGO
);
102 MODULE_PARM_DESC(debug
, "Debug level (0-1)");
104 /* list of image formats supported by OMAP2 video pipelines */
105 static const struct v4l2_fmtdesc omap_formats
[] = {
107 /* Note: V4L2 defines RGB565 as:
110 * g2 g1 g0 r4 r3 r2 r1 r0 b4 b3 b2 b1 b0 g5 g4 g3
112 * We interpret RGB565 as:
115 * g2 g1 g0 b4 b3 b2 b1 b0 r4 r3 r2 r1 r0 g5 g4 g3
117 .description
= "RGB565, le",
118 .pixelformat
= V4L2_PIX_FMT_RGB565
,
121 /* Note: V4L2 defines RGB32 as: RGB-8-8-8-8 we use
122 * this for RGB24 unpack mode, the last 8 bits are ignored
124 .description
= "RGB32, le",
125 .pixelformat
= V4L2_PIX_FMT_RGB32
,
128 /* Note: V4L2 defines RGB24 as: RGB-8-8-8 we use
129 * this for RGB24 packed mode
132 .description
= "RGB24, le",
133 .pixelformat
= V4L2_PIX_FMT_RGB24
,
136 .description
= "YUYV (YUV 4:2:2), packed",
137 .pixelformat
= V4L2_PIX_FMT_YUYV
,
140 .description
= "UYVY, packed",
141 .pixelformat
= V4L2_PIX_FMT_UYVY
,
145 #define NUM_OUTPUT_FORMATS (ARRAY_SIZE(omap_formats))
150 static int omap_vout_try_format(struct v4l2_pix_format
*pix
)
154 pix
->height
= clamp(pix
->height
, (u32
)VID_MIN_HEIGHT
,
155 (u32
)VID_MAX_HEIGHT
);
156 pix
->width
= clamp(pix
->width
, (u32
)VID_MIN_WIDTH
, (u32
)VID_MAX_WIDTH
);
158 for (ifmt
= 0; ifmt
< NUM_OUTPUT_FORMATS
; ifmt
++) {
159 if (pix
->pixelformat
== omap_formats
[ifmt
].pixelformat
)
163 if (ifmt
== NUM_OUTPUT_FORMATS
)
166 pix
->pixelformat
= omap_formats
[ifmt
].pixelformat
;
167 pix
->field
= V4L2_FIELD_ANY
;
169 switch (pix
->pixelformat
) {
170 case V4L2_PIX_FMT_YUYV
:
171 case V4L2_PIX_FMT_UYVY
:
173 pix
->colorspace
= V4L2_COLORSPACE_JPEG
;
176 case V4L2_PIX_FMT_RGB565
:
177 case V4L2_PIX_FMT_RGB565X
:
178 pix
->colorspace
= V4L2_COLORSPACE_SRGB
;
181 case V4L2_PIX_FMT_RGB24
:
182 pix
->colorspace
= V4L2_COLORSPACE_SRGB
;
185 case V4L2_PIX_FMT_RGB32
:
186 case V4L2_PIX_FMT_BGR32
:
187 pix
->colorspace
= V4L2_COLORSPACE_SRGB
;
191 pix
->bytesperline
= pix
->width
* bpp
;
192 pix
->sizeimage
= pix
->bytesperline
* pix
->height
;
198 * omap_vout_get_userptr: Convert user space virtual address to physical
201 static int omap_vout_get_userptr(struct videobuf_buffer
*vb
, u32 virtp
,
204 struct frame_vector
*vec
;
207 /* For kernel direct-mapped memory, take the easy way */
208 if (virtp
>= PAGE_OFFSET
) {
209 *physp
= virt_to_phys((void *)virtp
);
213 vec
= frame_vector_create(1);
217 ret
= get_vaddr_frames(virtp
, 1, FOLL_WRITE
, vec
);
219 frame_vector_destroy(vec
);
222 *physp
= __pfn_to_phys(frame_vector_pfns(vec
)[0]);
229 * Free the V4L2 buffers
231 void omap_vout_free_buffers(struct omap_vout_device
*vout
)
235 /* Allocate memory for the buffers */
236 numbuffers
= (vout
->vid
) ? video2_numbuffers
: video1_numbuffers
;
237 vout
->buffer_size
= (vout
->vid
) ? video2_bufsize
: video1_bufsize
;
239 for (i
= 0; i
< numbuffers
; i
++) {
240 omap_vout_free_buffer(vout
->buf_virt_addr
[i
],
242 vout
->buf_phy_addr
[i
] = 0;
243 vout
->buf_virt_addr
[i
] = 0;
248 * Convert V4L2 rotation to DSS rotation
249 * V4L2 understand 0, 90, 180, 270.
250 * Convert to 0, 1, 2 and 3 respectively for DSS
252 static int v4l2_rot_to_dss_rot(int v4l2_rotation
,
253 enum dss_rotation
*rotation
, bool mirror
)
257 switch (v4l2_rotation
) {
259 *rotation
= dss_rotation_90_degree
;
262 *rotation
= dss_rotation_180_degree
;
265 *rotation
= dss_rotation_270_degree
;
268 *rotation
= dss_rotation_0_degree
;
276 static int omap_vout_calculate_offset(struct omap_vout_device
*vout
)
278 struct omapvideo_info
*ovid
;
279 struct v4l2_rect
*crop
= &vout
->crop
;
280 struct v4l2_pix_format
*pix
= &vout
->pix
;
281 int *cropped_offset
= &vout
->cropped_offset
;
282 int ps
= 2, line_length
= 0;
284 ovid
= &vout
->vid_info
;
286 if (ovid
->rotation_type
== VOUT_ROT_VRFB
) {
287 omap_vout_calculate_vrfb_offset(vout
);
289 vout
->line_length
= line_length
= pix
->width
;
291 if (V4L2_PIX_FMT_YUYV
== pix
->pixelformat
||
292 V4L2_PIX_FMT_UYVY
== pix
->pixelformat
)
294 else if (V4L2_PIX_FMT_RGB32
== pix
->pixelformat
)
296 else if (V4L2_PIX_FMT_RGB24
== pix
->pixelformat
)
301 *cropped_offset
= (line_length
* ps
) *
302 crop
->top
+ crop
->left
* ps
;
305 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
, "%s Offset:%x\n",
306 __func__
, vout
->cropped_offset
);
312 * Convert V4L2 pixel format to DSS pixel format
314 static int video_mode_to_dss_mode(struct omap_vout_device
*vout
)
316 struct omap_overlay
*ovl
;
317 struct omapvideo_info
*ovid
;
318 struct v4l2_pix_format
*pix
= &vout
->pix
;
319 enum omap_color_mode mode
;
321 ovid
= &vout
->vid_info
;
322 ovl
= ovid
->overlays
[0];
324 switch (pix
->pixelformat
) {
325 case V4L2_PIX_FMT_YUYV
:
326 mode
= OMAP_DSS_COLOR_YUV2
;
328 case V4L2_PIX_FMT_UYVY
:
329 mode
= OMAP_DSS_COLOR_UYVY
;
331 case V4L2_PIX_FMT_RGB565
:
332 mode
= OMAP_DSS_COLOR_RGB16
;
334 case V4L2_PIX_FMT_RGB24
:
335 mode
= OMAP_DSS_COLOR_RGB24P
;
337 case V4L2_PIX_FMT_RGB32
:
338 mode
= (ovl
->id
== OMAP_DSS_VIDEO1
) ?
339 OMAP_DSS_COLOR_RGB24U
: OMAP_DSS_COLOR_ARGB32
;
341 case V4L2_PIX_FMT_BGR32
:
342 mode
= OMAP_DSS_COLOR_RGBX32
;
354 static int omapvid_setup_overlay(struct omap_vout_device
*vout
,
355 struct omap_overlay
*ovl
, int posx
, int posy
, int outw
,
359 struct omap_overlay_info info
;
360 int cropheight
, cropwidth
, pixwidth
;
362 if ((ovl
->caps
& OMAP_DSS_OVL_CAP_SCALE
) == 0 &&
363 (outw
!= vout
->pix
.width
|| outh
!= vout
->pix
.height
)) {
368 vout
->dss_mode
= video_mode_to_dss_mode(vout
);
369 if (vout
->dss_mode
== -EINVAL
) {
374 /* Setup the input plane parameters according to
375 * rotation value selected.
377 if (is_rotation_90_or_270(vout
)) {
378 cropheight
= vout
->crop
.width
;
379 cropwidth
= vout
->crop
.height
;
380 pixwidth
= vout
->pix
.height
;
382 cropheight
= vout
->crop
.height
;
383 cropwidth
= vout
->crop
.width
;
384 pixwidth
= vout
->pix
.width
;
387 ovl
->get_overlay_info(ovl
, &info
);
389 info
.width
= cropwidth
;
390 info
.height
= cropheight
;
391 info
.color_mode
= vout
->dss_mode
;
392 info
.mirror
= vout
->mirror
;
395 info
.out_width
= outw
;
396 info
.out_height
= outh
;
397 info
.global_alpha
= vout
->win
.global_alpha
;
398 if (!is_rotation_enabled(vout
)) {
400 info
.rotation_type
= OMAP_DSS_ROT_DMA
;
401 info
.screen_width
= pixwidth
;
403 info
.rotation
= vout
->rotation
;
404 info
.rotation_type
= OMAP_DSS_ROT_VRFB
;
405 info
.screen_width
= 2048;
408 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
,
409 "%s enable=%d addr=%pad width=%d\n height=%d color_mode=%d\n"
410 "rotation=%d mirror=%d posx=%d posy=%d out_width = %d \n"
411 "out_height=%d rotation_type=%d screen_width=%d\n", __func__
,
412 ovl
->is_enabled(ovl
), &info
.paddr
, info
.width
, info
.height
,
413 info
.color_mode
, info
.rotation
, info
.mirror
, info
.pos_x
,
414 info
.pos_y
, info
.out_width
, info
.out_height
, info
.rotation_type
,
417 ret
= ovl
->set_overlay_info(ovl
, &info
);
424 v4l2_warn(&vout
->vid_dev
->v4l2_dev
, "setup_overlay failed\n");
429 * Initialize the overlay structure
431 static int omapvid_init(struct omap_vout_device
*vout
, u32 addr
)
434 struct v4l2_window
*win
;
435 struct omap_overlay
*ovl
;
436 int posx
, posy
, outw
, outh
;
437 struct omap_video_timings
*timing
;
438 struct omapvideo_info
*ovid
= &vout
->vid_info
;
441 for (i
= 0; i
< ovid
->num_overlays
; i
++) {
442 struct omap_dss_device
*dssdev
;
444 ovl
= ovid
->overlays
[i
];
445 dssdev
= ovl
->get_device(ovl
);
450 timing
= &dssdev
->panel
.timings
;
453 outh
= win
->w
.height
;
454 switch (vout
->rotation
) {
455 case dss_rotation_90_degree
:
456 /* Invert the height and width for 90
457 * and 270 degree rotation
460 posy
= (timing
->y_res
- win
->w
.width
) - win
->w
.left
;
464 case dss_rotation_180_degree
:
465 posx
= (timing
->x_res
- win
->w
.width
) - win
->w
.left
;
466 posy
= (timing
->y_res
- win
->w
.height
) - win
->w
.top
;
469 case dss_rotation_270_degree
:
472 posx
= (timing
->x_res
- win
->w
.height
) - win
->w
.top
;
481 ret
= omapvid_setup_overlay(vout
, ovl
, posx
, posy
,
484 goto omapvid_init_err
;
489 v4l2_warn(&vout
->vid_dev
->v4l2_dev
, "apply_changes failed\n");
494 * Apply the changes set the go bit of DSS
496 static int omapvid_apply_changes(struct omap_vout_device
*vout
)
499 struct omap_overlay
*ovl
;
500 struct omapvideo_info
*ovid
= &vout
->vid_info
;
502 for (i
= 0; i
< ovid
->num_overlays
; i
++) {
503 struct omap_dss_device
*dssdev
;
505 ovl
= ovid
->overlays
[i
];
506 dssdev
= ovl
->get_device(ovl
);
509 ovl
->manager
->apply(ovl
->manager
);
515 static int omapvid_handle_interlace_display(struct omap_vout_device
*vout
,
516 unsigned int irqstatus
, struct timeval timevalue
)
520 if (vout
->first_int
) {
525 if (irqstatus
& DISPC_IRQ_EVSYNC_ODD
)
527 else if (irqstatus
& DISPC_IRQ_EVSYNC_EVEN
)
533 if (fid
!= vout
->field_id
) {
535 vout
->field_id
= fid
;
536 } else if (0 == fid
) {
537 if (vout
->cur_frm
== vout
->next_frm
)
540 vout
->cur_frm
->ts
= timevalue
;
541 vout
->cur_frm
->state
= VIDEOBUF_DONE
;
542 wake_up_interruptible(&vout
->cur_frm
->done
);
543 vout
->cur_frm
= vout
->next_frm
;
545 if (list_empty(&vout
->dma_queue
) ||
546 (vout
->cur_frm
!= vout
->next_frm
))
550 return vout
->field_id
;
555 static void omap_vout_isr(void *arg
, unsigned int irqstatus
)
557 int ret
, fid
, mgr_id
;
559 struct omap_overlay
*ovl
;
560 struct timeval timevalue
;
561 struct omapvideo_info
*ovid
;
562 struct omap_dss_device
*cur_display
;
563 struct omap_vout_device
*vout
= (struct omap_vout_device
*)arg
;
565 if (!vout
->streaming
)
568 ovid
= &vout
->vid_info
;
569 ovl
= ovid
->overlays
[0];
571 mgr_id
= ovl
->manager
->id
;
573 /* get the display device attached to the overlay */
574 cur_display
= ovl
->get_device(ovl
);
579 spin_lock(&vout
->vbq_lock
);
580 v4l2_get_timestamp(&timevalue
);
582 switch (cur_display
->type
) {
583 case OMAP_DISPLAY_TYPE_DSI
:
584 case OMAP_DISPLAY_TYPE_DPI
:
585 case OMAP_DISPLAY_TYPE_DVI
:
586 if (mgr_id
== OMAP_DSS_CHANNEL_LCD
)
587 irq
= DISPC_IRQ_VSYNC
;
588 else if (mgr_id
== OMAP_DSS_CHANNEL_LCD2
)
589 irq
= DISPC_IRQ_VSYNC2
;
593 if (!(irqstatus
& irq
))
596 case OMAP_DISPLAY_TYPE_VENC
:
597 fid
= omapvid_handle_interlace_display(vout
, irqstatus
,
602 case OMAP_DISPLAY_TYPE_HDMI
:
603 if (!(irqstatus
& DISPC_IRQ_EVSYNC_EVEN
))
610 if (!vout
->first_int
&& (vout
->cur_frm
!= vout
->next_frm
)) {
611 vout
->cur_frm
->ts
= timevalue
;
612 vout
->cur_frm
->state
= VIDEOBUF_DONE
;
613 wake_up_interruptible(&vout
->cur_frm
->done
);
614 vout
->cur_frm
= vout
->next_frm
;
618 if (list_empty(&vout
->dma_queue
))
621 vout
->next_frm
= list_entry(vout
->dma_queue
.next
,
622 struct videobuf_buffer
, queue
);
623 list_del(&vout
->next_frm
->queue
);
625 vout
->next_frm
->state
= VIDEOBUF_ACTIVE
;
627 addr
= (unsigned long) vout
->queued_buf_addr
[vout
->next_frm
->i
]
628 + vout
->cropped_offset
;
630 /* First save the configuration in ovelray structure */
631 ret
= omapvid_init(vout
, addr
);
633 printk(KERN_ERR VOUT_NAME
634 "failed to set overlay info\n");
638 /* Enable the pipeline and set the Go bit */
639 ret
= omapvid_apply_changes(vout
);
641 printk(KERN_ERR VOUT_NAME
"failed to change mode\n");
644 spin_unlock(&vout
->vbq_lock
);
647 /* Video buffer call backs */
650 * Buffer setup function is called by videobuf layer when REQBUF ioctl is
651 * called. This is used to setup buffers and return size and count of
652 * buffers allocated. After the call to this buffer, videobuf layer will
653 * setup buffer queue depending on the size and count of buffers
655 static int omap_vout_buffer_setup(struct videobuf_queue
*q
, unsigned int *count
,
658 int startindex
= 0, i
, j
;
659 u32 phy_addr
= 0, virt_addr
= 0;
660 struct omap_vout_device
*vout
= q
->priv_data
;
661 struct omapvideo_info
*ovid
= &vout
->vid_info
;
662 int vid_max_buf_size
;
667 vid_max_buf_size
= vout
->vid
== OMAP_VIDEO1
? video1_bufsize
:
670 if (V4L2_BUF_TYPE_VIDEO_OUTPUT
!= q
->type
)
673 startindex
= (vout
->vid
== OMAP_VIDEO1
) ?
674 video1_numbuffers
: video2_numbuffers
;
675 if (V4L2_MEMORY_MMAP
== vout
->memory
&& *count
< startindex
)
678 if (ovid
->rotation_type
== VOUT_ROT_VRFB
) {
679 if (omap_vout_vrfb_buffer_setup(vout
, count
, startindex
))
683 if (V4L2_MEMORY_MMAP
!= vout
->memory
)
686 /* Now allocated the V4L2 buffers */
687 *size
= PAGE_ALIGN(vout
->pix
.width
* vout
->pix
.height
* vout
->bpp
);
688 startindex
= (vout
->vid
== OMAP_VIDEO1
) ?
689 video1_numbuffers
: video2_numbuffers
;
691 /* Check the size of the buffer */
692 if (*size
> vid_max_buf_size
) {
693 v4l2_err(&vout
->vid_dev
->v4l2_dev
,
694 "buffer allocation mismatch [%u] [%u]\n",
695 *size
, vout
->buffer_size
);
699 for (i
= startindex
; i
< *count
; i
++) {
700 vout
->buffer_size
= *size
;
702 virt_addr
= omap_vout_alloc_buffer(vout
->buffer_size
,
705 if (ovid
->rotation_type
== VOUT_ROT_NONE
) {
708 if (!is_rotation_enabled(vout
))
710 /* Free the VRFB buffers if no space for V4L2 buffers */
711 for (j
= i
; j
< *count
; j
++) {
712 omap_vout_free_buffer(
713 vout
->smsshado_virt_addr
[j
],
714 vout
->smsshado_size
);
715 vout
->smsshado_virt_addr
[j
] = 0;
716 vout
->smsshado_phy_addr
[j
] = 0;
720 vout
->buf_virt_addr
[i
] = virt_addr
;
721 vout
->buf_phy_addr
[i
] = phy_addr
;
723 *count
= vout
->buffer_allocated
= i
;
729 * Free the V4L2 buffers additionally allocated than default
732 static void omap_vout_free_extra_buffers(struct omap_vout_device
*vout
)
734 int num_buffers
= 0, i
;
736 num_buffers
= (vout
->vid
== OMAP_VIDEO1
) ?
737 video1_numbuffers
: video2_numbuffers
;
739 for (i
= num_buffers
; i
< vout
->buffer_allocated
; i
++) {
740 if (vout
->buf_virt_addr
[i
])
741 omap_vout_free_buffer(vout
->buf_virt_addr
[i
],
744 vout
->buf_virt_addr
[i
] = 0;
745 vout
->buf_phy_addr
[i
] = 0;
747 vout
->buffer_allocated
= num_buffers
;
751 * This function will be called when VIDIOC_QBUF ioctl is called.
752 * It prepare buffers before give out for the display. This function
753 * converts user space virtual address into physical address if userptr memory
754 * exchange mechanism is used. If rotation is enabled, it copies entire
755 * buffer into VRFB memory space before giving it to the DSS.
757 static int omap_vout_buffer_prepare(struct videobuf_queue
*q
,
758 struct videobuf_buffer
*vb
,
759 enum v4l2_field field
)
761 struct omap_vout_device
*vout
= q
->priv_data
;
762 struct omapvideo_info
*ovid
= &vout
->vid_info
;
764 if (VIDEOBUF_NEEDS_INIT
== vb
->state
) {
765 vb
->width
= vout
->pix
.width
;
766 vb
->height
= vout
->pix
.height
;
767 vb
->size
= vb
->width
* vb
->height
* vout
->bpp
;
770 vb
->state
= VIDEOBUF_PREPARED
;
771 /* if user pointer memory mechanism is used, get the physical
772 * address of the buffer
774 if (V4L2_MEMORY_USERPTR
== vb
->memory
) {
779 /* Physical address */
780 ret
= omap_vout_get_userptr(vb
, vb
->baddr
,
781 (u32
*)&vout
->queued_buf_addr
[vb
->i
]);
785 unsigned long addr
, dma_addr
;
788 addr
= (unsigned long) vout
->buf_virt_addr
[vb
->i
];
789 size
= (unsigned long) vb
->size
;
791 dma_addr
= dma_map_single(vout
->vid_dev
->v4l2_dev
.dev
, (void *) addr
,
792 size
, DMA_TO_DEVICE
);
793 if (dma_mapping_error(vout
->vid_dev
->v4l2_dev
.dev
, dma_addr
))
794 v4l2_err(&vout
->vid_dev
->v4l2_dev
,
795 "dma_map_single failed\n");
797 vout
->queued_buf_addr
[vb
->i
] = (u8
*)vout
->buf_phy_addr
[vb
->i
];
800 if (ovid
->rotation_type
== VOUT_ROT_VRFB
)
801 return omap_vout_prepare_vrfb(vout
, vb
);
807 * Buffer queue function will be called from the videobuf layer when _QBUF
808 * ioctl is called. It is used to enqueue buffer, which is ready to be
811 static void omap_vout_buffer_queue(struct videobuf_queue
*q
,
812 struct videobuf_buffer
*vb
)
814 struct omap_vout_device
*vout
= q
->priv_data
;
816 /* Driver is also maintainig a queue. So enqueue buffer in the driver
818 list_add_tail(&vb
->queue
, &vout
->dma_queue
);
820 vb
->state
= VIDEOBUF_QUEUED
;
824 * Buffer release function is called from videobuf layer to release buffer
825 * which are already allocated
827 static void omap_vout_buffer_release(struct videobuf_queue
*q
,
828 struct videobuf_buffer
*vb
)
830 vb
->state
= VIDEOBUF_NEEDS_INIT
;
831 if (vb
->memory
== V4L2_MEMORY_USERPTR
&& vb
->priv
) {
832 struct frame_vector
*vec
= vb
->priv
;
834 put_vaddr_frames(vec
);
835 frame_vector_destroy(vec
);
842 static __poll_t
omap_vout_poll(struct file
*file
,
843 struct poll_table_struct
*wait
)
845 struct omap_vout_device
*vout
= file
->private_data
;
846 struct videobuf_queue
*q
= &vout
->vbq
;
848 return videobuf_poll_stream(file
, q
, wait
);
851 static void omap_vout_vm_open(struct vm_area_struct
*vma
)
853 struct omap_vout_device
*vout
= vma
->vm_private_data
;
855 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
,
856 "vm_open [vma=%08lx-%08lx]\n", vma
->vm_start
, vma
->vm_end
);
860 static void omap_vout_vm_close(struct vm_area_struct
*vma
)
862 struct omap_vout_device
*vout
= vma
->vm_private_data
;
864 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
,
865 "vm_close [vma=%08lx-%08lx]\n", vma
->vm_start
, vma
->vm_end
);
869 static const struct vm_operations_struct omap_vout_vm_ops
= {
870 .open
= omap_vout_vm_open
,
871 .close
= omap_vout_vm_close
,
874 static int omap_vout_mmap(struct file
*file
, struct vm_area_struct
*vma
)
878 unsigned long start
= vma
->vm_start
;
879 unsigned long size
= (vma
->vm_end
- vma
->vm_start
);
880 struct omap_vout_device
*vout
= file
->private_data
;
881 struct videobuf_queue
*q
= &vout
->vbq
;
883 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
,
884 " %s pgoff=0x%lx, start=0x%lx, end=0x%lx\n", __func__
,
885 vma
->vm_pgoff
, vma
->vm_start
, vma
->vm_end
);
887 /* look for the buffer to map */
888 for (i
= 0; i
< VIDEO_MAX_FRAME
; i
++) {
889 if (NULL
== q
->bufs
[i
])
891 if (V4L2_MEMORY_MMAP
!= q
->bufs
[i
]->memory
)
893 if (q
->bufs
[i
]->boff
== (vma
->vm_pgoff
<< PAGE_SHIFT
))
897 if (VIDEO_MAX_FRAME
== i
) {
898 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
,
899 "offset invalid [offset=0x%lx]\n",
900 (vma
->vm_pgoff
<< PAGE_SHIFT
));
903 /* Check the size of the buffer */
904 if (size
> vout
->buffer_size
) {
905 v4l2_err(&vout
->vid_dev
->v4l2_dev
,
906 "insufficient memory [%lu] [%u]\n",
907 size
, vout
->buffer_size
);
911 q
->bufs
[i
]->baddr
= vma
->vm_start
;
913 vma
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
;
914 vma
->vm_page_prot
= pgprot_writecombine(vma
->vm_page_prot
);
915 vma
->vm_ops
= &omap_vout_vm_ops
;
916 vma
->vm_private_data
= (void *) vout
;
917 pos
= (void *)vout
->buf_virt_addr
[i
];
918 vma
->vm_pgoff
= virt_to_phys((void *)pos
) >> PAGE_SHIFT
;
921 pfn
= virt_to_phys((void *) pos
) >> PAGE_SHIFT
;
922 if (remap_pfn_range(vma
, start
, pfn
, PAGE_SIZE
, PAGE_SHARED
))
929 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
, "Exiting %s\n", __func__
);
934 static int omap_vout_release(struct file
*file
)
937 struct videobuf_queue
*q
;
938 struct omapvideo_info
*ovid
;
939 struct omap_vout_device
*vout
= file
->private_data
;
941 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
, "Entering %s\n", __func__
);
942 ovid
= &vout
->vid_info
;
948 /* Disable all the overlay managers connected with this interface */
949 for (i
= 0; i
< ovid
->num_overlays
; i
++) {
950 struct omap_overlay
*ovl
= ovid
->overlays
[i
];
951 struct omap_dss_device
*dssdev
= ovl
->get_device(ovl
);
956 /* Turn off the pipeline */
957 ret
= omapvid_apply_changes(vout
);
959 v4l2_warn(&vout
->vid_dev
->v4l2_dev
,
960 "Unable to apply changes\n");
962 /* Free all buffers */
963 omap_vout_free_extra_buffers(vout
);
965 /* Free the VRFB buffers only if they are allocated
966 * during reqbufs. Don't free if init time allocated
968 if (ovid
->rotation_type
== VOUT_ROT_VRFB
) {
969 if (!vout
->vrfb_static_allocation
)
970 omap_vout_free_vrfb_buffers(vout
);
972 videobuf_mmap_free(q
);
974 /* Even if apply changes fails we should continue
975 freeing allocated memory */
976 if (vout
->streaming
) {
979 mask
= DISPC_IRQ_VSYNC
| DISPC_IRQ_EVSYNC_EVEN
|
980 DISPC_IRQ_EVSYNC_ODD
| DISPC_IRQ_VSYNC2
;
981 omap_dispc_unregister_isr(omap_vout_isr
, vout
, mask
);
982 vout
->streaming
= false;
984 videobuf_streamoff(q
);
985 videobuf_queue_cancel(q
);
988 if (vout
->mmap_count
!= 0)
989 vout
->mmap_count
= 0;
992 file
->private_data
= NULL
;
994 if (vout
->buffer_allocated
)
995 videobuf_mmap_free(q
);
997 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
, "Exiting %s\n", __func__
);
1001 static int omap_vout_open(struct file
*file
)
1003 struct videobuf_queue
*q
;
1004 struct omap_vout_device
*vout
= NULL
;
1006 vout
= video_drvdata(file
);
1011 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
, "Entering %s\n", __func__
);
1013 /* for now, we only support single open */
1019 file
->private_data
= vout
;
1020 vout
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
1023 video_vbq_ops
.buf_setup
= omap_vout_buffer_setup
;
1024 video_vbq_ops
.buf_prepare
= omap_vout_buffer_prepare
;
1025 video_vbq_ops
.buf_release
= omap_vout_buffer_release
;
1026 video_vbq_ops
.buf_queue
= omap_vout_buffer_queue
;
1027 spin_lock_init(&vout
->vbq_lock
);
1029 videobuf_queue_dma_contig_init(q
, &video_vbq_ops
, q
->dev
,
1030 &vout
->vbq_lock
, vout
->type
, V4L2_FIELD_NONE
,
1031 sizeof(struct videobuf_buffer
), vout
, NULL
);
1033 v4l2_dbg(1, debug
, &vout
->vid_dev
->v4l2_dev
, "Exiting %s\n", __func__
);
1040 static int vidioc_querycap(struct file
*file
, void *fh
,
1041 struct v4l2_capability
*cap
)
1043 struct omap_vout_device
*vout
= fh
;
1045 strlcpy(cap
->driver
, VOUT_NAME
, sizeof(cap
->driver
));
1046 strlcpy(cap
->card
, vout
->vfd
->name
, sizeof(cap
->card
));
1047 cap
->bus_info
[0] = '\0';
1048 cap
->device_caps
= V4L2_CAP_STREAMING
| V4L2_CAP_VIDEO_OUTPUT
|
1049 V4L2_CAP_VIDEO_OUTPUT_OVERLAY
;
1050 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
1055 static int vidioc_enum_fmt_vid_out(struct file
*file
, void *fh
,
1056 struct v4l2_fmtdesc
*fmt
)
1058 int index
= fmt
->index
;
1060 if (index
>= NUM_OUTPUT_FORMATS
)
1063 fmt
->flags
= omap_formats
[index
].flags
;
1064 strlcpy(fmt
->description
, omap_formats
[index
].description
,
1065 sizeof(fmt
->description
));
1066 fmt
->pixelformat
= omap_formats
[index
].pixelformat
;
1071 static int vidioc_g_fmt_vid_out(struct file
*file
, void *fh
,
1072 struct v4l2_format
*f
)
1074 struct omap_vout_device
*vout
= fh
;
1076 f
->fmt
.pix
= vout
->pix
;
1081 static int vidioc_try_fmt_vid_out(struct file
*file
, void *fh
,
1082 struct v4l2_format
*f
)
1084 struct omap_overlay
*ovl
;
1085 struct omapvideo_info
*ovid
;
1086 struct omap_video_timings
*timing
;
1087 struct omap_vout_device
*vout
= fh
;
1088 struct omap_dss_device
*dssdev
;
1090 ovid
= &vout
->vid_info
;
1091 ovl
= ovid
->overlays
[0];
1092 /* get the display device attached to the overlay */
1093 dssdev
= ovl
->get_device(ovl
);
1098 timing
= &dssdev
->panel
.timings
;
1100 vout
->fbuf
.fmt
.height
= timing
->y_res
;
1101 vout
->fbuf
.fmt
.width
= timing
->x_res
;
1103 omap_vout_try_format(&f
->fmt
.pix
);
1107 static int vidioc_s_fmt_vid_out(struct file
*file
, void *fh
,
1108 struct v4l2_format
*f
)
1111 struct omap_overlay
*ovl
;
1112 struct omapvideo_info
*ovid
;
1113 struct omap_video_timings
*timing
;
1114 struct omap_vout_device
*vout
= fh
;
1115 struct omap_dss_device
*dssdev
;
1117 if (vout
->streaming
)
1120 mutex_lock(&vout
->lock
);
1122 ovid
= &vout
->vid_info
;
1123 ovl
= ovid
->overlays
[0];
1124 dssdev
= ovl
->get_device(ovl
);
1126 /* get the display device attached to the overlay */
1129 goto s_fmt_vid_out_exit
;
1131 timing
= &dssdev
->panel
.timings
;
1133 /* We dont support RGB24-packed mode if vrfb rotation
1135 if ((is_rotation_enabled(vout
)) &&
1136 f
->fmt
.pix
.pixelformat
== V4L2_PIX_FMT_RGB24
) {
1138 goto s_fmt_vid_out_exit
;
1141 /* get the framebuffer parameters */
1143 if (is_rotation_90_or_270(vout
)) {
1144 vout
->fbuf
.fmt
.height
= timing
->x_res
;
1145 vout
->fbuf
.fmt
.width
= timing
->y_res
;
1147 vout
->fbuf
.fmt
.height
= timing
->y_res
;
1148 vout
->fbuf
.fmt
.width
= timing
->x_res
;
1151 /* change to samller size is OK */
1153 bpp
= omap_vout_try_format(&f
->fmt
.pix
);
1154 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.width
* f
->fmt
.pix
.height
* bpp
;
1156 /* try & set the new output format */
1158 vout
->pix
= f
->fmt
.pix
;
1161 /* If YUYV then vrfb bpp is 2, for others its 1 */
1162 if (V4L2_PIX_FMT_YUYV
== vout
->pix
.pixelformat
||
1163 V4L2_PIX_FMT_UYVY
== vout
->pix
.pixelformat
)
1166 /* set default crop and win */
1167 omap_vout_new_format(&vout
->pix
, &vout
->fbuf
, &vout
->crop
, &vout
->win
);
1172 mutex_unlock(&vout
->lock
);
1176 static int vidioc_try_fmt_vid_overlay(struct file
*file
, void *fh
,
1177 struct v4l2_format
*f
)
1180 struct omap_vout_device
*vout
= fh
;
1181 struct omap_overlay
*ovl
;
1182 struct omapvideo_info
*ovid
;
1183 struct v4l2_window
*win
= &f
->fmt
.win
;
1185 ovid
= &vout
->vid_info
;
1186 ovl
= ovid
->overlays
[0];
1188 ret
= omap_vout_try_window(&vout
->fbuf
, win
);
1191 if ((ovl
->caps
& OMAP_DSS_OVL_CAP_GLOBAL_ALPHA
) == 0)
1192 win
->global_alpha
= 255;
1194 win
->global_alpha
= f
->fmt
.win
.global_alpha
;
1200 static int vidioc_s_fmt_vid_overlay(struct file
*file
, void *fh
,
1201 struct v4l2_format
*f
)
1204 struct omap_overlay
*ovl
;
1205 struct omapvideo_info
*ovid
;
1206 struct omap_vout_device
*vout
= fh
;
1207 struct v4l2_window
*win
= &f
->fmt
.win
;
1209 mutex_lock(&vout
->lock
);
1210 ovid
= &vout
->vid_info
;
1211 ovl
= ovid
->overlays
[0];
1213 ret
= omap_vout_new_window(&vout
->crop
, &vout
->win
, &vout
->fbuf
, win
);
1215 /* Video1 plane does not support global alpha on OMAP3 */
1216 if ((ovl
->caps
& OMAP_DSS_OVL_CAP_GLOBAL_ALPHA
) == 0)
1217 vout
->win
.global_alpha
= 255;
1219 vout
->win
.global_alpha
= f
->fmt
.win
.global_alpha
;
1221 vout
->win
.chromakey
= f
->fmt
.win
.chromakey
;
1223 mutex_unlock(&vout
->lock
);
1227 static int vidioc_g_fmt_vid_overlay(struct file
*file
, void *fh
,
1228 struct v4l2_format
*f
)
1231 struct omap_overlay
*ovl
;
1232 struct omapvideo_info
*ovid
;
1233 struct omap_vout_device
*vout
= fh
;
1234 struct omap_overlay_manager_info info
;
1235 struct v4l2_window
*win
= &f
->fmt
.win
;
1237 ovid
= &vout
->vid_info
;
1238 ovl
= ovid
->overlays
[0];
1240 win
->w
= vout
->win
.w
;
1241 win
->field
= vout
->win
.field
;
1242 win
->global_alpha
= vout
->win
.global_alpha
;
1244 if (ovl
->manager
&& ovl
->manager
->get_manager_info
) {
1245 ovl
->manager
->get_manager_info(ovl
->manager
, &info
);
1246 key_value
= info
.trans_key
;
1248 win
->chromakey
= key_value
;
1252 static int vidioc_g_selection(struct file
*file
, void *fh
, struct v4l2_selection
*sel
)
1254 struct omap_vout_device
*vout
= fh
;
1255 struct v4l2_pix_format
*pix
= &vout
->pix
;
1257 if (sel
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1260 switch (sel
->target
) {
1261 case V4L2_SEL_TGT_CROP
:
1262 sel
->r
= vout
->crop
;
1264 case V4L2_SEL_TGT_CROP_DEFAULT
:
1265 omap_vout_default_crop(&vout
->pix
, &vout
->fbuf
, &sel
->r
);
1267 case V4L2_SEL_TGT_CROP_BOUNDS
:
1268 /* Width and height are always even */
1269 sel
->r
.width
= pix
->width
& ~1;
1270 sel
->r
.height
= pix
->height
& ~1;
1278 static int vidioc_s_selection(struct file
*file
, void *fh
, struct v4l2_selection
*sel
)
1281 struct omap_vout_device
*vout
= fh
;
1282 struct omapvideo_info
*ovid
;
1283 struct omap_overlay
*ovl
;
1284 struct omap_video_timings
*timing
;
1285 struct omap_dss_device
*dssdev
;
1287 if (sel
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1290 if (sel
->target
!= V4L2_SEL_TGT_CROP
)
1293 if (vout
->streaming
)
1296 mutex_lock(&vout
->lock
);
1297 ovid
= &vout
->vid_info
;
1298 ovl
= ovid
->overlays
[0];
1299 /* get the display device attached to the overlay */
1300 dssdev
= ovl
->get_device(ovl
);
1307 timing
= &dssdev
->panel
.timings
;
1309 if (is_rotation_90_or_270(vout
)) {
1310 vout
->fbuf
.fmt
.height
= timing
->x_res
;
1311 vout
->fbuf
.fmt
.width
= timing
->y_res
;
1313 vout
->fbuf
.fmt
.height
= timing
->y_res
;
1314 vout
->fbuf
.fmt
.width
= timing
->x_res
;
1317 ret
= omap_vout_new_crop(&vout
->pix
, &vout
->crop
, &vout
->win
,
1318 &vout
->fbuf
, &sel
->r
);
1321 mutex_unlock(&vout
->lock
);
1325 static int omap_vout_s_ctrl(struct v4l2_ctrl
*ctrl
)
1327 struct omap_vout_device
*vout
=
1328 container_of(ctrl
->handler
, struct omap_vout_device
, ctrl_handler
);
1332 case V4L2_CID_ROTATE
: {
1333 struct omapvideo_info
*ovid
;
1334 int rotation
= ctrl
->val
;
1336 ovid
= &vout
->vid_info
;
1338 mutex_lock(&vout
->lock
);
1339 if (rotation
&& ovid
->rotation_type
== VOUT_ROT_NONE
) {
1340 mutex_unlock(&vout
->lock
);
1345 if (rotation
&& vout
->pix
.pixelformat
== V4L2_PIX_FMT_RGB24
) {
1346 mutex_unlock(&vout
->lock
);
1351 if (v4l2_rot_to_dss_rot(rotation
, &vout
->rotation
,
1353 mutex_unlock(&vout
->lock
);
1357 mutex_unlock(&vout
->lock
);
1360 case V4L2_CID_BG_COLOR
:
1362 struct omap_overlay
*ovl
;
1363 unsigned int color
= ctrl
->val
;
1364 struct omap_overlay_manager_info info
;
1366 ovl
= vout
->vid_info
.overlays
[0];
1368 mutex_lock(&vout
->lock
);
1369 if (!ovl
->manager
|| !ovl
->manager
->get_manager_info
) {
1370 mutex_unlock(&vout
->lock
);
1375 ovl
->manager
->get_manager_info(ovl
->manager
, &info
);
1376 info
.default_color
= color
;
1377 if (ovl
->manager
->set_manager_info(ovl
->manager
, &info
)) {
1378 mutex_unlock(&vout
->lock
);
1382 mutex_unlock(&vout
->lock
);
1385 case V4L2_CID_VFLIP
:
1387 struct omapvideo_info
*ovid
;
1388 unsigned int mirror
= ctrl
->val
;
1390 ovid
= &vout
->vid_info
;
1392 mutex_lock(&vout
->lock
);
1393 if (mirror
&& ovid
->rotation_type
== VOUT_ROT_NONE
) {
1394 mutex_unlock(&vout
->lock
);
1399 if (mirror
&& vout
->pix
.pixelformat
== V4L2_PIX_FMT_RGB24
) {
1400 mutex_unlock(&vout
->lock
);
1404 vout
->mirror
= mirror
;
1405 mutex_unlock(&vout
->lock
);
1414 static const struct v4l2_ctrl_ops omap_vout_ctrl_ops
= {
1415 .s_ctrl
= omap_vout_s_ctrl
,
1418 static int vidioc_reqbufs(struct file
*file
, void *fh
,
1419 struct v4l2_requestbuffers
*req
)
1422 unsigned int i
, num_buffers
= 0;
1423 struct omap_vout_device
*vout
= fh
;
1424 struct videobuf_queue
*q
= &vout
->vbq
;
1426 if (req
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1428 /* if memory is not mmp or userptr
1430 if ((V4L2_MEMORY_MMAP
!= req
->memory
) &&
1431 (V4L2_MEMORY_USERPTR
!= req
->memory
))
1434 mutex_lock(&vout
->lock
);
1435 /* Cannot be requested when streaming is on */
1436 if (vout
->streaming
) {
1441 /* If buffers are already allocated free them */
1442 if (q
->bufs
[0] && (V4L2_MEMORY_MMAP
== q
->bufs
[0]->memory
)) {
1443 if (vout
->mmap_count
) {
1447 num_buffers
= (vout
->vid
== OMAP_VIDEO1
) ?
1448 video1_numbuffers
: video2_numbuffers
;
1449 for (i
= num_buffers
; i
< vout
->buffer_allocated
; i
++) {
1450 omap_vout_free_buffer(vout
->buf_virt_addr
[i
],
1452 vout
->buf_virt_addr
[i
] = 0;
1453 vout
->buf_phy_addr
[i
] = 0;
1455 vout
->buffer_allocated
= num_buffers
;
1456 videobuf_mmap_free(q
);
1457 } else if (q
->bufs
[0] && (V4L2_MEMORY_USERPTR
== q
->bufs
[0]->memory
)) {
1458 if (vout
->buffer_allocated
) {
1459 videobuf_mmap_free(q
);
1460 for (i
= 0; i
< vout
->buffer_allocated
; i
++) {
1464 vout
->buffer_allocated
= 0;
1468 /*store the memory type in data structure */
1469 vout
->memory
= req
->memory
;
1471 INIT_LIST_HEAD(&vout
->dma_queue
);
1473 /* call videobuf_reqbufs api */
1474 ret
= videobuf_reqbufs(q
, req
);
1478 vout
->buffer_allocated
= req
->count
;
1481 mutex_unlock(&vout
->lock
);
1485 static int vidioc_querybuf(struct file
*file
, void *fh
,
1486 struct v4l2_buffer
*b
)
1488 struct omap_vout_device
*vout
= fh
;
1490 return videobuf_querybuf(&vout
->vbq
, b
);
1493 static int vidioc_qbuf(struct file
*file
, void *fh
,
1494 struct v4l2_buffer
*buffer
)
1496 struct omap_vout_device
*vout
= fh
;
1497 struct videobuf_queue
*q
= &vout
->vbq
;
1499 if ((V4L2_BUF_TYPE_VIDEO_OUTPUT
!= buffer
->type
) ||
1500 (buffer
->index
>= vout
->buffer_allocated
) ||
1501 (q
->bufs
[buffer
->index
]->memory
!= buffer
->memory
)) {
1504 if (V4L2_MEMORY_USERPTR
== buffer
->memory
) {
1505 if ((buffer
->length
< vout
->pix
.sizeimage
) ||
1506 (0 == buffer
->m
.userptr
)) {
1511 if ((is_rotation_enabled(vout
)) &&
1512 vout
->vrfb_dma_tx
.req_status
== DMA_CHAN_NOT_ALLOTED
) {
1513 v4l2_warn(&vout
->vid_dev
->v4l2_dev
,
1514 "DMA Channel not allocated for Rotation\n");
1518 return videobuf_qbuf(q
, buffer
);
1521 static int vidioc_dqbuf(struct file
*file
, void *fh
, struct v4l2_buffer
*b
)
1523 struct omap_vout_device
*vout
= fh
;
1524 struct videobuf_queue
*q
= &vout
->vbq
;
1529 struct videobuf_buffer
*vb
;
1531 vb
= q
->bufs
[b
->index
];
1533 if (!vout
->streaming
)
1536 if (file
->f_flags
& O_NONBLOCK
)
1537 /* Call videobuf_dqbuf for non blocking mode */
1538 ret
= videobuf_dqbuf(q
, (struct v4l2_buffer
*)b
, 1);
1540 /* Call videobuf_dqbuf for blocking mode */
1541 ret
= videobuf_dqbuf(q
, (struct v4l2_buffer
*)b
, 0);
1543 addr
= (unsigned long) vout
->buf_phy_addr
[vb
->i
];
1544 size
= (unsigned long) vb
->size
;
1545 dma_unmap_single(vout
->vid_dev
->v4l2_dev
.dev
, addr
,
1546 size
, DMA_TO_DEVICE
);
1550 static int vidioc_streamon(struct file
*file
, void *fh
, enum v4l2_buf_type i
)
1553 u32 addr
= 0, mask
= 0;
1554 struct omap_vout_device
*vout
= fh
;
1555 struct videobuf_queue
*q
= &vout
->vbq
;
1556 struct omapvideo_info
*ovid
= &vout
->vid_info
;
1558 mutex_lock(&vout
->lock
);
1560 if (vout
->streaming
) {
1565 ret
= videobuf_streamon(q
);
1569 if (list_empty(&vout
->dma_queue
)) {
1574 /* Get the next frame from the buffer queue */
1575 vout
->next_frm
= vout
->cur_frm
= list_entry(vout
->dma_queue
.next
,
1576 struct videobuf_buffer
, queue
);
1577 /* Remove buffer from the buffer queue */
1578 list_del(&vout
->cur_frm
->queue
);
1579 /* Mark state of the current frame to active */
1580 vout
->cur_frm
->state
= VIDEOBUF_ACTIVE
;
1581 /* Initialize field_id and started member */
1584 /* set flag here. Next QBUF will start DMA */
1585 vout
->streaming
= true;
1587 vout
->first_int
= 1;
1589 if (omap_vout_calculate_offset(vout
)) {
1593 addr
= (unsigned long) vout
->queued_buf_addr
[vout
->cur_frm
->i
]
1594 + vout
->cropped_offset
;
1596 mask
= DISPC_IRQ_VSYNC
| DISPC_IRQ_EVSYNC_EVEN
| DISPC_IRQ_EVSYNC_ODD
1599 /* First save the configuration in ovelray structure */
1600 ret
= omapvid_init(vout
, addr
);
1602 v4l2_err(&vout
->vid_dev
->v4l2_dev
,
1603 "failed to set overlay info\n");
1607 omap_dispc_register_isr(omap_vout_isr
, vout
, mask
);
1609 /* Enable the pipeline and set the Go bit */
1610 ret
= omapvid_apply_changes(vout
);
1612 v4l2_err(&vout
->vid_dev
->v4l2_dev
, "failed to change mode\n");
1614 for (j
= 0; j
< ovid
->num_overlays
; j
++) {
1615 struct omap_overlay
*ovl
= ovid
->overlays
[j
];
1616 struct omap_dss_device
*dssdev
= ovl
->get_device(ovl
);
1619 ret
= ovl
->enable(ovl
);
1629 ret
= videobuf_streamoff(q
);
1631 mutex_unlock(&vout
->lock
);
1635 static int vidioc_streamoff(struct file
*file
, void *fh
, enum v4l2_buf_type i
)
1639 struct omap_vout_device
*vout
= fh
;
1640 struct omapvideo_info
*ovid
= &vout
->vid_info
;
1642 if (!vout
->streaming
)
1645 vout
->streaming
= false;
1646 mask
= DISPC_IRQ_VSYNC
| DISPC_IRQ_EVSYNC_EVEN
| DISPC_IRQ_EVSYNC_ODD
1649 omap_dispc_unregister_isr(omap_vout_isr
, vout
, mask
);
1651 for (j
= 0; j
< ovid
->num_overlays
; j
++) {
1652 struct omap_overlay
*ovl
= ovid
->overlays
[j
];
1653 struct omap_dss_device
*dssdev
= ovl
->get_device(ovl
);
1659 /* Turn of the pipeline */
1660 ret
= omapvid_apply_changes(vout
);
1662 v4l2_err(&vout
->vid_dev
->v4l2_dev
,
1663 "failed to change mode in streamoff\n");
1665 INIT_LIST_HEAD(&vout
->dma_queue
);
1666 ret
= videobuf_streamoff(&vout
->vbq
);
1671 static int vidioc_s_fbuf(struct file
*file
, void *fh
,
1672 const struct v4l2_framebuffer
*a
)
1675 struct omap_overlay
*ovl
;
1676 struct omapvideo_info
*ovid
;
1677 struct omap_vout_device
*vout
= fh
;
1678 struct omap_overlay_manager_info info
;
1679 enum omap_dss_trans_key_type key_type
= OMAP_DSS_COLOR_KEY_GFX_DST
;
1681 ovid
= &vout
->vid_info
;
1682 ovl
= ovid
->overlays
[0];
1684 /* OMAP DSS doesn't support Source and Destination color
1686 if ((a
->flags
& V4L2_FBUF_FLAG_SRC_CHROMAKEY
) &&
1687 (a
->flags
& V4L2_FBUF_FLAG_CHROMAKEY
))
1689 /* OMAP DSS Doesn't support the Destination color key
1690 and alpha blending together */
1691 if ((a
->flags
& V4L2_FBUF_FLAG_CHROMAKEY
) &&
1692 (a
->flags
& V4L2_FBUF_FLAG_LOCAL_ALPHA
))
1695 if ((a
->flags
& V4L2_FBUF_FLAG_SRC_CHROMAKEY
)) {
1696 vout
->fbuf
.flags
|= V4L2_FBUF_FLAG_SRC_CHROMAKEY
;
1697 key_type
= OMAP_DSS_COLOR_KEY_VID_SRC
;
1699 vout
->fbuf
.flags
&= ~V4L2_FBUF_FLAG_SRC_CHROMAKEY
;
1701 if ((a
->flags
& V4L2_FBUF_FLAG_CHROMAKEY
)) {
1702 vout
->fbuf
.flags
|= V4L2_FBUF_FLAG_CHROMAKEY
;
1703 key_type
= OMAP_DSS_COLOR_KEY_GFX_DST
;
1705 vout
->fbuf
.flags
&= ~V4L2_FBUF_FLAG_CHROMAKEY
;
1707 if (a
->flags
& (V4L2_FBUF_FLAG_CHROMAKEY
|
1708 V4L2_FBUF_FLAG_SRC_CHROMAKEY
))
1712 if (ovl
->manager
&& ovl
->manager
->get_manager_info
&&
1713 ovl
->manager
->set_manager_info
) {
1715 ovl
->manager
->get_manager_info(ovl
->manager
, &info
);
1716 info
.trans_enabled
= enable
;
1717 info
.trans_key_type
= key_type
;
1718 info
.trans_key
= vout
->win
.chromakey
;
1720 if (ovl
->manager
->set_manager_info(ovl
->manager
, &info
))
1723 if (a
->flags
& V4L2_FBUF_FLAG_LOCAL_ALPHA
) {
1724 vout
->fbuf
.flags
|= V4L2_FBUF_FLAG_LOCAL_ALPHA
;
1727 vout
->fbuf
.flags
&= ~V4L2_FBUF_FLAG_LOCAL_ALPHA
;
1730 if (ovl
->manager
&& ovl
->manager
->get_manager_info
&&
1731 ovl
->manager
->set_manager_info
) {
1732 ovl
->manager
->get_manager_info(ovl
->manager
, &info
);
1733 /* enable this only if there is no zorder cap */
1734 if ((ovl
->caps
& OMAP_DSS_OVL_CAP_ZORDER
) == 0)
1735 info
.partial_alpha_enabled
= enable
;
1736 if (ovl
->manager
->set_manager_info(ovl
->manager
, &info
))
1743 static int vidioc_g_fbuf(struct file
*file
, void *fh
,
1744 struct v4l2_framebuffer
*a
)
1746 struct omap_overlay
*ovl
;
1747 struct omapvideo_info
*ovid
;
1748 struct omap_vout_device
*vout
= fh
;
1749 struct omap_overlay_manager_info info
;
1751 ovid
= &vout
->vid_info
;
1752 ovl
= ovid
->overlays
[0];
1754 /* The video overlay must stay within the framebuffer and can't be
1755 positioned independently. */
1756 a
->flags
= V4L2_FBUF_FLAG_OVERLAY
;
1757 a
->capability
= V4L2_FBUF_CAP_LOCAL_ALPHA
| V4L2_FBUF_CAP_CHROMAKEY
1758 | V4L2_FBUF_CAP_SRC_CHROMAKEY
;
1760 if (ovl
->manager
&& ovl
->manager
->get_manager_info
) {
1761 ovl
->manager
->get_manager_info(ovl
->manager
, &info
);
1762 if (info
.trans_key_type
== OMAP_DSS_COLOR_KEY_VID_SRC
)
1763 a
->flags
|= V4L2_FBUF_FLAG_SRC_CHROMAKEY
;
1764 if (info
.trans_key_type
== OMAP_DSS_COLOR_KEY_GFX_DST
)
1765 a
->flags
|= V4L2_FBUF_FLAG_CHROMAKEY
;
1767 if (ovl
->manager
&& ovl
->manager
->get_manager_info
) {
1768 ovl
->manager
->get_manager_info(ovl
->manager
, &info
);
1769 if (info
.partial_alpha_enabled
)
1770 a
->flags
|= V4L2_FBUF_FLAG_LOCAL_ALPHA
;
1776 static const struct v4l2_ioctl_ops vout_ioctl_ops
= {
1777 .vidioc_querycap
= vidioc_querycap
,
1778 .vidioc_enum_fmt_vid_out
= vidioc_enum_fmt_vid_out
,
1779 .vidioc_g_fmt_vid_out
= vidioc_g_fmt_vid_out
,
1780 .vidioc_try_fmt_vid_out
= vidioc_try_fmt_vid_out
,
1781 .vidioc_s_fmt_vid_out
= vidioc_s_fmt_vid_out
,
1782 .vidioc_s_fbuf
= vidioc_s_fbuf
,
1783 .vidioc_g_fbuf
= vidioc_g_fbuf
,
1784 .vidioc_try_fmt_vid_out_overlay
= vidioc_try_fmt_vid_overlay
,
1785 .vidioc_s_fmt_vid_out_overlay
= vidioc_s_fmt_vid_overlay
,
1786 .vidioc_g_fmt_vid_out_overlay
= vidioc_g_fmt_vid_overlay
,
1787 .vidioc_g_selection
= vidioc_g_selection
,
1788 .vidioc_s_selection
= vidioc_s_selection
,
1789 .vidioc_reqbufs
= vidioc_reqbufs
,
1790 .vidioc_querybuf
= vidioc_querybuf
,
1791 .vidioc_qbuf
= vidioc_qbuf
,
1792 .vidioc_dqbuf
= vidioc_dqbuf
,
1793 .vidioc_streamon
= vidioc_streamon
,
1794 .vidioc_streamoff
= vidioc_streamoff
,
1797 static const struct v4l2_file_operations omap_vout_fops
= {
1798 .owner
= THIS_MODULE
,
1799 .poll
= omap_vout_poll
,
1800 .unlocked_ioctl
= video_ioctl2
,
1801 .mmap
= omap_vout_mmap
,
1802 .open
= omap_vout_open
,
1803 .release
= omap_vout_release
,
1806 /* Init functions used during driver initialization */
1807 /* Initial setup of video_data */
1808 static int __init
omap_vout_setup_video_data(struct omap_vout_device
*vout
)
1810 struct video_device
*vfd
;
1811 struct v4l2_pix_format
*pix
;
1812 struct omap_overlay
*ovl
= vout
->vid_info
.overlays
[0];
1813 struct omap_dss_device
*display
= ovl
->get_device(ovl
);
1814 struct v4l2_ctrl_handler
*hdl
;
1816 /* set the default pix */
1819 /* Set the default picture of QVGA */
1820 pix
->width
= QQVGA_WIDTH
;
1821 pix
->height
= QQVGA_HEIGHT
;
1823 /* Default pixel format is RGB 5-6-5 */
1824 pix
->pixelformat
= V4L2_PIX_FMT_RGB565
;
1825 pix
->field
= V4L2_FIELD_ANY
;
1826 pix
->bytesperline
= pix
->width
* 2;
1827 pix
->sizeimage
= pix
->bytesperline
* pix
->height
;
1828 pix
->colorspace
= V4L2_COLORSPACE_JPEG
;
1830 vout
->bpp
= RGB565_BPP
;
1831 vout
->fbuf
.fmt
.width
= display
->panel
.timings
.x_res
;
1832 vout
->fbuf
.fmt
.height
= display
->panel
.timings
.y_res
;
1834 /* Set the data structures for the overlay parameters*/
1835 vout
->win
.global_alpha
= 255;
1836 vout
->fbuf
.flags
= 0;
1837 vout
->fbuf
.capability
= V4L2_FBUF_CAP_LOCAL_ALPHA
|
1838 V4L2_FBUF_CAP_SRC_CHROMAKEY
| V4L2_FBUF_CAP_CHROMAKEY
;
1839 vout
->win
.chromakey
= 0;
1841 omap_vout_new_format(pix
, &vout
->fbuf
, &vout
->crop
, &vout
->win
);
1843 hdl
= &vout
->ctrl_handler
;
1844 v4l2_ctrl_handler_init(hdl
, 3);
1845 v4l2_ctrl_new_std(hdl
, &omap_vout_ctrl_ops
,
1846 V4L2_CID_ROTATE
, 0, 270, 90, 0);
1847 v4l2_ctrl_new_std(hdl
, &omap_vout_ctrl_ops
,
1848 V4L2_CID_BG_COLOR
, 0, 0xffffff, 1, 0);
1849 v4l2_ctrl_new_std(hdl
, &omap_vout_ctrl_ops
,
1850 V4L2_CID_VFLIP
, 0, 1, 1, 0);
1855 vout
->mirror
= false;
1856 if (vout
->vid_info
.rotation_type
== VOUT_ROT_VRFB
)
1859 /* initialize the video_device struct */
1860 vfd
= vout
->vfd
= video_device_alloc();
1863 printk(KERN_ERR VOUT_NAME
1864 ": could not allocate video device struct\n");
1865 v4l2_ctrl_handler_free(hdl
);
1868 vfd
->ctrl_handler
= hdl
;
1869 vfd
->release
= video_device_release
;
1870 vfd
->ioctl_ops
= &vout_ioctl_ops
;
1872 strlcpy(vfd
->name
, VOUT_NAME
, sizeof(vfd
->name
));
1874 vfd
->fops
= &omap_vout_fops
;
1875 vfd
->v4l2_dev
= &vout
->vid_dev
->v4l2_dev
;
1876 vfd
->vfl_dir
= VFL_DIR_TX
;
1877 mutex_init(&vout
->lock
);
1884 /* Setup video buffers */
1885 static int __init
omap_vout_setup_video_bufs(struct platform_device
*pdev
,
1890 struct omapvideo_info
*ovid
;
1891 struct omap_vout_device
*vout
;
1892 struct v4l2_device
*v4l2_dev
= platform_get_drvdata(pdev
);
1893 struct omap2video_device
*vid_dev
=
1894 container_of(v4l2_dev
, struct omap2video_device
, v4l2_dev
);
1896 vout
= vid_dev
->vouts
[vid_num
];
1897 ovid
= &vout
->vid_info
;
1899 numbuffers
= (vid_num
== 0) ? video1_numbuffers
: video2_numbuffers
;
1900 vout
->buffer_size
= (vid_num
== 0) ? video1_bufsize
: video2_bufsize
;
1901 dev_info(&pdev
->dev
, "Buffer Size = %d\n", vout
->buffer_size
);
1903 for (i
= 0; i
< numbuffers
; i
++) {
1904 vout
->buf_virt_addr
[i
] =
1905 omap_vout_alloc_buffer(vout
->buffer_size
,
1906 (u32
*) &vout
->buf_phy_addr
[i
]);
1907 if (!vout
->buf_virt_addr
[i
]) {
1914 vout
->cropped_offset
= 0;
1916 if (ovid
->rotation_type
== VOUT_ROT_VRFB
) {
1917 bool static_vrfb_allocation
= (vid_num
== 0) ?
1918 vid1_static_vrfb_alloc
: vid2_static_vrfb_alloc
;
1919 ret
= omap_vout_setup_vrfb_bufs(pdev
, vid_num
,
1920 static_vrfb_allocation
);
1926 for (i
= 0; i
< numbuffers
; i
++) {
1927 omap_vout_free_buffer(vout
->buf_virt_addr
[i
],
1929 vout
->buf_virt_addr
[i
] = 0;
1930 vout
->buf_phy_addr
[i
] = 0;
1936 /* Create video out devices */
1937 static int __init
omap_vout_create_video_devices(struct platform_device
*pdev
)
1940 struct omap_vout_device
*vout
;
1941 struct video_device
*vfd
= NULL
;
1942 struct v4l2_device
*v4l2_dev
= platform_get_drvdata(pdev
);
1943 struct omap2video_device
*vid_dev
= container_of(v4l2_dev
,
1944 struct omap2video_device
, v4l2_dev
);
1946 for (k
= 0; k
< pdev
->num_resources
; k
++) {
1948 vout
= kzalloc(sizeof(struct omap_vout_device
), GFP_KERNEL
);
1950 dev_err(&pdev
->dev
, ": could not allocate memory\n");
1955 vid_dev
->vouts
[k
] = vout
;
1956 vout
->vid_dev
= vid_dev
;
1957 /* Select video2 if only 1 overlay is controlled by V4L2 */
1958 if (pdev
->num_resources
== 1)
1959 vout
->vid_info
.overlays
[0] = vid_dev
->overlays
[k
+ 2];
1961 /* Else select video1 and video2 one by one. */
1962 vout
->vid_info
.overlays
[0] = vid_dev
->overlays
[k
+ 1];
1963 vout
->vid_info
.num_overlays
= 1;
1964 vout
->vid_info
.id
= k
+ 1;
1966 /* Set VRFB as rotation_type for omap2 and omap3 */
1967 if (omap_vout_dss_omap24xx() || omap_vout_dss_omap34xx())
1968 vout
->vid_info
.rotation_type
= VOUT_ROT_VRFB
;
1970 /* Setup the default configuration for the video devices
1972 if (omap_vout_setup_video_data(vout
) != 0) {
1977 /* Allocate default number of buffers for the video streaming
1978 * and reserve the VRFB space for rotation
1980 if (omap_vout_setup_video_bufs(pdev
, k
) != 0) {
1985 /* Register the Video device with V4L2
1988 if (video_register_device(vfd
, VFL_TYPE_GRABBER
, -1) < 0) {
1990 ": Could not register Video for Linux device\n");
1995 video_set_drvdata(vfd
, vout
);
1997 dev_info(&pdev
->dev
,
1998 ": registered and initialized video device %d\n",
2000 if (k
== (pdev
->num_resources
- 1))
2005 if (vout
->vid_info
.rotation_type
== VOUT_ROT_VRFB
)
2006 omap_vout_release_vrfb(vout
);
2007 omap_vout_free_buffers(vout
);
2009 video_device_release(vfd
);
2017 /* Driver functions */
2018 static void omap_vout_cleanup_device(struct omap_vout_device
*vout
)
2020 struct video_device
*vfd
;
2021 struct omapvideo_info
*ovid
;
2027 ovid
= &vout
->vid_info
;
2029 if (!video_is_registered(vfd
)) {
2031 * The device was never registered, so release the
2032 * video_device struct directly.
2034 video_device_release(vfd
);
2037 * The unregister function will release the video_device
2038 * struct as well as unregistering it.
2040 video_unregister_device(vfd
);
2043 v4l2_ctrl_handler_free(&vout
->ctrl_handler
);
2044 if (ovid
->rotation_type
== VOUT_ROT_VRFB
) {
2045 omap_vout_release_vrfb(vout
);
2046 /* Free the VRFB buffer if allocated
2049 if (vout
->vrfb_static_allocation
)
2050 omap_vout_free_vrfb_buffers(vout
);
2052 omap_vout_free_buffers(vout
);
2057 static int omap_vout_remove(struct platform_device
*pdev
)
2060 struct v4l2_device
*v4l2_dev
= platform_get_drvdata(pdev
);
2061 struct omap2video_device
*vid_dev
= container_of(v4l2_dev
, struct
2062 omap2video_device
, v4l2_dev
);
2064 v4l2_device_unregister(v4l2_dev
);
2065 for (k
= 0; k
< pdev
->num_resources
; k
++)
2066 omap_vout_cleanup_device(vid_dev
->vouts
[k
]);
2068 for (k
= 0; k
< vid_dev
->num_displays
; k
++) {
2069 if (vid_dev
->displays
[k
]->state
!= OMAP_DSS_DISPLAY_DISABLED
)
2070 vid_dev
->displays
[k
]->driver
->disable(vid_dev
->displays
[k
]);
2072 omap_dss_put_device(vid_dev
->displays
[k
]);
2078 static int __init
omap_vout_probe(struct platform_device
*pdev
)
2081 struct omap_overlay
*ovl
;
2082 struct omap_dss_device
*dssdev
= NULL
;
2083 struct omap_dss_device
*def_display
;
2084 struct omap2video_device
*vid_dev
= NULL
;
2086 if (omapdss_is_initialized() == false)
2087 return -EPROBE_DEFER
;
2089 ret
= omapdss_compat_init();
2091 dev_err(&pdev
->dev
, "failed to init dss\n");
2095 if (pdev
->num_resources
== 0) {
2096 dev_err(&pdev
->dev
, "probed for an unknown device\n");
2101 vid_dev
= kzalloc(sizeof(struct omap2video_device
), GFP_KERNEL
);
2102 if (vid_dev
== NULL
) {
2107 vid_dev
->num_displays
= 0;
2108 for_each_dss_dev(dssdev
) {
2109 omap_dss_get_device(dssdev
);
2111 if (!dssdev
->driver
) {
2112 dev_warn(&pdev
->dev
, "no driver for display: %s\n",
2114 omap_dss_put_device(dssdev
);
2118 vid_dev
->displays
[vid_dev
->num_displays
++] = dssdev
;
2121 if (vid_dev
->num_displays
== 0) {
2122 dev_err(&pdev
->dev
, "no displays\n");
2127 vid_dev
->num_overlays
= omap_dss_get_num_overlays();
2128 for (i
= 0; i
< vid_dev
->num_overlays
; i
++)
2129 vid_dev
->overlays
[i
] = omap_dss_get_overlay(i
);
2131 vid_dev
->num_managers
= omap_dss_get_num_overlay_managers();
2132 for (i
= 0; i
< vid_dev
->num_managers
; i
++)
2133 vid_dev
->managers
[i
] = omap_dss_get_overlay_manager(i
);
2135 /* Get the Video1 overlay and video2 overlay.
2136 * Setup the Display attached to that overlays
2138 for (i
= 1; i
< vid_dev
->num_overlays
; i
++) {
2139 ovl
= omap_dss_get_overlay(i
);
2140 dssdev
= ovl
->get_device(ovl
);
2143 def_display
= dssdev
;
2145 dev_warn(&pdev
->dev
, "cannot find display\n");
2149 struct omap_dss_driver
*dssdrv
= def_display
->driver
;
2151 ret
= dssdrv
->enable(def_display
);
2153 /* Here we are not considering a error
2154 * as display may be enabled by frame
2157 dev_warn(&pdev
->dev
,
2158 "'%s' Display already enabled\n",
2164 if (v4l2_device_register(&pdev
->dev
, &vid_dev
->v4l2_dev
) < 0) {
2165 dev_err(&pdev
->dev
, "v4l2_device_register failed\n");
2170 ret
= omap_vout_create_video_devices(pdev
);
2174 for (i
= 0; i
< vid_dev
->num_displays
; i
++) {
2175 struct omap_dss_device
*display
= vid_dev
->displays
[i
];
2177 if (display
->driver
->update
)
2178 display
->driver
->update(display
, 0, 0,
2179 display
->panel
.timings
.x_res
,
2180 display
->panel
.timings
.y_res
);
2185 v4l2_device_unregister(&vid_dev
->v4l2_dev
);
2187 for (i
= 1; i
< vid_dev
->num_overlays
; i
++) {
2189 ovl
= omap_dss_get_overlay(i
);
2190 dssdev
= ovl
->get_device(ovl
);
2193 def_display
= dssdev
;
2195 if (def_display
&& def_display
->driver
)
2196 def_display
->driver
->disable(def_display
);
2201 omapdss_compat_uninit();
2205 static struct platform_driver omap_vout_driver
= {
2209 .remove
= omap_vout_remove
,
2212 static int __init
omap_vout_init(void)
2214 if (platform_driver_probe(&omap_vout_driver
, omap_vout_probe
) != 0) {
2215 printk(KERN_ERR VOUT_NAME
":Could not register Video driver\n");
2221 static void omap_vout_cleanup(void)
2223 platform_driver_unregister(&omap_vout_driver
);
2226 late_initcall(omap_vout_init
);
2227 module_exit(omap_vout_cleanup
);