blob: a89367ab1e068a593396c808c892ca0c8bf5d70d [file] [log] [blame]
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001/*
2 * Copyright (C) 2009 Texas Instruments Inc
Lad, Prabhakar96787eb2014-05-16 10:33:55 -03003 * Copyright (C) 2014 Lad, Prabhakar <prabhakar.csengg@gmail.com>
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030015 * TODO : add support for VBI & HBI data service
16 * add static buffer allocation
17 */
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030018
Lad, Prabhakar012eef72013-04-19 05:53:29 -030019#include <linux/module.h>
20#include <linux/interrupt.h>
Sakari Ailusa2d17962017-06-08 12:04:07 -030021#include <linux/of_graph.h>
Lad, Prabhakar012eef72013-04-19 05:53:29 -030022#include <linux/platform_device.h>
23#include <linux/slab.h>
24
Sakari Ailusa2d17962017-06-08 12:04:07 -030025#include <media/v4l2-fwnode.h>
Lad, Prabhakar012eef72013-04-19 05:53:29 -030026#include <media/v4l2-ioctl.h>
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -030027#include <media/i2c/tvp514x.h>
Kevin Hilmandde32d42017-06-06 20:37:40 -030028#include <media/v4l2-mediabus.h>
29
30#include <linux/videodev2.h>
Lad, Prabhakar012eef72013-04-19 05:53:29 -030031
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030032#include "vpif.h"
Lad, Prabhakar012eef72013-04-19 05:53:29 -030033#include "vpif_capture.h"
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030034
35MODULE_DESCRIPTION("TI DaVinci VPIF Capture driver");
36MODULE_LICENSE("GPL");
Mauro Carvalho Chehab64dc3c12011-06-25 11:28:37 -030037MODULE_VERSION(VPIF_CAPTURE_VERSION);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030038
39#define vpif_err(fmt, arg...) v4l2_err(&vpif_obj.v4l2_dev, fmt, ## arg)
40#define vpif_dbg(level, debug, fmt, arg...) \
41 v4l2_dbg(level, debug, &vpif_obj.v4l2_dev, fmt, ## arg)
42
43static int debug = 1;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030044
45module_param(debug, int, 0644);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030046
47MODULE_PARM_DESC(debug, "Debug level 0-1");
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030048
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -030049#define VPIF_DRIVER_NAME "vpif_capture"
Kevin Hilmanbff782d2016-12-16 22:47:54 -020050MODULE_ALIAS("platform:" VPIF_DRIVER_NAME);
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -030051
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030052/* global variables */
53static struct vpif_device vpif_obj = { {NULL} };
54static struct device *vpif_dev;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -030055static void vpif_calculate_offsets(struct channel_obj *ch);
56static void vpif_config_addr(struct channel_obj *ch, int muxmode);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030057
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -030058static u8 channel_first_int[VPIF_NUMBER_OF_OBJECTS][2] = { {1, 1} };
59
Lad, Prabhakarc66238f2014-05-16 10:33:45 -030060/* Is set to 1 in case of SDTV formats, 2 in case of HDTV formats. */
61static int ycmux_mode;
62
Junghak Sung2d700712015-09-22 10:30:30 -030063static inline
64struct vpif_cap_buffer *to_vpif_buffer(struct vb2_v4l2_buffer *vb)
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -030065{
66 return container_of(vb, struct vpif_cap_buffer, vb);
67}
68
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030069/**
Lad, Prabhakar23e76a22014-05-16 10:33:37 -030070 * vpif_buffer_prepare : callback function for buffer prepare
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -030071 * @vb: ptr to vb2_buffer
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030072 *
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -030073 * This is the callback function for buffer prepare when vb2_qbuf()
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030074 * function is called. The buffer is prepared and user space virtual address
75 * or user address is converted into physical address
76 */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -030077static int vpif_buffer_prepare(struct vb2_buffer *vb)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030078{
Junghak Sung2d700712015-09-22 10:30:30 -030079 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -030080 struct vb2_queue *q = vb->vb2_queue;
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -030081 struct channel_obj *ch = vb2_get_drv_priv(q);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030082 struct common_obj *common;
83 unsigned long addr;
84
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030085 vpif_dbg(2, debug, "vpif_buffer_prepare\n");
86
87 common = &ch->common[VPIF_VIDEO_INDEX];
88
Lad, Prabhakar23e76a22014-05-16 10:33:37 -030089 vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage);
90 if (vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
91 return -EINVAL;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -030092
Junghak Sung2d700712015-09-22 10:30:30 -030093 vbuf->field = common->fmt.fmt.pix.field;
Lad, Prabhakar23e76a22014-05-16 10:33:37 -030094
95 addr = vb2_dma_contig_plane_dma_addr(vb, 0);
96 if (!IS_ALIGNED((addr + common->ytop_off), 8) ||
97 !IS_ALIGNED((addr + common->ybtm_off), 8) ||
98 !IS_ALIGNED((addr + common->ctop_off), 8) ||
99 !IS_ALIGNED((addr + common->cbtm_off), 8)) {
100 vpif_dbg(1, debug, "offset is not aligned\n");
101 return -EINVAL;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300102 }
Lad, Prabhakar23e76a22014-05-16 10:33:37 -0300103
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300104 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300105}
106
107/**
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300108 * vpif_buffer_queue_setup : Callback function for buffer setup.
109 * @vq: vb2_queue ptr
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300110 * @nbuffers: ptr to number of buffers requested by application
111 * @nplanes:: contains number of distinct video planes needed to hold a frame
112 * @sizes[]: contains the size (in bytes) of each plane.
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300113 * @alloc_devs: ptr to allocation context
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300114 *
115 * This callback function is called when reqbuf() is called to adjust
116 * the buffer count and buffer size
117 */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300118static int vpif_buffer_queue_setup(struct vb2_queue *vq,
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300119 unsigned int *nbuffers, unsigned int *nplanes,
Hans Verkuil36c0f8b2016-04-15 09:15:05 -0300120 unsigned int sizes[], struct device *alloc_devs[])
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300121{
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -0300122 struct channel_obj *ch = vb2_get_drv_priv(vq);
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200123 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
124 unsigned size = common->fmt.fmt.pix.sizeimage;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300125
126 vpif_dbg(2, debug, "vpif_buffer_setup\n");
127
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200128 if (*nplanes) {
129 if (sizes[0] < size)
130 return -EINVAL;
131 size = sizes[0];
132 }
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300133
Lad, Prabhakar837939d2014-05-16 10:33:38 -0300134 if (vq->num_buffers + *nbuffers < 3)
135 *nbuffers = 3 - vq->num_buffers;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300136
137 *nplanes = 1;
Hans Verkuildf9ecb02015-10-28 00:50:37 -0200138 sizes[0] = size;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300139
Lad, Prabhakar837939d2014-05-16 10:33:38 -0300140 /* Calculate the offset for Y and C data in the buffer */
141 vpif_calculate_offsets(ch);
142
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300143 return 0;
144}
145
146/**
147 * vpif_buffer_queue : Callback function to add buffer to DMA queue
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300148 * @vb: ptr to vb2_buffer
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300149 */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300150static void vpif_buffer_queue(struct vb2_buffer *vb)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300151{
Junghak Sung2d700712015-09-22 10:30:30 -0300152 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -0300153 struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue);
Junghak Sung2d700712015-09-22 10:30:30 -0300154 struct vpif_cap_buffer *buf = to_vpif_buffer(vbuf);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300155 struct common_obj *common;
Hans Verkuilaec96832012-11-16 12:03:06 -0300156 unsigned long flags;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300157
158 common = &ch->common[VPIF_VIDEO_INDEX];
159
160 vpif_dbg(2, debug, "vpif_buffer_queue\n");
161
Hans Verkuilaec96832012-11-16 12:03:06 -0300162 spin_lock_irqsave(&common->irqlock, flags);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300163 /* add the buffer to the DMA queue */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300164 list_add_tail(&buf->list, &common->dma_queue);
Hans Verkuilaec96832012-11-16 12:03:06 -0300165 spin_unlock_irqrestore(&common->irqlock, flags);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300166}
167
Lad, Prabhakar41b9f242014-05-16 10:33:39 -0300168/**
169 * vpif_start_streaming : Starts the DMA engine for streaming
170 * @vb: ptr to vb2_buffer
171 * @count: number of buffers
172 */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300173static int vpif_start_streaming(struct vb2_queue *vq, unsigned int count)
174{
175 struct vpif_capture_config *vpif_config_data =
176 vpif_dev->platform_data;
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -0300177 struct channel_obj *ch = vb2_get_drv_priv(vq);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300178 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
179 struct vpif_params *vpif = &ch->vpifparams;
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300180 struct vpif_cap_buffer *buf, *tmp;
181 unsigned long addr, flags;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300182 int ret;
183
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300184 /* Initialize field_id */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300185 ch->field_id = 0;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300186
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300187 /* configure 1 or 2 channel mode */
Lad, Prabhakarf4ad8d72012-09-27 02:33:12 -0300188 if (vpif_config_data->setup_input_channel_mode) {
189 ret = vpif_config_data->
190 setup_input_channel_mode(vpif->std_info.ycmux_mode);
191 if (ret < 0) {
192 vpif_dbg(1, debug, "can't set vpif channel mode\n");
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300193 goto err;
Lad, Prabhakarf4ad8d72012-09-27 02:33:12 -0300194 }
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300195 }
196
Lad, Prabhakard9a3b132014-05-16 10:33:42 -0300197 ret = v4l2_subdev_call(ch->sd, video, s_stream, 1);
198 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV) {
199 vpif_dbg(1, debug, "stream on failed in subdev\n");
200 goto err;
201 }
202
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300203 /* Call vpif_set_params function to set the parameters and addresses */
204 ret = vpif_set_video_params(vpif, ch->channel_id);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300205 if (ret < 0) {
206 vpif_dbg(1, debug, "can't set video params\n");
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300207 goto err;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300208 }
209
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300210 ycmux_mode = ret;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300211 vpif_config_addr(ch, ret);
212
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300213 /* Get the next frame from the buffer queue */
Kevin Hilman62dd4ac2016-12-07 16:30:23 -0200214 spin_lock_irqsave(&common->irqlock, flags);
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300215 common->cur_frm = common->next_frm = list_entry(common->dma_queue.next,
216 struct vpif_cap_buffer, list);
217 /* Remove buffer from the buffer queue */
218 list_del(&common->cur_frm->list);
219 spin_unlock_irqrestore(&common->irqlock, flags);
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300220
Junghak Sung2d700712015-09-22 10:30:30 -0300221 addr = vb2_dma_contig_plane_dma_addr(&common->cur_frm->vb.vb2_buf, 0);
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300222
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300223 common->set_addr(addr + common->ytop_off,
224 addr + common->ybtm_off,
225 addr + common->ctop_off,
226 addr + common->cbtm_off);
227
228 /**
229 * Set interrupt for both the fields in VPIF Register enable channel in
230 * VPIF register
231 */
Lad, Prabhakar9e184042012-09-14 10:22:24 -0300232 channel_first_int[VPIF_VIDEO_INDEX][ch->channel_id] = 1;
Lad, Prabhakar41b9f242014-05-16 10:33:39 -0300233 if (VPIF_CHANNEL0_VIDEO == ch->channel_id) {
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300234 channel0_intr_assert();
235 channel0_intr_enable(1);
236 enable_channel0(1);
237 }
Lad, Prabhakar41b9f242014-05-16 10:33:39 -0300238 if (VPIF_CHANNEL1_VIDEO == ch->channel_id ||
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300239 ycmux_mode == 2) {
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300240 channel1_intr_assert();
241 channel1_intr_enable(1);
242 enable_channel1(1);
243 }
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300244
245 return 0;
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300246
247err:
Kevin Hilman62dd4ac2016-12-07 16:30:23 -0200248 spin_lock_irqsave(&common->irqlock, flags);
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300249 list_for_each_entry_safe(buf, tmp, &common->dma_queue, list) {
250 list_del(&buf->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300251 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_QUEUED);
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300252 }
Dan Carpenter92491962014-06-12 04:01:45 -0300253 spin_unlock_irqrestore(&common->irqlock, flags);
Lad, Prabhakarbebd8d12014-05-16 10:33:35 -0300254
255 return ret;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300256}
257
Lad, Prabhakar41b9f242014-05-16 10:33:39 -0300258/**
259 * vpif_stop_streaming : Stop the DMA engine
260 * @vq: ptr to vb2_queue
261 *
262 * This callback stops the DMA engine and any remaining buffers
263 * in the DMA queue are released.
264 */
Hans Verkuile37559b2014-04-17 02:47:21 -0300265static void vpif_stop_streaming(struct vb2_queue *vq)
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300266{
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -0300267 struct channel_obj *ch = vb2_get_drv_priv(vq);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300268 struct common_obj *common;
Hans Verkuilaec96832012-11-16 12:03:06 -0300269 unsigned long flags;
Lad, Prabhakard9a3b132014-05-16 10:33:42 -0300270 int ret;
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300271
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300272 common = &ch->common[VPIF_VIDEO_INDEX];
273
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300274 /* Disable channel as per its device type and channel id */
275 if (VPIF_CHANNEL0_VIDEO == ch->channel_id) {
276 enable_channel0(0);
277 channel0_intr_enable(0);
278 }
Lad, Prabhakar41b9f242014-05-16 10:33:39 -0300279 if (VPIF_CHANNEL1_VIDEO == ch->channel_id ||
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300280 ycmux_mode == 2) {
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300281 enable_channel1(0);
282 channel1_intr_enable(0);
283 }
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300284
285 ycmux_mode = 0;
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300286
Lad, Prabhakard9a3b132014-05-16 10:33:42 -0300287 ret = v4l2_subdev_call(ch->sd, video, s_stream, 0);
288 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV)
289 vpif_dbg(1, debug, "stream off failed in subdev\n");
290
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300291 /* release all active buffers */
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300292 if (common->cur_frm == common->next_frm) {
Junghak Sung2d700712015-09-22 10:30:30 -0300293 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
294 VB2_BUF_STATE_ERROR);
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300295 } else {
Markus Elfring03161cd2016-10-12 10:20:34 -0300296 if (common->cur_frm)
Junghak Sung2d700712015-09-22 10:30:30 -0300297 vb2_buffer_done(&common->cur_frm->vb.vb2_buf,
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300298 VB2_BUF_STATE_ERROR);
Markus Elfring03161cd2016-10-12 10:20:34 -0300299 if (common->next_frm)
Junghak Sung2d700712015-09-22 10:30:30 -0300300 vb2_buffer_done(&common->next_frm->vb.vb2_buf,
Lad, Prabhakare6ba3db2014-03-22 08:03:07 -0300301 VB2_BUF_STATE_ERROR);
302 }
303
Kevin Hilman62dd4ac2016-12-07 16:30:23 -0200304 spin_lock_irqsave(&common->irqlock, flags);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300305 while (!list_empty(&common->dma_queue)) {
306 common->next_frm = list_entry(common->dma_queue.next,
307 struct vpif_cap_buffer, list);
308 list_del(&common->next_frm->list);
Junghak Sung2d700712015-09-22 10:30:30 -0300309 vb2_buffer_done(&common->next_frm->vb.vb2_buf,
310 VB2_BUF_STATE_ERROR);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300311 }
Hans Verkuilaec96832012-11-16 12:03:06 -0300312 spin_unlock_irqrestore(&common->irqlock, flags);
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300313}
314
Gustavo A. R. Silvaf5d72322017-07-06 16:39:21 -0400315static const struct vb2_ops video_qops = {
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300316 .queue_setup = vpif_buffer_queue_setup,
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300317 .buf_prepare = vpif_buffer_prepare,
318 .start_streaming = vpif_start_streaming,
319 .stop_streaming = vpif_stop_streaming,
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300320 .buf_queue = vpif_buffer_queue,
Prabhakar Ladb41a97a2014-11-26 19:42:33 -0300321 .wait_prepare = vb2_ops_wait_prepare,
322 .wait_finish = vb2_ops_wait_finish,
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300323};
324
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300325/**
326 * vpif_process_buffer_complete: process a completed buffer
327 * @common: ptr to common channel object
328 *
329 * This function time stamp the buffer and mark it as DONE. It also
330 * wake up any process waiting on the QUEUE and set the next buffer
331 * as current
332 */
333static void vpif_process_buffer_complete(struct common_obj *common)
334{
Junghak Sungd6dd6452015-11-03 08:16:37 -0200335 common->cur_frm->vb.vb2_buf.timestamp = ktime_get_ns();
Junghak Sung2d700712015-09-22 10:30:30 -0300336 vb2_buffer_done(&common->cur_frm->vb.vb2_buf, VB2_BUF_STATE_DONE);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300337 /* Make curFrm pointing to nextFrm */
338 common->cur_frm = common->next_frm;
339}
340
341/**
342 * vpif_schedule_next_buffer: set next buffer address for capture
343 * @common : ptr to common channel object
344 *
345 * This function will get next buffer from the dma queue and
346 * set the buffer address in the vpif register for capture.
347 * the buffer is marked active
348 */
349static void vpif_schedule_next_buffer(struct common_obj *common)
350{
351 unsigned long addr = 0;
352
Hans Verkuilaec96832012-11-16 12:03:06 -0300353 spin_lock(&common->irqlock);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300354 common->next_frm = list_entry(common->dma_queue.next,
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300355 struct vpif_cap_buffer, list);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300356 /* Remove that buffer from the buffer queue */
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300357 list_del(&common->next_frm->list);
Hans Verkuilaec96832012-11-16 12:03:06 -0300358 spin_unlock(&common->irqlock);
Junghak Sung2d700712015-09-22 10:30:30 -0300359 addr = vb2_dma_contig_plane_dma_addr(&common->next_frm->vb.vb2_buf, 0);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300360
361 /* Set top and bottom field addresses in VPIF registers */
362 common->set_addr(addr + common->ytop_off,
363 addr + common->ybtm_off,
364 addr + common->ctop_off,
365 addr + common->cbtm_off);
366}
367
368/**
369 * vpif_channel_isr : ISR handler for vpif capture
370 * @irq: irq number
371 * @dev_id: dev_id ptr
372 *
373 * It changes status of the captured buffer, takes next buffer from the queue
Mats Randgaard2c0ddd12010-12-16 12:17:45 -0300374 * and sets its address in VPIF registers
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300375 */
376static irqreturn_t vpif_channel_isr(int irq, void *dev_id)
377{
378 struct vpif_device *dev = &vpif_obj;
379 struct common_obj *common;
380 struct channel_obj *ch;
Markus Elfringc64d61d2016-10-12 10:25:08 -0300381 int channel_id;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300382 int fid = -1, i;
383
384 channel_id = *(int *)(dev_id);
Manjunath Hadlib1fc4232012-04-13 04:43:10 -0300385 if (!vpif_intr_status(channel_id))
386 return IRQ_NONE;
387
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300388 ch = dev->dev[channel_id];
389
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300390 for (i = 0; i < VPIF_NUMBER_OF_OBJECTS; i++) {
391 common = &ch->common[i];
392 /* skip If streaming is not started in this channel */
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300393 /* Check the field format */
Kevin Hilmandde32d42017-06-06 20:37:40 -0300394 if (1 == ch->vpifparams.std_info.frm_fmt ||
395 common->fmt.fmt.pix.field == V4L2_FIELD_NONE) {
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300396 /* Progressive mode */
Hans Verkuilaec96832012-11-16 12:03:06 -0300397 spin_lock(&common->irqlock);
398 if (list_empty(&common->dma_queue)) {
399 spin_unlock(&common->irqlock);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300400 continue;
Hans Verkuilaec96832012-11-16 12:03:06 -0300401 }
402 spin_unlock(&common->irqlock);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300403
404 if (!channel_first_int[i][channel_id])
405 vpif_process_buffer_complete(common);
406
407 channel_first_int[i][channel_id] = 0;
408
409 vpif_schedule_next_buffer(common);
410
411
412 channel_first_int[i][channel_id] = 0;
413 } else {
414 /**
415 * Interlaced mode. If it is first interrupt, ignore
416 * it
417 */
418 if (channel_first_int[i][channel_id]) {
419 channel_first_int[i][channel_id] = 0;
420 continue;
421 }
422 if (0 == i) {
423 ch->field_id ^= 1;
424 /* Get field id from VPIF registers */
425 fid = vpif_channel_getfid(ch->channel_id);
426 if (fid != ch->field_id) {
427 /**
428 * If field id does not match stored
429 * field id, make them in sync
430 */
431 if (0 == fid)
432 ch->field_id = fid;
433 return IRQ_HANDLED;
434 }
435 }
436 /* device field id and local field id are in sync */
437 if (0 == fid) {
438 /* this is even field */
439 if (common->cur_frm == common->next_frm)
440 continue;
441
442 /* mark the current buffer as done */
443 vpif_process_buffer_complete(common);
444 } else if (1 == fid) {
445 /* odd field */
Hans Verkuilaec96832012-11-16 12:03:06 -0300446 spin_lock(&common->irqlock);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300447 if (list_empty(&common->dma_queue) ||
Hans Verkuilaec96832012-11-16 12:03:06 -0300448 (common->cur_frm != common->next_frm)) {
449 spin_unlock(&common->irqlock);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300450 continue;
Hans Verkuilaec96832012-11-16 12:03:06 -0300451 }
452 spin_unlock(&common->irqlock);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300453
454 vpif_schedule_next_buffer(common);
455 }
456 }
457 }
458 return IRQ_HANDLED;
459}
460
461/**
462 * vpif_update_std_info() - update standard related info
463 * @ch: ptr to channel object
464 *
465 * For a given standard selected by application, update values
466 * in the device data structures
467 */
468static int vpif_update_std_info(struct channel_obj *ch)
469{
470 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
471 struct vpif_params *vpifparams = &ch->vpifparams;
472 const struct vpif_channel_config_params *config;
Mats Randgaard2c0ddd12010-12-16 12:17:45 -0300473 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300474 struct video_obj *vid_ch = &ch->video;
475 int index;
Kevin Hilmandde32d42017-06-06 20:37:40 -0300476 struct v4l2_pix_format *pixfmt = &common->fmt.fmt.pix;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300477
478 vpif_dbg(2, debug, "vpif_update_std_info\n");
479
Kevin Hilmandde32d42017-06-06 20:37:40 -0300480 /*
481 * if called after try_fmt or g_fmt, there will already be a size
482 * so use that by default.
483 */
484 if (pixfmt->width && pixfmt->height) {
485 if (pixfmt->field == V4L2_FIELD_ANY ||
486 pixfmt->field == V4L2_FIELD_NONE)
487 pixfmt->field = V4L2_FIELD_NONE;
488
489 vpifparams->iface.if_type = VPIF_IF_BT656;
490 if (pixfmt->pixelformat == V4L2_PIX_FMT_SGRBG10 ||
491 pixfmt->pixelformat == V4L2_PIX_FMT_SBGGR8)
492 vpifparams->iface.if_type = VPIF_IF_RAW_BAYER;
493
494 if (pixfmt->pixelformat == V4L2_PIX_FMT_SGRBG10)
495 vpifparams->params.data_sz = 1; /* 10 bits/pixel. */
496
497 /*
498 * For raw formats from camera sensors, we don't need
499 * the std_info from table lookup, so nothing else to do here.
500 */
501 if (vpifparams->iface.if_type == VPIF_IF_RAW_BAYER) {
502 memset(std_info, 0, sizeof(struct vpif_channel_config_params));
503 vpifparams->std_info.capture_format = 1; /* CCD/raw mode */
504 return 0;
505 }
506 }
507
Mats Randgaardaa444402010-12-16 12:17:42 -0300508 for (index = 0; index < vpif_ch_params_count; index++) {
Lad, Prabhakarced9b212013-03-20 01:28:27 -0300509 config = &vpif_ch_params[index];
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300510 if (config->hd_sd == 0) {
511 vpif_dbg(2, debug, "SD format\n");
512 if (config->stdid & vid_ch->stdid) {
513 memcpy(std_info, config, sizeof(*config));
514 break;
515 }
516 } else {
517 vpif_dbg(2, debug, "HD format\n");
Hans Verkuil0598c172012-09-18 07:18:47 -0300518 if (!memcmp(&config->dv_timings, &vid_ch->dv_timings,
519 sizeof(vid_ch->dv_timings))) {
Mats Randgaard40c8bce2010-12-16 12:17:43 -0300520 memcpy(std_info, config, sizeof(*config));
521 break;
522 }
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300523 }
524 }
525
526 /* standard not found */
Mats Randgaardaa444402010-12-16 12:17:42 -0300527 if (index == vpif_ch_params_count)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300528 return -EINVAL;
529
530 common->fmt.fmt.pix.width = std_info->width;
531 common->width = std_info->width;
532 common->fmt.fmt.pix.height = std_info->height;
533 common->height = std_info->height;
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300534 common->fmt.fmt.pix.sizeimage = common->height * common->width * 2;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300535 common->fmt.fmt.pix.bytesperline = std_info->width;
536 vpifparams->video_params.hpitch = std_info->width;
537 vpifparams->video_params.storage_mode = std_info->frm_fmt;
Mats Randgaard2c0ddd12010-12-16 12:17:45 -0300538
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300539 if (vid_ch->stdid)
540 common->fmt.fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
541 else
542 common->fmt.fmt.pix.colorspace = V4L2_COLORSPACE_REC709;
543
544 if (ch->vpifparams.std_info.frm_fmt)
545 common->fmt.fmt.pix.field = V4L2_FIELD_NONE;
546 else
547 common->fmt.fmt.pix.field = V4L2_FIELD_INTERLACED;
548
549 if (ch->vpifparams.iface.if_type == VPIF_IF_RAW_BAYER)
550 common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_SBGGR8;
551 else
Nori, Sekhar8946ab32017-05-26 07:55:27 -0300552 common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_NV16;
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300553
554 common->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
555
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300556 return 0;
557}
558
559/**
560 * vpif_calculate_offsets : This function calculates buffers offsets
561 * @ch : ptr to channel object
562 *
563 * This function calculates buffer offsets for Y and C in the top and
564 * bottom field
565 */
566static void vpif_calculate_offsets(struct channel_obj *ch)
567{
Mauro Carvalho Chehab24ab6332014-08-21 15:49:06 -0500568 unsigned int hpitch, sizeimage;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300569 struct video_obj *vid_ch = &(ch->video);
570 struct vpif_params *vpifparams = &ch->vpifparams;
571 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
572 enum v4l2_field field = common->fmt.fmt.pix.field;
573
574 vpif_dbg(2, debug, "vpif_calculate_offsets\n");
575
576 if (V4L2_FIELD_ANY == field) {
577 if (vpifparams->std_info.frm_fmt)
578 vid_ch->buf_field = V4L2_FIELD_NONE;
579 else
580 vid_ch->buf_field = V4L2_FIELD_INTERLACED;
581 } else
582 vid_ch->buf_field = common->fmt.fmt.pix.field;
583
Lad, Prabhakar60aa38d2012-06-28 09:28:05 -0300584 sizeimage = common->fmt.fmt.pix.sizeimage;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300585
586 hpitch = common->fmt.fmt.pix.bytesperline;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300587
588 if ((V4L2_FIELD_NONE == vid_ch->buf_field) ||
589 (V4L2_FIELD_INTERLACED == vid_ch->buf_field)) {
590 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
591 common->ytop_off = 0;
592 common->ybtm_off = hpitch;
593 common->ctop_off = sizeimage / 2;
594 common->cbtm_off = sizeimage / 2 + hpitch;
595 } else if (V4L2_FIELD_SEQ_TB == vid_ch->buf_field) {
596 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
597 common->ytop_off = 0;
598 common->ybtm_off = sizeimage / 4;
599 common->ctop_off = sizeimage / 2;
600 common->cbtm_off = common->ctop_off + sizeimage / 4;
601 } else if (V4L2_FIELD_SEQ_BT == vid_ch->buf_field) {
602 /* Calculate offsets for Y top, Y Bottom, C top and C Bottom */
603 common->ybtm_off = 0;
604 common->ytop_off = sizeimage / 4;
605 common->cbtm_off = sizeimage / 2;
606 common->ctop_off = common->cbtm_off + sizeimage / 4;
607 }
608 if ((V4L2_FIELD_NONE == vid_ch->buf_field) ||
609 (V4L2_FIELD_INTERLACED == vid_ch->buf_field))
610 vpifparams->video_params.storage_mode = 1;
611 else
612 vpifparams->video_params.storage_mode = 0;
613
614 if (1 == vpifparams->std_info.frm_fmt)
615 vpifparams->video_params.hpitch =
616 common->fmt.fmt.pix.bytesperline;
617 else {
618 if ((field == V4L2_FIELD_ANY)
619 || (field == V4L2_FIELD_INTERLACED))
620 vpifparams->video_params.hpitch =
621 common->fmt.fmt.pix.bytesperline * 2;
622 else
623 vpifparams->video_params.hpitch =
624 common->fmt.fmt.pix.bytesperline;
625 }
626
627 ch->vpifparams.video_params.stdid = vpifparams->std_info.stdid;
628}
629
630/**
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300631 * vpif_get_default_field() - Get default field type based on interface
632 * @vpif_params - ptr to vpif params
633 */
634static inline enum v4l2_field vpif_get_default_field(
635 struct vpif_interface *iface)
636{
637 return (iface->if_type == VPIF_IF_RAW_BAYER) ? V4L2_FIELD_NONE :
638 V4L2_FIELD_INTERLACED;
639}
640
641/**
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300642 * vpif_config_addr() - function to configure buffer address in vpif
643 * @ch - channel ptr
644 * @muxmode - channel mux mode
645 */
646static void vpif_config_addr(struct channel_obj *ch, int muxmode)
647{
648 struct common_obj *common;
649
650 vpif_dbg(2, debug, "vpif_config_addr\n");
651
652 common = &(ch->common[VPIF_VIDEO_INDEX]);
653
654 if (VPIF_CHANNEL1_VIDEO == ch->channel_id)
655 common->set_addr = ch1_set_videobuf_addr;
656 else if (2 == muxmode)
657 common->set_addr = ch0_set_videobuf_addr_yc_nmux;
658 else
659 common->set_addr = ch0_set_videobuf_addr;
660}
661
662/**
Hans Verkuil178cce12012-09-20 09:06:30 -0300663 * vpif_input_to_subdev() - Maps input to sub device
664 * @vpif_cfg - global config ptr
665 * @chan_cfg - channel config ptr
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300666 * @input_index - Given input index from application
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300667 *
668 * lookup the sub device information for a given input index.
669 * we report all the inputs to application. inputs table also
670 * has sub device name for the each input
671 */
Hans Verkuil178cce12012-09-20 09:06:30 -0300672static int vpif_input_to_subdev(
673 struct vpif_capture_config *vpif_cfg,
674 struct vpif_capture_chan_config *chan_cfg,
675 int input_index)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300676{
Hans Verkuil178cce12012-09-20 09:06:30 -0300677 struct vpif_subdev_info *subdev_info;
678 const char *subdev_name;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300679 int i;
680
Hans Verkuil178cce12012-09-20 09:06:30 -0300681 vpif_dbg(2, debug, "vpif_input_to_subdev\n");
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300682
Kevin Hilmanbff782d2016-12-16 22:47:54 -0200683 if (!chan_cfg)
684 return -1;
685 if (input_index >= chan_cfg->input_count)
686 return -1;
Hans Verkuil178cce12012-09-20 09:06:30 -0300687 subdev_name = chan_cfg->inputs[input_index].subdev_name;
Markus Elfring03161cd2016-10-12 10:20:34 -0300688 if (!subdev_name)
Hans Verkuil178cce12012-09-20 09:06:30 -0300689 return -1;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300690
691 /* loop through the sub device list to get the sub device info */
692 for (i = 0; i < vpif_cfg->subdev_count; i++) {
693 subdev_info = &vpif_cfg->subdev_info[i];
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -0300694 if (subdev_info && !strcmp(subdev_info->name, subdev_name))
Hans Verkuil178cce12012-09-20 09:06:30 -0300695 return i;
696 }
697 return -1;
698}
699
700/**
701 * vpif_set_input() - Select an input
702 * @vpif_cfg - global config ptr
703 * @ch - channel
704 * @_index - Given input index from application
705 *
706 * Select the given input.
707 */
708static int vpif_set_input(
709 struct vpif_capture_config *vpif_cfg,
710 struct channel_obj *ch,
711 int index)
712{
713 struct vpif_capture_chan_config *chan_cfg =
714 &vpif_cfg->chan_config[ch->channel_id];
715 struct vpif_subdev_info *subdev_info = NULL;
716 struct v4l2_subdev *sd = NULL;
717 u32 input = 0, output = 0;
718 int sd_index;
719 int ret;
720
721 sd_index = vpif_input_to_subdev(vpif_cfg, chan_cfg, index);
722 if (sd_index >= 0) {
723 sd = vpif_obj.sd[sd_index];
724 subdev_info = &vpif_cfg->subdev_info[sd_index];
Kevin Hilmanbff782d2016-12-16 22:47:54 -0200725 } else {
726 /* no subdevice, no input to setup */
727 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300728 }
729
Hans Verkuil178cce12012-09-20 09:06:30 -0300730 /* first setup input path from sub device to vpif */
731 if (sd && vpif_cfg->setup_input_path) {
732 ret = vpif_cfg->setup_input_path(ch->channel_id,
733 subdev_info->name);
734 if (ret < 0) {
735 vpif_dbg(1, debug, "couldn't setup input path for the" \
736 " sub device %s, for input index %d\n",
737 subdev_info->name, index);
738 return ret;
739 }
740 }
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300741
Hans Verkuil178cce12012-09-20 09:06:30 -0300742 if (sd) {
743 input = chan_cfg->inputs[index].input_route;
744 output = chan_cfg->inputs[index].output_route;
745 ret = v4l2_subdev_call(sd, video, s_routing,
746 input, output, 0);
747 if (ret < 0 && ret != -ENOIOCTLCMD) {
748 vpif_dbg(1, debug, "Failed to set input\n");
749 return ret;
750 }
751 }
752 ch->input_idx = index;
753 ch->sd = sd;
754 /* copy interface parameters to vpif */
Hans Verkuil0d4f35f2012-09-20 09:06:32 -0300755 ch->vpifparams.iface = chan_cfg->vpif_if;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300756
Hans Verkuil178cce12012-09-20 09:06:30 -0300757 /* update tvnorms from the sub device input info */
Lad, Prabhakar8eef6662015-03-08 18:57:23 -0300758 ch->video_dev.tvnorms = chan_cfg->inputs[index].input.std;
Hans Verkuil178cce12012-09-20 09:06:30 -0300759 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300760}
761
762/**
763 * vpif_querystd() - querystd handler
764 * @file: file ptr
765 * @priv: file handle
766 * @std_id: ptr to std id
767 *
768 * This function is called to detect standard at the selected input
769 */
770static int vpif_querystd(struct file *file, void *priv, v4l2_std_id *std_id)
771{
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300772 struct video_device *vdev = video_devdata(file);
773 struct channel_obj *ch = video_get_drvdata(vdev);
Markus Elfring6a842cc2016-10-12 10:22:45 -0300774 int ret;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300775
776 vpif_dbg(2, debug, "vpif_querystd\n");
777
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300778 /* Call querystd function of decoder device */
Hans Verkuil178cce12012-09-20 09:06:30 -0300779 ret = v4l2_subdev_call(ch->sd, video, querystd, std_id);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300780
Hans Verkuil178cce12012-09-20 09:06:30 -0300781 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
782 return -ENODATA;
783 if (ret) {
784 vpif_dbg(1, debug, "Failed to query standard for sub devices\n");
785 return ret;
786 }
787
788 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300789}
790
791/**
792 * vpif_g_std() - get STD handler
793 * @file: file ptr
794 * @priv: file handle
795 * @std_id: ptr to std id
796 */
797static int vpif_g_std(struct file *file, void *priv, v4l2_std_id *std)
798{
Lad, Prabhakard557b7d2014-05-16 10:33:52 -0300799 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300800 struct video_device *vdev = video_devdata(file);
801 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakard557b7d2014-05-16 10:33:52 -0300802 struct vpif_capture_chan_config *chan_cfg;
803 struct v4l2_input input;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300804
805 vpif_dbg(2, debug, "vpif_g_std\n");
806
Markus Elfring03161cd2016-10-12 10:20:34 -0300807 if (!config->chan_config[ch->channel_id].inputs)
Lad, Prabhakard557b7d2014-05-16 10:33:52 -0300808 return -ENODATA;
809
810 chan_cfg = &config->chan_config[ch->channel_id];
811 input = chan_cfg->inputs[ch->input_idx].input;
812 if (input.capabilities != V4L2_IN_CAP_STD)
813 return -ENODATA;
814
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300815 *std = ch->video.stdid;
816 return 0;
817}
818
819/**
820 * vpif_s_std() - set STD handler
821 * @file: file ptr
822 * @priv: file handle
823 * @std_id: ptr to std id
824 */
Hans Verkuil314527a2013-03-15 06:10:40 -0300825static int vpif_s_std(struct file *file, void *priv, v4l2_std_id std_id)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300826{
Lad, Prabhakard557b7d2014-05-16 10:33:52 -0300827 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300828 struct video_device *vdev = video_devdata(file);
829 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300830 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakard557b7d2014-05-16 10:33:52 -0300831 struct vpif_capture_chan_config *chan_cfg;
832 struct v4l2_input input;
833 int ret;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300834
835 vpif_dbg(2, debug, "vpif_s_std\n");
836
Markus Elfring03161cd2016-10-12 10:20:34 -0300837 if (!config->chan_config[ch->channel_id].inputs)
Lad, Prabhakard557b7d2014-05-16 10:33:52 -0300838 return -ENODATA;
839
840 chan_cfg = &config->chan_config[ch->channel_id];
841 input = chan_cfg->inputs[ch->input_idx].input;
842 if (input.capabilities != V4L2_IN_CAP_STD)
843 return -ENODATA;
844
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300845 if (vb2_is_busy(&common->buffer_queue))
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300846 return -EBUSY;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300847
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300848 /* Call encoder subdevice function to set the standard */
Hans Verkuil314527a2013-03-15 06:10:40 -0300849 ch->video.stdid = std_id;
Hans Verkuil0598c172012-09-18 07:18:47 -0300850 memset(&ch->video.dv_timings, 0, sizeof(ch->video.dv_timings));
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300851
852 /* Get the information about the standard */
853 if (vpif_update_std_info(ch)) {
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300854 vpif_err("Error getting the standard info\n");
Hans Verkuil46656af2011-01-04 06:51:35 -0300855 return -EINVAL;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300856 }
857
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300858 /* set standard in the sub device */
Laurent Pinchart8774bed2014-04-28 16:53:01 -0300859 ret = v4l2_subdev_call(ch->sd, video, s_std, std_id);
Hans Verkuil178cce12012-09-20 09:06:30 -0300860 if (ret && ret != -ENOIOCTLCMD && ret != -ENODEV) {
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300861 vpif_dbg(1, debug, "Failed to set standard for sub devices\n");
Hans Verkuil178cce12012-09-20 09:06:30 -0300862 return ret;
863 }
864 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300865}
866
867/**
868 * vpif_enum_input() - ENUMINPUT handler
869 * @file: file ptr
870 * @priv: file handle
871 * @input: ptr to input structure
872 */
873static int vpif_enum_input(struct file *file, void *priv,
874 struct v4l2_input *input)
875{
876
877 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300878 struct video_device *vdev = video_devdata(file);
879 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300880 struct vpif_capture_chan_config *chan_cfg;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300881
882 chan_cfg = &config->chan_config[ch->channel_id];
883
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300884 if (input->index >= chan_cfg->input_count)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300885 return -EINVAL;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300886
887 memcpy(input, &chan_cfg->inputs[input->index].input,
888 sizeof(*input));
889 return 0;
890}
891
892/**
893 * vpif_g_input() - Get INPUT handler
894 * @file: file ptr
895 * @priv: file handle
896 * @index: ptr to input index
897 */
898static int vpif_g_input(struct file *file, void *priv, unsigned int *index)
899{
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300900 struct video_device *vdev = video_devdata(file);
901 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300902
Hans Verkuil6f47c6c2012-09-20 09:06:22 -0300903 *index = ch->input_idx;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300904 return 0;
905}
906
907/**
908 * vpif_s_input() - Set INPUT handler
909 * @file: file ptr
910 * @priv: file handle
911 * @index: input index
912 */
913static int vpif_s_input(struct file *file, void *priv, unsigned int index)
914{
915 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300916 struct video_device *vdev = video_devdata(file);
917 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300918 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300919 struct vpif_capture_chan_config *chan_cfg;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300920
921 chan_cfg = &config->chan_config[ch->channel_id];
922
Hans Verkuil7aaad132012-09-20 09:06:25 -0300923 if (index >= chan_cfg->input_count)
924 return -EINVAL;
925
Lad, Prabhakarc66238f2014-05-16 10:33:45 -0300926 if (vb2_is_busy(&common->buffer_queue))
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300927 return -EBUSY;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300928
Hans Verkuil178cce12012-09-20 09:06:30 -0300929 return vpif_set_input(config, ch, index);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300930}
931
932/**
933 * vpif_enum_fmt_vid_cap() - ENUM_FMT handler
934 * @file: file ptr
935 * @priv: file handle
936 * @index: input index
937 */
938static int vpif_enum_fmt_vid_cap(struct file *file, void *priv,
939 struct v4l2_fmtdesc *fmt)
940{
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300941 struct video_device *vdev = video_devdata(file);
942 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300943
944 if (fmt->index != 0) {
945 vpif_dbg(1, debug, "Invalid format index\n");
946 return -EINVAL;
947 }
948
949 /* Fill in the information about format */
950 if (ch->vpifparams.iface.if_type == VPIF_IF_RAW_BAYER) {
951 fmt->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
952 strcpy(fmt->description, "Raw Mode -Bayer Pattern GrRBGb");
953 fmt->pixelformat = V4L2_PIX_FMT_SBGGR8;
954 } else {
955 fmt->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Nori, Sekhar8946ab32017-05-26 07:55:27 -0300956 strcpy(fmt->description, "YCbCr4:2:2 Semi-Planar");
957 fmt->pixelformat = V4L2_PIX_FMT_NV16;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300958 }
959 return 0;
960}
961
962/**
963 * vpif_try_fmt_vid_cap() - TRY_FMT handler
964 * @file: file ptr
965 * @priv: file handle
966 * @fmt: ptr to v4l2 format structure
967 */
968static int vpif_try_fmt_vid_cap(struct file *file, void *priv,
969 struct v4l2_format *fmt)
970{
Lad, Prabhakar7ff51192014-05-16 10:33:41 -0300971 struct video_device *vdev = video_devdata(file);
972 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300973 struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300974 struct common_obj *common = &(ch->common[VPIF_VIDEO_INDEX]);
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300975
Kevin Hilmandde32d42017-06-06 20:37:40 -0300976 common->fmt = *fmt;
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300977 vpif_update_std_info(ch);
978
979 pixfmt->field = common->fmt.fmt.pix.field;
980 pixfmt->colorspace = common->fmt.fmt.pix.colorspace;
981 pixfmt->bytesperline = common->fmt.fmt.pix.width;
982 pixfmt->width = common->fmt.fmt.pix.width;
983 pixfmt->height = common->fmt.fmt.pix.height;
984 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height * 2;
Kevin Hilmandde32d42017-06-06 20:37:40 -0300985 if (pixfmt->pixelformat == V4L2_PIX_FMT_SGRBG10) {
986 pixfmt->bytesperline = common->fmt.fmt.pix.width * 2;
987 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height;
988 }
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300989 pixfmt->priv = 0;
990
Kevin Hilmandde32d42017-06-06 20:37:40 -0300991 dev_dbg(vpif_dev, "%s: %d x %d; pitch=%d pixelformat=0x%08x, field=%d, size=%d\n", __func__,
992 pixfmt->width, pixfmt->height,
993 pixfmt->bytesperline, pixfmt->pixelformat,
994 pixfmt->field, pixfmt->sizeimage);
995
Lad, Prabhakara4965c52014-05-16 10:33:54 -0300996 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -0300997}
998
999
1000/**
1001 * vpif_g_fmt_vid_cap() - Set INPUT handler
1002 * @file: file ptr
1003 * @priv: file handle
1004 * @fmt: ptr to v4l2 format structure
1005 */
1006static int vpif_g_fmt_vid_cap(struct file *file, void *priv,
1007 struct v4l2_format *fmt)
1008{
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001009 struct video_device *vdev = video_devdata(file);
1010 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001011 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Kevin Hilmandde32d42017-06-06 20:37:40 -03001012 struct v4l2_pix_format *pix_fmt = &fmt->fmt.pix;
1013 struct v4l2_subdev_format format = {
1014 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
1015 };
1016 struct v4l2_mbus_framefmt *mbus_fmt = &format.format;
1017 int ret;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001018
1019 /* Check the validity of the buffer type */
1020 if (common->fmt.type != fmt->type)
1021 return -EINVAL;
1022
Kevin Hilmandde32d42017-06-06 20:37:40 -03001023 /* By default, use currently set fmt */
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001024 *fmt = common->fmt;
Kevin Hilmandde32d42017-06-06 20:37:40 -03001025
1026 /* If subdev has get_fmt, use that to override */
1027 ret = v4l2_subdev_call(ch->sd, pad, get_fmt, NULL, &format);
1028 if (!ret && mbus_fmt->code) {
1029 v4l2_fill_pix_format(pix_fmt, mbus_fmt);
1030 pix_fmt->bytesperline = pix_fmt->width;
1031 if (mbus_fmt->code == MEDIA_BUS_FMT_SGRBG10_1X10) {
1032 /* e.g. mt9v032 */
1033 pix_fmt->pixelformat = V4L2_PIX_FMT_SGRBG10;
1034 pix_fmt->bytesperline = pix_fmt->width * 2;
1035 } else if (mbus_fmt->code == MEDIA_BUS_FMT_UYVY8_2X8) {
1036 /* e.g. tvp514x */
1037 pix_fmt->pixelformat = V4L2_PIX_FMT_NV16;
1038 pix_fmt->bytesperline = pix_fmt->width * 2;
1039 } else {
1040 dev_warn(vpif_dev, "%s: Unhandled media-bus format 0x%x\n",
1041 __func__, mbus_fmt->code);
1042 }
1043 pix_fmt->sizeimage = pix_fmt->bytesperline * pix_fmt->height;
1044 dev_dbg(vpif_dev, "%s: %d x %d; pitch=%d, pixelformat=0x%08x, code=0x%x, field=%d, size=%d\n", __func__,
1045 pix_fmt->width, pix_fmt->height,
1046 pix_fmt->bytesperline, pix_fmt->pixelformat,
1047 mbus_fmt->code, pix_fmt->field, pix_fmt->sizeimage);
1048
1049 common->fmt = *fmt;
1050 vpif_update_std_info(ch);
1051 }
1052
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001053 return 0;
1054}
1055
1056/**
1057 * vpif_s_fmt_vid_cap() - Set FMT handler
1058 * @file: file ptr
1059 * @priv: file handle
1060 * @fmt: ptr to v4l2 format structure
1061 */
1062static int vpif_s_fmt_vid_cap(struct file *file, void *priv,
1063 struct v4l2_format *fmt)
1064{
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001065 struct video_device *vdev = video_devdata(file);
1066 struct channel_obj *ch = video_get_drvdata(vdev);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001067 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakara4965c52014-05-16 10:33:54 -03001068 int ret;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001069
Mats Randgaard2c0ddd12010-12-16 12:17:45 -03001070 vpif_dbg(2, debug, "%s\n", __func__);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001071
Lad, Prabhakarc66238f2014-05-16 10:33:45 -03001072 if (vb2_is_busy(&common->buffer_queue))
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001073 return -EBUSY;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001074
Lad, Prabhakara4965c52014-05-16 10:33:54 -03001075 ret = vpif_try_fmt_vid_cap(file, priv, fmt);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001076 if (ret)
1077 return ret;
Lad, Prabhakara4965c52014-05-16 10:33:54 -03001078
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001079 /* store the format in the channel object */
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001080 common->fmt = *fmt;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001081 return 0;
1082}
1083
1084/**
1085 * vpif_querycap() - QUERYCAP handler
1086 * @file: file ptr
1087 * @priv: file handle
1088 * @cap: ptr to v4l2_capability structure
1089 */
1090static int vpif_querycap(struct file *file, void *priv,
1091 struct v4l2_capability *cap)
1092{
1093 struct vpif_capture_config *config = vpif_dev->platform_data;
1094
Lad, Prabhakar626d533f2012-09-25 11:21:55 -03001095 cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
1096 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -03001097 strlcpy(cap->driver, VPIF_DRIVER_NAME, sizeof(cap->driver));
Lad, Prabhakar626d533f2012-09-25 11:21:55 -03001098 snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s",
1099 dev_name(vpif_dev));
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001100 strlcpy(cap->card, config->card_name, sizeof(cap->card));
1101
1102 return 0;
1103}
1104
1105/**
Hans Verkuil0598c172012-09-18 07:18:47 -03001106 * vpif_enum_dv_timings() - ENUM_DV_TIMINGS handler
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001107 * @file: file ptr
1108 * @priv: file handle
Hans Verkuil0598c172012-09-18 07:18:47 -03001109 * @timings: input timings
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001110 */
Hans Verkuil0598c172012-09-18 07:18:47 -03001111static int
1112vpif_enum_dv_timings(struct file *file, void *priv,
1113 struct v4l2_enum_dv_timings *timings)
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001114{
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001115 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001116 struct video_device *vdev = video_devdata(file);
1117 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001118 struct vpif_capture_chan_config *chan_cfg;
1119 struct v4l2_input input;
Hans Verkuil178cce12012-09-20 09:06:30 -03001120 int ret;
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001121
Markus Elfring03161cd2016-10-12 10:20:34 -03001122 if (!config->chan_config[ch->channel_id].inputs)
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001123 return -ENODATA;
1124
1125 chan_cfg = &config->chan_config[ch->channel_id];
1126 input = chan_cfg->inputs[ch->input_idx].input;
1127 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1128 return -ENODATA;
1129
Laurent Pinchart10d21462014-01-31 09:04:19 -03001130 timings->pad = 0;
1131
1132 ret = v4l2_subdev_call(ch->sd, pad, enum_dv_timings, timings);
Wei Yongjune070f1b2012-10-30 09:45:00 -03001133 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
Hans Verkuil178cce12012-09-20 09:06:30 -03001134 return -EINVAL;
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001135
Hans Verkuil178cce12012-09-20 09:06:30 -03001136 return ret;
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001137}
1138
1139/**
Hans Verkuil0598c172012-09-18 07:18:47 -03001140 * vpif_query_dv_timings() - QUERY_DV_TIMINGS handler
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001141 * @file: file ptr
1142 * @priv: file handle
Hans Verkuil0598c172012-09-18 07:18:47 -03001143 * @timings: input timings
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001144 */
Hans Verkuil0598c172012-09-18 07:18:47 -03001145static int
1146vpif_query_dv_timings(struct file *file, void *priv,
1147 struct v4l2_dv_timings *timings)
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001148{
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001149 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001150 struct video_device *vdev = video_devdata(file);
1151 struct channel_obj *ch = video_get_drvdata(vdev);
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001152 struct vpif_capture_chan_config *chan_cfg;
1153 struct v4l2_input input;
Hans Verkuil178cce12012-09-20 09:06:30 -03001154 int ret;
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001155
Markus Elfring03161cd2016-10-12 10:20:34 -03001156 if (!config->chan_config[ch->channel_id].inputs)
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001157 return -ENODATA;
1158
1159 chan_cfg = &config->chan_config[ch->channel_id];
1160 input = chan_cfg->inputs[ch->input_idx].input;
1161 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1162 return -ENODATA;
1163
Hans Verkuil178cce12012-09-20 09:06:30 -03001164 ret = v4l2_subdev_call(ch->sd, video, query_dv_timings, timings);
Wei Yongjune070f1b2012-10-30 09:45:00 -03001165 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
Hans Verkuil178cce12012-09-20 09:06:30 -03001166 return -ENODATA;
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001167
Hans Verkuil178cce12012-09-20 09:06:30 -03001168 return ret;
Mats Randgaard40c8bce2010-12-16 12:17:43 -03001169}
1170
Mats Randgaardc027e162010-12-16 12:17:44 -03001171/**
1172 * vpif_s_dv_timings() - S_DV_TIMINGS handler
1173 * @file: file ptr
1174 * @priv: file handle
1175 * @timings: digital video timings
1176 */
1177static int vpif_s_dv_timings(struct file *file, void *priv,
1178 struct v4l2_dv_timings *timings)
1179{
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001180 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001181 struct video_device *vdev = video_devdata(file);
1182 struct channel_obj *ch = video_get_drvdata(vdev);
Mats Randgaardc027e162010-12-16 12:17:44 -03001183 struct vpif_params *vpifparams = &ch->vpifparams;
1184 struct vpif_channel_config_params *std_info = &vpifparams->std_info;
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001185 struct common_obj *common = &ch->common[VPIF_VIDEO_INDEX];
Mats Randgaardc027e162010-12-16 12:17:44 -03001186 struct video_obj *vid_ch = &ch->video;
Hans Verkuil0598c172012-09-18 07:18:47 -03001187 struct v4l2_bt_timings *bt = &vid_ch->dv_timings.bt;
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001188 struct vpif_capture_chan_config *chan_cfg;
1189 struct v4l2_input input;
Mats Randgaardc027e162010-12-16 12:17:44 -03001190 int ret;
1191
Markus Elfring03161cd2016-10-12 10:20:34 -03001192 if (!config->chan_config[ch->channel_id].inputs)
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001193 return -ENODATA;
1194
1195 chan_cfg = &config->chan_config[ch->channel_id];
1196 input = chan_cfg->inputs[ch->input_idx].input;
1197 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1198 return -ENODATA;
1199
Mats Randgaardc027e162010-12-16 12:17:44 -03001200 if (timings->type != V4L2_DV_BT_656_1120) {
1201 vpif_dbg(2, debug, "Timing type not defined\n");
1202 return -EINVAL;
1203 }
1204
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001205 if (vb2_is_busy(&common->buffer_queue))
1206 return -EBUSY;
1207
Mats Randgaardc027e162010-12-16 12:17:44 -03001208 /* Configure subdevice timings, if any */
Hans Verkuil178cce12012-09-20 09:06:30 -03001209 ret = v4l2_subdev_call(ch->sd, video, s_dv_timings, timings);
1210 if (ret == -ENOIOCTLCMD || ret == -ENODEV)
1211 ret = 0;
Mats Randgaardc027e162010-12-16 12:17:44 -03001212 if (ret < 0) {
1213 vpif_dbg(2, debug, "Error setting custom DV timings\n");
1214 return ret;
1215 }
1216
1217 if (!(timings->bt.width && timings->bt.height &&
1218 (timings->bt.hbackporch ||
1219 timings->bt.hfrontporch ||
1220 timings->bt.hsync) &&
1221 timings->bt.vfrontporch &&
1222 (timings->bt.vbackporch ||
1223 timings->bt.vsync))) {
Mauro Carvalho Chehabded026e2016-10-18 17:44:08 -02001224 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 -03001225 return -EINVAL;
1226 }
1227
Hans Verkuil0598c172012-09-18 07:18:47 -03001228 vid_ch->dv_timings = *timings;
Mats Randgaardc027e162010-12-16 12:17:44 -03001229
1230 /* Configure video port timings */
1231
Hans Verkuile3655262013-07-29 08:41:00 -03001232 std_info->eav2sav = V4L2_DV_BT_BLANKING_WIDTH(bt) - 8;
Mats Randgaardc027e162010-12-16 12:17:44 -03001233 std_info->sav2eav = bt->width;
1234
1235 std_info->l1 = 1;
1236 std_info->l3 = bt->vsync + bt->vbackporch + 1;
1237
Hans Verkuile3655262013-07-29 08:41:00 -03001238 std_info->vsize = V4L2_DV_BT_FRAME_HEIGHT(bt);
Mats Randgaardc027e162010-12-16 12:17:44 -03001239 if (bt->interlaced) {
1240 if (bt->il_vbackporch || bt->il_vfrontporch || bt->il_vsync) {
Mats Randgaardc027e162010-12-16 12:17:44 -03001241 std_info->l5 = std_info->vsize/2 -
1242 (bt->vfrontporch - 1);
1243 std_info->l7 = std_info->vsize/2 + 1;
1244 std_info->l9 = std_info->l7 + bt->il_vsync +
1245 bt->il_vbackporch + 1;
1246 std_info->l11 = std_info->vsize -
1247 (bt->il_vfrontporch - 1);
1248 } else {
Mauro Carvalho Chehabded026e2016-10-18 17:44:08 -02001249 vpif_dbg(2, debug, "Required timing values for interlaced BT format missing\n");
Mats Randgaardc027e162010-12-16 12:17:44 -03001250 return -EINVAL;
1251 }
1252 } else {
Mats Randgaardc027e162010-12-16 12:17:44 -03001253 std_info->l5 = std_info->vsize - (bt->vfrontporch - 1);
1254 }
1255 strncpy(std_info->name, "Custom timings BT656/1120", VPIF_MAX_NAME);
1256 std_info->width = bt->width;
1257 std_info->height = bt->height;
1258 std_info->frm_fmt = bt->interlaced ? 0 : 1;
1259 std_info->ycmux_mode = 0;
1260 std_info->capture_format = 0;
1261 std_info->vbi_supported = 0;
1262 std_info->hd_sd = 1;
1263 std_info->stdid = 0;
Mats Randgaardc027e162010-12-16 12:17:44 -03001264
1265 vid_ch->stdid = 0;
Mats Randgaardc027e162010-12-16 12:17:44 -03001266 return 0;
1267}
1268
1269/**
1270 * vpif_g_dv_timings() - G_DV_TIMINGS handler
1271 * @file: file ptr
1272 * @priv: file handle
1273 * @timings: digital video timings
1274 */
1275static int vpif_g_dv_timings(struct file *file, void *priv,
1276 struct v4l2_dv_timings *timings)
1277{
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001278 struct vpif_capture_config *config = vpif_dev->platform_data;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001279 struct video_device *vdev = video_devdata(file);
1280 struct channel_obj *ch = video_get_drvdata(vdev);
Mats Randgaardc027e162010-12-16 12:17:44 -03001281 struct video_obj *vid_ch = &ch->video;
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001282 struct vpif_capture_chan_config *chan_cfg;
1283 struct v4l2_input input;
1284
Markus Elfring03161cd2016-10-12 10:20:34 -03001285 if (!config->chan_config[ch->channel_id].inputs)
Lad, Prabhakar1e8852af2014-05-16 10:33:51 -03001286 return -ENODATA;
1287
1288 chan_cfg = &config->chan_config[ch->channel_id];
1289 input = chan_cfg->inputs[ch->input_idx].input;
1290 if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
1291 return -ENODATA;
Mats Randgaardc027e162010-12-16 12:17:44 -03001292
Hans Verkuil0598c172012-09-18 07:18:47 -03001293 *timings = vid_ch->dv_timings;
Mats Randgaardc027e162010-12-16 12:17:44 -03001294
1295 return 0;
1296}
1297
Mats Randgaard7036d6a2010-12-16 12:17:41 -03001298/*
Mats Randgaard7036d6a2010-12-16 12:17:41 -03001299 * vpif_log_status() - Status information
1300 * @file: file ptr
1301 * @priv: file handle
1302 *
1303 * Returns zero.
1304 */
1305static int vpif_log_status(struct file *filep, void *priv)
1306{
1307 /* status for sub devices */
1308 v4l2_device_call_all(&vpif_obj.v4l2_dev, 0, core, log_status);
1309
1310 return 0;
1311}
1312
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001313/* vpif capture ioctl operations */
1314static const struct v4l2_ioctl_ops vpif_ioctl_ops = {
Lad, Prabhakar7b4657f2014-05-16 10:33:49 -03001315 .vidioc_querycap = vpif_querycap,
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001316 .vidioc_enum_fmt_vid_cap = vpif_enum_fmt_vid_cap,
Lad, Prabhakar7b4657f2014-05-16 10:33:49 -03001317 .vidioc_g_fmt_vid_cap = vpif_g_fmt_vid_cap,
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001318 .vidioc_s_fmt_vid_cap = vpif_s_fmt_vid_cap,
1319 .vidioc_try_fmt_vid_cap = vpif_try_fmt_vid_cap,
Lad, Prabhakar7b4657f2014-05-16 10:33:49 -03001320
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001321 .vidioc_enum_input = vpif_enum_input,
1322 .vidioc_s_input = vpif_s_input,
1323 .vidioc_g_input = vpif_g_input,
Lad, Prabhakard9a3b132014-05-16 10:33:42 -03001324
1325 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1326 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1327 .vidioc_querybuf = vb2_ioctl_querybuf,
1328 .vidioc_qbuf = vb2_ioctl_qbuf,
1329 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1330 .vidioc_expbuf = vb2_ioctl_expbuf,
1331 .vidioc_streamon = vb2_ioctl_streamon,
1332 .vidioc_streamoff = vb2_ioctl_streamoff,
1333
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001334 .vidioc_querystd = vpif_querystd,
Lad, Prabhakar7b4657f2014-05-16 10:33:49 -03001335 .vidioc_s_std = vpif_s_std,
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001336 .vidioc_g_std = vpif_g_std,
Lad, Prabhakard9a3b132014-05-16 10:33:42 -03001337
Lad, Prabhakar7b4657f2014-05-16 10:33:49 -03001338 .vidioc_enum_dv_timings = vpif_enum_dv_timings,
1339 .vidioc_query_dv_timings = vpif_query_dv_timings,
1340 .vidioc_s_dv_timings = vpif_s_dv_timings,
1341 .vidioc_g_dv_timings = vpif_g_dv_timings,
1342
Mats Randgaard7036d6a2010-12-16 12:17:41 -03001343 .vidioc_log_status = vpif_log_status,
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001344};
1345
1346/* vpif file operations */
Bhumika Goyal6bcc0512017-06-29 04:51:24 -04001347static const struct v4l2_file_operations vpif_fops = {
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001348 .owner = THIS_MODULE,
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001349 .open = v4l2_fh_open,
1350 .release = vb2_fop_release,
Hans Verkuil46656af2011-01-04 06:51:35 -03001351 .unlocked_ioctl = video_ioctl2,
Lad, Prabhakard26d26b2014-05-16 10:33:40 -03001352 .mmap = vb2_fop_mmap,
1353 .poll = vb2_fop_poll
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001354};
1355
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001356/**
1357 * initialize_vpif() - Initialize vpif data structures
1358 *
1359 * Allocate memory for data structures and initialize them
1360 */
1361static int initialize_vpif(void)
1362{
Lad, Prabhakar4015bef2014-05-16 10:33:47 -03001363 int err, i, j;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001364 int free_channel_objects_index;
1365
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001366 /* Allocate memory for six channel objects */
1367 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1368 vpif_obj.dev[i] =
1369 kzalloc(sizeof(*vpif_obj.dev[i]), GFP_KERNEL);
1370 /* If memory allocation fails, return error */
1371 if (!vpif_obj.dev[i]) {
1372 free_channel_objects_index = i;
1373 err = -ENOMEM;
1374 goto vpif_init_free_channel_objects;
1375 }
1376 }
1377 return 0;
1378
1379vpif_init_free_channel_objects:
1380 for (j = 0; j < free_channel_objects_index; j++)
1381 kfree(vpif_obj.dev[j]);
1382 return err;
1383}
1384
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001385static int vpif_async_bound(struct v4l2_async_notifier *notifier,
1386 struct v4l2_subdev *subdev,
1387 struct v4l2_async_subdev *asd)
1388{
1389 int i;
1390
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001391 for (i = 0; i < vpif_obj.config->asd_sizes[0]; i++) {
1392 struct v4l2_async_subdev *_asd = vpif_obj.config->asd[i];
Sakari Ailusa2d17962017-06-08 12:04:07 -03001393 const struct fwnode_handle *fwnode = _asd->match.fwnode.fwnode;
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001394
Sakari Ailusa2d17962017-06-08 12:04:07 -03001395 if (fwnode == subdev->fwnode) {
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001396 vpif_obj.sd[i] = subdev;
1397 vpif_obj.config->chan_config->inputs[i].subdev_name =
Sakari Ailusa2d17962017-06-08 12:04:07 -03001398 (char *)to_of_node(subdev->fwnode)->full_name;
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001399 vpif_dbg(2, debug,
Rob Herring68d9c472017-07-21 15:28:33 -04001400 "%s: setting input %d subdev_name = %pOF\n",
Sakari Ailusa2d17962017-06-08 12:04:07 -03001401 __func__, i,
Rob Herring68d9c472017-07-21 15:28:33 -04001402 to_of_node(subdev->fwnode));
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001403 return 0;
1404 }
1405 }
1406
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001407 for (i = 0; i < vpif_obj.config->subdev_count; i++)
1408 if (!strcmp(vpif_obj.config->subdev_info[i].name,
1409 subdev->name)) {
1410 vpif_obj.sd[i] = subdev;
1411 return 0;
1412 }
1413
1414 return -EINVAL;
1415}
1416
1417static int vpif_probe_complete(void)
1418{
1419 struct common_obj *common;
Lad, Prabhakard26d26b2014-05-16 10:33:40 -03001420 struct video_device *vdev;
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001421 struct channel_obj *ch;
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -03001422 struct vb2_queue *q;
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001423 int j, err, k;
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001424
1425 for (j = 0; j < VPIF_CAPTURE_MAX_DEVICES; j++) {
1426 ch = vpif_obj.dev[j];
1427 ch->channel_id = j;
1428 common = &(ch->common[VPIF_VIDEO_INDEX]);
1429 spin_lock_init(&common->irqlock);
1430 mutex_init(&common->lock);
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001431
1432 /* select input 0 */
1433 err = vpif_set_input(vpif_obj.config, ch, 0);
1434 if (err)
1435 goto probe_out;
1436
Lad, Prabhakara4965c52014-05-16 10:33:54 -03001437 /* set initial format */
1438 ch->video.stdid = V4L2_STD_525_60;
1439 memset(&ch->video.dv_timings, 0, sizeof(ch->video.dv_timings));
Kevin Hilmandde32d42017-06-06 20:37:40 -03001440 common->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
Lad, Prabhakara4965c52014-05-16 10:33:54 -03001441 vpif_update_std_info(ch);
1442
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -03001443 /* Initialize vb2 queue */
1444 q = &common->buffer_queue;
1445 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1446 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
1447 q->drv_priv = ch;
1448 q->ops = &video_qops;
1449 q->mem_ops = &vb2_dma_contig_memops;
1450 q->buf_struct_size = sizeof(struct vpif_cap_buffer);
1451 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1452 q->min_buffers_needed = 1;
Lad, Prabhakar999ba692014-05-16 10:33:33 -03001453 q->lock = &common->lock;
Hans Verkuil53ddcc62016-02-15 13:09:10 -02001454 q->dev = vpif_dev;
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -03001455
1456 err = vb2_queue_init(q);
1457 if (err) {
1458 vpif_err("vpif_capture: vb2_queue_init() failed\n");
1459 goto probe_out;
1460 }
1461
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -03001462 INIT_LIST_HEAD(&common->dma_queue);
1463
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -03001464 /* Initialize the video_device structure */
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001465 vdev = &ch->video_dev;
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -03001466 strlcpy(vdev->name, VPIF_DRIVER_NAME, sizeof(vdev->name));
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001467 vdev->release = video_device_release_empty;
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -03001468 vdev->fops = &vpif_fops;
1469 vdev->ioctl_ops = &vpif_ioctl_ops;
1470 vdev->v4l2_dev = &vpif_obj.v4l2_dev;
1471 vdev->vfl_dir = VFL_DIR_RX;
Lad, Prabhakard26d26b2014-05-16 10:33:40 -03001472 vdev->queue = q;
Lad, Prabhakar7ff51192014-05-16 10:33:41 -03001473 vdev->lock = &common->lock;
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001474 video_set_drvdata(&ch->video_dev, ch);
Lad, Prabhakard26d26b2014-05-16 10:33:40 -03001475 err = video_register_device(vdev,
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001476 VFL_TYPE_GRABBER, (j ? 1 : 0));
1477 if (err)
1478 goto probe_out;
1479 }
1480
1481 v4l2_info(&vpif_obj.v4l2_dev, "VPIF capture driver initialized\n");
1482 return 0;
1483
1484probe_out:
1485 for (k = 0; k < j; k++) {
1486 /* Get the pointer to the channel object */
1487 ch = vpif_obj.dev[k];
Lad, Prabhakarfa09acc2014-05-16 10:33:31 -03001488 common = &ch->common[k];
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001489 /* Unregister video device */
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001490 video_unregister_device(&ch->video_dev);
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001491 }
1492 kfree(vpif_obj.sd);
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001493 v4l2_device_unregister(&vpif_obj.v4l2_dev);
1494
1495 return err;
1496}
1497
1498static int vpif_async_complete(struct v4l2_async_notifier *notifier)
1499{
1500 return vpif_probe_complete();
1501}
1502
Laurent Pinchartb6ee3f02017-08-30 13:18:04 -04001503static const struct v4l2_async_notifier_operations vpif_async_ops = {
1504 .bound = vpif_async_bound,
1505 .complete = vpif_async_complete,
1506};
1507
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001508static struct vpif_capture_config *
1509vpif_capture_get_pdata(struct platform_device *pdev)
1510{
1511 struct device_node *endpoint = NULL;
Sakari Ailusa2d17962017-06-08 12:04:07 -03001512 struct v4l2_fwnode_endpoint bus_cfg;
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001513 struct vpif_capture_config *pdata;
1514 struct vpif_subdev_info *sdinfo;
1515 struct vpif_capture_chan_config *chan;
1516 unsigned int i;
1517
1518 /*
1519 * DT boot: OF node from parent device contains
1520 * video ports & endpoints data.
1521 */
1522 if (pdev->dev.parent && pdev->dev.parent->of_node)
1523 pdev->dev.of_node = pdev->dev.parent->of_node;
1524 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
1525 return pdev->dev.platform_data;
1526
1527 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1528 if (!pdata)
1529 return NULL;
1530 pdata->subdev_info =
1531 devm_kzalloc(&pdev->dev, sizeof(*pdata->subdev_info) *
1532 VPIF_CAPTURE_NUM_CHANNELS, GFP_KERNEL);
1533
1534 if (!pdata->subdev_info)
1535 return NULL;
1536
1537 for (i = 0; i < VPIF_CAPTURE_NUM_CHANNELS; i++) {
1538 struct device_node *rem;
1539 unsigned int flags;
1540 int err;
1541
1542 endpoint = of_graph_get_next_endpoint(pdev->dev.of_node,
1543 endpoint);
1544 if (!endpoint)
1545 break;
1546
1547 sdinfo = &pdata->subdev_info[i];
1548 chan = &pdata->chan_config[i];
1549 chan->inputs = devm_kzalloc(&pdev->dev,
1550 sizeof(*chan->inputs) *
1551 VPIF_CAPTURE_NUM_CHANNELS,
1552 GFP_KERNEL);
1553
1554 chan->input_count++;
1555 chan->inputs[i].input.type = V4L2_INPUT_TYPE_CAMERA;
1556 chan->inputs[i].input.std = V4L2_STD_ALL;
1557 chan->inputs[i].input.capabilities = V4L2_IN_CAP_STD;
1558
Sakari Ailusa2d17962017-06-08 12:04:07 -03001559 err = v4l2_fwnode_endpoint_parse(of_fwnode_handle(endpoint),
1560 &bus_cfg);
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001561 if (err) {
1562 dev_err(&pdev->dev, "Could not parse the endpoint\n");
1563 goto done;
1564 }
Rob Herring68d9c472017-07-21 15:28:33 -04001565 dev_dbg(&pdev->dev, "Endpoint %pOF, bus_width = %d\n",
1566 endpoint, bus_cfg.bus.parallel.bus_width);
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001567 flags = bus_cfg.bus.parallel.flags;
1568
1569 if (flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH)
1570 chan->vpif_if.hd_pol = 1;
1571
1572 if (flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH)
1573 chan->vpif_if.vd_pol = 1;
1574
1575 rem = of_graph_get_remote_port_parent(endpoint);
1576 if (!rem) {
Rob Herring68d9c472017-07-21 15:28:33 -04001577 dev_dbg(&pdev->dev, "Remote device at %pOF not found\n",
1578 endpoint);
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001579 goto done;
1580 }
1581
Rob Herring68d9c472017-07-21 15:28:33 -04001582 dev_dbg(&pdev->dev, "Remote device %s, %pOF found\n",
1583 rem->name, rem);
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001584 sdinfo->name = rem->full_name;
1585
1586 pdata->asd[i] = devm_kzalloc(&pdev->dev,
1587 sizeof(struct v4l2_async_subdev),
1588 GFP_KERNEL);
1589 if (!pdata->asd[i]) {
1590 of_node_put(rem);
1591 pdata = NULL;
1592 goto done;
1593 }
1594
Sakari Ailusa2d17962017-06-08 12:04:07 -03001595 pdata->asd[i]->match_type = V4L2_ASYNC_MATCH_FWNODE;
1596 pdata->asd[i]->match.fwnode.fwnode = of_fwnode_handle(rem);
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001597 of_node_put(rem);
1598 }
1599
1600done:
Kevin Hilman5a634ae2017-07-11 15:07:52 -04001601 if (pdata) {
1602 pdata->asd_sizes[0] = i;
1603 pdata->subdev_count = i;
1604 pdata->card_name = "DA850/OMAP-L138 Video Capture";
1605 }
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001606
1607 return pdata;
1608}
1609
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001610/**
1611 * vpif_probe : This function probes the vpif capture driver
1612 * @pdev: platform device pointer
1613 *
1614 * This creates device entries by register itself to the V4L2 driver and
1615 * initializes fields of each channel objects
1616 */
1617static __init int vpif_probe(struct platform_device *pdev)
1618{
1619 struct vpif_subdev_info *subdevdata;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001620 struct i2c_adapter *i2c_adap;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001621 struct resource *res;
1622 int subdev_count;
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001623 int res_idx = 0;
1624 int i, err;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001625
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001626 pdev->dev.platform_data = vpif_capture_get_pdata(pdev);
1627 if (!pdev->dev.platform_data) {
1628 dev_warn(&pdev->dev, "Missing platform data. Giving up.\n");
1629 return -EINVAL;
1630 }
1631
Kevin Hilmanbff782d2016-12-16 22:47:54 -02001632 if (!pdev->dev.platform_data) {
1633 dev_warn(&pdev->dev, "Missing platform data. Giving up.\n");
1634 return -EINVAL;
1635 }
1636
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001637 vpif_dev = &pdev->dev;
1638
1639 err = initialize_vpif();
1640 if (err) {
1641 v4l2_err(vpif_dev->driver, "Error initializing vpif\n");
1642 return err;
1643 }
1644
Hans Verkuild2f7a1a2011-12-13 05:44:42 -03001645 err = v4l2_device_register(vpif_dev, &vpif_obj.v4l2_dev);
1646 if (err) {
1647 v4l2_err(vpif_dev->driver, "Error registering v4l2 device\n");
1648 return err;
1649 }
1650
Hans Verkuil5be452c2012-09-20 09:06:29 -03001651 while ((res = platform_get_resource(pdev, IORESOURCE_IRQ, res_idx))) {
Lad, Prabhakara76a0b32013-06-17 11:20:47 -03001652 err = devm_request_irq(&pdev->dev, res->start, vpif_channel_isr,
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -03001653 IRQF_SHARED, VPIF_DRIVER_NAME,
Lad, Prabhakara76a0b32013-06-17 11:20:47 -03001654 (void *)(&vpif_obj.dev[res_idx]->
1655 channel_id));
1656 if (err) {
1657 err = -EINVAL;
1658 goto vpif_unregister;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001659 }
Hans Verkuil5be452c2012-09-20 09:06:29 -03001660 res_idx++;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001661 }
1662
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001663 vpif_obj.config = pdev->dev.platform_data;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001664
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001665 subdev_count = vpif_obj.config->subdev_count;
Markus Elfringb442c462016-10-12 10:15:34 -03001666 vpif_obj.sd = kcalloc(subdev_count, sizeof(*vpif_obj.sd), GFP_KERNEL);
Markus Elfring03161cd2016-10-12 10:20:34 -03001667 if (!vpif_obj.sd) {
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001668 err = -ENOMEM;
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001669 goto vpif_unregister;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001670 }
1671
Kevin Hilman4a5f8ae2017-06-06 20:37:39 -03001672 if (!vpif_obj.config->asd_sizes[0]) {
Kevin Hilman2d40cb32016-12-07 16:30:22 -02001673 int i2c_id = vpif_obj.config->i2c_adapter_id;
1674
1675 i2c_adap = i2c_get_adapter(i2c_id);
1676 WARN_ON(!i2c_adap);
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001677 for (i = 0; i < subdev_count; i++) {
1678 subdevdata = &vpif_obj.config->subdev_info[i];
1679 vpif_obj.sd[i] =
1680 v4l2_i2c_new_subdev_board(&vpif_obj.v4l2_dev,
1681 i2c_adap,
1682 &subdevdata->
1683 board_info,
1684 NULL);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001685
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001686 if (!vpif_obj.sd[i]) {
1687 vpif_err("Error registering v4l2 subdevice\n");
Wei Yongjun2fcd9dc2013-09-02 05:06:10 -03001688 err = -ENODEV;
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001689 goto probe_subdev_out;
1690 }
1691 v4l2_info(&vpif_obj.v4l2_dev,
1692 "registered sub device %s\n",
1693 subdevdata->name);
1694 }
1695 vpif_probe_complete();
1696 } else {
Sylwester Nawrockie8419d02013-07-19 12:31:10 -03001697 vpif_obj.notifier.subdevs = vpif_obj.config->asd;
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001698 vpif_obj.notifier.num_subdevs = vpif_obj.config->asd_sizes[0];
Laurent Pinchartb6ee3f02017-08-30 13:18:04 -04001699 vpif_obj.notifier.ops = &vpif_async_ops;
Lad, Prabhakar873229e2013-06-25 11:17:34 -03001700 err = v4l2_async_notifier_register(&vpif_obj.v4l2_dev,
1701 &vpif_obj.notifier);
1702 if (err) {
1703 vpif_err("Error registering async notifier\n");
1704 err = -EINVAL;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001705 goto probe_subdev_out;
1706 }
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001707 }
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001708
1709 return 0;
1710
Hans Verkuilb65814e2012-09-20 09:06:26 -03001711probe_subdev_out:
1712 /* free sub devices memory */
1713 kfree(vpif_obj.sd);
Lad, Prabhakarb2de4f22013-06-17 11:20:46 -03001714vpif_unregister:
Hans Verkuild2f7a1a2011-12-13 05:44:42 -03001715 v4l2_device_unregister(&vpif_obj.v4l2_dev);
Lad, Prabhakarb2de4f22013-06-17 11:20:46 -03001716
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001717 return err;
1718}
1719
1720/**
1721 * vpif_remove() - driver remove handler
1722 * @device: ptr to platform device structure
1723 *
1724 * The vidoe device is unregistered
1725 */
1726static int vpif_remove(struct platform_device *device)
1727{
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001728 struct channel_obj *ch;
Lad, Prabhakarb2de4f22013-06-17 11:20:46 -03001729 int i;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001730
1731 v4l2_device_unregister(&vpif_obj.v4l2_dev);
1732
Lad, Prabhakar410ca602013-06-17 11:20:44 -03001733 kfree(vpif_obj.sd);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001734 /* un-register device */
1735 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1736 /* Get the pointer to the channel object */
1737 ch = vpif_obj.dev[i];
1738 /* Unregister video device */
Lad, Prabhakar8eef6662015-03-08 18:57:23 -03001739 video_unregister_device(&ch->video_dev);
Lad, Prabhakar410ca602013-06-17 11:20:44 -03001740 kfree(vpif_obj.dev[i]);
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001741 }
1742 return 0;
1743}
1744
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001745#ifdef CONFIG_PM_SLEEP
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001746/**
1747 * vpif_suspend: vpif device suspend
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001748 */
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001749static int vpif_suspend(struct device *dev)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001750{
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001751
1752 struct common_obj *common;
1753 struct channel_obj *ch;
1754 int i;
1755
1756 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1757 /* Get the pointer to the channel object */
1758 ch = vpif_obj.dev[i];
1759 common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001760
Prabhakar Ladc54d4a02014-09-06 12:26:51 -03001761 if (!vb2_start_streaming_called(&common->buffer_queue))
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001762 continue;
1763
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001764 mutex_lock(&common->lock);
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001765 /* Disable channel */
1766 if (ch->channel_id == VPIF_CHANNEL0_VIDEO) {
1767 enable_channel0(0);
1768 channel0_intr_enable(0);
1769 }
1770 if (ch->channel_id == VPIF_CHANNEL1_VIDEO ||
1771 ycmux_mode == 2) {
1772 enable_channel1(0);
1773 channel1_intr_enable(0);
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001774 }
1775 mutex_unlock(&common->lock);
1776 }
1777
1778 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001779}
1780
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001781/*
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001782 * vpif_resume: vpif device suspend
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001783 */
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001784static int vpif_resume(struct device *dev)
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001785{
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001786 struct common_obj *common;
1787 struct channel_obj *ch;
1788 int i;
1789
1790 for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
1791 /* Get the pointer to the channel object */
1792 ch = vpif_obj.dev[i];
1793 common = &ch->common[VPIF_VIDEO_INDEX];
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001794
Prabhakar Ladc54d4a02014-09-06 12:26:51 -03001795 if (!vb2_start_streaming_called(&common->buffer_queue))
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001796 continue;
1797
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001798 mutex_lock(&common->lock);
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001799 /* Enable channel */
1800 if (ch->channel_id == VPIF_CHANNEL0_VIDEO) {
1801 enable_channel0(1);
1802 channel0_intr_enable(1);
1803 }
1804 if (ch->channel_id == VPIF_CHANNEL1_VIDEO ||
1805 ycmux_mode == 2) {
1806 enable_channel1(1);
1807 channel1_intr_enable(1);
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001808 }
1809 mutex_unlock(&common->lock);
1810 }
1811
1812 return 0;
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001813}
Manjunath Hadli3d5946d2012-04-13 04:50:55 -03001814#endif
1815
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001816static SIMPLE_DEV_PM_OPS(vpif_pm_ops, vpif_suspend, vpif_resume);
1817
Mats Randgaardffa1b392010-08-30 10:30:36 -03001818static __refdata struct platform_driver vpif_driver = {
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001819 .driver = {
Lad, Prabhakare75ea0c2014-05-16 10:33:46 -03001820 .name = VPIF_DRIVER_NAME,
Lad, Prabhakarb7047712014-05-16 10:33:50 -03001821 .pm = &vpif_pm_ops,
Muralidharan Karicheri6ffefff2009-09-16 14:31:10 -03001822 },
1823 .probe = vpif_probe,
1824 .remove = vpif_remove,
1825};
1826
Lad, Prabhakarfe424b22013-06-17 11:20:45 -03001827module_platform_driver(vpif_driver);