blob: c839003953a74133be9a559bbc789f1119da36b7 [file] [log] [blame]
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001/*
2 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
3 *
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.
7 *
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.
12 */
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>
23#include <linux/mm.h>
24#include <linux/mutex.h>
25#include <linux/videodev2.h>
26#include <linux/slab.h>
27
28#include <asm/pgtable.h>
29#include <mach/cputype.h>
30
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"
41
42#define VPBE_DISPLAY_DRIVER "vpbe-v4l2"
43
44static int debug;
45
Manjunath Hadlia2c25b42011-06-17 04:01:31 -030046#define VPBE_DEFAULT_NUM_BUFS 3
47
48module_param(debug, int, 0644);
49
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -030050static int vpbe_set_osd_display_params(struct vpbe_display *disp_dev,
51 struct vpbe_layer *layer);
52
Manjunath Hadlia2c25b42011-06-17 04:01:31 -030053static int venc_is_second_field(struct vpbe_display *disp_dev)
54{
55 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
56 int ret;
57 int val;
58
59 ret = v4l2_subdev_call(vpbe_dev->venc,
60 core,
61 ioctl,
62 VENC_GET_FLD,
63 &val);
64 if (ret < 0) {
65 v4l2_err(&vpbe_dev->v4l2_dev,
66 "Error in getting Field ID 0\n");
67 }
68 return val;
69}
70
71static void vpbe_isr_even_field(struct vpbe_display *disp_obj,
72 struct vpbe_layer *layer)
73{
Manjunath Hadlia2c25b42011-06-17 04:01:31 -030074 if (layer->cur_frm == layer->next_frm)
75 return;
Lad, Prabhakare9763992015-05-26 11:20:27 -030076
Junghak Sungd6dd6452015-11-03 08:16:37 -020077 layer->cur_frm->vb.vb2_buf.timestamp = ktime_get_ns();
Junghak Sung2d700712015-09-22 10:30:30 -030078 vb2_buffer_done(&layer->cur_frm->vb.vb2_buf, VB2_BUF_STATE_DONE);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -030079 /* Make cur_frm pointing to next_frm */
80 layer->cur_frm = layer->next_frm;
81}
82
83static void vpbe_isr_odd_field(struct vpbe_display *disp_obj,
84 struct vpbe_layer *layer)
85{
86 struct osd_state *osd_device = disp_obj->osd_device;
87 unsigned long addr;
88
89 spin_lock(&disp_obj->dma_queue_lock);
90 if (list_empty(&layer->dma_queue) ||
91 (layer->cur_frm != layer->next_frm)) {
92 spin_unlock(&disp_obj->dma_queue_lock);
93 return;
94 }
95 /*
96 * one field is displayed configure
97 * the next frame if it is available
98 * otherwise hold on current frame
99 * Get next from the buffer queue
100 */
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300101 layer->next_frm = list_entry(layer->dma_queue.next,
102 struct vpbe_disp_buffer, list);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300103 /* Remove that from the buffer queue */
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300104 list_del(&layer->next_frm->list);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300105 spin_unlock(&disp_obj->dma_queue_lock);
106 /* Mark state of the frame to active */
Junghak Sung2d700712015-09-22 10:30:30 -0300107 layer->next_frm->vb.vb2_buf.state = VB2_BUF_STATE_ACTIVE;
108 addr = vb2_dma_contig_plane_dma_addr(&layer->next_frm->vb.vb2_buf, 0);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300109 osd_device->ops.start_layer(osd_device,
110 layer->layer_info.id,
111 addr,
112 disp_obj->cbcr_ofst);
113}
114
115/* interrupt service routine */
116static irqreturn_t venc_isr(int irq, void *arg)
117{
118 struct vpbe_display *disp_dev = (struct vpbe_display *)arg;
119 struct vpbe_layer *layer;
120 static unsigned last_event;
121 unsigned event = 0;
122 int fid;
123 int i;
124
125 if ((NULL == arg) || (NULL == disp_dev->dev[0]))
126 return IRQ_HANDLED;
127
128 if (venc_is_second_field(disp_dev))
129 event |= VENC_SECOND_FIELD;
130 else
131 event |= VENC_FIRST_FIELD;
132
133 if (event == (last_event & ~VENC_END_OF_FRAME)) {
134 /*
135 * If the display is non-interlaced, then we need to flag the
136 * end-of-frame event at every interrupt regardless of the
137 * value of the FIDST bit. We can conclude that the display is
138 * non-interlaced if the value of the FIDST bit is unchanged
139 * from the previous interrupt.
140 */
141 event |= VENC_END_OF_FRAME;
142 } else if (event == VENC_SECOND_FIELD) {
143 /* end-of-frame for interlaced display */
144 event |= VENC_END_OF_FRAME;
145 }
146 last_event = event;
147
148 for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) {
149 layer = disp_dev->dev[i];
Prabhakar Lad1b73f032014-10-12 17:40:42 -0300150
151 if (!vb2_start_streaming_called(&layer->buffer_queue))
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300152 continue;
153
154 if (layer->layer_first_int) {
155 layer->layer_first_int = 0;
156 continue;
157 }
158 /* Check the field format */
159 if ((V4L2_FIELD_NONE == layer->pix_fmt.field) &&
160 (event & VENC_END_OF_FRAME)) {
161 /* Progressive mode */
162
163 vpbe_isr_even_field(disp_dev, layer);
164 vpbe_isr_odd_field(disp_dev, layer);
165 } else {
166 /* Interlaced mode */
167
168 layer->field_id ^= 1;
169 if (event & VENC_FIRST_FIELD)
170 fid = 0;
171 else
172 fid = 1;
173
174 /*
175 * If field id does not match with store
176 * field id
177 */
178 if (fid != layer->field_id) {
179 /* Make them in sync */
180 layer->field_id = fid;
181 continue;
182 }
183 /*
184 * device field id and local field id are
185 * in sync. If this is even field
186 */
187 if (0 == fid)
188 vpbe_isr_even_field(disp_dev, layer);
189 else /* odd field */
190 vpbe_isr_odd_field(disp_dev, layer);
191 }
192 }
193
194 return IRQ_HANDLED;
195}
196
197/*
198 * vpbe_buffer_prepare()
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300199 * This is the callback function called from vb2_qbuf() function
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300200 * the buffer is prepared and user space virtual address is converted into
201 * physical address
202 */
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300203static int vpbe_buffer_prepare(struct vb2_buffer *vb)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300204{
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300205 struct vb2_queue *q = vb->vb2_queue;
Prabhakar Lade71a1802014-10-12 17:40:31 -0300206 struct vpbe_layer *layer = vb2_get_drv_priv(q);
207 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300208 unsigned long addr;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300209
210 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
211 "vpbe_buffer_prepare\n");
212
Prabhakar Lad50d94812014-10-12 17:40:35 -0300213 vb2_set_plane_payload(vb, 0, layer->pix_fmt.sizeimage);
214 if (vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
215 return -EINVAL;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300216
Prabhakar Lad50d94812014-10-12 17:40:35 -0300217 addr = vb2_dma_contig_plane_dma_addr(vb, 0);
218 if (!IS_ALIGNED(addr, 8)) {
219 v4l2_err(&vpbe_dev->v4l2_dev,
220 "buffer_prepare:offset is not aligned to 32 bytes\n");
221 return -EINVAL;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300222 }
223 return 0;
224}
225
226/*
227 * vpbe_buffer_setup()
228 * This function allocates memory for the buffers
229 */
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300230static int
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200231vpbe_buffer_queue_setup(struct vb2_queue *vq,
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300232 unsigned int *nbuffers, unsigned int *nplanes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300233 unsigned int sizes[], struct device *alloc_devs[])
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300234
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300235{
236 /* Get the file handle object and layer object */
Prabhakar Lade71a1802014-10-12 17:40:31 -0300237 struct vpbe_layer *layer = vb2_get_drv_priv(vq);
238 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300239
240 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "vpbe_buffer_setup\n");
241
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300242 /* Store number of buffers allocated in numbuffer member */
Prabhakar Lad7041bc92014-10-22 18:42:01 -0300243 if (vq->num_buffers + *nbuffers < VPBE_DEFAULT_NUM_BUFS)
244 *nbuffers = VPBE_DEFAULT_NUM_BUFS - vq->num_buffers;
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200245
246 if (*nplanes)
247 return sizes[0] < layer->pix_fmt.sizeimage ? -EINVAL : 0;
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300248
249 *nplanes = 1;
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200250 sizes[0] = layer->pix_fmt.sizeimage;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300251
252 return 0;
253}
254
255/*
256 * vpbe_buffer_queue()
257 * This function adds the buffer to DMA queue
258 */
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300259static void vpbe_buffer_queue(struct vb2_buffer *vb)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300260{
Junghak Sung2d700712015-09-22 10:30:30 -0300261 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300262 /* Get the file handle object and layer object */
Junghak Sung2d700712015-09-22 10:30:30 -0300263 struct vpbe_disp_buffer *buf = container_of(vbuf,
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300264 struct vpbe_disp_buffer, vb);
Prabhakar Lade71a1802014-10-12 17:40:31 -0300265 struct vpbe_layer *layer = vb2_get_drv_priv(vb->vb2_queue);
266 struct vpbe_display *disp = layer->disp_dev;
267 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300268 unsigned long flags;
269
270 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
271 "vpbe_buffer_queue\n");
272
273 /* add the buffer to the DMA queue */
274 spin_lock_irqsave(&disp->dma_queue_lock, flags);
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300275 list_add_tail(&buf->list, &layer->dma_queue);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300276 spin_unlock_irqrestore(&disp->dma_queue_lock, flags);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300277}
278
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300279static int vpbe_start_streaming(struct vb2_queue *vq, unsigned int count)
280{
Prabhakar Lade71a1802014-10-12 17:40:31 -0300281 struct vpbe_layer *layer = vb2_get_drv_priv(vq);
Prabhakar Lad41cf47b2014-10-12 17:40:38 -0300282 struct osd_state *osd_device = layer->disp_dev->osd_device;
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300283 int ret;
284
Prabhakar Lad41cf47b2014-10-12 17:40:38 -0300285 osd_device->ops.disable_layer(osd_device, layer->layer_info.id);
286
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300287 /* Get the next frame from the buffer queue */
288 layer->next_frm = layer->cur_frm = list_entry(layer->dma_queue.next,
289 struct vpbe_disp_buffer, list);
290 /* Remove buffer from the buffer queue */
291 list_del(&layer->cur_frm->list);
292 /* Mark state of the current frame to active */
Junghak Sung2d700712015-09-22 10:30:30 -0300293 layer->cur_frm->vb.vb2_buf.state = VB2_BUF_STATE_ACTIVE;
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300294 /* Initialize field_id and started member */
295 layer->field_id = 0;
296
297 /* Set parameters in OSD and VENC */
Prabhakar Lade71a1802014-10-12 17:40:31 -0300298 ret = vpbe_set_osd_display_params(layer->disp_dev, layer);
Lad, Prabhakarb1c090d2014-04-14 11:52:31 -0300299 if (ret < 0) {
300 struct vpbe_disp_buffer *buf, *tmp;
301
Junghak Sung2d700712015-09-22 10:30:30 -0300302 vb2_buffer_done(&layer->cur_frm->vb.vb2_buf,
303 VB2_BUF_STATE_QUEUED);
Lad, Prabhakarb1c090d2014-04-14 11:52:31 -0300304 list_for_each_entry_safe(buf, tmp, &layer->dma_queue, list) {
305 list_del(&buf->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300306 vb2_buffer_done(&buf->vb.vb2_buf,
307 VB2_BUF_STATE_QUEUED);
Lad, Prabhakarb1c090d2014-04-14 11:52:31 -0300308 }
309
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300310 return ret;
Lad, Prabhakarb1c090d2014-04-14 11:52:31 -0300311 }
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300312
313 /*
314 * if request format is yuv420 semiplanar, need to
315 * enable both video windows
316 */
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300317 layer->layer_first_int = 1;
318
319 return ret;
320}
321
Hans Verkuile37559b2014-04-17 02:47:21 -0300322static void vpbe_stop_streaming(struct vb2_queue *vq)
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300323{
Prabhakar Lade71a1802014-10-12 17:40:31 -0300324 struct vpbe_layer *layer = vb2_get_drv_priv(vq);
Prabhakar Lad41cf47b2014-10-12 17:40:38 -0300325 struct osd_state *osd_device = layer->disp_dev->osd_device;
Prabhakar Lade71a1802014-10-12 17:40:31 -0300326 struct vpbe_display *disp = layer->disp_dev;
Lad, Prabhakarb699f092014-03-22 08:03:09 -0300327 unsigned long flags;
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300328
329 if (!vb2_is_streaming(vq))
Hans Verkuile37559b2014-04-17 02:47:21 -0300330 return;
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300331
Prabhakar Lad41cf47b2014-10-12 17:40:38 -0300332 osd_device->ops.disable_layer(osd_device, layer->layer_info.id);
333
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300334 /* release all active buffers */
Lad, Prabhakarb699f092014-03-22 08:03:09 -0300335 spin_lock_irqsave(&disp->dma_queue_lock, flags);
336 if (layer->cur_frm == layer->next_frm) {
Junghak Sung2d700712015-09-22 10:30:30 -0300337 vb2_buffer_done(&layer->cur_frm->vb.vb2_buf,
338 VB2_BUF_STATE_ERROR);
Lad, Prabhakarb699f092014-03-22 08:03:09 -0300339 } else {
340 if (layer->cur_frm != NULL)
Junghak Sung2d700712015-09-22 10:30:30 -0300341 vb2_buffer_done(&layer->cur_frm->vb.vb2_buf,
Lad, Prabhakarb699f092014-03-22 08:03:09 -0300342 VB2_BUF_STATE_ERROR);
343 if (layer->next_frm != NULL)
Junghak Sung2d700712015-09-22 10:30:30 -0300344 vb2_buffer_done(&layer->next_frm->vb.vb2_buf,
Lad, Prabhakarb699f092014-03-22 08:03:09 -0300345 VB2_BUF_STATE_ERROR);
346 }
347
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300348 while (!list_empty(&layer->dma_queue)) {
349 layer->next_frm = list_entry(layer->dma_queue.next,
350 struct vpbe_disp_buffer, list);
351 list_del(&layer->next_frm->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300352 vb2_buffer_done(&layer->next_frm->vb.vb2_buf,
353 VB2_BUF_STATE_ERROR);
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300354 }
Lad, Prabhakarb699f092014-03-22 08:03:09 -0300355 spin_unlock_irqrestore(&disp->dma_queue_lock, flags);
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300356}
357
358static struct vb2_ops video_qops = {
359 .queue_setup = vpbe_buffer_queue_setup,
Prabhakar Lad488735b2014-10-12 17:40:33 -0300360 .wait_prepare = vb2_ops_wait_prepare,
361 .wait_finish = vb2_ops_wait_finish,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300362 .buf_prepare = vpbe_buffer_prepare,
Lad, Prabhakar13fc23d32012-10-22 09:27:13 -0300363 .start_streaming = vpbe_start_streaming,
364 .stop_streaming = vpbe_stop_streaming,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300365 .buf_queue = vpbe_buffer_queue,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300366};
367
368static
369struct vpbe_layer*
370_vpbe_display_get_other_win_layer(struct vpbe_display *disp_dev,
371 struct vpbe_layer *layer)
372{
373 enum vpbe_display_device_id thiswin, otherwin;
374 thiswin = layer->device_id;
375
376 otherwin = (thiswin == VPBE_DISPLAY_DEVICE_0) ?
377 VPBE_DISPLAY_DEVICE_1 : VPBE_DISPLAY_DEVICE_0;
378 return disp_dev->dev[otherwin];
379}
380
381static int vpbe_set_osd_display_params(struct vpbe_display *disp_dev,
382 struct vpbe_layer *layer)
383{
384 struct osd_layer_config *cfg = &layer->layer_info.config;
385 struct osd_state *osd_device = disp_dev->osd_device;
386 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
387 unsigned long addr;
388 int ret;
389
Junghak Sung2d700712015-09-22 10:30:30 -0300390 addr = vb2_dma_contig_plane_dma_addr(&layer->cur_frm->vb.vb2_buf, 0);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300391 /* Set address in the display registers */
392 osd_device->ops.start_layer(osd_device,
393 layer->layer_info.id,
394 addr,
395 disp_dev->cbcr_ofst);
396
397 ret = osd_device->ops.enable_layer(osd_device,
398 layer->layer_info.id, 0);
399 if (ret < 0) {
400 v4l2_err(&vpbe_dev->v4l2_dev,
401 "Error in enabling osd window layer 0\n");
402 return -1;
403 }
404
405 /* Enable the window */
406 layer->layer_info.enable = 1;
407 if (cfg->pixfmt == PIXFMT_NV12) {
408 struct vpbe_layer *otherlayer =
409 _vpbe_display_get_other_win_layer(disp_dev, layer);
410
411 ret = osd_device->ops.enable_layer(osd_device,
412 otherlayer->layer_info.id, 1);
413 if (ret < 0) {
414 v4l2_err(&vpbe_dev->v4l2_dev,
415 "Error in enabling osd window layer 1\n");
416 return -1;
417 }
418 otherlayer->layer_info.enable = 1;
419 }
420 return 0;
421}
422
423static void
424vpbe_disp_calculate_scale_factor(struct vpbe_display *disp_dev,
425 struct vpbe_layer *layer,
426 int expected_xsize, int expected_ysize)
427{
428 struct display_layer_info *layer_info = &layer->layer_info;
429 struct v4l2_pix_format *pixfmt = &layer->pix_fmt;
430 struct osd_layer_config *cfg = &layer->layer_info.config;
431 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
432 int calculated_xsize;
433 int h_exp = 0;
434 int v_exp = 0;
435 int h_scale;
436 int v_scale;
437
Hans Verkuil36864082012-10-01 11:39:46 -0300438 v4l2_std_id standard_id = vpbe_dev->current_timings.std_id;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300439
440 /*
441 * Application initially set the image format. Current display
442 * size is obtained from the vpbe display controller. expected_xsize
Hans Verkuil516aca32016-07-03 07:53:31 -0300443 * and expected_ysize are set through S_SELECTION ioctl. Based on this,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300444 * driver will calculate the scale factors for vertical and
445 * horizontal direction so that the image is displayed scaled
446 * and expanded. Application uses expansion to display the image
447 * in a square pixel. Otherwise it is displayed using displays
448 * pixel aspect ratio.It is expected that application chooses
449 * the crop coordinates for cropped or scaled display. if crop
450 * size is less than the image size, it is displayed cropped or
451 * it is displayed scaled and/or expanded.
452 *
453 * to begin with, set the crop window same as expected. Later we
454 * will override with scaled window size
455 */
456
457 cfg->xsize = pixfmt->width;
458 cfg->ysize = pixfmt->height;
459 layer_info->h_zoom = ZOOM_X1; /* no horizontal zoom */
460 layer_info->v_zoom = ZOOM_X1; /* no horizontal zoom */
461 layer_info->h_exp = H_EXP_OFF; /* no horizontal zoom */
462 layer_info->v_exp = V_EXP_OFF; /* no horizontal zoom */
463
464 if (pixfmt->width < expected_xsize) {
465 h_scale = vpbe_dev->current_timings.xres / pixfmt->width;
466 if (h_scale < 2)
467 h_scale = 1;
468 else if (h_scale >= 4)
469 h_scale = 4;
470 else
471 h_scale = 2;
472 cfg->xsize *= h_scale;
473 if (cfg->xsize < expected_xsize) {
474 if ((standard_id & V4L2_STD_525_60) ||
475 (standard_id & V4L2_STD_625_50)) {
476 calculated_xsize = (cfg->xsize *
477 VPBE_DISPLAY_H_EXP_RATIO_N) /
478 VPBE_DISPLAY_H_EXP_RATIO_D;
479 if (calculated_xsize <= expected_xsize) {
480 h_exp = 1;
481 cfg->xsize = calculated_xsize;
482 }
483 }
484 }
485 if (h_scale == 2)
486 layer_info->h_zoom = ZOOM_X2;
487 else if (h_scale == 4)
488 layer_info->h_zoom = ZOOM_X4;
489 if (h_exp)
490 layer_info->h_exp = H_EXP_9_OVER_8;
491 } else {
492 /* no scaling, only cropping. Set display area to crop area */
493 cfg->xsize = expected_xsize;
494 }
495
496 if (pixfmt->height < expected_ysize) {
497 v_scale = expected_ysize / pixfmt->height;
498 if (v_scale < 2)
499 v_scale = 1;
500 else if (v_scale >= 4)
501 v_scale = 4;
502 else
503 v_scale = 2;
504 cfg->ysize *= v_scale;
505 if (cfg->ysize < expected_ysize) {
506 if ((standard_id & V4L2_STD_625_50)) {
507 calculated_xsize = (cfg->ysize *
508 VPBE_DISPLAY_V_EXP_RATIO_N) /
509 VPBE_DISPLAY_V_EXP_RATIO_D;
510 if (calculated_xsize <= expected_ysize) {
511 v_exp = 1;
512 cfg->ysize = calculated_xsize;
513 }
514 }
515 }
516 if (v_scale == 2)
517 layer_info->v_zoom = ZOOM_X2;
518 else if (v_scale == 4)
519 layer_info->v_zoom = ZOOM_X4;
520 if (v_exp)
Nathan Chancellor699e5972018-09-15 02:16:15 -0400521 layer_info->v_exp = V_EXP_6_OVER_5;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300522 } else {
523 /* no scaling, only cropping. Set display area to crop area */
524 cfg->ysize = expected_ysize;
525 }
526 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
527 "crop display xsize = %d, ysize = %d\n",
528 cfg->xsize, cfg->ysize);
529}
530
531static void vpbe_disp_adj_position(struct vpbe_display *disp_dev,
532 struct vpbe_layer *layer,
533 int top, int left)
534{
535 struct osd_layer_config *cfg = &layer->layer_info.config;
536 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
537
538 cfg->xpos = min((unsigned int)left,
539 vpbe_dev->current_timings.xres - cfg->xsize);
540 cfg->ypos = min((unsigned int)top,
541 vpbe_dev->current_timings.yres - cfg->ysize);
542
543 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
544 "new xpos = %d, ypos = %d\n",
545 cfg->xpos, cfg->ypos);
546}
547
548static void vpbe_disp_check_window_params(struct vpbe_display *disp_dev,
549 struct v4l2_rect *c)
550{
551 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
552
553 if ((c->width == 0) ||
554 ((c->width + c->left) > vpbe_dev->current_timings.xres))
555 c->width = vpbe_dev->current_timings.xres - c->left;
556
557 if ((c->height == 0) || ((c->height + c->top) >
558 vpbe_dev->current_timings.yres))
559 c->height = vpbe_dev->current_timings.yres - c->top;
560
561 /* window height must be even for interlaced display */
562 if (vpbe_dev->current_timings.interlaced)
563 c->height &= (~0x01);
564
565}
566
567/**
568 * vpbe_try_format()
569 * If user application provides width and height, and have bytesperline set
570 * to zero, driver calculates bytesperline and sizeimage based on hardware
571 * limits.
572 */
573static int vpbe_try_format(struct vpbe_display *disp_dev,
574 struct v4l2_pix_format *pixfmt, int check)
575{
576 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
577 int min_height = 1;
578 int min_width = 32;
579 int max_height;
580 int max_width;
581 int bpp;
582
583 if ((pixfmt->pixelformat != V4L2_PIX_FMT_UYVY) &&
584 (pixfmt->pixelformat != V4L2_PIX_FMT_NV12))
585 /* choose default as V4L2_PIX_FMT_UYVY */
586 pixfmt->pixelformat = V4L2_PIX_FMT_UYVY;
587
588 /* Check the field format */
589 if ((pixfmt->field != V4L2_FIELD_INTERLACED) &&
590 (pixfmt->field != V4L2_FIELD_NONE)) {
591 if (vpbe_dev->current_timings.interlaced)
592 pixfmt->field = V4L2_FIELD_INTERLACED;
593 else
594 pixfmt->field = V4L2_FIELD_NONE;
595 }
596
597 if (pixfmt->field == V4L2_FIELD_INTERLACED)
598 min_height = 2;
599
600 if (pixfmt->pixelformat == V4L2_PIX_FMT_NV12)
601 bpp = 1;
602 else
603 bpp = 2;
604
605 max_width = vpbe_dev->current_timings.xres;
606 max_height = vpbe_dev->current_timings.yres;
607
608 min_width /= bpp;
609
610 if (!pixfmt->width || (pixfmt->width < min_width) ||
611 (pixfmt->width > max_width)) {
612 pixfmt->width = vpbe_dev->current_timings.xres;
613 }
614
615 if (!pixfmt->height || (pixfmt->height < min_height) ||
616 (pixfmt->height > max_height)) {
617 pixfmt->height = vpbe_dev->current_timings.yres;
618 }
619
620 if (pixfmt->bytesperline < (pixfmt->width * bpp))
621 pixfmt->bytesperline = pixfmt->width * bpp;
622
623 /* Make the bytesperline 32 byte aligned */
624 pixfmt->bytesperline = ((pixfmt->width * bpp + 31) & ~31);
625
626 if (pixfmt->pixelformat == V4L2_PIX_FMT_NV12)
627 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height +
628 (pixfmt->bytesperline * pixfmt->height >> 1);
629 else
630 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height;
631
632 return 0;
633}
634
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300635static int vpbe_display_querycap(struct file *file, void *priv,
636 struct v4l2_capability *cap)
637{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300638 struct vpbe_layer *layer = video_drvdata(file);
639 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300640
Lad, Prabhakard0466282012-10-22 09:27:14 -0300641 cap->device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_STREAMING;
642 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
643 snprintf(cap->driver, sizeof(cap->driver), "%s",
644 dev_name(vpbe_dev->pdev));
645 snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s",
646 dev_name(vpbe_dev->pdev));
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300647 strlcpy(cap->card, vpbe_dev->cfg->module_name, sizeof(cap->card));
648
649 return 0;
650}
651
Hans Verkuil516aca32016-07-03 07:53:31 -0300652static int vpbe_display_s_selection(struct file *file, void *priv,
653 struct v4l2_selection *sel)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300654{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300655 struct vpbe_layer *layer = video_drvdata(file);
656 struct vpbe_display *disp_dev = layer->disp_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300657 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
658 struct osd_layer_config *cfg = &layer->layer_info.config;
659 struct osd_state *osd_device = disp_dev->osd_device;
Hans Verkuil516aca32016-07-03 07:53:31 -0300660 struct v4l2_rect rect = sel->r;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300661 int ret;
662
663 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
Hans Verkuil516aca32016-07-03 07:53:31 -0300664 "VIDIOC_S_SELECTION, layer id = %d\n", layer->device_id);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300665
Hans Verkuil516aca32016-07-03 07:53:31 -0300666 if (sel->type != V4L2_BUF_TYPE_VIDEO_OUTPUT ||
667 sel->target != V4L2_SEL_TGT_CROP)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300668 return -EINVAL;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300669
Lad, Prabhakarfabc4e92012-10-03 02:13:28 -0300670 if (rect.top < 0)
671 rect.top = 0;
672 if (rect.left < 0)
673 rect.left = 0;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300674
Lad, Prabhakarfabc4e92012-10-03 02:13:28 -0300675 vpbe_disp_check_window_params(disp_dev, &rect);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300676
677 osd_device->ops.get_layer_config(osd_device,
678 layer->layer_info.id, cfg);
679
680 vpbe_disp_calculate_scale_factor(disp_dev, layer,
Lad, Prabhakarfabc4e92012-10-03 02:13:28 -0300681 rect.width,
682 rect.height);
683 vpbe_disp_adj_position(disp_dev, layer, rect.top,
684 rect.left);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300685 ret = osd_device->ops.set_layer_config(osd_device,
686 layer->layer_info.id, cfg);
687 if (ret < 0) {
688 v4l2_err(&vpbe_dev->v4l2_dev,
689 "Error in set layer config:\n");
690 return -EINVAL;
691 }
692
693 /* apply zooming and h or v expansion */
694 osd_device->ops.set_zoom(osd_device,
695 layer->layer_info.id,
696 layer->layer_info.h_zoom,
697 layer->layer_info.v_zoom);
698 ret = osd_device->ops.set_vid_expansion(osd_device,
699 layer->layer_info.h_exp,
700 layer->layer_info.v_exp);
701 if (ret < 0) {
702 v4l2_err(&vpbe_dev->v4l2_dev,
703 "Error in set vid expansion:\n");
704 return -EINVAL;
705 }
706
707 if ((layer->layer_info.h_zoom != ZOOM_X1) ||
708 (layer->layer_info.v_zoom != ZOOM_X1) ||
709 (layer->layer_info.h_exp != H_EXP_OFF) ||
710 (layer->layer_info.v_exp != V_EXP_OFF))
711 /* Enable expansion filter */
712 osd_device->ops.set_interpolation_filter(osd_device, 1);
713 else
714 osd_device->ops.set_interpolation_filter(osd_device, 0);
715
Hans Verkuil516aca32016-07-03 07:53:31 -0300716 sel->r = rect;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300717 return 0;
718}
719
Hans Verkuil516aca32016-07-03 07:53:31 -0300720static int vpbe_display_g_selection(struct file *file, void *priv,
721 struct v4l2_selection *sel)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300722{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300723 struct vpbe_layer *layer = video_drvdata(file);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300724 struct osd_layer_config *cfg = &layer->layer_info.config;
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300725 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
726 struct osd_state *osd_device = layer->disp_dev->osd_device;
Hans Verkuil516aca32016-07-03 07:53:31 -0300727 struct v4l2_rect *rect = &sel->r;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300728
729 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
Hans Verkuil516aca32016-07-03 07:53:31 -0300730 "VIDIOC_G_SELECTION, layer id = %d\n",
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300731 layer->device_id);
732
Hans Verkuil516aca32016-07-03 07:53:31 -0300733 if (sel->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
734 return -EINVAL;
735
736 switch (sel->target) {
737 case V4L2_SEL_TGT_CROP:
738 osd_device->ops.get_layer_config(osd_device,
739 layer->layer_info.id, cfg);
740 rect->top = cfg->ypos;
741 rect->left = cfg->xpos;
742 rect->width = cfg->xsize;
743 rect->height = cfg->ysize;
744 break;
745 case V4L2_SEL_TGT_CROP_DEFAULT:
746 case V4L2_SEL_TGT_CROP_BOUNDS:
747 rect->left = 0;
748 rect->top = 0;
749 rect->width = vpbe_dev->current_timings.xres;
750 rect->height = vpbe_dev->current_timings.yres;
751 break;
752 default:
Wei Yongjune276f032012-12-02 22:50:47 -0300753 return -EINVAL;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300754 }
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300755
756 return 0;
757}
758
759static int vpbe_display_cropcap(struct file *file, void *priv,
760 struct v4l2_cropcap *cropcap)
761{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300762 struct vpbe_layer *layer = video_drvdata(file);
763 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300764
765 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_CROPCAP ioctl\n");
766
Hans Verkuil516aca32016-07-03 07:53:31 -0300767 if (cropcap->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
768 return -EINVAL;
769
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300770 cropcap->pixelaspect = vpbe_dev->current_timings.aspect;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300771 return 0;
772}
773
774static int vpbe_display_g_fmt(struct file *file, void *priv,
775 struct v4l2_format *fmt)
776{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300777 struct vpbe_layer *layer = video_drvdata(file);
778 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300779
780 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
781 "VIDIOC_G_FMT, layer id = %d\n",
782 layer->device_id);
783
784 /* If buffer type is video output */
785 if (V4L2_BUF_TYPE_VIDEO_OUTPUT != fmt->type) {
786 v4l2_err(&vpbe_dev->v4l2_dev, "invalid type\n");
787 return -EINVAL;
788 }
789 /* Fill in the information about format */
790 fmt->fmt.pix = layer->pix_fmt;
791
792 return 0;
793}
794
795static int vpbe_display_enum_fmt(struct file *file, void *priv,
796 struct v4l2_fmtdesc *fmt)
797{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300798 struct vpbe_layer *layer = video_drvdata(file);
799 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300800 unsigned int index = 0;
801
802 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
803 "VIDIOC_ENUM_FMT, layer id = %d\n",
804 layer->device_id);
805 if (fmt->index > 1) {
806 v4l2_err(&vpbe_dev->v4l2_dev, "Invalid format index\n");
807 return -EINVAL;
808 }
809
810 /* Fill in the information about format */
811 index = fmt->index;
812 memset(fmt, 0, sizeof(*fmt));
813 fmt->index = index;
814 fmt->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
815 if (index == 0) {
816 strcpy(fmt->description, "YUV 4:2:2 - UYVY");
817 fmt->pixelformat = V4L2_PIX_FMT_UYVY;
818 } else {
819 strcpy(fmt->description, "Y/CbCr 4:2:0");
820 fmt->pixelformat = V4L2_PIX_FMT_NV12;
821 }
822
823 return 0;
824}
825
826static int vpbe_display_s_fmt(struct file *file, void *priv,
827 struct v4l2_format *fmt)
828{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300829 struct vpbe_layer *layer = video_drvdata(file);
830 struct vpbe_display *disp_dev = layer->disp_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300831 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
832 struct osd_layer_config *cfg = &layer->layer_info.config;
833 struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
834 struct osd_state *osd_device = disp_dev->osd_device;
835 int ret;
836
837 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
838 "VIDIOC_S_FMT, layer id = %d\n",
839 layer->device_id);
840
Prabhakar Lad1b73f032014-10-12 17:40:42 -0300841 if (vb2_is_busy(&layer->buffer_queue))
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300842 return -EBUSY;
Prabhakar Lad1b73f032014-10-12 17:40:42 -0300843
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300844 if (V4L2_BUF_TYPE_VIDEO_OUTPUT != fmt->type) {
845 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "invalid type\n");
846 return -EINVAL;
847 }
848 /* Check for valid pixel format */
849 ret = vpbe_try_format(disp_dev, pixfmt, 1);
850 if (ret)
851 return ret;
852
853 /* YUV420 is requested, check availability of the
854 other video window */
855
856 layer->pix_fmt = *pixfmt;
Lad, Prabhakarbdea0d22013-05-07 01:07:25 -0300857 if (pixfmt->pixelformat == V4L2_PIX_FMT_NV12) {
858 struct vpbe_layer *otherlayer;
859
860 otherlayer = _vpbe_display_get_other_win_layer(disp_dev, layer);
861 /* if other layer is available, only
862 * claim it, do not configure it
863 */
864 ret = osd_device->ops.request_layer(osd_device,
865 otherlayer->layer_info.id);
866 if (ret < 0) {
867 v4l2_err(&vpbe_dev->v4l2_dev,
868 "Display Manager failed to allocate layer\n");
869 return -EBUSY;
870 }
871 }
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300872
873 /* Get osd layer config */
874 osd_device->ops.get_layer_config(osd_device,
875 layer->layer_info.id, cfg);
876 /* Store the pixel format in the layer object */
877 cfg->xsize = pixfmt->width;
878 cfg->ysize = pixfmt->height;
879 cfg->line_length = pixfmt->bytesperline;
880 cfg->ypos = 0;
881 cfg->xpos = 0;
882 cfg->interlaced = vpbe_dev->current_timings.interlaced;
883
884 if (V4L2_PIX_FMT_UYVY == pixfmt->pixelformat)
Lad, Prabhakar849325e2013-05-03 08:39:25 -0300885 cfg->pixfmt = PIXFMT_YCBCRI;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300886
887 /* Change of the default pixel format for both video windows */
888 if (V4L2_PIX_FMT_NV12 == pixfmt->pixelformat) {
889 struct vpbe_layer *otherlayer;
890 cfg->pixfmt = PIXFMT_NV12;
891 otherlayer = _vpbe_display_get_other_win_layer(disp_dev,
892 layer);
893 otherlayer->layer_info.config.pixfmt = PIXFMT_NV12;
894 }
895
896 /* Set the layer config in the osd window */
897 ret = osd_device->ops.set_layer_config(osd_device,
898 layer->layer_info.id, cfg);
899 if (ret < 0) {
900 v4l2_err(&vpbe_dev->v4l2_dev,
901 "Error in S_FMT params:\n");
902 return -EINVAL;
903 }
904
905 /* Readback and fill the local copy of current pix format */
906 osd_device->ops.get_layer_config(osd_device,
907 layer->layer_info.id, cfg);
908
909 return 0;
910}
911
912static int vpbe_display_try_fmt(struct file *file, void *priv,
913 struct v4l2_format *fmt)
914{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300915 struct vpbe_layer *layer = video_drvdata(file);
916 struct vpbe_display *disp_dev = layer->disp_dev;
917 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300918 struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
919
920 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_TRY_FMT\n");
921
922 if (V4L2_BUF_TYPE_VIDEO_OUTPUT != fmt->type) {
923 v4l2_err(&vpbe_dev->v4l2_dev, "invalid type\n");
924 return -EINVAL;
925 }
926
927 /* Check for valid field format */
928 return vpbe_try_format(disp_dev, pixfmt, 0);
929
930}
931
932/**
933 * vpbe_display_s_std - Set the given standard in the encoder
934 *
935 * Sets the standard if supported by the current encoder. Return the status.
936 * 0 - success & -EINVAL on error
937 */
938static int vpbe_display_s_std(struct file *file, void *priv,
Hans Verkuil314527a2013-03-15 06:10:40 -0300939 v4l2_std_id std_id)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300940{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300941 struct vpbe_layer *layer = video_drvdata(file);
942 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300943 int ret;
944
945 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_S_STD\n");
946
Prabhakar Lad1b73f032014-10-12 17:40:42 -0300947 if (vb2_is_busy(&layer->buffer_queue))
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300948 return -EBUSY;
Prabhakar Lad1b73f032014-10-12 17:40:42 -0300949
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300950 if (NULL != vpbe_dev->ops.s_std) {
951 ret = vpbe_dev->ops.s_std(vpbe_dev, std_id);
952 if (ret) {
953 v4l2_err(&vpbe_dev->v4l2_dev,
954 "Failed to set standard for sub devices\n");
955 return -EINVAL;
956 }
957 } else {
958 return -EINVAL;
959 }
960
961 return 0;
962}
963
964/**
965 * vpbe_display_g_std - Get the standard in the current encoder
966 *
967 * Get the standard in the current encoder. Return the status. 0 - success
968 * -EINVAL on error
969 */
970static int vpbe_display_g_std(struct file *file, void *priv,
971 v4l2_std_id *std_id)
972{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300973 struct vpbe_layer *layer = video_drvdata(file);
974 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300975
976 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_G_STD\n");
977
978 /* Get the standard from the current encoder */
979 if (vpbe_dev->current_timings.timings_type & VPBE_ENC_STD) {
Hans Verkuil36864082012-10-01 11:39:46 -0300980 *std_id = vpbe_dev->current_timings.std_id;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300981 return 0;
982 }
983
984 return -EINVAL;
985}
986
987/**
988 * vpbe_display_enum_output - enumerate outputs
989 *
990 * Enumerates the outputs available at the vpbe display
991 * returns the status, -EINVAL if end of output list
992 */
993static int vpbe_display_enum_output(struct file *file, void *priv,
994 struct v4l2_output *output)
995{
Prabhakar Lad4bb12312014-10-12 17:40:37 -0300996 struct vpbe_layer *layer = video_drvdata(file);
997 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -0300998 int ret;
999
1000 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_ENUM_OUTPUT\n");
1001
1002 /* Enumerate outputs */
1003
1004 if (NULL == vpbe_dev->ops.enum_outputs)
1005 return -EINVAL;
1006
1007 ret = vpbe_dev->ops.enum_outputs(vpbe_dev, output);
1008 if (ret) {
1009 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
1010 "Failed to enumerate outputs\n");
1011 return -EINVAL;
1012 }
1013
1014 return 0;
1015}
1016
1017/**
1018 * vpbe_display_s_output - Set output to
1019 * the output specified by the index
1020 */
1021static int vpbe_display_s_output(struct file *file, void *priv,
1022 unsigned int i)
1023{
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001024 struct vpbe_layer *layer = video_drvdata(file);
1025 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001026 int ret;
1027
1028 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_S_OUTPUT\n");
Prabhakar Lad1b73f032014-10-12 17:40:42 -03001029
1030 if (vb2_is_busy(&layer->buffer_queue))
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001031 return -EBUSY;
Prabhakar Lad1b73f032014-10-12 17:40:42 -03001032
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001033 if (NULL == vpbe_dev->ops.set_output)
1034 return -EINVAL;
1035
1036 ret = vpbe_dev->ops.set_output(vpbe_dev, i);
1037 if (ret) {
1038 v4l2_err(&vpbe_dev->v4l2_dev,
1039 "Failed to set output for sub devices\n");
1040 return -EINVAL;
1041 }
1042
1043 return 0;
1044}
1045
1046/**
1047 * vpbe_display_g_output - Get output from subdevice
1048 * for a given by the index
1049 */
1050static int vpbe_display_g_output(struct file *file, void *priv,
1051 unsigned int *i)
1052{
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001053 struct vpbe_layer *layer = video_drvdata(file);
1054 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001055
1056 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_G_OUTPUT\n");
1057 /* Get the standard from the current encoder */
1058 *i = vpbe_dev->current_out_index;
1059
1060 return 0;
1061}
1062
1063/**
Hans Verkuil36864082012-10-01 11:39:46 -03001064 * vpbe_display_enum_dv_timings - Enumerate the dv timings
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001065 *
Hans Verkuil36864082012-10-01 11:39:46 -03001066 * enum the timings in the current encoder. Return the status. 0 - success
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001067 * -EINVAL on error
1068 */
1069static int
Hans Verkuil36864082012-10-01 11:39:46 -03001070vpbe_display_enum_dv_timings(struct file *file, void *priv,
1071 struct v4l2_enum_dv_timings *timings)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001072{
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001073 struct vpbe_layer *layer = video_drvdata(file);
1074 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001075 int ret;
1076
Hans Verkuil36864082012-10-01 11:39:46 -03001077 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_ENUM_DV_TIMINGS\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001078
1079 /* Enumerate outputs */
Hans Verkuil36864082012-10-01 11:39:46 -03001080 if (NULL == vpbe_dev->ops.enum_dv_timings)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001081 return -EINVAL;
1082
Hans Verkuil36864082012-10-01 11:39:46 -03001083 ret = vpbe_dev->ops.enum_dv_timings(vpbe_dev, timings);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001084 if (ret) {
1085 v4l2_err(&vpbe_dev->v4l2_dev,
Hans Verkuil36864082012-10-01 11:39:46 -03001086 "Failed to enumerate dv timings info\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001087 return -EINVAL;
1088 }
1089
1090 return 0;
1091}
1092
1093/**
Hans Verkuil36864082012-10-01 11:39:46 -03001094 * vpbe_display_s_dv_timings - Set the dv timings
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001095 *
Hans Verkuil36864082012-10-01 11:39:46 -03001096 * Set the timings in the current encoder. Return the status. 0 - success
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001097 * -EINVAL on error
1098 */
1099static int
Hans Verkuil36864082012-10-01 11:39:46 -03001100vpbe_display_s_dv_timings(struct file *file, void *priv,
1101 struct v4l2_dv_timings *timings)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001102{
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001103 struct vpbe_layer *layer = video_drvdata(file);
1104 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001105 int ret;
1106
Hans Verkuil36864082012-10-01 11:39:46 -03001107 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_S_DV_TIMINGS\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001108
Prabhakar Lad1b73f032014-10-12 17:40:42 -03001109 if (vb2_is_busy(&layer->buffer_queue))
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001110 return -EBUSY;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001111
1112 /* Set the given standard in the encoder */
Hans Verkuil36864082012-10-01 11:39:46 -03001113 if (!vpbe_dev->ops.s_dv_timings)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001114 return -EINVAL;
1115
Hans Verkuil36864082012-10-01 11:39:46 -03001116 ret = vpbe_dev->ops.s_dv_timings(vpbe_dev, timings);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001117 if (ret) {
1118 v4l2_err(&vpbe_dev->v4l2_dev,
Hans Verkuil36864082012-10-01 11:39:46 -03001119 "Failed to set the dv timings info\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001120 return -EINVAL;
1121 }
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001122
1123 return 0;
1124}
1125
1126/**
Hans Verkuil36864082012-10-01 11:39:46 -03001127 * vpbe_display_g_dv_timings - Set the dv timings
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001128 *
Hans Verkuil36864082012-10-01 11:39:46 -03001129 * Get the timings in the current encoder. Return the status. 0 - success
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001130 * -EINVAL on error
1131 */
1132static int
Hans Verkuil36864082012-10-01 11:39:46 -03001133vpbe_display_g_dv_timings(struct file *file, void *priv,
1134 struct v4l2_dv_timings *dv_timings)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001135{
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001136 struct vpbe_layer *layer = video_drvdata(file);
1137 struct vpbe_device *vpbe_dev = layer->disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001138
Hans Verkuil36864082012-10-01 11:39:46 -03001139 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "VIDIOC_G_DV_TIMINGS\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001140
1141 /* Get the given standard in the encoder */
1142
1143 if (vpbe_dev->current_timings.timings_type &
Hans Verkuilef2d41b2013-02-15 15:06:28 -03001144 VPBE_ENC_DV_TIMINGS) {
Hans Verkuil36864082012-10-01 11:39:46 -03001145 *dv_timings = vpbe_dev->current_timings.dv_timings;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001146 } else {
1147 return -EINVAL;
1148 }
1149
1150 return 0;
1151}
1152
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001153/*
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001154 * vpbe_display_open()
1155 * It creates object of file handle structure and stores it in private_data
1156 * member of filepointer
1157 */
1158static int vpbe_display_open(struct file *file)
1159{
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001160 struct vpbe_layer *layer = video_drvdata(file);
1161 struct vpbe_display *disp_dev = layer->disp_dev;
1162 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
1163 struct osd_state *osd_device = disp_dev->osd_device;
1164 int err;
1165
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001166 /* creating context for file descriptor */
1167 err = v4l2_fh_open(file);
1168 if (err) {
1169 v4l2_err(&vpbe_dev->v4l2_dev, "v4l2_fh_open failed\n");
1170 return err;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001171 }
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001172
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001173 /* leaving if layer is already initialized */
1174 if (!v4l2_fh_is_singular_file(file))
1175 return err;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001176
1177 if (!layer->usrs) {
Hans Verkuilcbc807d2012-06-24 06:16:44 -03001178 if (mutex_lock_interruptible(&layer->opslock))
1179 return -ERESTARTSYS;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001180 /* First claim the layer for this device */
1181 err = osd_device->ops.request_layer(osd_device,
1182 layer->layer_info.id);
Hans Verkuilcbc807d2012-06-24 06:16:44 -03001183 mutex_unlock(&layer->opslock);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001184 if (err < 0) {
1185 /* Couldn't get layer */
1186 v4l2_err(&vpbe_dev->v4l2_dev,
1187 "Display Manager failed to allocate layer\n");
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001188 v4l2_fh_release(file);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001189 return -EINVAL;
1190 }
1191 }
1192 /* Increment layer usrs counter */
1193 layer->usrs++;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001194 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev,
1195 "vpbe display device opened successfully\n");
1196 return 0;
1197}
1198
1199/*
1200 * vpbe_display_release()
1201 * This function deletes buffer queue, frees the buffers and the davinci
1202 * display file * handle
1203 */
1204static int vpbe_display_release(struct file *file)
1205{
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001206 struct vpbe_layer *layer = video_drvdata(file);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001207 struct osd_layer_config *cfg = &layer->layer_info.config;
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001208 struct vpbe_display *disp_dev = layer->disp_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001209 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
1210 struct osd_state *osd_device = disp_dev->osd_device;
1211
1212 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "vpbe_display_release\n");
1213
Hans Verkuilcbc807d2012-06-24 06:16:44 -03001214 mutex_lock(&layer->opslock);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001215
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001216 osd_device->ops.disable_layer(osd_device,
1217 layer->layer_info.id);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001218 /* Decrement layer usrs counter */
1219 layer->usrs--;
1220 /* If this file handle has initialize encoder device, reset it */
1221 if (!layer->usrs) {
1222 if (cfg->pixfmt == PIXFMT_NV12) {
1223 struct vpbe_layer *otherlayer;
1224 otherlayer =
1225 _vpbe_display_get_other_win_layer(disp_dev, layer);
1226 osd_device->ops.disable_layer(osd_device,
1227 otherlayer->layer_info.id);
1228 osd_device->ops.release_layer(osd_device,
1229 otherlayer->layer_info.id);
1230 }
1231 osd_device->ops.disable_layer(osd_device,
1232 layer->layer_info.id);
1233 osd_device->ops.release_layer(osd_device,
1234 layer->layer_info.id);
1235 }
Lad, Prabhakar3d7543b92014-03-22 07:57:59 -03001236
Prabhakar Lad4bb12312014-10-12 17:40:37 -03001237 _vb2_fop_release(file, NULL);
Hans Verkuilcbc807d2012-06-24 06:16:44 -03001238 mutex_unlock(&layer->opslock);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001239
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001240 disp_dev->cbcr_ofst = 0;
1241
1242 return 0;
1243}
1244
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001245/* vpbe capture ioctl operations */
1246static const struct v4l2_ioctl_ops vpbe_ioctl_ops = {
1247 .vidioc_querycap = vpbe_display_querycap,
1248 .vidioc_g_fmt_vid_out = vpbe_display_g_fmt,
1249 .vidioc_enum_fmt_vid_out = vpbe_display_enum_fmt,
1250 .vidioc_s_fmt_vid_out = vpbe_display_s_fmt,
1251 .vidioc_try_fmt_vid_out = vpbe_display_try_fmt,
Prabhakar Lad41cf47b2014-10-12 17:40:38 -03001252
1253 .vidioc_reqbufs = vb2_ioctl_reqbufs,
Prabhakar Lad7041bc92014-10-22 18:42:01 -03001254 .vidioc_create_bufs = vb2_ioctl_create_bufs,
Prabhakar Lad41cf47b2014-10-12 17:40:38 -03001255 .vidioc_querybuf = vb2_ioctl_querybuf,
1256 .vidioc_qbuf = vb2_ioctl_qbuf,
1257 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1258 .vidioc_streamon = vb2_ioctl_streamon,
1259 .vidioc_streamoff = vb2_ioctl_streamoff,
Prabhakar Ladc24376f2014-10-12 17:40:41 -03001260 .vidioc_expbuf = vb2_ioctl_expbuf,
Prabhakar Lad41cf47b2014-10-12 17:40:38 -03001261
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001262 .vidioc_cropcap = vpbe_display_cropcap,
Hans Verkuil516aca32016-07-03 07:53:31 -03001263 .vidioc_g_selection = vpbe_display_g_selection,
1264 .vidioc_s_selection = vpbe_display_s_selection,
Prabhakar Lada8afe382014-10-12 17:40:44 -03001265
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001266 .vidioc_s_std = vpbe_display_s_std,
1267 .vidioc_g_std = vpbe_display_g_std,
Prabhakar Lada8afe382014-10-12 17:40:44 -03001268
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001269 .vidioc_enum_output = vpbe_display_enum_output,
1270 .vidioc_s_output = vpbe_display_s_output,
1271 .vidioc_g_output = vpbe_display_g_output,
Prabhakar Lada8afe382014-10-12 17:40:44 -03001272
Hans Verkuil36864082012-10-01 11:39:46 -03001273 .vidioc_s_dv_timings = vpbe_display_s_dv_timings,
1274 .vidioc_g_dv_timings = vpbe_display_g_dv_timings,
1275 .vidioc_enum_dv_timings = vpbe_display_enum_dv_timings,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001276};
1277
1278static struct v4l2_file_operations vpbe_fops = {
1279 .owner = THIS_MODULE,
1280 .open = vpbe_display_open,
1281 .release = vpbe_display_release,
1282 .unlocked_ioctl = video_ioctl2,
Prabhakar Lad266c9c22014-10-12 17:40:36 -03001283 .mmap = vb2_fop_mmap,
1284 .poll = vb2_fop_poll,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001285};
1286
1287static int vpbe_device_get(struct device *dev, void *data)
1288{
1289 struct platform_device *pdev = to_platform_device(dev);
1290 struct vpbe_display *vpbe_disp = data;
1291
1292 if (strcmp("vpbe_controller", pdev->name) == 0)
1293 vpbe_disp->vpbe_dev = platform_get_drvdata(pdev);
1294
Lad, Prabhakarcaff80c2012-11-20 07:30:36 -03001295 if (strstr(pdev->name, "vpbe-osd") != NULL)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001296 vpbe_disp->osd_device = platform_get_drvdata(pdev);
1297
1298 return 0;
1299}
1300
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001301static int init_vpbe_layer(int i, struct vpbe_display *disp_dev,
1302 struct platform_device *pdev)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001303{
1304 struct vpbe_layer *vpbe_display_layer = NULL;
1305 struct video_device *vbd = NULL;
1306
1307 /* Allocate memory for four plane display objects */
1308
1309 disp_dev->dev[i] =
1310 kzalloc(sizeof(struct vpbe_layer), GFP_KERNEL);
1311
1312 /* If memory allocation fails, return error */
1313 if (!disp_dev->dev[i]) {
1314 printk(KERN_ERR "ran out of memory\n");
1315 return -ENOMEM;
1316 }
1317 spin_lock_init(&disp_dev->dev[i]->irqlock);
1318 mutex_init(&disp_dev->dev[i]->opslock);
1319
1320 /* Get the pointer to the layer object */
1321 vpbe_display_layer = disp_dev->dev[i];
1322 vbd = &vpbe_display_layer->video_dev;
1323 /* Initialize field of video device */
1324 vbd->release = video_device_release_empty;
1325 vbd->fops = &vpbe_fops;
1326 vbd->ioctl_ops = &vpbe_ioctl_ops;
1327 vbd->minor = -1;
1328 vbd->v4l2_dev = &disp_dev->vpbe_dev->v4l2_dev;
1329 vbd->lock = &vpbe_display_layer->opslock;
Hans Verkuil954f3402012-09-05 06:05:50 -03001330 vbd->vfl_dir = VFL_DIR_TX;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001331
1332 if (disp_dev->vpbe_dev->current_timings.timings_type &
Hans Verkuil142b66e2013-02-19 13:33:34 -03001333 VPBE_ENC_STD)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001334 vbd->tvnorms = (V4L2_STD_525_60 | V4L2_STD_625_50);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001335
1336 snprintf(vbd->name, sizeof(vbd->name),
1337 "DaVinci_VPBE Display_DRIVER_V%d.%d.%d",
1338 (VPBE_DISPLAY_VERSION_CODE >> 16) & 0xff,
1339 (VPBE_DISPLAY_VERSION_CODE >> 8) & 0xff,
1340 (VPBE_DISPLAY_VERSION_CODE) & 0xff);
1341
1342 vpbe_display_layer->device_id = i;
1343
1344 vpbe_display_layer->layer_info.id =
1345 ((i == VPBE_DISPLAY_DEVICE_0) ? WIN_VID0 : WIN_VID1);
1346
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001347
1348 return 0;
1349}
1350
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001351static int register_device(struct vpbe_layer *vpbe_display_layer,
1352 struct vpbe_display *disp_dev,
1353 struct platform_device *pdev)
1354{
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001355 int err;
1356
1357 v4l2_info(&disp_dev->vpbe_dev->v4l2_dev,
1358 "Trying to register VPBE display device.\n");
1359 v4l2_info(&disp_dev->vpbe_dev->v4l2_dev,
1360 "layer=%x,layer->video_dev=%x\n",
1361 (int)vpbe_display_layer,
1362 (int)&vpbe_display_layer->video_dev);
1363
Prabhakar Lad266c9c22014-10-12 17:40:36 -03001364 vpbe_display_layer->video_dev.queue = &vpbe_display_layer->buffer_queue;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001365 err = video_register_device(&vpbe_display_layer->video_dev,
1366 VFL_TYPE_GRABBER,
1367 -1);
1368 if (err)
1369 return -ENODEV;
1370
1371 vpbe_display_layer->disp_dev = disp_dev;
1372 /* set the driver data in platform device */
1373 platform_set_drvdata(pdev, disp_dev);
1374 video_set_drvdata(&vpbe_display_layer->video_dev,
1375 vpbe_display_layer);
1376
1377 return 0;
1378}
1379
1380
1381
1382/*
1383 * vpbe_display_probe()
1384 * This function creates device entries by register itself to the V4L2 driver
1385 * and initializes fields of each layer objects
1386 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001387static int vpbe_display_probe(struct platform_device *pdev)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001388{
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001389 struct vpbe_display *disp_dev;
Prabhakar Lade71a1802014-10-12 17:40:31 -03001390 struct v4l2_device *v4l2_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001391 struct resource *res = NULL;
Prabhakar Lade71a1802014-10-12 17:40:31 -03001392 struct vb2_queue *q;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001393 int k;
1394 int i;
1395 int err;
1396 int irq;
1397
1398 printk(KERN_DEBUG "vpbe_display_probe\n");
1399 /* Allocate memory for vpbe_display */
Lad, Prabhakar6b55b452013-07-13 04:50:29 -03001400 disp_dev = devm_kzalloc(&pdev->dev, sizeof(struct vpbe_display),
1401 GFP_KERNEL);
1402 if (!disp_dev)
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001403 return -ENOMEM;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001404
1405 spin_lock_init(&disp_dev->dma_queue_lock);
1406 /*
1407 * Scan all the platform devices to find the vpbe
1408 * controller device and get the vpbe_dev object
1409 */
1410 err = bus_for_each_dev(&platform_bus_type, NULL, disp_dev,
1411 vpbe_device_get);
1412 if (err < 0)
1413 return err;
Prabhakar Lade71a1802014-10-12 17:40:31 -03001414
1415 v4l2_dev = &disp_dev->vpbe_dev->v4l2_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001416 /* Initialize the vpbe display controller */
1417 if (NULL != disp_dev->vpbe_dev->ops.initialize) {
1418 err = disp_dev->vpbe_dev->ops.initialize(&pdev->dev,
1419 disp_dev->vpbe_dev);
1420 if (err) {
Prabhakar Lade71a1802014-10-12 17:40:31 -03001421 v4l2_err(v4l2_dev, "Error initing vpbe\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001422 err = -ENOMEM;
1423 goto probe_out;
1424 }
1425 }
1426
1427 for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) {
1428 if (init_vpbe_layer(i, disp_dev, pdev)) {
1429 err = -ENODEV;
1430 goto probe_out;
1431 }
1432 }
1433
1434 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1435 if (!res) {
Prabhakar Lade71a1802014-10-12 17:40:31 -03001436 v4l2_err(v4l2_dev, "Unable to get VENC interrupt resource\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001437 err = -ENODEV;
1438 goto probe_out;
1439 }
1440
1441 irq = res->start;
Michael Opdenackerd8c279a2013-09-08 23:30:11 -03001442 err = devm_request_irq(&pdev->dev, irq, venc_isr, 0,
Lad, Prabhakar6b55b452013-07-13 04:50:29 -03001443 VPBE_DISPLAY_DRIVER, disp_dev);
1444 if (err) {
Prabhakar Lade71a1802014-10-12 17:40:31 -03001445 v4l2_err(v4l2_dev, "VPBE IRQ request failed\n");
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001446 goto probe_out;
1447 }
1448
1449 for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) {
Prabhakar Lade71a1802014-10-12 17:40:31 -03001450 /* initialize vb2 queue */
1451 q = &disp_dev->dev[i]->buffer_queue;
1452 memset(q, 0, sizeof(*q));
1453 q->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
Prabhakar Lad01118c92014-10-12 17:40:39 -03001454 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
Prabhakar Lade71a1802014-10-12 17:40:31 -03001455 q->drv_priv = disp_dev->dev[i];
1456 q->ops = &video_qops;
1457 q->mem_ops = &vb2_dma_contig_memops;
1458 q->buf_struct_size = sizeof(struct vpbe_disp_buffer);
1459 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1460 q->min_buffers_needed = 1;
Prabhakar Lad488735b2014-10-12 17:40:33 -03001461 q->lock = &disp_dev->dev[i]->opslock;
Hans Verkuil53ddcc62016-02-15 13:09:10 -02001462 q->dev = disp_dev->vpbe_dev->pdev;
Prabhakar Lade71a1802014-10-12 17:40:31 -03001463 err = vb2_queue_init(q);
1464 if (err) {
1465 v4l2_err(v4l2_dev, "vb2_queue_init() failed\n");
1466 goto probe_out;
1467 }
1468
Prabhakar Lade71a1802014-10-12 17:40:31 -03001469 INIT_LIST_HEAD(&disp_dev->dev[i]->dma_queue);
1470
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001471 if (register_device(disp_dev->dev[i], disp_dev, pdev)) {
1472 err = -ENODEV;
Lad, Prabhakar6b55b452013-07-13 04:50:29 -03001473 goto probe_out;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001474 }
1475 }
1476
Prabhakar Lade71a1802014-10-12 17:40:31 -03001477 v4l2_dbg(1, debug, v4l2_dev,
1478 "Successfully completed the probing of vpbe v4l2 device\n");
1479
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001480 return 0;
1481
Julia Lawall49a05132011-10-28 19:58:17 -03001482probe_out:
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001483 for (k = 0; k < VPBE_DISPLAY_MAX_DEVICES; k++) {
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001484 /* Unregister video device */
Prabhakar Lade71a1802014-10-12 17:40:31 -03001485 if (disp_dev->dev[k] != NULL) {
Prabhakar Lade71a1802014-10-12 17:40:31 -03001486 video_unregister_device(&disp_dev->dev[k]->video_dev);
1487 kfree(disp_dev->dev[k]);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001488 }
1489 }
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001490 return err;
1491}
1492
1493/*
1494 * vpbe_display_remove()
1495 * It un-register hardware layer from V4L2 driver
1496 */
1497static int vpbe_display_remove(struct platform_device *pdev)
1498{
1499 struct vpbe_layer *vpbe_display_layer;
1500 struct vpbe_display *disp_dev = platform_get_drvdata(pdev);
1501 struct vpbe_device *vpbe_dev = disp_dev->vpbe_dev;
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001502 int i;
1503
1504 v4l2_dbg(1, debug, &vpbe_dev->v4l2_dev, "vpbe_display_remove\n");
1505
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001506 /* deinitialize the vpbe display controller */
1507 if (NULL != vpbe_dev->ops.deinitialize)
1508 vpbe_dev->ops.deinitialize(&pdev->dev, vpbe_dev);
1509 /* un-register device */
1510 for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) {
1511 /* Get the pointer to the layer object */
1512 vpbe_display_layer = disp_dev->dev[i];
1513 /* Unregister video device */
1514 video_unregister_device(&vpbe_display_layer->video_dev);
1515
1516 }
1517 for (i = 0; i < VPBE_DISPLAY_MAX_DEVICES; i++) {
1518 kfree(disp_dev->dev[i]);
1519 disp_dev->dev[i] = NULL;
1520 }
1521
1522 return 0;
1523}
1524
1525static struct platform_driver vpbe_display_driver = {
1526 .driver = {
1527 .name = VPBE_DISPLAY_DRIVER,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001528 .bus = &platform_bus_type,
1529 },
1530 .probe = vpbe_display_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001531 .remove = vpbe_display_remove,
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001532};
1533
Axel Lin1d6629b2012-01-10 03:21:49 -03001534module_platform_driver(vpbe_display_driver);
Manjunath Hadlia2c25b42011-06-17 04:01:31 -03001535
1536MODULE_DESCRIPTION("TI DM644x/DM355/DM365 VPBE Display controller");
1537MODULE_LICENSE("GPL");
1538MODULE_AUTHOR("Texas Instruments");