blob: 3bf68aace5af8928bad92fe3c2e50721b6aa826a [file] [log] [blame]
Chaithrika U Se7332e32009-06-09 05:55:37 -03001/*
2 * vpif-display - VPIF display driver
3 * Display driver for TI DaVinci VPIF
4 *
5 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
Lad, Prabhakar96787eb2014-05-16 10:33:55 -03006 * Copyright (C) 2014 Lad, Prabhakar <prabhakar.csengg@gmail.com>
Chaithrika U Se7332e32009-06-09 05:55:37 -03007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation version 2.
11 *
12 * This program is distributed .as is. WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
Chaithrika U Se7332e32009-06-09 05:55:37 -030018#include <linux/interrupt.h>
Lad, Prabhakar012eef72013-04-19 05:53:29 -030019#include <linux/module.h>
Chaithrika U Se7332e32009-06-09 05:55:37 -030020#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Chaithrika U Se7332e32009-06-09 05:55:37 -030022
Lad, Prabhakar012eef72013-04-19 05:53:29 -030023#include <media/v4l2-ioctl.h>
Chaithrika U Se7332e32009-06-09 05:55:37 -030024
Chaithrika U Se7332e32009-06-09 05:55:37 -030025#include "vpif.h"
Lad, Prabhakar012eef72013-04-19 05:53:29 -030026#include "vpif_display.h"
Chaithrika U Se7332e32009-06-09 05:55:37 -030027
28MODULE_DESCRIPTION("TI DaVinci VPIF Display driver");
29MODULE_LICENSE("GPL");
Mauro Carvalho Chehab64dc3c12011-06-25 11:28:37 -030030MODULE_VERSION(VPIF_DISPLAY_VERSION);
Chaithrika U Se7332e32009-06-09 05:55:37 -030031
Manjunath Hadli0a631722012-04-13 04:44:00 -030032#define VPIF_V4L2_STD (V4L2_STD_525_60 | V4L2_STD_625_50)
Chaithrika U Se7332e32009-06-09 05:55:37 -030033
34#define vpif_err(fmt, arg...) v4l2_err(&vpif_obj.v4l2_dev, fmt, ## arg)
35#define vpif_dbg(level, debug, fmt, arg...) \
36 v4l2_dbg(level, debug, &vpif_obj.v4l2_dev, fmt, ## arg)
37
38static int debug = 1;
Chaithrika U Se7332e32009-06-09 05:55:37 -030039
40module_param(debug, int, 0644);
Chaithrika U Se7332e32009-06-09 05:55:37 -030041
42MODULE_PARM_DESC(debug, "Debug level 0-1");
Chaithrika U Se7332e32009-06-09 05:55:37 -030043
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -030044#define VPIF_DRIVER_NAME "vpif_display"
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -030045
46/* Is set to 1 in case of SDTV formats, 2 in case of HDTV formats. */
47static int ycmux_mode;
48
Lad, Prabhakar58334b02014-05-16 10:33:13 -030049static u8 channel_first_int[VPIF_NUMOBJECTS][2] = { {1, 1} };
50
Chaithrika U Se7332e32009-06-09 05:55:37 -030051static struct vpif_device vpif_obj = { {NULL} };
52static struct device *vpif_dev;
Lad, Prabhakar2401dd22012-06-28 09:28:36 -030053static void vpif_calculate_offsets(struct channel_obj *ch);
54static void vpif_config_addr(struct channel_obj *ch, int muxmode);
Chaithrika U Se7332e32009-06-09 05:55:37 -030055
Junghak Sung2d700712015-09-22 10:30:30 -030056static inline
57struct vpif_disp_buffer *to_vpif_buffer(struct vb2_v4l2_buffer *vb)
Lad, Prabhakar58334b02014-05-16 10:33:13 -030058{
59 return container_of(vb, struct vpif_disp_buffer, vb);
60}
61
Lad, Prabhakar27cdf9b2014-05-16 10:33:11 -030062/**
63 * vpif_buffer_prepare : callback function for buffer prepare
64 * @vb: ptr to vb2_buffer
65 *
66 * This is the callback function for buffer prepare when vb2_qbuf()
67 * function is called. The buffer is prepared and user space virtual address
68 * or user address is converted into physical address
Chaithrika U Se7332e32009-06-09 05:55:37 -030069 */
Lad, Prabhakar2401dd22012-06-28 09:28:36 -030070static int vpif_buffer_prepare(struct vb2_buffer *vb)
Chaithrika U Se7332e32009-06-09 05:55:37 -030071{
Junghak Sung2d700712015-09-22 10:30:30 -030072 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
Lad, Prabhakar27cdf9b2014-05-16 10:33:11 -030073 struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue);
Chaithrika U Se7332e32009-06-09 05:55:37 -030074 struct common_obj *common;
Chaithrika U Se7332e32009-06-09 05:55:37 -030075
Lad, Prabhakara2b235c2014-05-16 10:33:06 -030076 common = &ch->common[VPIF_VIDEO_INDEX];
Chaithrika U Se7332e32009-06-09 05:55:37 -030077
Lad, Prabhakar27cdf9b2014-05-16 10:33:11 -030078 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage);
79 if (vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
80 return -EINVAL;
81
Junghak Sung2d700712015-09-22 10:30:30 -030082 vbuf->field = common->fmt.fmt.pix.field;
Lad, Prabhakar27cdf9b2014-05-16 10:33:11 -030083
84 if (vb->vb2_queue->type != V4L2_BUF_TYPE_SLICED_VBI_OUTPUT) {
85 unsigned long addr = vb2_dma_contig_plane_dma_addr(vb, 0);
86
87 if (!ISALIGNED(addr + common->ytop_off) ||
Lad, Prabhakar2401dd22012-06-28 09:28:36 -030088 !ISALIGNED(addr + common->ybtm_off) ||
89 !ISALIGNED(addr + common->ctop_off) ||
Lad, Prabhakar27cdf9b2014-05-16 10:33:11 -030090 !ISALIGNED(addr + common->cbtm_off)) {
91 vpif_err("buffer offset not aligned to 8 bytes\n");
92 return -EINVAL;
Chaithrika U Se7332e32009-06-09 05:55:37 -030093 }
Chaithrika U Se7332e32009-06-09 05:55:37 -030094 }
Chaithrika U Se7332e32009-06-09 05:55:37 -030095
Lad, Prabhakar27cdf9b2014-05-16 10:33:11 -030096 return 0;
Chaithrika U Se7332e32009-06-09 05:55:37 -030097}
98
Lad, Prabhakar172392a2014-05-16 10:33:12 -030099/**
100 * vpif_buffer_queue_setup : Callback function for buffer setup.
101 * @vq: vb2_queue ptr
Lad, Prabhakar172392a2014-05-16 10:33:12 -0300102 * @nbuffers: ptr to number of buffers requested by application
103 * @nplanes:: contains number of distinct video planes needed to hold a frame
104 * @sizes[]: contains the size (in bytes) of each plane.
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300105 * @alloc_devs: ptr to allocation context
Lad, Prabhakar172392a2014-05-16 10:33:12 -0300106 *
107 * This callback function is called when reqbuf() is called to adjust
108 * the buffer count and buffer size
Chaithrika U Se7332e32009-06-09 05:55:37 -0300109 */
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300110static int vpif_buffer_queue_setup(struct vb2_queue *vq,
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300111 unsigned int *nbuffers, unsigned int *nplanes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300112 unsigned int sizes[], struct device *alloc_devs[])
Chaithrika U Se7332e32009-06-09 05:55:37 -0300113{
Lad, Prabhakara2b235c2014-05-16 10:33:06 -0300114 struct channel_obj *ch = vb2_get_drv_priv(vq);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300115 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200116 unsigned size = common->fmt.fmt.pix.sizeimage;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300117
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200118 if (*nplanes) {
119 if (sizes[0] < size)
120 return -EINVAL;
121 size = sizes[0];
122 }
Manjunath Hadlifc613d42012-04-13 04:49:10 -0300123
Lad, Prabhakar172392a2014-05-16 10:33:12 -0300124 if (vq->num_buffers + *nbuffers < 3)
125 *nbuffers = 3 - vq->num_buffers;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300126
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300127 *nplanes = 1;
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200128 sizes[0] = size;
Lad, Prabhakar172392a2014-05-16 10:33:12 -0300129
130 /* Calculate the offset for Y and C data in the buffer */
131 vpif_calculate_offsets(ch);
132
Chaithrika U Se7332e32009-06-09 05:55:37 -0300133 return 0;
134}
135
Lad, Prabhakar58334b02014-05-16 10:33:13 -0300136/**
137 * vpif_buffer_queue : Callback function to add buffer to DMA queue
138 * @vb: ptr to vb2_buffer
139 *
140 * This callback fucntion queues the buffer to DMA engine
Chaithrika U Se7332e32009-06-09 05:55:37 -0300141 */
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300142static void vpif_buffer_queue(struct vb2_buffer *vb)
Chaithrika U Se7332e32009-06-09 05:55:37 -0300143{
Junghak Sung2d700712015-09-22 10:30:30 -0300144 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
145 struct vpif_disp_buffer *buf = to_vpif_buffer(vbuf);
Lad, Prabhakara2b235c2014-05-16 10:33:06 -0300146 struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300147 struct common_obj *common;
Hans Verkuilc4697d72012-11-16 12:03:07 -0300148 unsigned long flags;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300149
150 common = &ch->common[VPIF_VIDEO_INDEX];
151
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300152 /* add the buffer to the DMA queue */
Hans Verkuilc4697d72012-11-16 12:03:07 -0300153 spin_lock_irqsave(&common->irqlock, flags);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300154 list_add_tail(&buf->list, &common->dma_queue);
Hans Verkuilc4697d72012-11-16 12:03:07 -0300155 spin_unlock_irqrestore(&common->irqlock, flags);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300156}
157
Lad, Prabhakar58334b02014-05-16 10:33:13 -0300158/**
159 * vpif_start_streaming : Starts the DMA engine for streaming
160 * @vb: ptr to vb2_buffer
161 * @count: number of buffers
162 */
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300163static int vpif_start_streaming(struct vb2_queue *vq, unsigned int count)
164{
165 struct vpif_display_config *vpif_config_data =
166 vpif_dev->platform_data;
Lad, Prabhakara2b235c2014-05-16 10:33:06 -0300167 struct channel_obj *ch = vb2_get_drv_priv(vq);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300168 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
169 struct vpif_params *vpif = &ch->vpifparams;
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300170 struct vpif_disp_buffer *buf, *tmp;
171 unsigned long addr, flags;
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300172 int ret;
173
Hans Verkuilc4697d72012-11-16 12:03:07 -0300174 spin_lock_irqsave(&common->irqlock, flags);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300175
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -0300176 /* Initialize field_id */
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300177 ch->field_id = 0;
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300178
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300179 /* clock settings */
180 if (vpif_config_data->set_clock) {
181 ret = vpif_config_data->set_clock(ch->vpifparams.std_info.
182 ycmux_mode, ch->vpifparams.std_info.hd_sd);
183 if (ret < 0) {
184 vpif_err("can't set clock\n");
185 goto err;
186 }
187 }
188
189 /* set the parameters and addresses */
190 ret = vpif_set_video_params(vpif, ch->channel_id + 2);
191 if (ret < 0)
192 goto err;
193
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -0300194 ycmux_mode = ret;
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300195 vpif_config_addr(ch, ret);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300196 /* Get the next frame from the buffer queue */
197 common->next_frm = common->cur_frm =
198 list_entry(common->dma_queue.next,
199 struct vpif_disp_buffer, list);
200
201 list_del(&common->cur_frm->list);
Hans Verkuilc4697d72012-11-16 12:03:07 -0300202 spin_unlock_irqrestore(&common->irqlock, flags);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300203
Junghak Sung2d700712015-09-22 10:30:30 -0300204 addr = vb2_dma_contig_plane_dma_addr(&common->cur_frm->vb.vb2_buf, 0);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300205 common->set_addr((addr + common->ytop_off),
206 (addr + common->ybtm_off),
207 (addr + common->ctop_off),
208 (addr + common->cbtm_off));
209
Lad, Prabhakar58334b02014-05-16 10:33:13 -0300210 /*
211 * Set interrupt for both the fields in VPIF
212 * Register enable channel in VPIF register
213 */
Lad, Prabhakar9e184042012-09-14 10:22:24 -0300214 channel_first_int[VPIF_VIDEO_INDEX][ch->channel_id] = 1;
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300215 if (VPIF_CHANNEL2_VIDEO == ch->channel_id) {
216 channel2_intr_assert();
217 channel2_intr_enable(1);
218 enable_channel2(1);
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300219 if (vpif_config_data->chan_config[VPIF_CHANNEL2_VIDEO].clip_en)
Manjunath Hadli6964b102012-06-29 03:20:12 -0300220 channel2_clipping_enable(1);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300221 }
222
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -0300223 if (VPIF_CHANNEL3_VIDEO == ch->channel_id || ycmux_mode == 2) {
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300224 channel3_intr_assert();
225 channel3_intr_enable(1);
226 enable_channel3(1);
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300227 if (vpif_config_data->chan_config[VPIF_CHANNEL3_VIDEO].clip_en)
Manjunath Hadli6964b102012-06-29 03:20:12 -0300228 channel3_clipping_enable(1);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300229 }
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300230
231 return 0;
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300232
233err:
234 list_for_each_entry_safe(buf, tmp, &common->dma_queue, list) {
235 list_del(&buf->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300236 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_QUEUED);
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300237 }
Dan Carpenter92491962014-06-12 04:01:45 -0300238 spin_unlock_irqrestore(&common->irqlock, flags);
Lad, Prabhakar54a445a42014-05-16 10:33:09 -0300239
240 return ret;
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300241}
242
Lad, Prabhakar58334b02014-05-16 10:33:13 -0300243/**
244 * vpif_stop_streaming : Stop the DMA engine
245 * @vq: ptr to vb2_queue
246 *
247 * This callback stops the DMA engine and any remaining buffers
248 * in the DMA queue are released.
249 */
Hans Verkuile37559b2014-04-17 02:47:21 -0300250static void vpif_stop_streaming(struct vb2_queue *vq)
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300251{
Lad, Prabhakara2b235c2014-05-16 10:33:06 -0300252 struct channel_obj *ch = vb2_get_drv_priv(vq);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300253 struct common_obj *common;
Hans Verkuilc4697d72012-11-16 12:03:07 -0300254 unsigned long flags;
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300255
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300256 common = &ch->common[VPIF_VIDEO_INDEX];
257
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300258 /* Disable channel */
259 if (VPIF_CHANNEL2_VIDEO == ch->channel_id) {
260 enable_channel2(0);
261 channel2_intr_enable(0);
262 }
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -0300263 if (VPIF_CHANNEL3_VIDEO == ch->channel_id || ycmux_mode == 2) {
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300264 enable_channel3(0);
265 channel3_intr_enable(0);
266 }
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300267
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300268 /* release all active buffers */
Hans Verkuilc4697d72012-11-16 12:03:07 -0300269 spin_lock_irqsave(&common->irqlock, flags);
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300270 if (common->cur_frm == common->next_frm) {
Junghak Sung2d700712015-09-22 10:30:30 -0300271 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
272 VB2_BUF_STATE_ERROR);
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300273 } else {
Markus Elfring396c88e2016-10-12 10:40:32 -0300274 if (common->cur_frm)
Junghak Sung2d700712015-09-22 10:30:30 -0300275 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300276 VB2_BUF_STATE_ERROR);
Markus Elfring396c88e2016-10-12 10:40:32 -0300277 if (common->next_frm)
Junghak Sung2d700712015-09-22 10:30:30 -0300278 vb2_buffer_done(&common->next_frm->vb.vb2_buf,
Lad, Prabhakar18c7adc2014-03-22 08:03:08 -0300279 VB2_BUF_STATE_ERROR);
280 }
281
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300282 while (!list_empty(&common->dma_queue)) {
283 common->next_frm = list_entry(common->dma_queue.next,
284 struct vpif_disp_buffer, list);
285 list_del(&common->next_frm->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300286 vb2_buffer_done(&common->next_frm->vb.vb2_buf,
287 VB2_BUF_STATE_ERROR);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300288 }
Hans Verkuilc4697d72012-11-16 12:03:07 -0300289 spin_unlock_irqrestore(&common->irqlock, flags);
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300290}
291
292static struct vb2_ops video_qops = {
293 .queue_setup = vpif_buffer_queue_setup,
Lad, Prabhakard10ed5c2014-05-16 10:33:08 -0300294 .wait_prepare = vb2_ops_wait_prepare,
295 .wait_finish = vb2_ops_wait_finish,
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300296 .buf_prepare = vpif_buffer_prepare,
297 .start_streaming = vpif_start_streaming,
298 .stop_streaming = vpif_stop_streaming,
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300299 .buf_queue = vpif_buffer_queue,
300};
301
Chaithrika U Se7332e32009-06-09 05:55:37 -0300302static void process_progressive_mode(struct common_obj *common)
303{
304 unsigned long addr = 0;
305
Hans Verkuilc4697d72012-11-16 12:03:07 -0300306 spin_lock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300307 /* Get the next buffer from buffer queue */
308 common->next_frm = list_entry(common->dma_queue.next,
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300309 struct vpif_disp_buffer, list);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300310 /* Remove that buffer from the buffer queue */
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300311 list_del(&common->next_frm->list);
Hans Verkuilc4697d72012-11-16 12:03:07 -0300312 spin_unlock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300313
314 /* Set top and bottom field addrs in VPIF registers */
Junghak Sung2d700712015-09-22 10:30:30 -0300315 addr = vb2_dma_contig_plane_dma_addr(&common->next_frm->vb.vb2_buf, 0);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300316 common->set_addr(addr + common->ytop_off,
317 addr + common->ybtm_off,
318 addr + common->ctop_off,
319 addr + common->cbtm_off);
320}
321
322static void process_interlaced_mode(int fid, struct common_obj *common)
323{
324 /* device field id and local field id are in sync */
325 /* If this is even field */
326 if (0 == fid) {
327 if (common->cur_frm == common->next_frm)
328 return;
329
330 /* one frame is displayed If next frame is
331 * available, release cur_frm and move on */
332 /* Copy frame display time */
Junghak Sungd6dd6452015-11-03 08:16:37 -0200333 common->cur_frm->vb.vb2_buf.timestamp = ktime_get_ns();
Chaithrika U Se7332e32009-06-09 05:55:37 -0300334 /* Change status of the cur_frm */
Junghak Sung2d700712015-09-22 10:30:30 -0300335 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
336 VB2_BUF_STATE_DONE);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300337 /* Make cur_frm pointing to next_frm */
338 common->cur_frm = common->next_frm;
339
340 } else if (1 == fid) { /* odd field */
Hans Verkuilc4697d72012-11-16 12:03:07 -0300341 spin_lock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300342 if (list_empty(&common->dma_queue)
343 || (common->cur_frm != common->next_frm)) {
Hans Verkuilc4697d72012-11-16 12:03:07 -0300344 spin_unlock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300345 return;
346 }
Hans Verkuilc4697d72012-11-16 12:03:07 -0300347 spin_unlock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300348 /* one field is displayed configure the next
349 * frame if it is available else hold on current
350 * frame */
351 /* Get next from the buffer queue */
352 process_progressive_mode(common);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300353 }
354}
355
356/*
357 * vpif_channel_isr: It changes status of the displayed buffer, takes next
358 * buffer from the queue and sets its address in VPIF registers
359 */
360static irqreturn_t vpif_channel_isr(int irq, void *dev_id)
361{
362 struct vpif_device *dev = &vpif_obj;
363 struct channel_obj *ch;
364 struct common_obj *common;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300365 int fid = -1, i;
Markus Elfring3ce5f662016-10-12 10:43:12 -0300366 int channel_id;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300367
368 channel_id = *(int *)(dev_id);
Manjunath Hadlib1fc4232012-04-13 04:43:10 -0300369 if (!vpif_intr_status(channel_id + 2))
370 return IRQ_NONE;
371
Chaithrika U Se7332e32009-06-09 05:55:37 -0300372 ch = dev->dev[channel_id];
Chaithrika U Se7332e32009-06-09 05:55:37 -0300373 for (i = 0; i < VPIF_NUMOBJECTS; i++) {
374 common = &ch->common[i];
375 /* If streaming is started in this channel */
Chaithrika U Se7332e32009-06-09 05:55:37 -0300376
377 if (1 == ch->vpifparams.std_info.frm_fmt) {
Hans Verkuilc4697d72012-11-16 12:03:07 -0300378 spin_lock(&common->irqlock);
379 if (list_empty(&common->dma_queue)) {
380 spin_unlock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300381 continue;
Hans Verkuilc4697d72012-11-16 12:03:07 -0300382 }
383 spin_unlock(&common->irqlock);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300384
385 /* Progressive mode */
386 if (!channel_first_int[i][channel_id]) {
387 /* Mark status of the cur_frm to
388 * done and unlock semaphore on it */
Junghak Sungd6dd6452015-11-03 08:16:37 -0200389 common->cur_frm->vb.vb2_buf.timestamp =
390 ktime_get_ns();
Junghak Sung2d700712015-09-22 10:30:30 -0300391 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
392 VB2_BUF_STATE_DONE);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300393 /* Make cur_frm pointing to next_frm */
394 common->cur_frm = common->next_frm;
395 }
396
397 channel_first_int[i][channel_id] = 0;
398 process_progressive_mode(common);
399 } else {
400 /* Interlaced mode */
401 /* If it is first interrupt, ignore it */
402
403 if (channel_first_int[i][channel_id]) {
404 channel_first_int[i][channel_id] = 0;
405 continue;
406 }
407
408 if (0 == i) {
409 ch->field_id ^= 1;
410 /* Get field id from VPIF registers */
411 fid = vpif_channel_getfid(ch->channel_id + 2);
412 /* If fid does not match with stored field id */
413 if (fid != ch->field_id) {
414 /* Make them in sync */
415 if (0 == fid)
416 ch->field_id = fid;
417
418 return IRQ_HANDLED;
419 }
420 }
421 process_interlaced_mode(fid, common);
422 }
423 }
424
425 return IRQ_HANDLED;
426}
427
Mats Randgaardc027e162010-12-16 12:17:44 -0300428static int vpif_update_std_info(struct channel_obj *ch)
Chaithrika U Se7332e32009-06-09 05:55:37 -0300429{
Chaithrika U Se7332e32009-06-09 05:55:37 -0300430 struct video_obj *vid_ch = &ch->video;
431 struct vpif_params *vpifparams = &ch->vpifparams;
432 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
433 const struct vpif_channel_config_params *config;
434
Mats Randgaardc027e162010-12-16 12:17:44 -0300435 int i;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300436
Mats Randgaardc027e162010-12-16 12:17:44 -0300437 for (i = 0; i < vpif_ch_params_count; i++) {
Lad, Prabhakarced9b212013-03-20 01:28:27 -0300438 config = &vpif_ch_params[i];
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300439 if (config->hd_sd == 0) {
440 vpif_dbg(2, debug, "SD format\n");
441 if (config->stdid & vid_ch->stdid) {
442 memcpy(std_info, config, sizeof(*config));
443 break;
444 }
Chaithrika U Se7332e32009-06-09 05:55:37 -0300445 }
446 }
447
Mats Randgaardc027e162010-12-16 12:17:44 -0300448 if (i == vpif_ch_params_count) {
449 vpif_dbg(1, debug, "Format not found\n");
Mats Randgaardaa444402010-12-16 12:17:42 -0300450 return -EINVAL;
Mats Randgaardc027e162010-12-16 12:17:44 -0300451 }
452
453 return 0;
454}
455
456static int vpif_update_resolution(struct channel_obj *ch)
457{
458 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
459 struct video_obj *vid_ch = &ch->video;
460 struct vpif_params *vpifparams = &ch->vpifparams;
461 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
462
Hans Verkuil0598c172012-09-18 07:18:47 -0300463 if (!vid_ch->stdid && !vid_ch->dv_timings.bt.height)
Mats Randgaardc027e162010-12-16 12:17:44 -0300464 return -EINVAL;
465
Hans Verkuil0598c172012-09-18 07:18:47 -0300466 if (vid_ch->stdid) {
Mats Randgaardc027e162010-12-16 12:17:44 -0300467 if (vpif_update_std_info(ch))
468 return -EINVAL;
469 }
Chaithrika U Se7332e32009-06-09 05:55:37 -0300470
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300471 common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV422P;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300472 common->fmt.fmt.pix.width = std_info->width;
473 common->fmt.fmt.pix.height = std_info->height;
474 vpif_dbg(1, debug, "Pixel details: Width = %d,Height = %d\n",
475 common->fmt.fmt.pix.width, common->fmt.fmt.pix.height);
476
477 /* Set height and width paramateres */
Mats Randgaardc027e162010-12-16 12:17:44 -0300478 common->height = std_info->height;
479 common->width = std_info->width;
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300480 common->fmt.fmt.pix.sizeimage = common->height * common->width * 2;
481
482 if (vid_ch->stdid)
483 common->fmt.fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
484 else
485 common->fmt.fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
486
487 if (ch->vpifparams.std_info.frm_fmt)
488 common->fmt.fmt.pix.field = V4L2_FIELD_NONE;
489 else
490 common->fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300491
492 return 0;
493}
494
495/*
496 * vpif_calculate_offsets: This function calculates buffers offset for Y and C
497 * in the top and bottom field
498 */
499static void vpif_calculate_offsets(struct channel_obj *ch)
500{
501 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
502 struct vpif_params *vpifparams = &ch->vpifparams;
503 enum v4l2_field field = common->fmt.fmt.pix.field;
504 struct video_obj *vid_ch = &ch->video;
Mauro Carvalho Chehaba4f20e22014-08-21 15:46:46 -0500505 unsigned int hpitch, sizeimage;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300506
507 if (V4L2_FIELD_ANY == common->fmt.fmt.pix.field) {
508 if (ch->vpifparams.std_info.frm_fmt)
509 vid_ch->buf_field = V4L2_FIELD_NONE;
510 else
511 vid_ch->buf_field = V4L2_FIELD_INTERLACED;
512 } else {
513 vid_ch->buf_field = common->fmt.fmt.pix.field;
514 }
515
Lad, Prabhakar2401dd22012-06-28 09:28:36 -0300516 sizeimage = common->fmt.fmt.pix.sizeimage;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300517
518 hpitch = common->fmt.fmt.pix.bytesperline;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300519 if ((V4L2_FIELD_NONE == vid_ch->buf_field) ||
520 (V4L2_FIELD_INTERLACED == vid_ch->buf_field)) {
521 common->ytop_off = 0;
522 common->ybtm_off = hpitch;
523 common->ctop_off = sizeimage / 2;
524 common->cbtm_off = sizeimage / 2 + hpitch;
525 } else if (V4L2_FIELD_SEQ_TB == vid_ch->buf_field) {
526 common->ytop_off = 0;
527 common->ybtm_off = sizeimage / 4;
528 common->ctop_off = sizeimage / 2;
529 common->cbtm_off = common->ctop_off + sizeimage / 4;
530 } else if (V4L2_FIELD_SEQ_BT == vid_ch->buf_field) {
531 common->ybtm_off = 0;
532 common->ytop_off = sizeimage / 4;
533 common->cbtm_off = sizeimage / 2;
534 common->ctop_off = common->cbtm_off + sizeimage / 4;
535 }
536
537 if ((V4L2_FIELD_NONE == vid_ch->buf_field) ||
538 (V4L2_FIELD_INTERLACED == vid_ch->buf_field)) {
539 vpifparams->video_params.storage_mode = 1;
540 } else {
541 vpifparams->video_params.storage_mode = 0;
542 }
543
544 if (ch->vpifparams.std_info.frm_fmt == 1) {
545 vpifparams->video_params.hpitch =
546 common->fmt.fmt.pix.bytesperline;
547 } else {
548 if ((field == V4L2_FIELD_ANY) ||
549 (field == V4L2_FIELD_INTERLACED))
550 vpifparams->video_params.hpitch =
551 common->fmt.fmt.pix.bytesperline * 2;
552 else
553 vpifparams->video_params.hpitch =
554 common->fmt.fmt.pix.bytesperline;
555 }
556
557 ch->vpifparams.video_params.stdid = ch->vpifparams.std_info.stdid;
558}
559
Chaithrika U Se7332e32009-06-09 05:55:37 -0300560static void vpif_config_addr(struct channel_obj *ch, int muxmode)
561{
562 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
563
564 if (VPIF_CHANNEL3_VIDEO == ch->channel_id) {
565 common->set_addr = ch3_set_videobuf_addr;
566 } else {
567 if (2 == muxmode)
568 common->set_addr = ch2_set_videobuf_addr_yc_nmux;
569 else
570 common->set_addr = ch2_set_videobuf_addr;
571 }
572}
573
Chaithrika U Se7332e32009-06-09 05:55:37 -0300574/* functions implementing ioctls */
Mats Randgaard2c0ddd12010-12-16 12:17:45 -0300575/**
576 * vpif_querycap() - QUERYCAP handler
577 * @file: file ptr
578 * @priv: file handle
579 * @cap: ptr to v4l2_capability structure
580 */
Chaithrika U Se7332e32009-06-09 05:55:37 -0300581static int vpif_querycap(struct file *file, void *priv,
582 struct v4l2_capability *cap)
583{
Muralidharan Karicheri317b2e22009-09-16 14:30:53 -0300584 struct vpif_display_config *config = vpif_dev->platform_data;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300585
Lad, Prabhakar626d533f2012-09-25 11:21:55 -0300586 cap->device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_STREAMING;
587 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -0300588 strlcpy(cap->driver, VPIF_DRIVER_NAME, sizeof(cap->driver));
Lad, Prabhakar626d533f2012-09-25 11:21:55 -0300589 snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s",
590 dev_name(vpif_dev));
Chaithrika U Se7332e32009-06-09 05:55:37 -0300591 strlcpy(cap->card, config->card_name, sizeof(cap->card));
592
593 return 0;
594}
595
596static int vpif_enum_fmt_vid_out(struct file *file, void *priv,
597 struct v4l2_fmtdesc *fmt)
598{
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300599 if (fmt->index != 0)
Chaithrika U Se7332e32009-06-09 05:55:37 -0300600 return -EINVAL;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300601
602 /* Fill in the information about format */
603 fmt->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
604 strcpy(fmt->description, "YCbCr4:2:2 YC Planar");
605 fmt->pixelformat = V4L2_PIX_FMT_YUV422P;
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300606 fmt->flags = 0;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300607 return 0;
608}
609
610static int vpif_g_fmt_vid_out(struct file *file, void *priv,
611 struct v4l2_format *fmt)
612{
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300613 struct video_device *vdev = video_devdata(file);
614 struct channel_obj *ch = video_get_drvdata(vdev);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300615 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
616
617 /* Check the validity of the buffer type */
618 if (common->fmt.type != fmt->type)
619 return -EINVAL;
620
Mats Randgaardc027e162010-12-16 12:17:44 -0300621 if (vpif_update_resolution(ch))
Hans Verkuil9bfaae22011-01-05 13:35:45 -0300622 return -EINVAL;
623 *fmt = common->fmt;
624 return 0;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300625}
626
Chaithrika U Se7332e32009-06-09 05:55:37 -0300627static int vpif_try_fmt_vid_out(struct file *file, void *priv,
628 struct v4l2_format *fmt)
629{
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300630 struct video_device *vdev = video_devdata(file);
631 struct channel_obj *ch = video_get_drvdata(vdev);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300632 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
633 struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300634
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300635 /*
636 * to supress v4l-compliance warnings silently correct
637 * the pixelformat
638 */
639 if (pixfmt->pixelformat != V4L2_PIX_FMT_YUV422P)
640 pixfmt->pixelformat = common->fmt.fmt.pix.pixelformat;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300641
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300642 if (vpif_update_resolution(ch))
643 return -EINVAL;
644
645 pixfmt->colorspace = common->fmt.fmt.pix.colorspace;
646 pixfmt->field = common->fmt.fmt.pix.field;
647 pixfmt->bytesperline = common->fmt.fmt.pix.width;
648 pixfmt->width = common->fmt.fmt.pix.width;
649 pixfmt->height = common->fmt.fmt.pix.height;
650 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height * 2;
Lad, Prabhakar9cba6532014-05-16 10:33:30 -0300651
652 return 0;
653}
654
655static int vpif_s_fmt_vid_out(struct file *file, void *priv,
656 struct v4l2_format *fmt)
657{
658 struct video_device *vdev = video_devdata(file);
659 struct channel_obj *ch = video_get_drvdata(vdev);
660 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
661 struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
662 int ret;
663
664 if (vb2_is_busy(&common->buffer_queue))
665 return -EBUSY;
666
667 ret = vpif_try_fmt_vid_out(file, priv, fmt);
668 if (ret)
669 return ret;
670
671 /* store the pix format in the channel object */
672 common->fmt.fmt.pix = *pixfmt;
673
674 /* store the format in the channel object */
675 common->fmt = *fmt;
676 return 0;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300677}
678
Hans Verkuil314527a2013-03-15 06:10:40 -0300679static int vpif_s_std(struct file *file, void *priv, v4l2_std_id std_id)
Chaithrika U Se7332e32009-06-09 05:55:37 -0300680{
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300681 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300682 struct video_device *vdev = video_devdata(file);
683 struct channel_obj *ch = video_get_drvdata(vdev);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300684 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300685 struct vpif_display_chan_config *chan_cfg;
686 struct v4l2_output output;
687 int ret;
688
Markus Elfring396c88e2016-10-12 10:40:32 -0300689 if (!config->chan_config[ch->channel_id].outputs)
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300690 return -ENODATA;
691
692 chan_cfg = &config->chan_config[ch->channel_id];
693 output = chan_cfg->outputs[ch->output_idx].output;
694 if (output.capabilities != V4L2_OUT_CAP_STD)
695 return -ENODATA;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300696
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -0300697 if (vb2_is_busy(&common->buffer_queue))
698 return -EBUSY;
699
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300700
Hans Verkuil314527a2013-03-15 06:10:40 -0300701 if (!(std_id & VPIF_V4L2_STD))
Chaithrika U Se7332e32009-06-09 05:55:37 -0300702 return -EINVAL;
703
Chaithrika U Se7332e32009-06-09 05:55:37 -0300704 /* Call encoder subdevice function to set the standard */
Hans Verkuil314527a2013-03-15 06:10:40 -0300705 ch->video.stdid = std_id;
Hans Verkuil0598c172012-09-18 07:18:47 -0300706 memset(&ch->video.dv_timings, 0, sizeof(ch->video.dv_timings));
Chaithrika U Se7332e32009-06-09 05:55:37 -0300707 /* Get the information about the standard */
Hans Verkuil9bfaae22011-01-05 13:35:45 -0300708 if (vpif_update_resolution(ch))
709 return -EINVAL;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300710
Chaithrika U Se7332e32009-06-09 05:55:37 -0300711 common->fmt.fmt.pix.bytesperline = common->fmt.fmt.pix.width;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300712
713 ret = v4l2_device_call_until_err(&vpif_obj.v4l2_dev, 1, video,
Hans Verkuil314527a2013-03-15 06:10:40 -0300714 s_std_output, std_id);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300715 if (ret < 0) {
716 vpif_err("Failed to set output standard\n");
Hans Verkuil9bfaae22011-01-05 13:35:45 -0300717 return ret;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300718 }
719
Laurent Pinchart8774bed2014-04-28 16:53:01 -0300720 ret = v4l2_device_call_until_err(&vpif_obj.v4l2_dev, 1, video,
Hans Verkuil314527a2013-03-15 06:10:40 -0300721 s_std, std_id);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300722 if (ret < 0)
723 vpif_err("Failed to set standard for sub devices\n");
Chaithrika U Se7332e32009-06-09 05:55:37 -0300724 return ret;
725}
726
727static int vpif_g_std(struct file *file, void *priv, v4l2_std_id *std)
728{
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300729 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300730 struct video_device *vdev = video_devdata(file);
731 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300732 struct vpif_display_chan_config *chan_cfg;
733 struct v4l2_output output;
734
Markus Elfring396c88e2016-10-12 10:40:32 -0300735 if (!config->chan_config[ch->channel_id].outputs)
Lad, Prabhakarf27d0f42014-05-16 10:33:28 -0300736 return -ENODATA;
737
738 chan_cfg = &config->chan_config[ch->channel_id];
739 output = chan_cfg->outputs[ch->output_idx].output;
740 if (output.capabilities != V4L2_OUT_CAP_STD)
741 return -ENODATA;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300742
743 *std = ch->video.stdid;
744 return 0;
745}
746
Chaithrika U Se7332e32009-06-09 05:55:37 -0300747static int vpif_enum_output(struct file *file, void *fh,
748 struct v4l2_output *output)
749{
750
Muralidharan Karicheri317b2e22009-09-16 14:30:53 -0300751 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300752 struct video_device *vdev = video_devdata(file);
753 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300754 struct vpif_display_chan_config *chan_cfg;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300755
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300756 chan_cfg = &config->chan_config[ch->channel_id];
757 if (output->index >= chan_cfg->output_count) {
Chaithrika U Se7332e32009-06-09 05:55:37 -0300758 vpif_dbg(1, debug, "Invalid output index\n");
759 return -EINVAL;
760 }
761
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300762 *output = chan_cfg->outputs[output->index].output;
763 return 0;
764}
Chaithrika U Se7332e32009-06-09 05:55:37 -0300765
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300766/**
767 * vpif_output_to_subdev() - Maps output to sub device
768 * @vpif_cfg - global config ptr
769 * @chan_cfg - channel config ptr
770 * @index - Given output index from application
771 *
772 * lookup the sub device information for a given output index.
773 * we report all the output to application. output table also
774 * has sub device name for the each output
775 */
776static int
777vpif_output_to_subdev(struct vpif_display_config *vpif_cfg,
778 struct vpif_display_chan_config *chan_cfg, int index)
779{
780 struct vpif_subdev_info *subdev_info;
781 const char *subdev_name;
782 int i;
783
784 vpif_dbg(2, debug, "vpif_output_to_subdev\n");
785
Markus Elfring396c88e2016-10-12 10:40:32 -0300786 if (!chan_cfg->outputs)
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300787 return -1;
788
789 subdev_name = chan_cfg->outputs[index].subdev_name;
Markus Elfring396c88e2016-10-12 10:40:32 -0300790 if (!subdev_name)
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300791 return -1;
792
793 /* loop through the sub device list to get the sub device info */
794 for (i = 0; i < vpif_cfg->subdev_count; i++) {
795 subdev_info = &vpif_cfg->subdevinfo[i];
796 if (!strcmp(subdev_info->name, subdev_name))
797 return i;
798 }
799 return -1;
800}
801
802/**
803 * vpif_set_output() - Select an output
804 * @vpif_cfg - global config ptr
805 * @ch - channel
806 * @index - Given output index from application
807 *
808 * Select the given output.
809 */
810static int vpif_set_output(struct vpif_display_config *vpif_cfg,
811 struct channel_obj *ch, int index)
812{
813 struct vpif_display_chan_config *chan_cfg =
814 &vpif_cfg->chan_config[ch->channel_id];
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300815 struct v4l2_subdev *sd = NULL;
816 u32 input = 0, output = 0;
817 int sd_index;
818 int ret;
819
820 sd_index = vpif_output_to_subdev(vpif_cfg, chan_cfg, index);
Mauro Carvalho Chehaba4f20e22014-08-21 15:46:46 -0500821 if (sd_index >= 0)
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300822 sd = vpif_obj.sd[sd_index];
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300823
824 if (sd) {
825 input = chan_cfg->outputs[index].input_route;
826 output = chan_cfg->outputs[index].output_route;
827 ret = v4l2_subdev_call(sd, video, s_routing, input, output, 0);
828 if (ret < 0 && ret != -ENOIOCTLCMD) {
829 vpif_err("Failed to set output\n");
830 return ret;
831 }
832
833 }
834 ch->output_idx = index;
835 ch->sd = sd;
Markus Elfring396c88e2016-10-12 10:40:32 -0300836 if (chan_cfg->outputs)
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300837 /* update tvnorms from the sub device output info */
Lad, Prabhakare933c6b2015-03-08 18:57:24 -0300838 ch->video_dev.tvnorms = chan_cfg->outputs[index].output.std;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300839 return 0;
840}
841
842static int vpif_s_output(struct file *file, void *priv, unsigned int i)
843{
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300844 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300845 struct video_device *vdev = video_devdata(file);
846 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300847 struct vpif_display_chan_config *chan_cfg;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300848 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300849
Lad, Prabhakar2f5851b2014-05-16 10:33:21 -0300850 if (vb2_is_busy(&common->buffer_queue))
851 return -EBUSY;
852
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300853 chan_cfg = &config->chan_config[ch->channel_id];
854
855 if (i >= chan_cfg->output_count)
856 return -EINVAL;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300857
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300858 return vpif_set_output(config, ch, i);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300859}
860
861static int vpif_g_output(struct file *file, void *priv, unsigned int *i)
862{
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300863 struct video_device *vdev = video_devdata(file);
864 struct channel_obj *ch = video_get_drvdata(vdev);
Chaithrika U Se7332e32009-06-09 05:55:37 -0300865
Hans Verkuil311673e2012-09-20 09:06:23 -0300866 *i = ch->output_idx;
Chaithrika U Se7332e32009-06-09 05:55:37 -0300867
868 return 0;
869}
870
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300871/**
Hans Verkuil0598c172012-09-18 07:18:47 -0300872 * vpif_enum_dv_timings() - ENUM_DV_TIMINGS handler
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300873 * @file: file ptr
874 * @priv: file handle
Hans Verkuil0598c172012-09-18 07:18:47 -0300875 * @timings: input timings
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300876 */
Hans Verkuil0598c172012-09-18 07:18:47 -0300877static int
878vpif_enum_dv_timings(struct file *file, void *priv,
879 struct v4l2_enum_dv_timings *timings)
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300880{
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300881 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300882 struct video_device *vdev = video_devdata(file);
883 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300884 struct vpif_display_chan_config *chan_cfg;
885 struct v4l2_output output;
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300886 int ret;
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300887
Markus Elfring396c88e2016-10-12 10:40:32 -0300888 if (!config->chan_config[ch->channel_id].outputs)
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300889 return -ENODATA;
890
891 chan_cfg = &config->chan_config[ch->channel_id];
892 output = chan_cfg->outputs[ch->output_idx].output;
893 if (output.capabilities != V4L2_OUT_CAP_DV_TIMINGS)
894 return -ENODATA;
895
Laurent Pinchart10d21462014-01-31 09:04:19 -0300896 timings->pad = 0;
897
898 ret = v4l2_subdev_call(ch->sd, pad, enum_dv_timings, timings);
Wei Yongjun63af4af2012-10-30 09:49:38 -0300899 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300900 return -EINVAL;
901 return ret;
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300902}
903
904/**
Mats Randgaardc027e162010-12-16 12:17:44 -0300905 * vpif_s_dv_timings() - S_DV_TIMINGS handler
906 * @file: file ptr
907 * @priv: file handle
908 * @timings: digital video timings
909 */
910static int vpif_s_dv_timings(struct file *file, void *priv,
911 struct v4l2_dv_timings *timings)
912{
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300913 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -0300914 struct video_device *vdev = video_devdata(file);
915 struct channel_obj *ch = video_get_drvdata(vdev);
Mats Randgaardc027e162010-12-16 12:17:44 -0300916 struct vpif_params *vpifparams = &ch->vpifparams;
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300917 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Mats Randgaardc027e162010-12-16 12:17:44 -0300918 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
919 struct video_obj *vid_ch = &ch->video;
Hans Verkuil0598c172012-09-18 07:18:47 -0300920 struct v4l2_bt_timings *bt = &vid_ch->dv_timings.bt;
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300921 struct vpif_display_chan_config *chan_cfg;
922 struct v4l2_output output;
Mats Randgaardc027e162010-12-16 12:17:44 -0300923 int ret;
924
Markus Elfring396c88e2016-10-12 10:40:32 -0300925 if (!config->chan_config[ch->channel_id].outputs)
Lad, Prabhakar1093c592014-05-16 10:33:27 -0300926 return -ENODATA;
927
928 chan_cfg = &config->chan_config[ch->channel_id];
929 output = chan_cfg->outputs[ch->output_idx].output;
930 if (output.capabilities != V4L2_OUT_CAP_DV_TIMINGS)
931 return -ENODATA;
932
933 if (vb2_is_busy(&common->buffer_queue))
934 return -EBUSY;
935
Mats Randgaardc027e162010-12-16 12:17:44 -0300936 if (timings->type != V4L2_DV_BT_656_1120) {
937 vpif_dbg(2, debug, "Timing type not defined\n");
938 return -EINVAL;
939 }
940
941 /* Configure subdevice timings, if any */
Hans Verkuil882084a2012-09-20 09:06:31 -0300942 ret = v4l2_subdev_call(ch->sd, video, s_dv_timings, timings);
Lad, Prabhakar2bd4e582012-09-25 08:11:49 -0300943 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
944 ret = 0;
945 if (ret < 0) {
Mats Randgaardc027e162010-12-16 12:17:44 -0300946 vpif_dbg(2, debug, "Error setting custom DV timings\n");
947 return ret;
948 }
949
950 if (!(timings->bt.width && timings->bt.height &&
951 (timings->bt.hbackporch ||
952 timings->bt.hfrontporch ||
953 timings->bt.hsync) &&
954 timings->bt.vfrontporch &&
955 (timings->bt.vbackporch ||
956 timings->bt.vsync))) {
Mauro Carvalho Chehabded026e2016-10-18 17:44:08 -0200957 vpif_dbg(2, debug, "Timings for width, height, horizontal back porch, horizontal sync, horizontal front porch, vertical back porch, vertical sync and vertical back porch must be defined\n");
Mats Randgaardc027e162010-12-16 12:17:44 -0300958 return -EINVAL;
959 }
960
Hans Verkuil0598c172012-09-18 07:18:47 -0300961 vid_ch->dv_timings = *timings;
Mats Randgaardc027e162010-12-16 12:17:44 -0300962
963 /* Configure video port timings */
964
Hans Verkuile3655262013-07-29 08:41:00 -0300965 std_info->eav2sav = V4L2_DV_BT_BLANKING_WIDTH(bt) - 8;
Mats Randgaardc027e162010-12-16 12:17:44 -0300966 std_info->sav2eav = bt->width;
967
968 std_info->l1 = 1;
969 std_info->l3 = bt->vsync + bt->vbackporch + 1;
970
Hans Verkuile3655262013-07-29 08:41:00 -0300971 std_info->vsize = V4L2_DV_BT_FRAME_HEIGHT(bt);
Mats Randgaardc027e162010-12-16 12:17:44 -0300972 if (bt->interlaced) {
973 if (bt->il_vbackporch || bt->il_vfrontporch || bt->il_vsync) {
Mats Randgaardc027e162010-12-16 12:17:44 -0300974 std_info->l5 = std_info->vsize/2 -
975 (bt->vfrontporch - 1);
976 std_info->l7 = std_info->vsize/2 + 1;
977 std_info->l9 = std_info->l7 + bt->il_vsync +
978 bt->il_vbackporch + 1;
979 std_info->l11 = std_info->vsize -
980 (bt->il_vfrontporch - 1);
981 } else {
Mauro Carvalho Chehabded026e2016-10-18 17:44:08 -0200982 vpif_dbg(2, debug, "Required timing values for interlaced BT format missing\n");
Mats Randgaardc027e162010-12-16 12:17:44 -0300983 return -EINVAL;
984 }
985 } else {
Mats Randgaardc027e162010-12-16 12:17:44 -0300986 std_info->l5 = std_info->vsize - (bt->vfrontporch - 1);
987 }
988 strncpy(std_info->name, "Custom timings BT656/1120",
989 VPIF_MAX_NAME);
990 std_info->width = bt->width;
991 std_info->height = bt->height;
992 std_info->frm_fmt = bt->interlaced ? 0 : 1;
993 std_info->ycmux_mode = 0;
994 std_info->capture_format = 0;
995 std_info->vbi_supported = 0;
996 std_info->hd_sd = 1;
997 std_info->stdid = 0;
Mats Randgaardc027e162010-12-16 12:17:44 -0300998 vid_ch->stdid = 0;
Mats Randgaardc027e162010-12-16 12:17:44 -0300999
1000 return 0;
1001}
1002
1003/**
1004 * vpif_g_dv_timings() - G_DV_TIMINGS handler
1005 * @file: file ptr
1006 * @priv: file handle
1007 * @timings: digital video timings
1008 */
1009static int vpif_g_dv_timings(struct file *file, void *priv,
1010 struct v4l2_dv_timings *timings)
1011{
Lad, Prabhakar1093c592014-05-16 10:33:27 -03001012 struct vpif_display_config *config = vpif_dev->platform_data;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -03001013 struct video_device *vdev = video_devdata(file);
1014 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakar1093c592014-05-16 10:33:27 -03001015 struct vpif_display_chan_config *chan_cfg;
Mats Randgaardc027e162010-12-16 12:17:44 -03001016 struct video_obj *vid_ch = &ch->video;
Lad, Prabhakar1093c592014-05-16 10:33:27 -03001017 struct v4l2_output output;
1018
Markus Elfring396c88e2016-10-12 10:40:32 -03001019 if (!config->chan_config[ch->channel_id].outputs)
Lad, Prabhakar1093c592014-05-16 10:33:27 -03001020 goto error;
1021
1022 chan_cfg = &config->chan_config[ch->channel_id];
1023 output = chan_cfg->outputs[ch->output_idx].output;
1024
1025 if (output.capabilities != V4L2_OUT_CAP_DV_TIMINGS)
1026 goto error;
Mats Randgaardc027e162010-12-16 12:17:44 -03001027
Hans Verkuil0598c172012-09-18 07:18:47 -03001028 *timings = vid_ch->dv_timings;
Mats Randgaardc027e162010-12-16 12:17:44 -03001029
1030 return 0;
Lad, Prabhakar1093c592014-05-16 10:33:27 -03001031error:
1032 return -ENODATA;
Mats Randgaardc027e162010-12-16 12:17:44 -03001033}
Mats Randgaard7036d6a2010-12-16 12:17:41 -03001034
1035/*
Mats Randgaard7036d6a2010-12-16 12:17:41 -03001036 * vpif_log_status() - Status information
1037 * @file: file ptr
1038 * @priv: file handle
1039 *
1040 * Returns zero.
1041 */
1042static int vpif_log_status(struct file *filep, void *priv)
1043{
1044 /* status for sub devices */
1045 v4l2_device_call_all(&vpif_obj.v4l2_dev, 0, core, log_status);
1046
1047 return 0;
1048}
1049
Chaithrika U Se7332e32009-06-09 05:55:37 -03001050/* vpif display ioctl operations */
1051static const struct v4l2_ioctl_ops vpif_ioctl_ops = {
Lad, Prabhakardcce8662014-05-16 10:33:25 -03001052 .vidioc_querycap = vpif_querycap,
Chaithrika U Se7332e32009-06-09 05:55:37 -03001053 .vidioc_enum_fmt_vid_out = vpif_enum_fmt_vid_out,
Lad, Prabhakardcce8662014-05-16 10:33:25 -03001054 .vidioc_g_fmt_vid_out = vpif_g_fmt_vid_out,
1055 .vidioc_s_fmt_vid_out = vpif_s_fmt_vid_out,
1056 .vidioc_try_fmt_vid_out = vpif_try_fmt_vid_out,
Lad, Prabhakarb92cde12014-05-16 10:33:16 -03001057
1058 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1059 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1060 .vidioc_querybuf = vb2_ioctl_querybuf,
1061 .vidioc_qbuf = vb2_ioctl_qbuf,
1062 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1063 .vidioc_expbuf = vb2_ioctl_expbuf,
1064 .vidioc_streamon = vb2_ioctl_streamon,
1065 .vidioc_streamoff = vb2_ioctl_streamoff,
1066
Lad, Prabhakardcce8662014-05-16 10:33:25 -03001067 .vidioc_s_std = vpif_s_std,
Chaithrika U Se7332e32009-06-09 05:55:37 -03001068 .vidioc_g_std = vpif_g_std,
Lad, Prabhakardcce8662014-05-16 10:33:25 -03001069
Chaithrika U Se7332e32009-06-09 05:55:37 -03001070 .vidioc_enum_output = vpif_enum_output,
1071 .vidioc_s_output = vpif_s_output,
1072 .vidioc_g_output = vpif_g_output,
Lad, Prabhakardcce8662014-05-16 10:33:25 -03001073
1074 .vidioc_enum_dv_timings = vpif_enum_dv_timings,
1075 .vidioc_s_dv_timings = vpif_s_dv_timings,
1076 .vidioc_g_dv_timings = vpif_g_dv_timings,
1077
Mats Randgaard7036d6a2010-12-16 12:17:41 -03001078 .vidioc_log_status = vpif_log_status,
Chaithrika U Se7332e32009-06-09 05:55:37 -03001079};
1080
1081static const struct v4l2_file_operations vpif_fops = {
1082 .owner = THIS_MODULE,
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -03001083 .open = v4l2_fh_open,
1084 .release = vb2_fop_release,
Hans Verkuil9bfaae22011-01-05 13:35:45 -03001085 .unlocked_ioctl = video_ioctl2,
Lad, Prabhakar4be21532014-05-16 10:33:14 -03001086 .mmap = vb2_fop_mmap,
1087 .poll = vb2_fop_poll
Chaithrika U Se7332e32009-06-09 05:55:37 -03001088};
1089
Chaithrika U Se7332e32009-06-09 05:55:37 -03001090/*Configure the channels, buffer sizei, request irq */
1091static int initialize_vpif(void)
1092{
1093 int free_channel_objects_index;
Lad, Prabhakard5b94b92014-05-16 10:33:23 -03001094 int err, i, j;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001095
1096 /* Allocate memory for six channel objects */
1097 for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) {
1098 vpif_obj.dev[i] =
Mats Randgaard1f8766b2010-08-30 10:30:37 -03001099 kzalloc(sizeof(struct channel_obj), GFP_KERNEL);
Chaithrika U Se7332e32009-06-09 05:55:37 -03001100 /* If memory allocation fails, return error */
1101 if (!vpif_obj.dev[i]) {
1102 free_channel_objects_index = i;
1103 err = -ENOMEM;
1104 goto vpif_init_free_channel_objects;
1105 }
1106 }
1107
Chaithrika U Se7332e32009-06-09 05:55:37 -03001108 return 0;
1109
1110vpif_init_free_channel_objects:
1111 for (j = 0; j < free_channel_objects_index; j++)
1112 kfree(vpif_obj.dev[j]);
1113 return err;
1114}
1115
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001116static int vpif_async_bound(struct v4l2_async_notifier *notifier,
1117 struct v4l2_subdev *subdev,
1118 struct v4l2_async_subdev *asd)
1119{
1120 int i;
1121
1122 for (i = 0; i < vpif_obj.config->subdev_count; i++)
1123 if (!strcmp(vpif_obj.config->subdevinfo[i].name,
1124 subdev->name)) {
1125 vpif_obj.sd[i] = subdev;
1126 vpif_obj.sd[i]->grp_id = 1 << i;
1127 return 0;
1128 }
1129
1130 return -EINVAL;
1131}
1132
1133static int vpif_probe_complete(void)
1134{
1135 struct common_obj *common;
Lad, Prabhakar4be21532014-05-16 10:33:14 -03001136 struct video_device *vdev;
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001137 struct channel_obj *ch;
Lad, Prabhakara2b235c2014-05-16 10:33:06 -03001138 struct vb2_queue *q;
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001139 int j, err, k;
1140
1141 for (j = 0; j < VPIF_DISPLAY_MAX_DEVICES; j++) {
1142 ch = vpif_obj.dev[j];
1143 /* Initialize field of the channel objects */
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001144 for (k = 0; k < VPIF_NUMOBJECTS; k++) {
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001145 common = &ch->common[k];
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001146 spin_lock_init(&common->irqlock);
1147 mutex_init(&common->lock);
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001148 common->set_addr = NULL;
1149 common->ytop_off = 0;
1150 common->ybtm_off = 0;
1151 common->ctop_off = 0;
1152 common->cbtm_off = 0;
1153 common->cur_frm = NULL;
1154 common->next_frm = NULL;
1155 memset(&common->fmt, 0, sizeof(common->fmt));
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001156 }
1157 ch->initialized = 0;
1158 if (vpif_obj.config->subdev_count)
1159 ch->sd = vpif_obj.sd[0];
1160 ch->channel_id = j;
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001161
1162 memset(&ch->vpifparams, 0, sizeof(ch->vpifparams));
1163
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001164 ch->common[VPIF_VIDEO_INDEX].fmt.type =
1165 V4L2_BUF_TYPE_VIDEO_OUTPUT;
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001166
1167 /* select output 0 */
1168 err = vpif_set_output(vpif_obj.config, ch, 0);
1169 if (err)
1170 goto probe_out;
1171
Lad, Prabhakar9cba6532014-05-16 10:33:30 -03001172 /* set initial format */
1173 ch->video.stdid = V4L2_STD_525_60;
1174 memset(&ch->video.dv_timings, 0, sizeof(ch->video.dv_timings));
1175 vpif_update_resolution(ch);
1176
Lad, Prabhakara2b235c2014-05-16 10:33:06 -03001177 /* Initialize vb2 queue */
1178 q = &common->buffer_queue;
1179 q->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
1180 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
1181 q->drv_priv = ch;
1182 q->ops = &video_qops;
1183 q->mem_ops = &vb2_dma_contig_memops;
1184 q->buf_struct_size = sizeof(struct vpif_disp_buffer);
1185 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1186 q->min_buffers_needed = 1;
Lad, Prabhakard10ed5c2014-05-16 10:33:08 -03001187 q->lock = &common->lock;
Hans Verkuil53ddcc62016-02-15 13:09:10 -02001188 q->dev = vpif_dev;
Lad, Prabhakara2b235c2014-05-16 10:33:06 -03001189 err = vb2_queue_init(q);
1190 if (err) {
1191 vpif_err("vpif_display: vb2_queue_init() failed\n");
1192 goto probe_out;
1193 }
1194
Lad, Prabhakara2b235c2014-05-16 10:33:06 -03001195 INIT_LIST_HEAD(&common->dma_queue);
1196
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001197 /* register video device */
Mauro Carvalho Chehab212bdba2014-08-22 06:38:14 -05001198 vpif_dbg(1, debug, "channel=%p,channel->video_dev=%p\n",
1199 ch, &ch->video_dev);
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001200
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -03001201 /* Initialize the video_device structure */
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001202 vdev = &ch->video_dev;
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -03001203 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name));
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001204 vdev->release = video_device_release_empty;
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -03001205 vdev->fops = &vpif_fops;
1206 vdev->ioctl_ops = &vpif_ioctl_ops;
1207 vdev->v4l2_dev = &vpif_obj.v4l2_dev;
1208 vdev->vfl_dir = VFL_DIR_TX;
Lad, Prabhakar4be21532014-05-16 10:33:14 -03001209 vdev->queue = q;
Lad, Prabhakarfcc22af2014-05-16 10:33:15 -03001210 vdev->lock = &common->lock;
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001211 video_set_drvdata(&ch->video_dev, ch);
Lad, Prabhakar4be21532014-05-16 10:33:14 -03001212 err = video_register_device(vdev, VFL_TYPE_GRABBER,
1213 (j ? 3 : 2));
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001214 if (err < 0)
1215 goto probe_out;
1216 }
1217
1218 return 0;
1219
1220probe_out:
1221 for (k = 0; k < j; k++) {
1222 ch = vpif_obj.dev[k];
Lad, Prabhakara2b235c2014-05-16 10:33:06 -03001223 common = &ch->common[k];
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001224 video_unregister_device(&ch->video_dev);
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001225 }
1226 return err;
1227}
1228
1229static int vpif_async_complete(struct v4l2_async_notifier *notifier)
1230{
1231 return vpif_probe_complete();
1232}
1233
Chaithrika U Se7332e32009-06-09 05:55:37 -03001234/*
1235 * vpif_probe: This function creates device entries by register itself to the
1236 * V4L2 driver and initializes fields of each channel objects
1237 */
1238static __init int vpif_probe(struct platform_device *pdev)
1239{
Muralidharan Karicheri317b2e22009-09-16 14:30:53 -03001240 struct vpif_subdev_info *subdevdata;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001241 struct i2c_adapter *i2c_adap;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001242 struct resource *res;
1243 int subdev_count;
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001244 int res_idx = 0;
1245 int i, err;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001246
1247 vpif_dev = &pdev->dev;
Muralidharan Karicheri317b2e22009-09-16 14:30:53 -03001248 err = initialize_vpif();
1249
1250 if (err) {
1251 v4l2_err(vpif_dev->driver, "Error initializing vpif\n");
1252 return err;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001253 }
1254
Chaithrika U Se7332e32009-06-09 05:55:37 -03001255 err = v4l2_device_register(vpif_dev, &vpif_obj.v4l2_dev);
1256 if (err) {
1257 v4l2_err(vpif_dev->driver, "Error registering v4l2 device\n");
1258 return err;
1259 }
1260
Hans Verkuil01b1d9752012-09-20 09:06:28 -03001261 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, res_idx))) {
Lad, Prabhakar379d2cf2013-06-17 11:20:51 -03001262 err = devm_request_irq(&pdev->dev, res->start, vpif_channel_isr,
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -03001263 IRQF_SHARED, VPIF_DRIVER_NAME,
Lad, Prabhakar379d2cf2013-06-17 11:20:51 -03001264 (void *)(&vpif_obj.dev[res_idx]->
1265 channel_id));
1266 if (err) {
1267 err = -EINVAL;
1268 vpif_err("VPIF IRQ request failed\n");
1269 goto vpif_unregister;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001270 }
Hans Verkuil01b1d9752012-09-20 09:06:28 -03001271 res_idx++;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001272 }
1273
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001274 vpif_obj.config = pdev->dev.platform_data;
1275 subdev_count = vpif_obj.config->subdev_count;
1276 subdevdata = vpif_obj.config->subdevinfo;
Markus Elfringd5cf4672016-10-12 10:30:44 -03001277 vpif_obj.sd = kcalloc(subdev_count, sizeof(*vpif_obj.sd), GFP_KERNEL);
Markus Elfring396c88e2016-10-12 10:40:32 -03001278 if (!vpif_obj.sd) {
Hans Verkuile6067f82012-09-20 09:06:27 -03001279 err = -ENOMEM;
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001280 goto vpif_unregister;
Hans Verkuile6067f82012-09-20 09:06:27 -03001281 }
1282
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001283 if (!vpif_obj.config->asd_sizes) {
1284 i2c_adap = i2c_get_adapter(1);
1285 for (i = 0; i < subdev_count; i++) {
1286 vpif_obj.sd[i] =
1287 v4l2_i2c_new_subdev_board(&vpif_obj.v4l2_dev,
1288 i2c_adap,
1289 &subdevdata[i].
1290 board_info,
1291 NULL);
1292 if (!vpif_obj.sd[i]) {
1293 vpif_err("Error registering v4l2 subdevice\n");
Wei Yongjun9d3e9762013-08-22 22:59:44 -03001294 err = -ENODEV;
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001295 goto probe_subdev_out;
1296 }
1297
1298 if (vpif_obj.sd[i])
1299 vpif_obj.sd[i]->grp_id = 1 << i;
1300 }
1301 vpif_probe_complete();
1302 } else {
Sylwester Nawrockie8419d02013-07-19 12:31:10 -03001303 vpif_obj.notifier.subdevs = vpif_obj.config->asd;
Lad, Prabhakar4b8a5312013-06-25 11:17:35 -03001304 vpif_obj.notifier.num_subdevs = vpif_obj.config->asd_sizes[0];
1305 vpif_obj.notifier.bound = vpif_async_bound;
1306 vpif_obj.notifier.complete = vpif_async_complete;
1307 err = v4l2_async_notifier_register(&vpif_obj.v4l2_dev,
1308 &vpif_obj.notifier);
1309 if (err) {
1310 vpif_err("Error registering async notifier\n");
1311 err = -EINVAL;
Hans Verkuile6067f82012-09-20 09:06:27 -03001312 goto probe_subdev_out;
1313 }
Hans Verkuile6067f82012-09-20 09:06:27 -03001314 }
1315
Chaithrika U Se7332e32009-06-09 05:55:37 -03001316 return 0;
1317
Hans Verkuile6067f82012-09-20 09:06:27 -03001318probe_subdev_out:
1319 kfree(vpif_obj.sd);
Lad, Prabhakar9c63e012013-06-17 11:20:50 -03001320vpif_unregister:
Chaithrika U Se7332e32009-06-09 05:55:37 -03001321 v4l2_device_unregister(&vpif_obj.v4l2_dev);
Chaithrika U Se7332e32009-06-09 05:55:37 -03001322
1323 return err;
1324}
1325
1326/*
1327 * vpif_remove: It un-register channels from V4L2 driver
1328 */
1329static int vpif_remove(struct platform_device *device)
1330{
Lad, Prabhakara2b235c2014-05-16 10:33:06 -03001331 struct common_obj *common;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001332 struct channel_obj *ch;
Lad, Prabhakar9c63e012013-06-17 11:20:50 -03001333 int i;
Chaithrika U Se7332e32009-06-09 05:55:37 -03001334
1335 v4l2_device_unregister(&vpif_obj.v4l2_dev);
1336
Lad, Prabhakar0b361582013-06-17 11:20:48 -03001337 kfree(vpif_obj.sd);
Chaithrika U Se7332e32009-06-09 05:55:37 -03001338 /* un-register device */
1339 for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) {
1340 /* Get the pointer to the channel object */
1341 ch = vpif_obj.dev[i];
Prabhakar Lade9b58722014-07-18 13:31:51 -03001342 common = &ch->common[VPIF_VIDEO_INDEX];
Chaithrika U Se7332e32009-06-09 05:55:37 -03001343 /* Unregister video device */
Lad, Prabhakare933c6b2015-03-08 18:57:24 -03001344 video_unregister_device(&ch->video_dev);
Lad, Prabhakar0b361582013-06-17 11:20:48 -03001345 kfree(vpif_obj.dev[i]);
Chaithrika U Se7332e32009-06-09 05:55:37 -03001346 }
1347
1348 return 0;
1349}
1350
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001351#ifdef CONFIG_PM_SLEEP
Manjunath Hadlie9530da2012-04-13 04:50:35 -03001352static int vpif_suspend(struct device *dev)
1353{
1354 struct common_obj *common;
1355 struct channel_obj *ch;
1356 int i;
1357
1358 for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) {
1359 /* Get the pointer to the channel object */
1360 ch = vpif_obj.dev[i];
1361 common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001362
Prabhakar Lad81578922014-09-06 12:26:50 -03001363 if (!vb2_start_streaming_called(&common->buffer_queue))
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001364 continue;
1365
Manjunath Hadlie9530da2012-04-13 04:50:35 -03001366 mutex_lock(&common->lock);
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001367 /* Disable channel */
1368 if (ch->channel_id == VPIF_CHANNEL2_VIDEO) {
1369 enable_channel2(0);
1370 channel2_intr_enable(0);
1371 }
1372 if (ch->channel_id == VPIF_CHANNEL3_VIDEO ||
1373 ycmux_mode == 2) {
1374 enable_channel3(0);
1375 channel3_intr_enable(0);
Manjunath Hadlie9530da2012-04-13 04:50:35 -03001376 }
1377 mutex_unlock(&common->lock);
1378 }
1379
1380 return 0;
1381}
1382
1383static int vpif_resume(struct device *dev)
1384{
1385
1386 struct common_obj *common;
1387 struct channel_obj *ch;
1388 int i;
1389
1390 for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) {
1391 /* Get the pointer to the channel object */
1392 ch = vpif_obj.dev[i];
1393 common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001394
Prabhakar Lad81578922014-09-06 12:26:50 -03001395 if (!vb2_start_streaming_called(&common->buffer_queue))
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001396 continue;
1397
Manjunath Hadlie9530da2012-04-13 04:50:35 -03001398 mutex_lock(&common->lock);
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001399 /* Enable channel */
1400 if (ch->channel_id == VPIF_CHANNEL2_VIDEO) {
1401 enable_channel2(1);
1402 channel2_intr_enable(1);
1403 }
1404 if (ch->channel_id == VPIF_CHANNEL3_VIDEO ||
1405 ycmux_mode == 2) {
1406 enable_channel3(1);
1407 channel3_intr_enable(1);
Manjunath Hadlie9530da2012-04-13 04:50:35 -03001408 }
1409 mutex_unlock(&common->lock);
1410 }
1411
1412 return 0;
1413}
1414
Manjunath Hadlie9530da2012-04-13 04:50:35 -03001415#endif
1416
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001417static SIMPLE_DEV_PM_OPS(vpif_pm_ops, vpif_suspend, vpif_resume);
1418
Mats Randgaardffa1b392010-08-30 10:30:36 -03001419static __refdata struct platform_driver vpif_driver = {
Chaithrika U Se7332e32009-06-09 05:55:37 -03001420 .driver = {
Lad, Prabhakar76c4c2b2014-05-16 10:33:22 -03001421 .name = VPIF_DRIVER_NAME,
Lad, Prabhakarba1902e2014-05-16 10:33:26 -03001422 .pm = &vpif_pm_ops,
Chaithrika U Se7332e32009-06-09 05:55:37 -03001423 },
1424 .probe = vpif_probe,
1425 .remove = vpif_remove,
1426};
1427
Lad, Prabhakarb8d067b2013-06-17 11:20:49 -03001428module_platform_driver(vpif_driver);