2 * SuperH Video Output Unit (VOU) driver
4 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/dma-mapping.h>
12 #include <linux/delay.h>
13 #include <linux/errno.h>
15 #include <linux/i2c.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/kernel.h>
19 #include <linux/platform_device.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/slab.h>
22 #include <linux/videodev2.h>
23 #include <linux/module.h>
25 #include <media/sh_vou.h>
26 #include <media/v4l2-common.h>
27 #include <media/v4l2-device.h>
28 #include <media/v4l2-ioctl.h>
29 #include <media/v4l2-mediabus.h>
30 #include <media/videobuf-dma-contig.h>
32 /* Mirror addresses are not available for all registers */
60 #define VOU_MAX_IMAGE_WIDTH 720
61 #define VOU_MAX_IMAGE_HEIGHT 576
63 struct sh_vou_device
{
64 struct v4l2_device v4l2_dev
;
65 struct video_device
*vdev
;
67 struct sh_vou_pdata
*pdata
;
70 /* State information */
71 struct v4l2_pix_format pix
;
72 struct v4l2_rect rect
;
73 struct list_head queue
;
76 struct videobuf_buffer
*active
;
77 enum sh_vou_status status
;
78 struct mutex fop_lock
;
82 struct videobuf_queue vbq
;
85 /* Register access routines for sides A, B and mirror addresses */
86 static void sh_vou_reg_a_write(struct sh_vou_device
*vou_dev
, unsigned int reg
,
89 __raw_writel(value
, vou_dev
->base
+ reg
);
92 static void sh_vou_reg_ab_write(struct sh_vou_device
*vou_dev
, unsigned int reg
,
95 __raw_writel(value
, vou_dev
->base
+ reg
);
96 __raw_writel(value
, vou_dev
->base
+ reg
+ 0x1000);
99 static void sh_vou_reg_m_write(struct sh_vou_device
*vou_dev
, unsigned int reg
,
102 __raw_writel(value
, vou_dev
->base
+ reg
+ 0x2000);
105 static u32
sh_vou_reg_a_read(struct sh_vou_device
*vou_dev
, unsigned int reg
)
107 return __raw_readl(vou_dev
->base
+ reg
);
110 static void sh_vou_reg_a_set(struct sh_vou_device
*vou_dev
, unsigned int reg
,
113 u32 old
= __raw_readl(vou_dev
->base
+ reg
);
115 value
= (value
& mask
) | (old
& ~mask
);
116 __raw_writel(value
, vou_dev
->base
+ reg
);
119 static void sh_vou_reg_b_set(struct sh_vou_device
*vou_dev
, unsigned int reg
,
122 sh_vou_reg_a_set(vou_dev
, reg
+ 0x1000, value
, mask
);
125 static void sh_vou_reg_ab_set(struct sh_vou_device
*vou_dev
, unsigned int reg
,
128 sh_vou_reg_a_set(vou_dev
, reg
, value
, mask
);
129 sh_vou_reg_b_set(vou_dev
, reg
, value
, mask
);
141 /* Further pixel formats can be added */
142 static struct sh_vou_fmt vou_fmt
[] = {
144 .pfmt
= V4L2_PIX_FMT_NV12
,
146 .desc
= "YVU420 planar",
151 .pfmt
= V4L2_PIX_FMT_NV16
,
153 .desc
= "YVYU planar",
158 .pfmt
= V4L2_PIX_FMT_RGB24
,
165 .pfmt
= V4L2_PIX_FMT_RGB565
,
172 .pfmt
= V4L2_PIX_FMT_RGB565X
,
174 .desc
= "RGB565 byteswapped",
180 static void sh_vou_schedule_next(struct sh_vou_device
*vou_dev
,
181 struct videobuf_buffer
*vb
)
183 dma_addr_t addr1
, addr2
;
185 addr1
= videobuf_to_dma_contig(vb
);
186 switch (vou_dev
->pix
.pixelformat
) {
187 case V4L2_PIX_FMT_NV12
:
188 case V4L2_PIX_FMT_NV16
:
189 addr2
= addr1
+ vou_dev
->pix
.width
* vou_dev
->pix
.height
;
195 sh_vou_reg_m_write(vou_dev
, VOUAD1R
, addr1
);
196 sh_vou_reg_m_write(vou_dev
, VOUAD2R
, addr2
);
199 static void sh_vou_stream_start(struct sh_vou_device
*vou_dev
,
200 struct videobuf_buffer
*vb
)
202 unsigned int row_coeff
;
203 #ifdef __LITTLE_ENDIAN
209 switch (vou_dev
->pix
.pixelformat
) {
211 case V4L2_PIX_FMT_NV12
:
212 case V4L2_PIX_FMT_NV16
:
215 case V4L2_PIX_FMT_RGB565
:
217 case V4L2_PIX_FMT_RGB565X
:
220 case V4L2_PIX_FMT_RGB24
:
225 sh_vou_reg_a_write(vou_dev
, VOUSWR
, dataswap
);
226 sh_vou_reg_ab_write(vou_dev
, VOUAIR
, vou_dev
->pix
.width
* row_coeff
);
227 sh_vou_schedule_next(vou_dev
, vb
);
230 static void free_buffer(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
232 BUG_ON(in_interrupt());
234 /* Wait until this buffer is no longer in STATE_QUEUED or STATE_ACTIVE */
235 videobuf_waiton(vq
, vb
, 0, 0);
236 videobuf_dma_contig_free(vq
, vb
);
237 vb
->state
= VIDEOBUF_NEEDS_INIT
;
240 /* Locking: caller holds fop_lock mutex */
241 static int sh_vou_buf_setup(struct videobuf_queue
*vq
, unsigned int *count
,
244 struct video_device
*vdev
= vq
->priv_data
;
245 struct sh_vou_device
*vou_dev
= video_get_drvdata(vdev
);
247 *size
= vou_fmt
[vou_dev
->pix_idx
].bpp
* vou_dev
->pix
.width
*
248 vou_dev
->pix
.height
/ 8;
253 /* Taking into account maximum frame size, *count will stay >= 2 */
254 if (PAGE_ALIGN(*size
) * *count
> 4 * 1024 * 1024)
255 *count
= 4 * 1024 * 1024 / PAGE_ALIGN(*size
);
257 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s(): count=%d, size=%d\n", __func__
,
263 /* Locking: caller holds fop_lock mutex */
264 static int sh_vou_buf_prepare(struct videobuf_queue
*vq
,
265 struct videobuf_buffer
*vb
,
266 enum v4l2_field field
)
268 struct video_device
*vdev
= vq
->priv_data
;
269 struct sh_vou_device
*vou_dev
= video_get_drvdata(vdev
);
270 struct v4l2_pix_format
*pix
= &vou_dev
->pix
;
271 int bytes_per_line
= vou_fmt
[vou_dev
->pix_idx
].bpp
* pix
->width
/ 8;
274 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
276 if (vb
->width
!= pix
->width
||
277 vb
->height
!= pix
->height
||
278 vb
->field
!= pix
->field
) {
279 vb
->width
= pix
->width
;
280 vb
->height
= pix
->height
;
282 if (vb
->state
!= VIDEOBUF_NEEDS_INIT
)
286 vb
->size
= vb
->height
* bytes_per_line
;
287 if (vb
->baddr
&& vb
->bsize
< vb
->size
) {
288 /* User buffer too small */
289 dev_warn(vq
->dev
, "User buffer too small: [%zu] @ %lx\n",
290 vb
->bsize
, vb
->baddr
);
294 if (vb
->state
== VIDEOBUF_NEEDS_INIT
) {
295 ret
= videobuf_iolock(vq
, vb
, NULL
);
297 dev_warn(vq
->dev
, "IOLOCK buf-type %d: %d\n",
301 vb
->state
= VIDEOBUF_PREPARED
;
304 dev_dbg(vou_dev
->v4l2_dev
.dev
,
305 "%s(): fmt #%d, %u bytes per line, phys %pad, type %d, state %d\n",
306 __func__
, vou_dev
->pix_idx
, bytes_per_line
,
307 ({ dma_addr_t addr
= videobuf_to_dma_contig(vb
); &addr
; }),
308 vb
->memory
, vb
->state
);
313 /* Locking: caller holds fop_lock mutex and vq->irqlock spinlock */
314 static void sh_vou_buf_queue(struct videobuf_queue
*vq
,
315 struct videobuf_buffer
*vb
)
317 struct video_device
*vdev
= vq
->priv_data
;
318 struct sh_vou_device
*vou_dev
= video_get_drvdata(vdev
);
320 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
322 vb
->state
= VIDEOBUF_QUEUED
;
323 list_add_tail(&vb
->queue
, &vou_dev
->queue
);
325 if (vou_dev
->status
== SH_VOU_RUNNING
) {
327 } else if (!vou_dev
->active
) {
328 vou_dev
->active
= vb
;
329 /* Start from side A: we use mirror addresses, so, set B */
330 sh_vou_reg_a_write(vou_dev
, VOURPR
, 1);
331 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s: first buffer status 0x%x\n",
332 __func__
, sh_vou_reg_a_read(vou_dev
, VOUSTR
));
333 sh_vou_schedule_next(vou_dev
, vb
);
334 /* Only activate VOU after the second buffer */
335 } else if (vou_dev
->active
->queue
.next
== &vb
->queue
) {
336 /* Second buffer - initialise register side B */
337 sh_vou_reg_a_write(vou_dev
, VOURPR
, 0);
338 sh_vou_stream_start(vou_dev
, vb
);
340 /* Register side switching with frame VSYNC */
341 sh_vou_reg_a_write(vou_dev
, VOURCR
, 5);
342 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s: second buffer status 0x%x\n",
343 __func__
, sh_vou_reg_a_read(vou_dev
, VOUSTR
));
345 /* Enable End-of-Frame (VSYNC) interrupts */
346 sh_vou_reg_a_write(vou_dev
, VOUIR
, 0x10004);
347 /* Two buffers on the queue - activate the hardware */
349 vou_dev
->status
= SH_VOU_RUNNING
;
350 sh_vou_reg_a_write(vou_dev
, VOUER
, 0x107);
354 static void sh_vou_buf_release(struct videobuf_queue
*vq
,
355 struct videobuf_buffer
*vb
)
357 struct video_device
*vdev
= vq
->priv_data
;
358 struct sh_vou_device
*vou_dev
= video_get_drvdata(vdev
);
361 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
363 spin_lock_irqsave(&vou_dev
->lock
, flags
);
365 if (vou_dev
->active
== vb
) {
367 sh_vou_reg_a_set(vou_dev
, VOUER
, 0, 1);
368 /* ...but the current frame will complete */
369 sh_vou_reg_a_set(vou_dev
, VOUIR
, 0, 0x30000);
370 vou_dev
->active
= NULL
;
373 if ((vb
->state
== VIDEOBUF_ACTIVE
|| vb
->state
== VIDEOBUF_QUEUED
)) {
374 vb
->state
= VIDEOBUF_ERROR
;
375 list_del(&vb
->queue
);
378 spin_unlock_irqrestore(&vou_dev
->lock
, flags
);
383 static struct videobuf_queue_ops sh_vou_video_qops
= {
384 .buf_setup
= sh_vou_buf_setup
,
385 .buf_prepare
= sh_vou_buf_prepare
,
386 .buf_queue
= sh_vou_buf_queue
,
387 .buf_release
= sh_vou_buf_release
,
391 static int sh_vou_querycap(struct file
*file
, void *priv
,
392 struct v4l2_capability
*cap
)
394 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
396 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
398 strlcpy(cap
->card
, "SuperH VOU", sizeof(cap
->card
));
399 cap
->capabilities
= V4L2_CAP_VIDEO_OUTPUT
| V4L2_CAP_STREAMING
;
403 /* Enumerate formats, that the device can accept from the user */
404 static int sh_vou_enum_fmt_vid_out(struct file
*file
, void *priv
,
405 struct v4l2_fmtdesc
*fmt
)
407 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
409 if (fmt
->index
>= ARRAY_SIZE(vou_fmt
))
412 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
414 fmt
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
415 strlcpy(fmt
->description
, vou_fmt
[fmt
->index
].desc
,
416 sizeof(fmt
->description
));
417 fmt
->pixelformat
= vou_fmt
[fmt
->index
].pfmt
;
422 static int sh_vou_g_fmt_vid_out(struct file
*file
, void *priv
,
423 struct v4l2_format
*fmt
)
425 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
427 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
429 fmt
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
430 fmt
->fmt
.pix
= vou_dev
->pix
;
435 static const unsigned char vou_scale_h_num
[] = {1, 9, 2, 9, 4};
436 static const unsigned char vou_scale_h_den
[] = {1, 8, 1, 4, 1};
437 static const unsigned char vou_scale_h_fld
[] = {0, 2, 1, 3};
438 static const unsigned char vou_scale_v_num
[] = {1, 2, 4};
439 static const unsigned char vou_scale_v_den
[] = {1, 1, 1};
440 static const unsigned char vou_scale_v_fld
[] = {0, 1};
442 static void sh_vou_configure_geometry(struct sh_vou_device
*vou_dev
,
443 int pix_idx
, int w_idx
, int h_idx
)
445 struct sh_vou_fmt
*fmt
= vou_fmt
+ pix_idx
;
446 unsigned int black_left
, black_top
, width_max
,
447 frame_in_height
, frame_out_height
, frame_out_top
;
448 struct v4l2_rect
*rect
= &vou_dev
->rect
;
449 struct v4l2_pix_format
*pix
= &vou_dev
->pix
;
450 u32 vouvcr
= 0, dsr_h
, dsr_v
;
452 if (vou_dev
->std
& V4L2_STD_525_60
) {
454 /* height_max = 262; */
457 /* height_max = 312; */
460 frame_in_height
= pix
->height
/ 2;
461 frame_out_height
= rect
->height
/ 2;
462 frame_out_top
= rect
->top
/ 2;
465 * Cropping scheme: max useful image is 720x480, and the total video
466 * area is 858x525 (NTSC) or 864x625 (PAL). AK8813 / 8814 starts
467 * sampling data beginning with fixed 276th (NTSC) / 288th (PAL) clock,
468 * of which the first 33 / 25 clocks HSYNC must be held active. This
469 * has to be configured in CR[HW]. 1 pixel equals 2 clock periods.
470 * This gives CR[HW] = 16 / 12, VPR[HVP] = 138 / 144, which gives
471 * exactly 858 - 138 = 864 - 144 = 720! We call the out-of-display area,
472 * beyond DSR, specified on the left and top by the VPR register "black
473 * pixels" and out-of-image area (DPR) "background pixels." We fix VPR
474 * at 138 / 144 : 20, because that's the HSYNC timing, that our first
475 * client requires, and that's exactly what leaves us 720 pixels for the
476 * image; we leave VPR[VVP] at default 20 for now, because the client
477 * doesn't seem to have any special requirements for it. Otherwise we
478 * could also set it to max - 240 = 22 / 72. Thus VPR depends only on
479 * the selected standard, and DPR and DSR are selected according to
480 * cropping. Q: how does the client detect the first valid line? Does
481 * HSYNC stay inactive during invalid (black) lines?
483 black_left
= width_max
- VOU_MAX_IMAGE_WIDTH
;
486 dsr_h
= rect
->width
+ rect
->left
;
487 dsr_v
= frame_out_height
+ frame_out_top
;
489 dev_dbg(vou_dev
->v4l2_dev
.dev
,
490 "image %ux%u, black %u:%u, offset %u:%u, display %ux%u\n",
491 pix
->width
, frame_in_height
, black_left
, black_top
,
492 rect
->left
, frame_out_top
, dsr_h
, dsr_v
);
494 /* VOUISR height - half of a frame height in frame mode */
495 sh_vou_reg_ab_write(vou_dev
, VOUISR
, (pix
->width
<< 16) | frame_in_height
);
496 sh_vou_reg_ab_write(vou_dev
, VOUVPR
, (black_left
<< 16) | black_top
);
497 sh_vou_reg_ab_write(vou_dev
, VOUDPR
, (rect
->left
<< 16) | frame_out_top
);
498 sh_vou_reg_ab_write(vou_dev
, VOUDSR
, (dsr_h
<< 16) | dsr_v
);
501 * if necessary, we could set VOUHIR to
502 * max(black_left + dsr_h, width_max) here
506 vouvcr
|= (1 << 15) | (vou_scale_h_fld
[w_idx
- 1] << 4);
508 vouvcr
|= (1 << 14) | vou_scale_v_fld
[h_idx
- 1];
510 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s: scaling 0x%x\n", fmt
->desc
, vouvcr
);
512 /* To produce a colour bar for testing set bit 23 of VOUVCR */
513 sh_vou_reg_ab_write(vou_dev
, VOUVCR
, vouvcr
);
514 sh_vou_reg_ab_write(vou_dev
, VOUDFR
,
515 fmt
->pkf
| (fmt
->yf
<< 8) | (fmt
->rgb
<< 16));
518 struct sh_vou_geometry
{
519 struct v4l2_rect output
;
520 unsigned int in_width
;
521 unsigned int in_height
;
527 * Find input geometry, that we can use to produce output, closest to the
528 * requested rectangle, using VOU scaling
530 static void vou_adjust_input(struct sh_vou_geometry
*geo
, v4l2_std_id std
)
532 /* The compiler cannot know, that best and idx will indeed be set */
533 unsigned int best_err
= UINT_MAX
, best
= 0, img_height_max
;
536 if (std
& V4L2_STD_525_60
)
537 img_height_max
= 480;
539 img_height_max
= 576;
541 /* Image width must be a multiple of 4 */
542 v4l_bound_align_image(&geo
->in_width
, 0, VOU_MAX_IMAGE_WIDTH
, 2,
543 &geo
->in_height
, 0, img_height_max
, 1, 0);
545 /* Select scales to come as close as possible to the output image */
546 for (i
= ARRAY_SIZE(vou_scale_h_num
) - 1; i
>= 0; i
--) {
548 unsigned int found
= geo
->output
.width
* vou_scale_h_den
[i
] /
551 if (found
> VOU_MAX_IMAGE_WIDTH
)
552 /* scales increase */
555 err
= abs(found
- geo
->in_width
);
556 if (err
< best_err
) {
565 geo
->in_width
= best
;
566 geo
->scale_idx_h
= idx
;
570 /* This loop can be replaced with one division */
571 for (i
= ARRAY_SIZE(vou_scale_v_num
) - 1; i
>= 0; i
--) {
573 unsigned int found
= geo
->output
.height
* vou_scale_v_den
[i
] /
576 if (found
> img_height_max
)
577 /* scales increase */
580 err
= abs(found
- geo
->in_height
);
581 if (err
< best_err
) {
590 geo
->in_height
= best
;
591 geo
->scale_idx_v
= idx
;
595 * Find output geometry, that we can produce, using VOU scaling, closest to
596 * the requested rectangle
598 static void vou_adjust_output(struct sh_vou_geometry
*geo
, v4l2_std_id std
)
600 unsigned int best_err
= UINT_MAX
, best
= geo
->in_width
,
601 width_max
, height_max
, img_height_max
;
604 if (std
& V4L2_STD_525_60
) {
606 height_max
= 262 * 2;
607 img_height_max
= 480;
610 height_max
= 312 * 2;
611 img_height_max
= 576;
614 /* Select scales to come as close as possible to the output image */
615 for (i
= 0; i
< ARRAY_SIZE(vou_scale_h_num
); i
++) {
617 unsigned int found
= geo
->in_width
* vou_scale_h_num
[i
] /
620 if (found
> VOU_MAX_IMAGE_WIDTH
)
621 /* scales increase */
624 err
= abs(found
- geo
->output
.width
);
625 if (err
< best_err
) {
634 geo
->output
.width
= best
;
635 geo
->scale_idx_h
= idx
;
636 if (geo
->output
.left
+ best
> width_max
)
637 geo
->output
.left
= width_max
- best
;
639 pr_debug("%s(): W %u * %u/%u = %u\n", __func__
, geo
->in_width
,
640 vou_scale_h_num
[idx
], vou_scale_h_den
[idx
], best
);
644 /* This loop can be replaced with one division */
645 for (i
= 0; i
< ARRAY_SIZE(vou_scale_v_num
); i
++) {
647 unsigned int found
= geo
->in_height
* vou_scale_v_num
[i
] /
650 if (found
> img_height_max
)
651 /* scales increase */
654 err
= abs(found
- geo
->output
.height
);
655 if (err
< best_err
) {
664 geo
->output
.height
= best
;
665 geo
->scale_idx_v
= idx
;
666 if (geo
->output
.top
+ best
> height_max
)
667 geo
->output
.top
= height_max
- best
;
669 pr_debug("%s(): H %u * %u/%u = %u\n", __func__
, geo
->in_height
,
670 vou_scale_v_num
[idx
], vou_scale_v_den
[idx
], best
);
673 static int sh_vou_s_fmt_vid_out(struct file
*file
, void *priv
,
674 struct v4l2_format
*fmt
)
676 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
677 struct v4l2_pix_format
*pix
= &fmt
->fmt
.pix
;
678 unsigned int img_height_max
;
680 struct sh_vou_geometry geo
;
681 struct v4l2_mbus_framefmt mbfmt
= {
682 /* Revisit: is this the correct code? */
683 .code
= V4L2_MBUS_FMT_YUYV8_2X8
,
684 .field
= V4L2_FIELD_INTERLACED
,
685 .colorspace
= V4L2_COLORSPACE_SMPTE170M
,
689 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s(): %ux%u -> %ux%u\n", __func__
,
690 vou_dev
->rect
.width
, vou_dev
->rect
.height
,
691 pix
->width
, pix
->height
);
693 if (pix
->field
== V4L2_FIELD_ANY
)
694 pix
->field
= V4L2_FIELD_NONE
;
696 if (fmt
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
||
697 pix
->field
!= V4L2_FIELD_NONE
)
700 for (pix_idx
= 0; pix_idx
< ARRAY_SIZE(vou_fmt
); pix_idx
++)
701 if (vou_fmt
[pix_idx
].pfmt
== pix
->pixelformat
)
704 if (pix_idx
== ARRAY_SIZE(vou_fmt
))
707 if (vou_dev
->std
& V4L2_STD_525_60
)
708 img_height_max
= 480;
710 img_height_max
= 576;
712 /* Image width must be a multiple of 4 */
713 v4l_bound_align_image(&pix
->width
, 0, VOU_MAX_IMAGE_WIDTH
, 2,
714 &pix
->height
, 0, img_height_max
, 1, 0);
716 geo
.in_width
= pix
->width
;
717 geo
.in_height
= pix
->height
;
718 geo
.output
= vou_dev
->rect
;
720 vou_adjust_output(&geo
, vou_dev
->std
);
722 mbfmt
.width
= geo
.output
.width
;
723 mbfmt
.height
= geo
.output
.height
;
724 ret
= v4l2_device_call_until_err(&vou_dev
->v4l2_dev
, 0, video
,
726 /* Must be implemented, so, don't check for -ENOIOCTLCMD */
730 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s(): %ux%u -> %ux%u\n", __func__
,
731 geo
.output
.width
, geo
.output
.height
, mbfmt
.width
, mbfmt
.height
);
734 if ((unsigned)mbfmt
.width
> VOU_MAX_IMAGE_WIDTH
||
735 (unsigned)mbfmt
.height
> img_height_max
||
736 mbfmt
.code
!= V4L2_MBUS_FMT_YUYV8_2X8
)
739 if (mbfmt
.width
!= geo
.output
.width
||
740 mbfmt
.height
!= geo
.output
.height
) {
741 geo
.output
.width
= mbfmt
.width
;
742 geo
.output
.height
= mbfmt
.height
;
744 vou_adjust_input(&geo
, vou_dev
->std
);
747 /* We tried to preserve output rectangle, but it could have changed */
748 vou_dev
->rect
= geo
.output
;
749 pix
->width
= geo
.in_width
;
750 pix
->height
= geo
.in_height
;
752 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s(): %ux%u\n", __func__
,
753 pix
->width
, pix
->height
);
755 vou_dev
->pix_idx
= pix_idx
;
759 sh_vou_configure_geometry(vou_dev
, pix_idx
,
760 geo
.scale_idx_h
, geo
.scale_idx_v
);
765 static int sh_vou_try_fmt_vid_out(struct file
*file
, void *priv
,
766 struct v4l2_format
*fmt
)
768 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
769 struct v4l2_pix_format
*pix
= &fmt
->fmt
.pix
;
772 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
774 fmt
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
775 pix
->field
= V4L2_FIELD_NONE
;
777 v4l_bound_align_image(&pix
->width
, 0, VOU_MAX_IMAGE_WIDTH
, 1,
778 &pix
->height
, 0, VOU_MAX_IMAGE_HEIGHT
, 1, 0);
780 for (i
= 0; i
< ARRAY_SIZE(vou_fmt
); i
++)
781 if (vou_fmt
[i
].pfmt
== pix
->pixelformat
)
784 pix
->pixelformat
= vou_fmt
[0].pfmt
;
789 static int sh_vou_reqbufs(struct file
*file
, void *priv
,
790 struct v4l2_requestbuffers
*req
)
792 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
793 struct sh_vou_file
*vou_file
= priv
;
795 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
797 if (req
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
800 return videobuf_reqbufs(&vou_file
->vbq
, req
);
803 static int sh_vou_querybuf(struct file
*file
, void *priv
,
804 struct v4l2_buffer
*b
)
806 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
807 struct sh_vou_file
*vou_file
= priv
;
809 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
811 return videobuf_querybuf(&vou_file
->vbq
, b
);
814 static int sh_vou_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
816 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
817 struct sh_vou_file
*vou_file
= priv
;
819 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
821 return videobuf_qbuf(&vou_file
->vbq
, b
);
824 static int sh_vou_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
826 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
827 struct sh_vou_file
*vou_file
= priv
;
829 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
831 return videobuf_dqbuf(&vou_file
->vbq
, b
, file
->f_flags
& O_NONBLOCK
);
834 static int sh_vou_streamon(struct file
*file
, void *priv
,
835 enum v4l2_buf_type buftype
)
837 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
838 struct sh_vou_file
*vou_file
= priv
;
841 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
843 ret
= v4l2_device_call_until_err(&vou_dev
->v4l2_dev
, 0,
845 if (ret
< 0 && ret
!= -ENOIOCTLCMD
)
848 /* This calls our .buf_queue() (== sh_vou_buf_queue) */
849 return videobuf_streamon(&vou_file
->vbq
);
852 static int sh_vou_streamoff(struct file
*file
, void *priv
,
853 enum v4l2_buf_type buftype
)
855 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
856 struct sh_vou_file
*vou_file
= priv
;
858 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
861 * This calls buf_release from host driver's videobuf_queue_ops for all
862 * remaining buffers. When the last buffer is freed, stop streaming
864 videobuf_streamoff(&vou_file
->vbq
);
865 v4l2_device_call_until_err(&vou_dev
->v4l2_dev
, 0, video
, s_stream
, 0);
870 static u32
sh_vou_ntsc_mode(enum sh_vou_bus_fmt bus_fmt
)
874 pr_warning("%s(): Invalid bus-format code %d, using default 8-bit\n",
876 case SH_VOU_BUS_8BIT
:
878 case SH_VOU_BUS_16BIT
:
880 case SH_VOU_BUS_BT656
:
885 static int sh_vou_s_std(struct file
*file
, void *priv
, v4l2_std_id std_id
)
887 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
890 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s(): 0x%llx\n", __func__
, std_id
);
892 if (std_id
& ~vou_dev
->vdev
->tvnorms
)
895 ret
= v4l2_device_call_until_err(&vou_dev
->v4l2_dev
, 0, video
,
896 s_std_output
, std_id
);
897 /* Shall we continue, if the subdev doesn't support .s_std_output()? */
898 if (ret
< 0 && ret
!= -ENOIOCTLCMD
)
901 if (std_id
& V4L2_STD_525_60
)
902 sh_vou_reg_ab_set(vou_dev
, VOUCR
,
903 sh_vou_ntsc_mode(vou_dev
->pdata
->bus_fmt
) << 29, 7 << 29);
905 sh_vou_reg_ab_set(vou_dev
, VOUCR
, 5 << 29, 7 << 29);
907 vou_dev
->std
= std_id
;
912 static int sh_vou_g_std(struct file
*file
, void *priv
, v4l2_std_id
*std
)
914 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
916 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
923 static int sh_vou_g_crop(struct file
*file
, void *fh
, struct v4l2_crop
*a
)
925 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
927 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
929 a
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
930 a
->c
= vou_dev
->rect
;
935 /* Assume a dull encoder, do all the work ourselves. */
936 static int sh_vou_s_crop(struct file
*file
, void *fh
, const struct v4l2_crop
*a
)
938 struct v4l2_crop a_writable
= *a
;
939 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
940 struct v4l2_rect
*rect
= &a_writable
.c
;
941 struct v4l2_crop sd_crop
= {.type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
};
942 struct v4l2_pix_format
*pix
= &vou_dev
->pix
;
943 struct sh_vou_geometry geo
;
944 struct v4l2_mbus_framefmt mbfmt
= {
945 /* Revisit: is this the correct code? */
946 .code
= V4L2_MBUS_FMT_YUYV8_2X8
,
947 .field
= V4L2_FIELD_INTERLACED
,
948 .colorspace
= V4L2_COLORSPACE_SMPTE170M
,
950 unsigned int img_height_max
;
953 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s(): %ux%u@%u:%u\n", __func__
,
954 rect
->width
, rect
->height
, rect
->left
, rect
->top
);
956 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
959 if (vou_dev
->std
& V4L2_STD_525_60
)
960 img_height_max
= 480;
962 img_height_max
= 576;
964 v4l_bound_align_image(&rect
->width
, 0, VOU_MAX_IMAGE_WIDTH
, 1,
965 &rect
->height
, 0, img_height_max
, 1, 0);
967 if (rect
->width
+ rect
->left
> VOU_MAX_IMAGE_WIDTH
)
968 rect
->left
= VOU_MAX_IMAGE_WIDTH
- rect
->width
;
970 if (rect
->height
+ rect
->top
> img_height_max
)
971 rect
->top
= img_height_max
- rect
->height
;
974 geo
.in_width
= pix
->width
;
975 geo
.in_height
= pix
->height
;
977 /* Configure the encoder one-to-one, position at 0, ignore errors */
978 sd_crop
.c
.width
= geo
.output
.width
;
979 sd_crop
.c
.height
= geo
.output
.height
;
981 * We first issue a S_CROP, so that the subsequent S_FMT delivers the
982 * final encoder configuration.
984 v4l2_device_call_until_err(&vou_dev
->v4l2_dev
, 0, video
,
986 mbfmt
.width
= geo
.output
.width
;
987 mbfmt
.height
= geo
.output
.height
;
988 ret
= v4l2_device_call_until_err(&vou_dev
->v4l2_dev
, 0, video
,
990 /* Must be implemented, so, don't check for -ENOIOCTLCMD */
995 if ((unsigned)mbfmt
.width
> VOU_MAX_IMAGE_WIDTH
||
996 (unsigned)mbfmt
.height
> img_height_max
||
997 mbfmt
.code
!= V4L2_MBUS_FMT_YUYV8_2X8
)
1000 geo
.output
.width
= mbfmt
.width
;
1001 geo
.output
.height
= mbfmt
.height
;
1004 * No down-scaling. According to the API, current call has precedence:
1005 * http://v4l2spec.bytesex.org/spec/x1904.htm#AEN1954 paragraph two.
1007 vou_adjust_input(&geo
, vou_dev
->std
);
1009 /* We tried to preserve output rectangle, but it could have changed */
1010 vou_dev
->rect
= geo
.output
;
1011 pix
->width
= geo
.in_width
;
1012 pix
->height
= geo
.in_height
;
1014 sh_vou_configure_geometry(vou_dev
, vou_dev
->pix_idx
,
1015 geo
.scale_idx_h
, geo
.scale_idx_v
);
1021 * Total field: NTSC 858 x 2 * 262/263, PAL 864 x 2 * 312/313, default rectangle
1022 * is the initial register values, height takes the interlaced format into
1023 * account. The actual image can only go up to 720 x 2 * 240, So, VOUVPR can
1024 * actually only meaningfully contain values <= 720 and <= 240 respectively, and
1025 * not <= 864 and <= 312.
1027 static int sh_vou_cropcap(struct file
*file
, void *priv
,
1028 struct v4l2_cropcap
*a
)
1030 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
1032 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
1034 a
->type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
1037 a
->bounds
.width
= VOU_MAX_IMAGE_WIDTH
;
1038 a
->bounds
.height
= VOU_MAX_IMAGE_HEIGHT
;
1039 /* Default = max, set VOUDPR = 0, which is not hardware default */
1040 a
->defrect
.left
= 0;
1042 a
->defrect
.width
= VOU_MAX_IMAGE_WIDTH
;
1043 a
->defrect
.height
= VOU_MAX_IMAGE_HEIGHT
;
1044 a
->pixelaspect
.numerator
= 1;
1045 a
->pixelaspect
.denominator
= 1;
1050 static irqreturn_t
sh_vou_isr(int irq
, void *dev_id
)
1052 struct sh_vou_device
*vou_dev
= dev_id
;
1053 static unsigned long j
;
1054 struct videobuf_buffer
*vb
;
1056 u32 irq_status
= sh_vou_reg_a_read(vou_dev
, VOUIR
), masked
;
1057 u32 vou_status
= sh_vou_reg_a_read(vou_dev
, VOUSTR
);
1059 if (!(irq_status
& 0x300)) {
1060 if (printk_timed_ratelimit(&j
, 500))
1061 dev_warn(vou_dev
->v4l2_dev
.dev
, "IRQ status 0x%x!\n",
1066 spin_lock(&vou_dev
->lock
);
1067 if (!vou_dev
->active
|| list_empty(&vou_dev
->queue
)) {
1068 if (printk_timed_ratelimit(&j
, 500))
1069 dev_warn(vou_dev
->v4l2_dev
.dev
,
1070 "IRQ without active buffer: %x!\n", irq_status
);
1071 /* Just ack: buf_release will disable further interrupts */
1072 sh_vou_reg_a_set(vou_dev
, VOUIR
, 0, 0x300);
1073 spin_unlock(&vou_dev
->lock
);
1077 masked
= ~(0x300 & irq_status
) & irq_status
& 0x30304;
1078 dev_dbg(vou_dev
->v4l2_dev
.dev
,
1079 "IRQ status 0x%x -> 0x%x, VOU status 0x%x, cnt %d\n",
1080 irq_status
, masked
, vou_status
, cnt
);
1083 /* side = vou_status & 0x10000; */
1085 /* Clear only set interrupts */
1086 sh_vou_reg_a_write(vou_dev
, VOUIR
, masked
);
1088 vb
= vou_dev
->active
;
1089 list_del(&vb
->queue
);
1091 vb
->state
= VIDEOBUF_DONE
;
1092 v4l2_get_timestamp(&vb
->ts
);
1096 if (list_empty(&vou_dev
->queue
)) {
1098 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s: queue empty after %d\n",
1100 sh_vou_reg_a_set(vou_dev
, VOUER
, 0, 1);
1101 vou_dev
->active
= NULL
;
1102 vou_dev
->status
= SH_VOU_INITIALISING
;
1103 /* Disable End-of-Frame (VSYNC) interrupts */
1104 sh_vou_reg_a_set(vou_dev
, VOUIR
, 0, 0x30000);
1105 spin_unlock(&vou_dev
->lock
);
1109 vou_dev
->active
= list_entry(vou_dev
->queue
.next
,
1110 struct videobuf_buffer
, queue
);
1112 if (vou_dev
->active
->queue
.next
!= &vou_dev
->queue
) {
1113 struct videobuf_buffer
*new = list_entry(vou_dev
->active
->queue
.next
,
1114 struct videobuf_buffer
, queue
);
1115 sh_vou_schedule_next(vou_dev
, new);
1118 spin_unlock(&vou_dev
->lock
);
1123 static int sh_vou_hw_init(struct sh_vou_device
*vou_dev
)
1125 struct sh_vou_pdata
*pdata
= vou_dev
->pdata
;
1126 u32 voucr
= sh_vou_ntsc_mode(pdata
->bus_fmt
) << 29;
1129 /* Disable all IRQs */
1130 sh_vou_reg_a_write(vou_dev
, VOUIR
, 0);
1132 /* Reset VOU interfaces - registers unaffected */
1133 sh_vou_reg_a_write(vou_dev
, VOUSRR
, 0x101);
1134 while (--i
&& (sh_vou_reg_a_read(vou_dev
, VOUSRR
) & 0x101))
1140 dev_dbg(vou_dev
->v4l2_dev
.dev
, "Reset took %dus\n", 100 - i
);
1142 if (pdata
->flags
& SH_VOU_PCLK_FALLING
)
1144 if (pdata
->flags
& SH_VOU_HSYNC_LOW
)
1146 if (pdata
->flags
& SH_VOU_VSYNC_LOW
)
1148 sh_vou_reg_ab_set(vou_dev
, VOUCR
, voucr
, 0xfc000000);
1150 /* Manual register side switching at first */
1151 sh_vou_reg_a_write(vou_dev
, VOURCR
, 4);
1152 /* Default - fixed HSYNC length, can be made configurable is required */
1153 sh_vou_reg_ab_write(vou_dev
, VOUMSR
, 0x800000);
1158 /* File operations */
1159 static int sh_vou_open(struct file
*file
)
1161 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
1162 struct sh_vou_file
*vou_file
= kzalloc(sizeof(struct sh_vou_file
),
1168 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
1170 file
->private_data
= vou_file
;
1172 if (mutex_lock_interruptible(&vou_dev
->fop_lock
))
1173 return -ERESTARTSYS
;
1174 if (atomic_inc_return(&vou_dev
->use_count
) == 1) {
1177 vou_dev
->status
= SH_VOU_INITIALISING
;
1178 pm_runtime_get_sync(vou_dev
->v4l2_dev
.dev
);
1179 ret
= sh_vou_hw_init(vou_dev
);
1181 atomic_dec(&vou_dev
->use_count
);
1182 pm_runtime_put(vou_dev
->v4l2_dev
.dev
);
1183 vou_dev
->status
= SH_VOU_IDLE
;
1184 mutex_unlock(&vou_dev
->fop_lock
);
1189 videobuf_queue_dma_contig_init(&vou_file
->vbq
, &sh_vou_video_qops
,
1190 vou_dev
->v4l2_dev
.dev
, &vou_dev
->lock
,
1191 V4L2_BUF_TYPE_VIDEO_OUTPUT
,
1193 sizeof(struct videobuf_buffer
),
1194 vou_dev
->vdev
, &vou_dev
->fop_lock
);
1195 mutex_unlock(&vou_dev
->fop_lock
);
1200 static int sh_vou_release(struct file
*file
)
1202 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
1203 struct sh_vou_file
*vou_file
= file
->private_data
;
1205 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
1207 if (!atomic_dec_return(&vou_dev
->use_count
)) {
1208 mutex_lock(&vou_dev
->fop_lock
);
1210 vou_dev
->status
= SH_VOU_IDLE
;
1211 sh_vou_reg_a_set(vou_dev
, VOUER
, 0, 0x101);
1212 pm_runtime_put(vou_dev
->v4l2_dev
.dev
);
1213 mutex_unlock(&vou_dev
->fop_lock
);
1216 file
->private_data
= NULL
;
1222 static int sh_vou_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1224 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
1225 struct sh_vou_file
*vou_file
= file
->private_data
;
1228 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
1230 if (mutex_lock_interruptible(&vou_dev
->fop_lock
))
1231 return -ERESTARTSYS
;
1232 ret
= videobuf_mmap_mapper(&vou_file
->vbq
, vma
);
1233 mutex_unlock(&vou_dev
->fop_lock
);
1237 static unsigned int sh_vou_poll(struct file
*file
, poll_table
*wait
)
1239 struct sh_vou_device
*vou_dev
= video_drvdata(file
);
1240 struct sh_vou_file
*vou_file
= file
->private_data
;
1243 dev_dbg(vou_dev
->v4l2_dev
.dev
, "%s()\n", __func__
);
1245 mutex_lock(&vou_dev
->fop_lock
);
1246 res
= videobuf_poll_stream(file
, &vou_file
->vbq
, wait
);
1247 mutex_unlock(&vou_dev
->fop_lock
);
1251 /* sh_vou display ioctl operations */
1252 static const struct v4l2_ioctl_ops sh_vou_ioctl_ops
= {
1253 .vidioc_querycap
= sh_vou_querycap
,
1254 .vidioc_enum_fmt_vid_out
= sh_vou_enum_fmt_vid_out
,
1255 .vidioc_g_fmt_vid_out
= sh_vou_g_fmt_vid_out
,
1256 .vidioc_s_fmt_vid_out
= sh_vou_s_fmt_vid_out
,
1257 .vidioc_try_fmt_vid_out
= sh_vou_try_fmt_vid_out
,
1258 .vidioc_reqbufs
= sh_vou_reqbufs
,
1259 .vidioc_querybuf
= sh_vou_querybuf
,
1260 .vidioc_qbuf
= sh_vou_qbuf
,
1261 .vidioc_dqbuf
= sh_vou_dqbuf
,
1262 .vidioc_streamon
= sh_vou_streamon
,
1263 .vidioc_streamoff
= sh_vou_streamoff
,
1264 .vidioc_s_std
= sh_vou_s_std
,
1265 .vidioc_g_std
= sh_vou_g_std
,
1266 .vidioc_cropcap
= sh_vou_cropcap
,
1267 .vidioc_g_crop
= sh_vou_g_crop
,
1268 .vidioc_s_crop
= sh_vou_s_crop
,
1271 static const struct v4l2_file_operations sh_vou_fops
= {
1272 .owner
= THIS_MODULE
,
1273 .open
= sh_vou_open
,
1274 .release
= sh_vou_release
,
1275 .unlocked_ioctl
= video_ioctl2
,
1276 .mmap
= sh_vou_mmap
,
1277 .poll
= sh_vou_poll
,
1280 static const struct video_device sh_vou_video_template
= {
1282 .fops
= &sh_vou_fops
,
1283 .ioctl_ops
= &sh_vou_ioctl_ops
,
1284 .tvnorms
= V4L2_STD_525_60
, /* PAL only supported in 8-bit non-bt656 mode */
1285 .vfl_dir
= VFL_DIR_TX
,
1288 static int sh_vou_probe(struct platform_device
*pdev
)
1290 struct sh_vou_pdata
*vou_pdata
= pdev
->dev
.platform_data
;
1291 struct v4l2_rect
*rect
;
1292 struct v4l2_pix_format
*pix
;
1293 struct i2c_adapter
*i2c_adap
;
1294 struct video_device
*vdev
;
1295 struct sh_vou_device
*vou_dev
;
1296 struct resource
*reg_res
, *region
;
1297 struct v4l2_subdev
*subdev
;
1300 reg_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1301 irq
= platform_get_irq(pdev
, 0);
1303 if (!vou_pdata
|| !reg_res
|| irq
<= 0) {
1304 dev_err(&pdev
->dev
, "Insufficient VOU platform information.\n");
1308 vou_dev
= kzalloc(sizeof(*vou_dev
), GFP_KERNEL
);
1312 INIT_LIST_HEAD(&vou_dev
->queue
);
1313 spin_lock_init(&vou_dev
->lock
);
1314 mutex_init(&vou_dev
->fop_lock
);
1315 atomic_set(&vou_dev
->use_count
, 0);
1316 vou_dev
->pdata
= vou_pdata
;
1317 vou_dev
->status
= SH_VOU_IDLE
;
1319 rect
= &vou_dev
->rect
;
1320 pix
= &vou_dev
->pix
;
1322 /* Fill in defaults */
1323 vou_dev
->std
= V4L2_STD_NTSC_M
;
1326 rect
->width
= VOU_MAX_IMAGE_WIDTH
;
1328 pix
->width
= VOU_MAX_IMAGE_WIDTH
;
1330 pix
->pixelformat
= V4L2_PIX_FMT_YVYU
;
1331 pix
->field
= V4L2_FIELD_NONE
;
1332 pix
->bytesperline
= VOU_MAX_IMAGE_WIDTH
* 2;
1333 pix
->sizeimage
= VOU_MAX_IMAGE_WIDTH
* 2 * 480;
1334 pix
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1336 region
= request_mem_region(reg_res
->start
, resource_size(reg_res
),
1339 dev_err(&pdev
->dev
, "VOU region already claimed\n");
1344 vou_dev
->base
= ioremap(reg_res
->start
, resource_size(reg_res
));
1345 if (!vou_dev
->base
) {
1350 ret
= request_irq(irq
, sh_vou_isr
, 0, "vou", vou_dev
);
1354 ret
= v4l2_device_register(&pdev
->dev
, &vou_dev
->v4l2_dev
);
1356 dev_err(&pdev
->dev
, "Error registering v4l2 device\n");
1360 /* Allocate memory for video device */
1361 vdev
= video_device_alloc();
1367 *vdev
= sh_vou_video_template
;
1368 if (vou_pdata
->bus_fmt
== SH_VOU_BUS_8BIT
)
1369 vdev
->tvnorms
|= V4L2_STD_PAL
;
1370 vdev
->v4l2_dev
= &vou_dev
->v4l2_dev
;
1371 vdev
->release
= video_device_release
;
1372 vdev
->lock
= &vou_dev
->fop_lock
;
1374 vou_dev
->vdev
= vdev
;
1375 video_set_drvdata(vdev
, vou_dev
);
1377 pm_runtime_enable(&pdev
->dev
);
1378 pm_runtime_resume(&pdev
->dev
);
1380 i2c_adap
= i2c_get_adapter(vou_pdata
->i2c_adap
);
1386 ret
= sh_vou_hw_init(vou_dev
);
1390 subdev
= v4l2_i2c_new_subdev_board(&vou_dev
->v4l2_dev
, i2c_adap
,
1391 vou_pdata
->board_info
, NULL
);
1397 ret
= video_register_device(vdev
, VFL_TYPE_GRABBER
, -1);
1406 i2c_put_adapter(i2c_adap
);
1408 video_device_release(vdev
);
1409 pm_runtime_disable(&pdev
->dev
);
1411 v4l2_device_unregister(&vou_dev
->v4l2_dev
);
1413 free_irq(irq
, vou_dev
);
1415 iounmap(vou_dev
->base
);
1417 release_mem_region(reg_res
->start
, resource_size(reg_res
));
1423 static int sh_vou_remove(struct platform_device
*pdev
)
1425 int irq
= platform_get_irq(pdev
, 0);
1426 struct v4l2_device
*v4l2_dev
= platform_get_drvdata(pdev
);
1427 struct sh_vou_device
*vou_dev
= container_of(v4l2_dev
,
1428 struct sh_vou_device
, v4l2_dev
);
1429 struct v4l2_subdev
*sd
= list_entry(v4l2_dev
->subdevs
.next
,
1430 struct v4l2_subdev
, list
);
1431 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1432 struct resource
*reg_res
;
1435 free_irq(irq
, vou_dev
);
1436 pm_runtime_disable(&pdev
->dev
);
1437 video_unregister_device(vou_dev
->vdev
);
1438 i2c_put_adapter(client
->adapter
);
1439 v4l2_device_unregister(&vou_dev
->v4l2_dev
);
1440 iounmap(vou_dev
->base
);
1441 reg_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1443 release_mem_region(reg_res
->start
, resource_size(reg_res
));
1448 static struct platform_driver __refdata sh_vou
= {
1449 .remove
= sh_vou_remove
,
1452 .owner
= THIS_MODULE
,
1456 module_platform_driver_probe(sh_vou
, sh_vou_probe
);
1458 MODULE_DESCRIPTION("SuperH VOU driver");
1459 MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");
1460 MODULE_LICENSE("GPL v2");
1461 MODULE_VERSION("0.1.0");
1462 MODULE_ALIAS("platform:sh-vou");