Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1 | /* |
| 2 | * TI VPE mem2mem driver, based on the virtual v4l2-mem2mem example driver |
| 3 | * |
| 4 | * Copyright (c) 2013 Texas Instruments Inc. |
| 5 | * David Griego, <dagriego@biglakesoftware.com> |
| 6 | * Dale Farnsworth, <dale@farnsworth.org> |
| 7 | * Archit Taneja, <archit@ti.com> |
| 8 | * |
| 9 | * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd. |
| 10 | * Pawel Osciak, <pawel@osciak.com> |
| 11 | * Marek Szyprowski, <m.szyprowski@samsung.com> |
| 12 | * |
| 13 | * Based on the virtual v4l2-mem2mem example device |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or modify it |
| 16 | * under the terms of the GNU General Public License version 2 as published by |
| 17 | * the Free Software Foundation |
| 18 | */ |
| 19 | |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/dma-mapping.h> |
| 22 | #include <linux/err.h> |
| 23 | #include <linux/fs.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/io.h> |
| 26 | #include <linux/ioctl.h> |
| 27 | #include <linux/module.h> |
| 28 | #include <linux/platform_device.h> |
| 29 | #include <linux/pm_runtime.h> |
| 30 | #include <linux/sched.h> |
| 31 | #include <linux/slab.h> |
| 32 | #include <linux/videodev2.h> |
Archit Taneja | a51cd8f | 2013-12-03 08:51:13 -0300 | [diff] [blame] | 33 | #include <linux/log2.h> |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 34 | |
| 35 | #include <media/v4l2-common.h> |
| 36 | #include <media/v4l2-ctrls.h> |
| 37 | #include <media/v4l2-device.h> |
| 38 | #include <media/v4l2-event.h> |
| 39 | #include <media/v4l2-ioctl.h> |
| 40 | #include <media/v4l2-mem2mem.h> |
| 41 | #include <media/videobuf2-core.h> |
| 42 | #include <media/videobuf2-dma-contig.h> |
| 43 | |
| 44 | #include "vpdma.h" |
| 45 | #include "vpe_regs.h" |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 46 | #include "sc.h" |
Archit Taneja | 6948082 | 2013-12-12 05:36:01 -0300 | [diff] [blame] | 47 | #include "csc.h" |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 48 | |
| 49 | #define VPE_MODULE_NAME "vpe" |
| 50 | |
| 51 | /* minimum and maximum frame sizes */ |
Archit Taneja | ce392fd | 2014-02-12 04:04:22 -0300 | [diff] [blame] | 52 | #define MIN_W 32 |
| 53 | #define MIN_H 32 |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 54 | #define MAX_W 1920 |
| 55 | #define MAX_H 1080 |
| 56 | |
| 57 | /* required alignments */ |
| 58 | #define S_ALIGN 0 /* multiple of 1 */ |
| 59 | #define H_ALIGN 1 /* multiple of 2 */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 60 | |
| 61 | /* flags that indicate a format can be used for capture/output */ |
| 62 | #define VPE_FMT_TYPE_CAPTURE (1 << 0) |
| 63 | #define VPE_FMT_TYPE_OUTPUT (1 << 1) |
| 64 | |
| 65 | /* used as plane indices */ |
| 66 | #define VPE_MAX_PLANES 2 |
| 67 | #define VPE_LUMA 0 |
| 68 | #define VPE_CHROMA 1 |
| 69 | |
| 70 | /* per m2m context info */ |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 71 | #define VPE_MAX_SRC_BUFS 3 /* need 3 src fields to de-interlace */ |
| 72 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 73 | #define VPE_DEF_BUFS_PER_JOB 1 /* default one buffer per batch job */ |
| 74 | |
| 75 | /* |
| 76 | * each VPE context can need up to 3 config desciptors, 7 input descriptors, |
| 77 | * 3 output descriptors, and 10 control descriptors |
| 78 | */ |
| 79 | #define VPE_DESC_LIST_SIZE (10 * VPDMA_DTD_DESC_SIZE + \ |
| 80 | 13 * VPDMA_CFD_CTD_DESC_SIZE) |
| 81 | |
| 82 | #define vpe_dbg(vpedev, fmt, arg...) \ |
| 83 | dev_dbg((vpedev)->v4l2_dev.dev, fmt, ##arg) |
| 84 | #define vpe_err(vpedev, fmt, arg...) \ |
| 85 | dev_err((vpedev)->v4l2_dev.dev, fmt, ##arg) |
| 86 | |
| 87 | struct vpe_us_coeffs { |
| 88 | unsigned short anchor_fid0_c0; |
| 89 | unsigned short anchor_fid0_c1; |
| 90 | unsigned short anchor_fid0_c2; |
| 91 | unsigned short anchor_fid0_c3; |
| 92 | unsigned short interp_fid0_c0; |
| 93 | unsigned short interp_fid0_c1; |
| 94 | unsigned short interp_fid0_c2; |
| 95 | unsigned short interp_fid0_c3; |
| 96 | unsigned short anchor_fid1_c0; |
| 97 | unsigned short anchor_fid1_c1; |
| 98 | unsigned short anchor_fid1_c2; |
| 99 | unsigned short anchor_fid1_c3; |
| 100 | unsigned short interp_fid1_c0; |
| 101 | unsigned short interp_fid1_c1; |
| 102 | unsigned short interp_fid1_c2; |
| 103 | unsigned short interp_fid1_c3; |
| 104 | }; |
| 105 | |
| 106 | /* |
| 107 | * Default upsampler coefficients |
| 108 | */ |
| 109 | static const struct vpe_us_coeffs us_coeffs[] = { |
| 110 | { |
| 111 | /* Coefficients for progressive input */ |
| 112 | 0x00C8, 0x0348, 0x0018, 0x3FD8, 0x3FB8, 0x0378, 0x00E8, 0x3FE8, |
| 113 | 0x00C8, 0x0348, 0x0018, 0x3FD8, 0x3FB8, 0x0378, 0x00E8, 0x3FE8, |
| 114 | }, |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 115 | { |
| 116 | /* Coefficients for Top Field Interlaced input */ |
| 117 | 0x0051, 0x03D5, 0x3FE3, 0x3FF7, 0x3FB5, 0x02E9, 0x018F, 0x3FD3, |
| 118 | /* Coefficients for Bottom Field Interlaced input */ |
| 119 | 0x016B, 0x0247, 0x00B1, 0x3F9D, 0x3FCF, 0x03DB, 0x005D, 0x3FF9, |
| 120 | }, |
| 121 | }; |
| 122 | |
| 123 | /* |
| 124 | * the following registers are for configuring some of the parameters of the |
| 125 | * motion and edge detection blocks inside DEI, these generally remain the same, |
| 126 | * these could be passed later via userspace if some one needs to tweak these. |
| 127 | */ |
| 128 | struct vpe_dei_regs { |
| 129 | unsigned long mdt_spacial_freq_thr_reg; /* VPE_DEI_REG2 */ |
| 130 | unsigned long edi_config_reg; /* VPE_DEI_REG3 */ |
| 131 | unsigned long edi_lut_reg0; /* VPE_DEI_REG4 */ |
| 132 | unsigned long edi_lut_reg1; /* VPE_DEI_REG5 */ |
| 133 | unsigned long edi_lut_reg2; /* VPE_DEI_REG6 */ |
| 134 | unsigned long edi_lut_reg3; /* VPE_DEI_REG7 */ |
| 135 | }; |
| 136 | |
| 137 | /* |
| 138 | * default expert DEI register values, unlikely to be modified. |
| 139 | */ |
| 140 | static const struct vpe_dei_regs dei_regs = { |
| 141 | 0x020C0804u, |
| 142 | 0x0118100Fu, |
| 143 | 0x08040200u, |
| 144 | 0x1010100Cu, |
| 145 | 0x10101010u, |
| 146 | 0x10101010u, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | /* |
| 150 | * The port_data structure contains per-port data. |
| 151 | */ |
| 152 | struct vpe_port_data { |
| 153 | enum vpdma_channel channel; /* VPDMA channel */ |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 154 | u8 vb_index; /* input frame f, f-1, f-2 index */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 155 | u8 vb_part; /* plane index for co-panar formats */ |
| 156 | }; |
| 157 | |
| 158 | /* |
| 159 | * Define indices into the port_data tables |
| 160 | */ |
| 161 | #define VPE_PORT_LUMA1_IN 0 |
| 162 | #define VPE_PORT_CHROMA1_IN 1 |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 163 | #define VPE_PORT_LUMA2_IN 2 |
| 164 | #define VPE_PORT_CHROMA2_IN 3 |
| 165 | #define VPE_PORT_LUMA3_IN 4 |
| 166 | #define VPE_PORT_CHROMA3_IN 5 |
| 167 | #define VPE_PORT_MV_IN 6 |
| 168 | #define VPE_PORT_MV_OUT 7 |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 169 | #define VPE_PORT_LUMA_OUT 8 |
| 170 | #define VPE_PORT_CHROMA_OUT 9 |
| 171 | #define VPE_PORT_RGB_OUT 10 |
| 172 | |
| 173 | static const struct vpe_port_data port_data[11] = { |
| 174 | [VPE_PORT_LUMA1_IN] = { |
| 175 | .channel = VPE_CHAN_LUMA1_IN, |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 176 | .vb_index = 0, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 177 | .vb_part = VPE_LUMA, |
| 178 | }, |
| 179 | [VPE_PORT_CHROMA1_IN] = { |
| 180 | .channel = VPE_CHAN_CHROMA1_IN, |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 181 | .vb_index = 0, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 182 | .vb_part = VPE_CHROMA, |
| 183 | }, |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 184 | [VPE_PORT_LUMA2_IN] = { |
| 185 | .channel = VPE_CHAN_LUMA2_IN, |
| 186 | .vb_index = 1, |
| 187 | .vb_part = VPE_LUMA, |
| 188 | }, |
| 189 | [VPE_PORT_CHROMA2_IN] = { |
| 190 | .channel = VPE_CHAN_CHROMA2_IN, |
| 191 | .vb_index = 1, |
| 192 | .vb_part = VPE_CHROMA, |
| 193 | }, |
| 194 | [VPE_PORT_LUMA3_IN] = { |
| 195 | .channel = VPE_CHAN_LUMA3_IN, |
| 196 | .vb_index = 2, |
| 197 | .vb_part = VPE_LUMA, |
| 198 | }, |
| 199 | [VPE_PORT_CHROMA3_IN] = { |
| 200 | .channel = VPE_CHAN_CHROMA3_IN, |
| 201 | .vb_index = 2, |
| 202 | .vb_part = VPE_CHROMA, |
| 203 | }, |
| 204 | [VPE_PORT_MV_IN] = { |
| 205 | .channel = VPE_CHAN_MV_IN, |
| 206 | }, |
| 207 | [VPE_PORT_MV_OUT] = { |
| 208 | .channel = VPE_CHAN_MV_OUT, |
| 209 | }, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 210 | [VPE_PORT_LUMA_OUT] = { |
| 211 | .channel = VPE_CHAN_LUMA_OUT, |
| 212 | .vb_part = VPE_LUMA, |
| 213 | }, |
| 214 | [VPE_PORT_CHROMA_OUT] = { |
| 215 | .channel = VPE_CHAN_CHROMA_OUT, |
| 216 | .vb_part = VPE_CHROMA, |
| 217 | }, |
| 218 | [VPE_PORT_RGB_OUT] = { |
| 219 | .channel = VPE_CHAN_RGB_OUT, |
| 220 | .vb_part = VPE_LUMA, |
| 221 | }, |
| 222 | }; |
| 223 | |
| 224 | |
| 225 | /* driver info for each of the supported video formats */ |
| 226 | struct vpe_fmt { |
| 227 | char *name; /* human-readable name */ |
| 228 | u32 fourcc; /* standard format identifier */ |
| 229 | u8 types; /* CAPTURE and/or OUTPUT */ |
| 230 | u8 coplanar; /* set for unpacked Luma and Chroma */ |
| 231 | /* vpdma format info for each plane */ |
| 232 | struct vpdma_data_format const *vpdma_fmt[VPE_MAX_PLANES]; |
| 233 | }; |
| 234 | |
| 235 | static struct vpe_fmt vpe_formats[] = { |
| 236 | { |
| 237 | .name = "YUV 422 co-planar", |
| 238 | .fourcc = V4L2_PIX_FMT_NV16, |
| 239 | .types = VPE_FMT_TYPE_CAPTURE | VPE_FMT_TYPE_OUTPUT, |
| 240 | .coplanar = 1, |
| 241 | .vpdma_fmt = { &vpdma_yuv_fmts[VPDMA_DATA_FMT_Y444], |
| 242 | &vpdma_yuv_fmts[VPDMA_DATA_FMT_C444], |
| 243 | }, |
| 244 | }, |
| 245 | { |
| 246 | .name = "YUV 420 co-planar", |
| 247 | .fourcc = V4L2_PIX_FMT_NV12, |
| 248 | .types = VPE_FMT_TYPE_CAPTURE | VPE_FMT_TYPE_OUTPUT, |
| 249 | .coplanar = 1, |
| 250 | .vpdma_fmt = { &vpdma_yuv_fmts[VPDMA_DATA_FMT_Y420], |
| 251 | &vpdma_yuv_fmts[VPDMA_DATA_FMT_C420], |
| 252 | }, |
| 253 | }, |
| 254 | { |
| 255 | .name = "YUYV 422 packed", |
| 256 | .fourcc = V4L2_PIX_FMT_YUYV, |
| 257 | .types = VPE_FMT_TYPE_CAPTURE | VPE_FMT_TYPE_OUTPUT, |
| 258 | .coplanar = 0, |
| 259 | .vpdma_fmt = { &vpdma_yuv_fmts[VPDMA_DATA_FMT_YC422], |
| 260 | }, |
| 261 | }, |
| 262 | { |
| 263 | .name = "UYVY 422 packed", |
| 264 | .fourcc = V4L2_PIX_FMT_UYVY, |
| 265 | .types = VPE_FMT_TYPE_CAPTURE | VPE_FMT_TYPE_OUTPUT, |
| 266 | .coplanar = 0, |
| 267 | .vpdma_fmt = { &vpdma_yuv_fmts[VPDMA_DATA_FMT_CY422], |
| 268 | }, |
| 269 | }, |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 270 | { |
| 271 | .name = "RGB888 packed", |
| 272 | .fourcc = V4L2_PIX_FMT_RGB24, |
| 273 | .types = VPE_FMT_TYPE_CAPTURE, |
| 274 | .coplanar = 0, |
| 275 | .vpdma_fmt = { &vpdma_rgb_fmts[VPDMA_DATA_FMT_RGB24], |
| 276 | }, |
| 277 | }, |
| 278 | { |
| 279 | .name = "ARGB32", |
| 280 | .fourcc = V4L2_PIX_FMT_RGB32, |
| 281 | .types = VPE_FMT_TYPE_CAPTURE, |
| 282 | .coplanar = 0, |
| 283 | .vpdma_fmt = { &vpdma_rgb_fmts[VPDMA_DATA_FMT_ARGB32], |
| 284 | }, |
| 285 | }, |
| 286 | { |
| 287 | .name = "BGR888 packed", |
| 288 | .fourcc = V4L2_PIX_FMT_BGR24, |
| 289 | .types = VPE_FMT_TYPE_CAPTURE, |
| 290 | .coplanar = 0, |
| 291 | .vpdma_fmt = { &vpdma_rgb_fmts[VPDMA_DATA_FMT_BGR24], |
| 292 | }, |
| 293 | }, |
| 294 | { |
| 295 | .name = "ABGR32", |
| 296 | .fourcc = V4L2_PIX_FMT_BGR32, |
| 297 | .types = VPE_FMT_TYPE_CAPTURE, |
| 298 | .coplanar = 0, |
| 299 | .vpdma_fmt = { &vpdma_rgb_fmts[VPDMA_DATA_FMT_ABGR32], |
| 300 | }, |
| 301 | }, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 302 | }; |
| 303 | |
| 304 | /* |
| 305 | * per-queue, driver-specific private data. |
| 306 | * there is one source queue and one destination queue for each m2m context. |
| 307 | */ |
| 308 | struct vpe_q_data { |
| 309 | unsigned int width; /* frame width */ |
| 310 | unsigned int height; /* frame height */ |
| 311 | unsigned int bytesperline[VPE_MAX_PLANES]; /* bytes per line in memory */ |
| 312 | enum v4l2_colorspace colorspace; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 313 | enum v4l2_field field; /* supported field value */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 314 | unsigned int flags; |
| 315 | unsigned int sizeimage[VPE_MAX_PLANES]; /* image size in memory */ |
| 316 | struct v4l2_rect c_rect; /* crop/compose rectangle */ |
| 317 | struct vpe_fmt *fmt; /* format info */ |
| 318 | }; |
| 319 | |
| 320 | /* vpe_q_data flag bits */ |
| 321 | #define Q_DATA_FRAME_1D (1 << 0) |
| 322 | #define Q_DATA_MODE_TILED (1 << 1) |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 323 | #define Q_DATA_INTERLACED (1 << 2) |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 324 | |
| 325 | enum { |
| 326 | Q_DATA_SRC = 0, |
| 327 | Q_DATA_DST = 1, |
| 328 | }; |
| 329 | |
| 330 | /* find our format description corresponding to the passed v4l2_format */ |
| 331 | static struct vpe_fmt *find_format(struct v4l2_format *f) |
| 332 | { |
| 333 | struct vpe_fmt *fmt; |
| 334 | unsigned int k; |
| 335 | |
| 336 | for (k = 0; k < ARRAY_SIZE(vpe_formats); k++) { |
| 337 | fmt = &vpe_formats[k]; |
| 338 | if (fmt->fourcc == f->fmt.pix.pixelformat) |
| 339 | return fmt; |
| 340 | } |
| 341 | |
| 342 | return NULL; |
| 343 | } |
| 344 | |
| 345 | /* |
| 346 | * there is one vpe_dev structure in the driver, it is shared by |
| 347 | * all instances. |
| 348 | */ |
| 349 | struct vpe_dev { |
| 350 | struct v4l2_device v4l2_dev; |
| 351 | struct video_device vfd; |
| 352 | struct v4l2_m2m_dev *m2m_dev; |
| 353 | |
| 354 | atomic_t num_instances; /* count of driver instances */ |
| 355 | dma_addr_t loaded_mmrs; /* shadow mmrs in device */ |
| 356 | struct mutex dev_mutex; |
| 357 | spinlock_t lock; |
| 358 | |
| 359 | int irq; |
| 360 | void __iomem *base; |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 361 | struct resource *res; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 362 | |
| 363 | struct vb2_alloc_ctx *alloc_ctx; |
| 364 | struct vpdma_data *vpdma; /* vpdma data handle */ |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 365 | struct sc_data *sc; /* scaler data handle */ |
Archit Taneja | 6948082 | 2013-12-12 05:36:01 -0300 | [diff] [blame] | 366 | struct csc_data *csc; /* csc data handle */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 367 | }; |
| 368 | |
| 369 | /* |
| 370 | * There is one vpe_ctx structure for each m2m context. |
| 371 | */ |
| 372 | struct vpe_ctx { |
| 373 | struct v4l2_fh fh; |
| 374 | struct vpe_dev *dev; |
| 375 | struct v4l2_m2m_ctx *m2m_ctx; |
| 376 | struct v4l2_ctrl_handler hdl; |
| 377 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 378 | unsigned int field; /* current field */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 379 | unsigned int sequence; /* current frame/field seq */ |
| 380 | unsigned int aborting; /* abort after next irq */ |
| 381 | |
| 382 | unsigned int bufs_per_job; /* input buffers per batch */ |
| 383 | unsigned int bufs_completed; /* bufs done in this batch */ |
| 384 | |
| 385 | struct vpe_q_data q_data[2]; /* src & dst queue data */ |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 386 | struct vb2_buffer *src_vbs[VPE_MAX_SRC_BUFS]; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 387 | struct vb2_buffer *dst_vb; |
| 388 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 389 | dma_addr_t mv_buf_dma[2]; /* dma addrs of motion vector in/out bufs */ |
| 390 | void *mv_buf[2]; /* virtual addrs of motion vector bufs */ |
| 391 | size_t mv_buf_size; /* current motion vector buffer size */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 392 | struct vpdma_buf mmr_adb; /* shadow reg addr/data block */ |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 393 | struct vpdma_buf sc_coeff_h; /* h coeff buffer */ |
| 394 | struct vpdma_buf sc_coeff_v; /* v coeff buffer */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 395 | struct vpdma_desc_list desc_list; /* DMA descriptor list */ |
| 396 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 397 | bool deinterlacing; /* using de-interlacer */ |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 398 | bool load_mmrs; /* have new shadow reg values */ |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 399 | |
| 400 | unsigned int src_mv_buf_selector; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 401 | }; |
| 402 | |
| 403 | |
| 404 | /* |
| 405 | * M2M devices get 2 queues. |
| 406 | * Return the queue given the type. |
| 407 | */ |
| 408 | static struct vpe_q_data *get_q_data(struct vpe_ctx *ctx, |
| 409 | enum v4l2_buf_type type) |
| 410 | { |
| 411 | switch (type) { |
| 412 | case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE: |
| 413 | return &ctx->q_data[Q_DATA_SRC]; |
| 414 | case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE: |
| 415 | return &ctx->q_data[Q_DATA_DST]; |
| 416 | default: |
| 417 | BUG(); |
| 418 | } |
| 419 | return NULL; |
| 420 | } |
| 421 | |
| 422 | static u32 read_reg(struct vpe_dev *dev, int offset) |
| 423 | { |
| 424 | return ioread32(dev->base + offset); |
| 425 | } |
| 426 | |
| 427 | static void write_reg(struct vpe_dev *dev, int offset, u32 value) |
| 428 | { |
| 429 | iowrite32(value, dev->base + offset); |
| 430 | } |
| 431 | |
| 432 | /* register field read/write helpers */ |
| 433 | static int get_field(u32 value, u32 mask, int shift) |
| 434 | { |
| 435 | return (value & (mask << shift)) >> shift; |
| 436 | } |
| 437 | |
| 438 | static int read_field_reg(struct vpe_dev *dev, int offset, u32 mask, int shift) |
| 439 | { |
| 440 | return get_field(read_reg(dev, offset), mask, shift); |
| 441 | } |
| 442 | |
| 443 | static void write_field(u32 *valp, u32 field, u32 mask, int shift) |
| 444 | { |
| 445 | u32 val = *valp; |
| 446 | |
| 447 | val &= ~(mask << shift); |
| 448 | val |= (field & mask) << shift; |
| 449 | *valp = val; |
| 450 | } |
| 451 | |
| 452 | static void write_field_reg(struct vpe_dev *dev, int offset, u32 field, |
| 453 | u32 mask, int shift) |
| 454 | { |
| 455 | u32 val = read_reg(dev, offset); |
| 456 | |
| 457 | write_field(&val, field, mask, shift); |
| 458 | |
| 459 | write_reg(dev, offset, val); |
| 460 | } |
| 461 | |
| 462 | /* |
| 463 | * DMA address/data block for the shadow registers |
| 464 | */ |
| 465 | struct vpe_mmr_adb { |
| 466 | struct vpdma_adb_hdr out_fmt_hdr; |
| 467 | u32 out_fmt_reg[1]; |
| 468 | u32 out_fmt_pad[3]; |
| 469 | struct vpdma_adb_hdr us1_hdr; |
| 470 | u32 us1_regs[8]; |
| 471 | struct vpdma_adb_hdr us2_hdr; |
| 472 | u32 us2_regs[8]; |
| 473 | struct vpdma_adb_hdr us3_hdr; |
| 474 | u32 us3_regs[8]; |
| 475 | struct vpdma_adb_hdr dei_hdr; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 476 | u32 dei_regs[8]; |
Archit Taneja | bbee8b3 | 2013-12-12 05:36:00 -0300 | [diff] [blame] | 477 | struct vpdma_adb_hdr sc_hdr0; |
| 478 | u32 sc_regs0[7]; |
| 479 | u32 sc_pad0[1]; |
| 480 | struct vpdma_adb_hdr sc_hdr8; |
| 481 | u32 sc_regs8[6]; |
| 482 | u32 sc_pad8[2]; |
| 483 | struct vpdma_adb_hdr sc_hdr17; |
| 484 | u32 sc_regs17[9]; |
| 485 | u32 sc_pad17[3]; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 486 | struct vpdma_adb_hdr csc_hdr; |
| 487 | u32 csc_regs[6]; |
| 488 | u32 csc_pad[2]; |
| 489 | }; |
| 490 | |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 491 | #define GET_OFFSET_TOP(ctx, obj, reg) \ |
| 492 | ((obj)->res->start - ctx->dev->res->start + reg) |
| 493 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 494 | #define VPE_SET_MMR_ADB_HDR(ctx, hdr, regs, offset_a) \ |
| 495 | VPDMA_SET_MMR_ADB_HDR(ctx->mmr_adb, vpe_mmr_adb, hdr, regs, offset_a) |
| 496 | /* |
| 497 | * Set the headers for all of the address/data block structures. |
| 498 | */ |
| 499 | static void init_adb_hdrs(struct vpe_ctx *ctx) |
| 500 | { |
| 501 | VPE_SET_MMR_ADB_HDR(ctx, out_fmt_hdr, out_fmt_reg, VPE_CLK_FORMAT_SELECT); |
| 502 | VPE_SET_MMR_ADB_HDR(ctx, us1_hdr, us1_regs, VPE_US1_R0); |
| 503 | VPE_SET_MMR_ADB_HDR(ctx, us2_hdr, us2_regs, VPE_US2_R0); |
| 504 | VPE_SET_MMR_ADB_HDR(ctx, us3_hdr, us3_regs, VPE_US3_R0); |
| 505 | VPE_SET_MMR_ADB_HDR(ctx, dei_hdr, dei_regs, VPE_DEI_FRAME_SIZE); |
Archit Taneja | bbee8b3 | 2013-12-12 05:36:00 -0300 | [diff] [blame] | 506 | VPE_SET_MMR_ADB_HDR(ctx, sc_hdr0, sc_regs0, |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 507 | GET_OFFSET_TOP(ctx, ctx->dev->sc, CFG_SC0)); |
Archit Taneja | bbee8b3 | 2013-12-12 05:36:00 -0300 | [diff] [blame] | 508 | VPE_SET_MMR_ADB_HDR(ctx, sc_hdr8, sc_regs8, |
| 509 | GET_OFFSET_TOP(ctx, ctx->dev->sc, CFG_SC8)); |
| 510 | VPE_SET_MMR_ADB_HDR(ctx, sc_hdr17, sc_regs17, |
| 511 | GET_OFFSET_TOP(ctx, ctx->dev->sc, CFG_SC17)); |
Archit Taneja | 6948082 | 2013-12-12 05:36:01 -0300 | [diff] [blame] | 512 | VPE_SET_MMR_ADB_HDR(ctx, csc_hdr, csc_regs, |
| 513 | GET_OFFSET_TOP(ctx, ctx->dev->csc, CSC_CSC00)); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 514 | }; |
| 515 | |
| 516 | /* |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 517 | * Allocate or re-allocate the motion vector DMA buffers |
| 518 | * There are two buffers, one for input and one for output. |
| 519 | * However, the roles are reversed after each field is processed. |
| 520 | * In other words, after each field is processed, the previous |
| 521 | * output (dst) MV buffer becomes the new input (src) MV buffer. |
| 522 | */ |
| 523 | static int realloc_mv_buffers(struct vpe_ctx *ctx, size_t size) |
| 524 | { |
| 525 | struct device *dev = ctx->dev->v4l2_dev.dev; |
| 526 | |
| 527 | if (ctx->mv_buf_size == size) |
| 528 | return 0; |
| 529 | |
| 530 | if (ctx->mv_buf[0]) |
| 531 | dma_free_coherent(dev, ctx->mv_buf_size, ctx->mv_buf[0], |
| 532 | ctx->mv_buf_dma[0]); |
| 533 | |
| 534 | if (ctx->mv_buf[1]) |
| 535 | dma_free_coherent(dev, ctx->mv_buf_size, ctx->mv_buf[1], |
| 536 | ctx->mv_buf_dma[1]); |
| 537 | |
| 538 | if (size == 0) |
| 539 | return 0; |
| 540 | |
| 541 | ctx->mv_buf[0] = dma_alloc_coherent(dev, size, &ctx->mv_buf_dma[0], |
| 542 | GFP_KERNEL); |
| 543 | if (!ctx->mv_buf[0]) { |
| 544 | vpe_err(ctx->dev, "failed to allocate motion vector buffer\n"); |
| 545 | return -ENOMEM; |
| 546 | } |
| 547 | |
| 548 | ctx->mv_buf[1] = dma_alloc_coherent(dev, size, &ctx->mv_buf_dma[1], |
| 549 | GFP_KERNEL); |
| 550 | if (!ctx->mv_buf[1]) { |
| 551 | vpe_err(ctx->dev, "failed to allocate motion vector buffer\n"); |
| 552 | dma_free_coherent(dev, size, ctx->mv_buf[0], |
| 553 | ctx->mv_buf_dma[0]); |
| 554 | |
| 555 | return -ENOMEM; |
| 556 | } |
| 557 | |
| 558 | ctx->mv_buf_size = size; |
| 559 | ctx->src_mv_buf_selector = 0; |
| 560 | |
| 561 | return 0; |
| 562 | } |
| 563 | |
| 564 | static void free_mv_buffers(struct vpe_ctx *ctx) |
| 565 | { |
| 566 | realloc_mv_buffers(ctx, 0); |
| 567 | } |
| 568 | |
| 569 | /* |
| 570 | * While de-interlacing, we keep the two most recent input buffers |
| 571 | * around. This function frees those two buffers when we have |
| 572 | * finished processing the current stream. |
| 573 | */ |
| 574 | static void free_vbs(struct vpe_ctx *ctx) |
| 575 | { |
| 576 | struct vpe_dev *dev = ctx->dev; |
| 577 | unsigned long flags; |
| 578 | |
| 579 | if (ctx->src_vbs[2] == NULL) |
| 580 | return; |
| 581 | |
| 582 | spin_lock_irqsave(&dev->lock, flags); |
| 583 | if (ctx->src_vbs[2]) { |
| 584 | v4l2_m2m_buf_done(ctx->src_vbs[2], VB2_BUF_STATE_DONE); |
| 585 | v4l2_m2m_buf_done(ctx->src_vbs[1], VB2_BUF_STATE_DONE); |
| 586 | } |
| 587 | spin_unlock_irqrestore(&dev->lock, flags); |
| 588 | } |
| 589 | |
| 590 | /* |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 591 | * Enable or disable the VPE clocks |
| 592 | */ |
| 593 | static void vpe_set_clock_enable(struct vpe_dev *dev, bool on) |
| 594 | { |
| 595 | u32 val = 0; |
| 596 | |
| 597 | if (on) |
| 598 | val = VPE_DATA_PATH_CLK_ENABLE | VPE_VPEDMA_CLK_ENABLE; |
| 599 | write_reg(dev, VPE_CLK_ENABLE, val); |
| 600 | } |
| 601 | |
| 602 | static void vpe_top_reset(struct vpe_dev *dev) |
| 603 | { |
| 604 | |
| 605 | write_field_reg(dev, VPE_CLK_RESET, 1, VPE_DATA_PATH_CLK_RESET_MASK, |
| 606 | VPE_DATA_PATH_CLK_RESET_SHIFT); |
| 607 | |
| 608 | usleep_range(100, 150); |
| 609 | |
| 610 | write_field_reg(dev, VPE_CLK_RESET, 0, VPE_DATA_PATH_CLK_RESET_MASK, |
| 611 | VPE_DATA_PATH_CLK_RESET_SHIFT); |
| 612 | } |
| 613 | |
| 614 | static void vpe_top_vpdma_reset(struct vpe_dev *dev) |
| 615 | { |
| 616 | write_field_reg(dev, VPE_CLK_RESET, 1, VPE_VPDMA_CLK_RESET_MASK, |
| 617 | VPE_VPDMA_CLK_RESET_SHIFT); |
| 618 | |
| 619 | usleep_range(100, 150); |
| 620 | |
| 621 | write_field_reg(dev, VPE_CLK_RESET, 0, VPE_VPDMA_CLK_RESET_MASK, |
| 622 | VPE_VPDMA_CLK_RESET_SHIFT); |
| 623 | } |
| 624 | |
| 625 | /* |
| 626 | * Load the correct of upsampler coefficients into the shadow MMRs |
| 627 | */ |
| 628 | static void set_us_coefficients(struct vpe_ctx *ctx) |
| 629 | { |
| 630 | struct vpe_mmr_adb *mmr_adb = ctx->mmr_adb.addr; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 631 | struct vpe_q_data *s_q_data = &ctx->q_data[Q_DATA_SRC]; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 632 | u32 *us1_reg = &mmr_adb->us1_regs[0]; |
| 633 | u32 *us2_reg = &mmr_adb->us2_regs[0]; |
| 634 | u32 *us3_reg = &mmr_adb->us3_regs[0]; |
| 635 | const unsigned short *cp, *end_cp; |
| 636 | |
| 637 | cp = &us_coeffs[0].anchor_fid0_c0; |
| 638 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 639 | if (s_q_data->flags & Q_DATA_INTERLACED) /* interlaced */ |
| 640 | cp += sizeof(us_coeffs[0]) / sizeof(*cp); |
| 641 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 642 | end_cp = cp + sizeof(us_coeffs[0]) / sizeof(*cp); |
| 643 | |
| 644 | while (cp < end_cp) { |
| 645 | write_field(us1_reg, *cp++, VPE_US_C0_MASK, VPE_US_C0_SHIFT); |
| 646 | write_field(us1_reg, *cp++, VPE_US_C1_MASK, VPE_US_C1_SHIFT); |
| 647 | *us2_reg++ = *us1_reg; |
| 648 | *us3_reg++ = *us1_reg++; |
| 649 | } |
| 650 | ctx->load_mmrs = true; |
| 651 | } |
| 652 | |
| 653 | /* |
| 654 | * Set the upsampler config mode and the VPDMA line mode in the shadow MMRs. |
| 655 | */ |
| 656 | static void set_cfg_and_line_modes(struct vpe_ctx *ctx) |
| 657 | { |
| 658 | struct vpe_fmt *fmt = ctx->q_data[Q_DATA_SRC].fmt; |
| 659 | struct vpe_mmr_adb *mmr_adb = ctx->mmr_adb.addr; |
| 660 | u32 *us1_reg0 = &mmr_adb->us1_regs[0]; |
| 661 | u32 *us2_reg0 = &mmr_adb->us2_regs[0]; |
| 662 | u32 *us3_reg0 = &mmr_adb->us3_regs[0]; |
| 663 | int line_mode = 1; |
| 664 | int cfg_mode = 1; |
| 665 | |
| 666 | /* |
| 667 | * Cfg Mode 0: YUV420 source, enable upsampler, DEI is de-interlacing. |
| 668 | * Cfg Mode 1: YUV422 source, disable upsampler, DEI is de-interlacing. |
| 669 | */ |
| 670 | |
| 671 | if (fmt->fourcc == V4L2_PIX_FMT_NV12) { |
| 672 | cfg_mode = 0; |
| 673 | line_mode = 0; /* double lines to line buffer */ |
| 674 | } |
| 675 | |
| 676 | write_field(us1_reg0, cfg_mode, VPE_US_MODE_MASK, VPE_US_MODE_SHIFT); |
| 677 | write_field(us2_reg0, cfg_mode, VPE_US_MODE_MASK, VPE_US_MODE_SHIFT); |
| 678 | write_field(us3_reg0, cfg_mode, VPE_US_MODE_MASK, VPE_US_MODE_SHIFT); |
| 679 | |
| 680 | /* regs for now */ |
| 681 | vpdma_set_line_mode(ctx->dev->vpdma, line_mode, VPE_CHAN_CHROMA1_IN); |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 682 | vpdma_set_line_mode(ctx->dev->vpdma, line_mode, VPE_CHAN_CHROMA2_IN); |
| 683 | vpdma_set_line_mode(ctx->dev->vpdma, line_mode, VPE_CHAN_CHROMA3_IN); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 684 | |
| 685 | /* frame start for input luma */ |
| 686 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 687 | VPE_CHAN_LUMA1_IN); |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 688 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 689 | VPE_CHAN_LUMA2_IN); |
| 690 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 691 | VPE_CHAN_LUMA3_IN); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 692 | |
| 693 | /* frame start for input chroma */ |
| 694 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 695 | VPE_CHAN_CHROMA1_IN); |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 696 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 697 | VPE_CHAN_CHROMA2_IN); |
| 698 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 699 | VPE_CHAN_CHROMA3_IN); |
| 700 | |
| 701 | /* frame start for MV in client */ |
| 702 | vpdma_set_frame_start_event(ctx->dev->vpdma, VPDMA_FSEVENT_CHANNEL_ACTIVE, |
| 703 | VPE_CHAN_MV_IN); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 704 | |
| 705 | ctx->load_mmrs = true; |
| 706 | } |
| 707 | |
| 708 | /* |
| 709 | * Set the shadow registers that are modified when the source |
| 710 | * format changes. |
| 711 | */ |
| 712 | static void set_src_registers(struct vpe_ctx *ctx) |
| 713 | { |
| 714 | set_us_coefficients(ctx); |
| 715 | } |
| 716 | |
| 717 | /* |
| 718 | * Set the shadow registers that are modified when the destination |
| 719 | * format changes. |
| 720 | */ |
| 721 | static void set_dst_registers(struct vpe_ctx *ctx) |
| 722 | { |
| 723 | struct vpe_mmr_adb *mmr_adb = ctx->mmr_adb.addr; |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 724 | enum v4l2_colorspace clrspc = ctx->q_data[Q_DATA_DST].colorspace; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 725 | struct vpe_fmt *fmt = ctx->q_data[Q_DATA_DST].fmt; |
| 726 | u32 val = 0; |
| 727 | |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 728 | if (clrspc == V4L2_COLORSPACE_SRGB) |
| 729 | val |= VPE_RGB_OUT_SELECT; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 730 | else if (fmt->fourcc == V4L2_PIX_FMT_NV16) |
| 731 | val |= VPE_COLOR_SEPARATE_422; |
| 732 | |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 733 | /* |
| 734 | * the source of CHR_DS and CSC is always the scaler, irrespective of |
| 735 | * whether it's used or not |
| 736 | */ |
| 737 | val |= VPE_DS_SRC_DEI_SCALER | VPE_CSC_SRC_DEI_SCALER; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 738 | |
| 739 | if (fmt->fourcc != V4L2_PIX_FMT_NV12) |
| 740 | val |= VPE_DS_BYPASS; |
| 741 | |
| 742 | mmr_adb->out_fmt_reg[0] = val; |
| 743 | |
| 744 | ctx->load_mmrs = true; |
| 745 | } |
| 746 | |
| 747 | /* |
| 748 | * Set the de-interlacer shadow register values |
| 749 | */ |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 750 | static void set_dei_regs(struct vpe_ctx *ctx) |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 751 | { |
| 752 | struct vpe_mmr_adb *mmr_adb = ctx->mmr_adb.addr; |
| 753 | struct vpe_q_data *s_q_data = &ctx->q_data[Q_DATA_SRC]; |
| 754 | unsigned int src_h = s_q_data->c_rect.height; |
| 755 | unsigned int src_w = s_q_data->c_rect.width; |
| 756 | u32 *dei_mmr0 = &mmr_adb->dei_regs[0]; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 757 | bool deinterlace = true; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 758 | u32 val = 0; |
| 759 | |
| 760 | /* |
| 761 | * according to TRM, we should set DEI in progressive bypass mode when |
| 762 | * the input content is progressive, however, DEI is bypassed correctly |
| 763 | * for both progressive and interlace content in interlace bypass mode. |
| 764 | * It has been recommended not to use progressive bypass mode. |
| 765 | */ |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 766 | if ((!ctx->deinterlacing && (s_q_data->flags & Q_DATA_INTERLACED)) || |
| 767 | !(s_q_data->flags & Q_DATA_INTERLACED)) { |
| 768 | deinterlace = false; |
| 769 | val = VPE_DEI_INTERLACE_BYPASS; |
| 770 | } |
| 771 | |
| 772 | src_h = deinterlace ? src_h * 2 : src_h; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 773 | |
| 774 | val |= (src_h << VPE_DEI_HEIGHT_SHIFT) | |
| 775 | (src_w << VPE_DEI_WIDTH_SHIFT) | |
| 776 | VPE_DEI_FIELD_FLUSH; |
| 777 | |
| 778 | *dei_mmr0 = val; |
| 779 | |
| 780 | ctx->load_mmrs = true; |
| 781 | } |
| 782 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 783 | static void set_dei_shadow_registers(struct vpe_ctx *ctx) |
| 784 | { |
| 785 | struct vpe_mmr_adb *mmr_adb = ctx->mmr_adb.addr; |
| 786 | u32 *dei_mmr = &mmr_adb->dei_regs[0]; |
| 787 | const struct vpe_dei_regs *cur = &dei_regs; |
| 788 | |
| 789 | dei_mmr[2] = cur->mdt_spacial_freq_thr_reg; |
| 790 | dei_mmr[3] = cur->edi_config_reg; |
| 791 | dei_mmr[4] = cur->edi_lut_reg0; |
| 792 | dei_mmr[5] = cur->edi_lut_reg1; |
| 793 | dei_mmr[6] = cur->edi_lut_reg2; |
| 794 | dei_mmr[7] = cur->edi_lut_reg3; |
| 795 | |
| 796 | ctx->load_mmrs = true; |
| 797 | } |
| 798 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 799 | /* |
| 800 | * Set the shadow registers whose values are modified when either the |
| 801 | * source or destination format is changed. |
| 802 | */ |
| 803 | static int set_srcdst_params(struct vpe_ctx *ctx) |
| 804 | { |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 805 | struct vpe_q_data *s_q_data = &ctx->q_data[Q_DATA_SRC]; |
| 806 | struct vpe_q_data *d_q_data = &ctx->q_data[Q_DATA_DST]; |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 807 | struct vpe_mmr_adb *mmr_adb = ctx->mmr_adb.addr; |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 808 | unsigned int src_w = s_q_data->c_rect.width; |
| 809 | unsigned int src_h = s_q_data->c_rect.height; |
| 810 | unsigned int dst_w = d_q_data->c_rect.width; |
| 811 | unsigned int dst_h = d_q_data->c_rect.height; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 812 | size_t mv_buf_size; |
| 813 | int ret; |
| 814 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 815 | ctx->sequence = 0; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 816 | ctx->field = V4L2_FIELD_TOP; |
| 817 | |
| 818 | if ((s_q_data->flags & Q_DATA_INTERLACED) && |
| 819 | !(d_q_data->flags & Q_DATA_INTERLACED)) { |
Archit Taneja | a51cd8f | 2013-12-03 08:51:13 -0300 | [diff] [blame] | 820 | int bytes_per_line; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 821 | const struct vpdma_data_format *mv = |
| 822 | &vpdma_misc_fmts[VPDMA_DATA_FMT_MV]; |
| 823 | |
Archit Taneja | a51cd8f | 2013-12-03 08:51:13 -0300 | [diff] [blame] | 824 | /* |
| 825 | * we make sure that the source image has a 16 byte aligned |
| 826 | * stride, we need to do the same for the motion vector buffer |
| 827 | * by aligning it's stride to the next 16 byte boundry. this |
| 828 | * extra space will not be used by the de-interlacer, but will |
| 829 | * ensure that vpdma operates correctly |
| 830 | */ |
| 831 | bytes_per_line = ALIGN((s_q_data->width * mv->depth) >> 3, |
| 832 | VPDMA_STRIDE_ALIGN); |
| 833 | mv_buf_size = bytes_per_line * s_q_data->height; |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 834 | |
| 835 | ctx->deinterlacing = 1; |
| 836 | src_h <<= 1; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 837 | } else { |
| 838 | ctx->deinterlacing = 0; |
| 839 | mv_buf_size = 0; |
| 840 | } |
| 841 | |
| 842 | free_vbs(ctx); |
| 843 | |
| 844 | ret = realloc_mv_buffers(ctx, mv_buf_size); |
| 845 | if (ret) |
| 846 | return ret; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 847 | |
| 848 | set_cfg_and_line_modes(ctx); |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 849 | set_dei_regs(ctx); |
Archit Taneja | 6948082 | 2013-12-12 05:36:01 -0300 | [diff] [blame] | 850 | |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 851 | csc_set_coeff(ctx->dev->csc, &mmr_adb->csc_regs[0], |
| 852 | s_q_data->colorspace, d_q_data->colorspace); |
Archit Taneja | bbee8b3 | 2013-12-12 05:36:00 -0300 | [diff] [blame] | 853 | |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 854 | sc_set_hs_coeffs(ctx->dev->sc, ctx->sc_coeff_h.addr, src_w, dst_w); |
| 855 | sc_set_vs_coeffs(ctx->dev->sc, ctx->sc_coeff_v.addr, src_h, dst_h); |
Archit Taneja | bbee8b3 | 2013-12-12 05:36:00 -0300 | [diff] [blame] | 856 | |
| 857 | sc_config_scaler(ctx->dev->sc, &mmr_adb->sc_regs0[0], |
| 858 | &mmr_adb->sc_regs8[0], &mmr_adb->sc_regs17[0], |
| 859 | src_w, src_h, dst_w, dst_h); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 860 | |
| 861 | return 0; |
| 862 | } |
| 863 | |
| 864 | /* |
| 865 | * Return the vpe_ctx structure for a given struct file |
| 866 | */ |
| 867 | static struct vpe_ctx *file2ctx(struct file *file) |
| 868 | { |
| 869 | return container_of(file->private_data, struct vpe_ctx, fh); |
| 870 | } |
| 871 | |
| 872 | /* |
| 873 | * mem2mem callbacks |
| 874 | */ |
| 875 | |
| 876 | /** |
| 877 | * job_ready() - check whether an instance is ready to be scheduled to run |
| 878 | */ |
| 879 | static int job_ready(void *priv) |
| 880 | { |
| 881 | struct vpe_ctx *ctx = priv; |
| 882 | int needed = ctx->bufs_per_job; |
| 883 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 884 | if (ctx->deinterlacing && ctx->src_vbs[2] == NULL) |
| 885 | needed += 2; /* need additional two most recent fields */ |
| 886 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 887 | if (v4l2_m2m_num_src_bufs_ready(ctx->m2m_ctx) < needed) |
| 888 | return 0; |
| 889 | |
Archit Taneja | db47616 | 2014-01-15 08:31:51 -0300 | [diff] [blame] | 890 | if (v4l2_m2m_num_dst_bufs_ready(ctx->m2m_ctx) < needed) |
| 891 | return 0; |
| 892 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 893 | return 1; |
| 894 | } |
| 895 | |
| 896 | static void job_abort(void *priv) |
| 897 | { |
| 898 | struct vpe_ctx *ctx = priv; |
| 899 | |
| 900 | /* Will cancel the transaction in the next interrupt handler */ |
| 901 | ctx->aborting = 1; |
| 902 | } |
| 903 | |
| 904 | /* |
| 905 | * Lock access to the device |
| 906 | */ |
| 907 | static void vpe_lock(void *priv) |
| 908 | { |
| 909 | struct vpe_ctx *ctx = priv; |
| 910 | struct vpe_dev *dev = ctx->dev; |
| 911 | mutex_lock(&dev->dev_mutex); |
| 912 | } |
| 913 | |
| 914 | static void vpe_unlock(void *priv) |
| 915 | { |
| 916 | struct vpe_ctx *ctx = priv; |
| 917 | struct vpe_dev *dev = ctx->dev; |
| 918 | mutex_unlock(&dev->dev_mutex); |
| 919 | } |
| 920 | |
| 921 | static void vpe_dump_regs(struct vpe_dev *dev) |
| 922 | { |
| 923 | #define DUMPREG(r) vpe_dbg(dev, "%-35s %08x\n", #r, read_reg(dev, VPE_##r)) |
| 924 | |
| 925 | vpe_dbg(dev, "VPE Registers:\n"); |
| 926 | |
| 927 | DUMPREG(PID); |
| 928 | DUMPREG(SYSCONFIG); |
| 929 | DUMPREG(INT0_STATUS0_RAW); |
| 930 | DUMPREG(INT0_STATUS0); |
| 931 | DUMPREG(INT0_ENABLE0); |
| 932 | DUMPREG(INT0_STATUS1_RAW); |
| 933 | DUMPREG(INT0_STATUS1); |
| 934 | DUMPREG(INT0_ENABLE1); |
| 935 | DUMPREG(CLK_ENABLE); |
| 936 | DUMPREG(CLK_RESET); |
| 937 | DUMPREG(CLK_FORMAT_SELECT); |
| 938 | DUMPREG(CLK_RANGE_MAP); |
| 939 | DUMPREG(US1_R0); |
| 940 | DUMPREG(US1_R1); |
| 941 | DUMPREG(US1_R2); |
| 942 | DUMPREG(US1_R3); |
| 943 | DUMPREG(US1_R4); |
| 944 | DUMPREG(US1_R5); |
| 945 | DUMPREG(US1_R6); |
| 946 | DUMPREG(US1_R7); |
| 947 | DUMPREG(US2_R0); |
| 948 | DUMPREG(US2_R1); |
| 949 | DUMPREG(US2_R2); |
| 950 | DUMPREG(US2_R3); |
| 951 | DUMPREG(US2_R4); |
| 952 | DUMPREG(US2_R5); |
| 953 | DUMPREG(US2_R6); |
| 954 | DUMPREG(US2_R7); |
| 955 | DUMPREG(US3_R0); |
| 956 | DUMPREG(US3_R1); |
| 957 | DUMPREG(US3_R2); |
| 958 | DUMPREG(US3_R3); |
| 959 | DUMPREG(US3_R4); |
| 960 | DUMPREG(US3_R5); |
| 961 | DUMPREG(US3_R6); |
| 962 | DUMPREG(US3_R7); |
| 963 | DUMPREG(DEI_FRAME_SIZE); |
| 964 | DUMPREG(MDT_BYPASS); |
| 965 | DUMPREG(MDT_SF_THRESHOLD); |
| 966 | DUMPREG(EDI_CONFIG); |
| 967 | DUMPREG(DEI_EDI_LUT_R0); |
| 968 | DUMPREG(DEI_EDI_LUT_R1); |
| 969 | DUMPREG(DEI_EDI_LUT_R2); |
| 970 | DUMPREG(DEI_EDI_LUT_R3); |
| 971 | DUMPREG(DEI_FMD_WINDOW_R0); |
| 972 | DUMPREG(DEI_FMD_WINDOW_R1); |
| 973 | DUMPREG(DEI_FMD_CONTROL_R0); |
| 974 | DUMPREG(DEI_FMD_CONTROL_R1); |
| 975 | DUMPREG(DEI_FMD_STATUS_R0); |
| 976 | DUMPREG(DEI_FMD_STATUS_R1); |
| 977 | DUMPREG(DEI_FMD_STATUS_R2); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 978 | #undef DUMPREG |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 979 | |
| 980 | sc_dump_regs(dev->sc); |
Archit Taneja | 6948082 | 2013-12-12 05:36:01 -0300 | [diff] [blame] | 981 | csc_dump_regs(dev->csc); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | static void add_out_dtd(struct vpe_ctx *ctx, int port) |
| 985 | { |
| 986 | struct vpe_q_data *q_data = &ctx->q_data[Q_DATA_DST]; |
| 987 | const struct vpe_port_data *p_data = &port_data[port]; |
| 988 | struct vb2_buffer *vb = ctx->dst_vb; |
| 989 | struct v4l2_rect *c_rect = &q_data->c_rect; |
| 990 | struct vpe_fmt *fmt = q_data->fmt; |
| 991 | const struct vpdma_data_format *vpdma_fmt; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 992 | int mv_buf_selector = !ctx->src_mv_buf_selector; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 993 | dma_addr_t dma_addr; |
| 994 | u32 flags = 0; |
| 995 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 996 | if (port == VPE_PORT_MV_OUT) { |
| 997 | vpdma_fmt = &vpdma_misc_fmts[VPDMA_DATA_FMT_MV]; |
| 998 | dma_addr = ctx->mv_buf_dma[mv_buf_selector]; |
| 999 | } else { |
| 1000 | /* to incorporate interleaved formats */ |
| 1001 | int plane = fmt->coplanar ? p_data->vb_part : 0; |
| 1002 | |
| 1003 | vpdma_fmt = fmt->vpdma_fmt[plane]; |
| 1004 | dma_addr = vb2_dma_contig_plane_dma_addr(vb, plane); |
| 1005 | if (!dma_addr) { |
| 1006 | vpe_err(ctx->dev, |
| 1007 | "acquiring output buffer(%d) dma_addr failed\n", |
| 1008 | port); |
| 1009 | return; |
| 1010 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | if (q_data->flags & Q_DATA_FRAME_1D) |
| 1014 | flags |= VPDMA_DATA_FRAME_1D; |
| 1015 | if (q_data->flags & Q_DATA_MODE_TILED) |
| 1016 | flags |= VPDMA_DATA_MODE_TILED; |
| 1017 | |
| 1018 | vpdma_add_out_dtd(&ctx->desc_list, c_rect, vpdma_fmt, dma_addr, |
| 1019 | p_data->channel, flags); |
| 1020 | } |
| 1021 | |
| 1022 | static void add_in_dtd(struct vpe_ctx *ctx, int port) |
| 1023 | { |
| 1024 | struct vpe_q_data *q_data = &ctx->q_data[Q_DATA_SRC]; |
| 1025 | const struct vpe_port_data *p_data = &port_data[port]; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1026 | struct vb2_buffer *vb = ctx->src_vbs[p_data->vb_index]; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1027 | struct v4l2_rect *c_rect = &q_data->c_rect; |
| 1028 | struct vpe_fmt *fmt = q_data->fmt; |
| 1029 | const struct vpdma_data_format *vpdma_fmt; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1030 | int mv_buf_selector = ctx->src_mv_buf_selector; |
| 1031 | int field = vb->v4l2_buf.field == V4L2_FIELD_BOTTOM; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1032 | dma_addr_t dma_addr; |
| 1033 | u32 flags = 0; |
| 1034 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1035 | if (port == VPE_PORT_MV_IN) { |
| 1036 | vpdma_fmt = &vpdma_misc_fmts[VPDMA_DATA_FMT_MV]; |
| 1037 | dma_addr = ctx->mv_buf_dma[mv_buf_selector]; |
| 1038 | } else { |
| 1039 | /* to incorporate interleaved formats */ |
| 1040 | int plane = fmt->coplanar ? p_data->vb_part : 0; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1041 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1042 | vpdma_fmt = fmt->vpdma_fmt[plane]; |
| 1043 | |
| 1044 | dma_addr = vb2_dma_contig_plane_dma_addr(vb, plane); |
| 1045 | if (!dma_addr) { |
| 1046 | vpe_err(ctx->dev, |
| 1047 | "acquiring input buffer(%d) dma_addr failed\n", |
| 1048 | port); |
| 1049 | return; |
| 1050 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1051 | } |
| 1052 | |
| 1053 | if (q_data->flags & Q_DATA_FRAME_1D) |
| 1054 | flags |= VPDMA_DATA_FRAME_1D; |
| 1055 | if (q_data->flags & Q_DATA_MODE_TILED) |
| 1056 | flags |= VPDMA_DATA_MODE_TILED; |
| 1057 | |
| 1058 | vpdma_add_in_dtd(&ctx->desc_list, q_data->width, q_data->height, |
| 1059 | c_rect, vpdma_fmt, dma_addr, p_data->channel, field, flags); |
| 1060 | } |
| 1061 | |
| 1062 | /* |
| 1063 | * Enable the expected IRQ sources |
| 1064 | */ |
| 1065 | static void enable_irqs(struct vpe_ctx *ctx) |
| 1066 | { |
| 1067 | write_reg(ctx->dev, VPE_INT0_ENABLE0_SET, VPE_INT0_LIST0_COMPLETE); |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1068 | write_reg(ctx->dev, VPE_INT0_ENABLE1_SET, VPE_DEI_ERROR_INT | |
| 1069 | VPE_DS1_UV_ERROR_INT); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1070 | |
| 1071 | vpdma_enable_list_complete_irq(ctx->dev->vpdma, 0, true); |
| 1072 | } |
| 1073 | |
| 1074 | static void disable_irqs(struct vpe_ctx *ctx) |
| 1075 | { |
| 1076 | write_reg(ctx->dev, VPE_INT0_ENABLE0_CLR, 0xffffffff); |
| 1077 | write_reg(ctx->dev, VPE_INT0_ENABLE1_CLR, 0xffffffff); |
| 1078 | |
| 1079 | vpdma_enable_list_complete_irq(ctx->dev->vpdma, 0, false); |
| 1080 | } |
| 1081 | |
| 1082 | /* device_run() - prepares and starts the device |
| 1083 | * |
| 1084 | * This function is only called when both the source and destination |
| 1085 | * buffers are in place. |
| 1086 | */ |
| 1087 | static void device_run(void *priv) |
| 1088 | { |
| 1089 | struct vpe_ctx *ctx = priv; |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 1090 | struct sc_data *sc = ctx->dev->sc; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1091 | struct vpe_q_data *d_q_data = &ctx->q_data[Q_DATA_DST]; |
| 1092 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1093 | if (ctx->deinterlacing && ctx->src_vbs[2] == NULL) { |
| 1094 | ctx->src_vbs[2] = v4l2_m2m_src_buf_remove(ctx->m2m_ctx); |
| 1095 | WARN_ON(ctx->src_vbs[2] == NULL); |
| 1096 | ctx->src_vbs[1] = v4l2_m2m_src_buf_remove(ctx->m2m_ctx); |
| 1097 | WARN_ON(ctx->src_vbs[1] == NULL); |
| 1098 | } |
| 1099 | |
| 1100 | ctx->src_vbs[0] = v4l2_m2m_src_buf_remove(ctx->m2m_ctx); |
| 1101 | WARN_ON(ctx->src_vbs[0] == NULL); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1102 | ctx->dst_vb = v4l2_m2m_dst_buf_remove(ctx->m2m_ctx); |
| 1103 | WARN_ON(ctx->dst_vb == NULL); |
| 1104 | |
| 1105 | /* config descriptors */ |
| 1106 | if (ctx->dev->loaded_mmrs != ctx->mmr_adb.dma_addr || ctx->load_mmrs) { |
| 1107 | vpdma_map_desc_buf(ctx->dev->vpdma, &ctx->mmr_adb); |
| 1108 | vpdma_add_cfd_adb(&ctx->desc_list, CFD_MMR_CLIENT, &ctx->mmr_adb); |
| 1109 | ctx->dev->loaded_mmrs = ctx->mmr_adb.dma_addr; |
| 1110 | ctx->load_mmrs = false; |
| 1111 | } |
| 1112 | |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 1113 | if (sc->loaded_coeff_h != ctx->sc_coeff_h.dma_addr || |
| 1114 | sc->load_coeff_h) { |
| 1115 | vpdma_map_desc_buf(ctx->dev->vpdma, &ctx->sc_coeff_h); |
| 1116 | vpdma_add_cfd_block(&ctx->desc_list, CFD_SC_CLIENT, |
| 1117 | &ctx->sc_coeff_h, 0); |
| 1118 | |
| 1119 | sc->loaded_coeff_h = ctx->sc_coeff_h.dma_addr; |
| 1120 | sc->load_coeff_h = false; |
| 1121 | } |
| 1122 | |
| 1123 | if (sc->loaded_coeff_v != ctx->sc_coeff_v.dma_addr || |
| 1124 | sc->load_coeff_v) { |
| 1125 | vpdma_map_desc_buf(ctx->dev->vpdma, &ctx->sc_coeff_v); |
| 1126 | vpdma_add_cfd_block(&ctx->desc_list, CFD_SC_CLIENT, |
| 1127 | &ctx->sc_coeff_v, SC_COEF_SRAM_SIZE >> 4); |
| 1128 | |
| 1129 | sc->loaded_coeff_v = ctx->sc_coeff_v.dma_addr; |
| 1130 | sc->load_coeff_v = false; |
| 1131 | } |
| 1132 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1133 | /* output data descriptors */ |
| 1134 | if (ctx->deinterlacing) |
| 1135 | add_out_dtd(ctx, VPE_PORT_MV_OUT); |
| 1136 | |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 1137 | if (d_q_data->colorspace == V4L2_COLORSPACE_SRGB) { |
| 1138 | add_out_dtd(ctx, VPE_PORT_RGB_OUT); |
| 1139 | } else { |
| 1140 | add_out_dtd(ctx, VPE_PORT_LUMA_OUT); |
| 1141 | if (d_q_data->fmt->coplanar) |
| 1142 | add_out_dtd(ctx, VPE_PORT_CHROMA_OUT); |
| 1143 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1144 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1145 | /* input data descriptors */ |
| 1146 | if (ctx->deinterlacing) { |
| 1147 | add_in_dtd(ctx, VPE_PORT_LUMA3_IN); |
| 1148 | add_in_dtd(ctx, VPE_PORT_CHROMA3_IN); |
| 1149 | |
| 1150 | add_in_dtd(ctx, VPE_PORT_LUMA2_IN); |
| 1151 | add_in_dtd(ctx, VPE_PORT_CHROMA2_IN); |
| 1152 | } |
| 1153 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1154 | add_in_dtd(ctx, VPE_PORT_LUMA1_IN); |
| 1155 | add_in_dtd(ctx, VPE_PORT_CHROMA1_IN); |
| 1156 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1157 | if (ctx->deinterlacing) |
| 1158 | add_in_dtd(ctx, VPE_PORT_MV_IN); |
| 1159 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1160 | /* sync on channel control descriptors for input ports */ |
| 1161 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, VPE_CHAN_LUMA1_IN); |
| 1162 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, VPE_CHAN_CHROMA1_IN); |
| 1163 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1164 | if (ctx->deinterlacing) { |
| 1165 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1166 | VPE_CHAN_LUMA2_IN); |
| 1167 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1168 | VPE_CHAN_CHROMA2_IN); |
| 1169 | |
| 1170 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1171 | VPE_CHAN_LUMA3_IN); |
| 1172 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1173 | VPE_CHAN_CHROMA3_IN); |
| 1174 | |
| 1175 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, VPE_CHAN_MV_IN); |
| 1176 | } |
| 1177 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1178 | /* sync on channel control descriptors for output ports */ |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 1179 | if (d_q_data->colorspace == V4L2_COLORSPACE_SRGB) { |
| 1180 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1181 | VPE_CHAN_RGB_OUT); |
| 1182 | } else { |
| 1183 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1184 | VPE_CHAN_LUMA_OUT); |
| 1185 | if (d_q_data->fmt->coplanar) |
| 1186 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, |
| 1187 | VPE_CHAN_CHROMA_OUT); |
| 1188 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1189 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1190 | if (ctx->deinterlacing) |
| 1191 | vpdma_add_sync_on_channel_ctd(&ctx->desc_list, VPE_CHAN_MV_OUT); |
| 1192 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1193 | enable_irqs(ctx); |
| 1194 | |
| 1195 | vpdma_map_desc_buf(ctx->dev->vpdma, &ctx->desc_list.buf); |
| 1196 | vpdma_submit_descs(ctx->dev->vpdma, &ctx->desc_list); |
| 1197 | } |
| 1198 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1199 | static void dei_error(struct vpe_ctx *ctx) |
| 1200 | { |
| 1201 | dev_warn(ctx->dev->v4l2_dev.dev, |
| 1202 | "received DEI error interrupt\n"); |
| 1203 | } |
| 1204 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1205 | static void ds1_uv_error(struct vpe_ctx *ctx) |
| 1206 | { |
| 1207 | dev_warn(ctx->dev->v4l2_dev.dev, |
| 1208 | "received downsampler error interrupt\n"); |
| 1209 | } |
| 1210 | |
| 1211 | static irqreturn_t vpe_irq(int irq_vpe, void *data) |
| 1212 | { |
| 1213 | struct vpe_dev *dev = (struct vpe_dev *)data; |
| 1214 | struct vpe_ctx *ctx; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1215 | struct vpe_q_data *d_q_data; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1216 | struct vb2_buffer *s_vb, *d_vb; |
| 1217 | struct v4l2_buffer *s_buf, *d_buf; |
| 1218 | unsigned long flags; |
| 1219 | u32 irqst0, irqst1; |
| 1220 | |
| 1221 | irqst0 = read_reg(dev, VPE_INT0_STATUS0); |
| 1222 | if (irqst0) { |
| 1223 | write_reg(dev, VPE_INT0_STATUS0_CLR, irqst0); |
| 1224 | vpe_dbg(dev, "INT0_STATUS0 = 0x%08x\n", irqst0); |
| 1225 | } |
| 1226 | |
| 1227 | irqst1 = read_reg(dev, VPE_INT0_STATUS1); |
| 1228 | if (irqst1) { |
| 1229 | write_reg(dev, VPE_INT0_STATUS1_CLR, irqst1); |
| 1230 | vpe_dbg(dev, "INT0_STATUS1 = 0x%08x\n", irqst1); |
| 1231 | } |
| 1232 | |
| 1233 | ctx = v4l2_m2m_get_curr_priv(dev->m2m_dev); |
| 1234 | if (!ctx) { |
| 1235 | vpe_err(dev, "instance released before end of transaction\n"); |
| 1236 | goto handled; |
| 1237 | } |
| 1238 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1239 | if (irqst1) { |
| 1240 | if (irqst1 & VPE_DEI_ERROR_INT) { |
| 1241 | irqst1 &= ~VPE_DEI_ERROR_INT; |
| 1242 | dei_error(ctx); |
| 1243 | } |
| 1244 | if (irqst1 & VPE_DS1_UV_ERROR_INT) { |
| 1245 | irqst1 &= ~VPE_DS1_UV_ERROR_INT; |
| 1246 | ds1_uv_error(ctx); |
| 1247 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | if (irqst0) { |
| 1251 | if (irqst0 & VPE_INT0_LIST0_COMPLETE) |
| 1252 | vpdma_clear_list_stat(ctx->dev->vpdma); |
| 1253 | |
| 1254 | irqst0 &= ~(VPE_INT0_LIST0_COMPLETE); |
| 1255 | } |
| 1256 | |
| 1257 | if (irqst0 | irqst1) { |
| 1258 | dev_warn(dev->v4l2_dev.dev, "Unexpected interrupt: " |
| 1259 | "INT0_STATUS0 = 0x%08x, INT0_STATUS1 = 0x%08x\n", |
| 1260 | irqst0, irqst1); |
| 1261 | } |
| 1262 | |
| 1263 | disable_irqs(ctx); |
| 1264 | |
| 1265 | vpdma_unmap_desc_buf(dev->vpdma, &ctx->desc_list.buf); |
| 1266 | vpdma_unmap_desc_buf(dev->vpdma, &ctx->mmr_adb); |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 1267 | vpdma_unmap_desc_buf(dev->vpdma, &ctx->sc_coeff_h); |
| 1268 | vpdma_unmap_desc_buf(dev->vpdma, &ctx->sc_coeff_v); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1269 | |
| 1270 | vpdma_reset_desc_list(&ctx->desc_list); |
| 1271 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1272 | /* the previous dst mv buffer becomes the next src mv buffer */ |
| 1273 | ctx->src_mv_buf_selector = !ctx->src_mv_buf_selector; |
| 1274 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1275 | if (ctx->aborting) |
| 1276 | goto finished; |
| 1277 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1278 | s_vb = ctx->src_vbs[0]; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1279 | d_vb = ctx->dst_vb; |
| 1280 | s_buf = &s_vb->v4l2_buf; |
| 1281 | d_buf = &d_vb->v4l2_buf; |
| 1282 | |
Archit Taneja | bbe24c6 | 2014-03-11 04:47:52 -0300 | [diff] [blame] | 1283 | d_buf->flags = s_buf->flags; |
| 1284 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1285 | d_buf->timestamp = s_buf->timestamp; |
Archit Taneja | bbe24c6 | 2014-03-11 04:47:52 -0300 | [diff] [blame] | 1286 | if (s_buf->flags & V4L2_BUF_FLAG_TIMECODE) |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1287 | d_buf->timecode = s_buf->timecode; |
Archit Taneja | bbe24c6 | 2014-03-11 04:47:52 -0300 | [diff] [blame] | 1288 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1289 | d_buf->sequence = ctx->sequence; |
| 1290 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1291 | d_q_data = &ctx->q_data[Q_DATA_DST]; |
| 1292 | if (d_q_data->flags & Q_DATA_INTERLACED) { |
Archit Taneja | 5269fef | 2014-03-10 03:24:01 -0300 | [diff] [blame] | 1293 | d_buf->field = ctx->field; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1294 | if (ctx->field == V4L2_FIELD_BOTTOM) { |
| 1295 | ctx->sequence++; |
| 1296 | ctx->field = V4L2_FIELD_TOP; |
| 1297 | } else { |
| 1298 | WARN_ON(ctx->field != V4L2_FIELD_TOP); |
| 1299 | ctx->field = V4L2_FIELD_BOTTOM; |
| 1300 | } |
| 1301 | } else { |
Archit Taneja | 5269fef | 2014-03-10 03:24:01 -0300 | [diff] [blame] | 1302 | d_buf->field = V4L2_FIELD_NONE; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1303 | ctx->sequence++; |
| 1304 | } |
| 1305 | |
| 1306 | if (ctx->deinterlacing) |
| 1307 | s_vb = ctx->src_vbs[2]; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1308 | |
| 1309 | spin_lock_irqsave(&dev->lock, flags); |
| 1310 | v4l2_m2m_buf_done(s_vb, VB2_BUF_STATE_DONE); |
| 1311 | v4l2_m2m_buf_done(d_vb, VB2_BUF_STATE_DONE); |
| 1312 | spin_unlock_irqrestore(&dev->lock, flags); |
| 1313 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1314 | if (ctx->deinterlacing) { |
| 1315 | ctx->src_vbs[2] = ctx->src_vbs[1]; |
| 1316 | ctx->src_vbs[1] = ctx->src_vbs[0]; |
| 1317 | } |
| 1318 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1319 | ctx->bufs_completed++; |
| 1320 | if (ctx->bufs_completed < ctx->bufs_per_job) { |
| 1321 | device_run(ctx); |
| 1322 | goto handled; |
| 1323 | } |
| 1324 | |
| 1325 | finished: |
| 1326 | vpe_dbg(ctx->dev, "finishing transaction\n"); |
| 1327 | ctx->bufs_completed = 0; |
| 1328 | v4l2_m2m_job_finish(dev->m2m_dev, ctx->m2m_ctx); |
| 1329 | handled: |
| 1330 | return IRQ_HANDLED; |
| 1331 | } |
| 1332 | |
| 1333 | /* |
| 1334 | * video ioctls |
| 1335 | */ |
| 1336 | static int vpe_querycap(struct file *file, void *priv, |
| 1337 | struct v4l2_capability *cap) |
| 1338 | { |
| 1339 | strncpy(cap->driver, VPE_MODULE_NAME, sizeof(cap->driver) - 1); |
| 1340 | strncpy(cap->card, VPE_MODULE_NAME, sizeof(cap->card) - 1); |
Archit Taneja | b20902b | 2014-03-06 07:07:47 -0300 | [diff] [blame] | 1341 | snprintf(cap->bus_info, sizeof(cap->bus_info), "platform:%s", |
| 1342 | VPE_MODULE_NAME); |
Archit Taneja | fca27a9 | 2014-03-05 09:52:38 -0300 | [diff] [blame] | 1343 | cap->device_caps = V4L2_CAP_VIDEO_M2M_MPLANE | V4L2_CAP_STREAMING; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1344 | cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS; |
| 1345 | return 0; |
| 1346 | } |
| 1347 | |
| 1348 | static int __enum_fmt(struct v4l2_fmtdesc *f, u32 type) |
| 1349 | { |
| 1350 | int i, index; |
| 1351 | struct vpe_fmt *fmt = NULL; |
| 1352 | |
| 1353 | index = 0; |
| 1354 | for (i = 0; i < ARRAY_SIZE(vpe_formats); ++i) { |
| 1355 | if (vpe_formats[i].types & type) { |
| 1356 | if (index == f->index) { |
| 1357 | fmt = &vpe_formats[i]; |
| 1358 | break; |
| 1359 | } |
| 1360 | index++; |
| 1361 | } |
| 1362 | } |
| 1363 | |
| 1364 | if (!fmt) |
| 1365 | return -EINVAL; |
| 1366 | |
| 1367 | strncpy(f->description, fmt->name, sizeof(f->description) - 1); |
| 1368 | f->pixelformat = fmt->fourcc; |
| 1369 | return 0; |
| 1370 | } |
| 1371 | |
| 1372 | static int vpe_enum_fmt(struct file *file, void *priv, |
| 1373 | struct v4l2_fmtdesc *f) |
| 1374 | { |
| 1375 | if (V4L2_TYPE_IS_OUTPUT(f->type)) |
| 1376 | return __enum_fmt(f, VPE_FMT_TYPE_OUTPUT); |
| 1377 | |
| 1378 | return __enum_fmt(f, VPE_FMT_TYPE_CAPTURE); |
| 1379 | } |
| 1380 | |
| 1381 | static int vpe_g_fmt(struct file *file, void *priv, struct v4l2_format *f) |
| 1382 | { |
| 1383 | struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp; |
| 1384 | struct vpe_ctx *ctx = file2ctx(file); |
| 1385 | struct vb2_queue *vq; |
| 1386 | struct vpe_q_data *q_data; |
| 1387 | int i; |
| 1388 | |
| 1389 | vq = v4l2_m2m_get_vq(ctx->m2m_ctx, f->type); |
| 1390 | if (!vq) |
| 1391 | return -EINVAL; |
| 1392 | |
| 1393 | q_data = get_q_data(ctx, f->type); |
| 1394 | |
| 1395 | pix->width = q_data->width; |
| 1396 | pix->height = q_data->height; |
| 1397 | pix->pixelformat = q_data->fmt->fourcc; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1398 | pix->field = q_data->field; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1399 | |
| 1400 | if (V4L2_TYPE_IS_OUTPUT(f->type)) { |
| 1401 | pix->colorspace = q_data->colorspace; |
| 1402 | } else { |
| 1403 | struct vpe_q_data *s_q_data; |
| 1404 | |
| 1405 | /* get colorspace from the source queue */ |
| 1406 | s_q_data = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE); |
| 1407 | |
| 1408 | pix->colorspace = s_q_data->colorspace; |
| 1409 | } |
| 1410 | |
| 1411 | pix->num_planes = q_data->fmt->coplanar ? 2 : 1; |
| 1412 | |
| 1413 | for (i = 0; i < pix->num_planes; i++) { |
| 1414 | pix->plane_fmt[i].bytesperline = q_data->bytesperline[i]; |
| 1415 | pix->plane_fmt[i].sizeimage = q_data->sizeimage[i]; |
| 1416 | } |
| 1417 | |
| 1418 | return 0; |
| 1419 | } |
| 1420 | |
| 1421 | static int __vpe_try_fmt(struct vpe_ctx *ctx, struct v4l2_format *f, |
| 1422 | struct vpe_fmt *fmt, int type) |
| 1423 | { |
| 1424 | struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp; |
| 1425 | struct v4l2_plane_pix_format *plane_fmt; |
Archit Taneja | a51cd8f | 2013-12-03 08:51:13 -0300 | [diff] [blame] | 1426 | unsigned int w_align; |
| 1427 | int i, depth, depth_bytes; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1428 | |
| 1429 | if (!fmt || !(fmt->types & type)) { |
| 1430 | vpe_err(ctx->dev, "Fourcc format (0x%08x) invalid.\n", |
| 1431 | pix->pixelformat); |
| 1432 | return -EINVAL; |
| 1433 | } |
| 1434 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1435 | if (pix->field != V4L2_FIELD_NONE && pix->field != V4L2_FIELD_ALTERNATE) |
| 1436 | pix->field = V4L2_FIELD_NONE; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1437 | |
Archit Taneja | a51cd8f | 2013-12-03 08:51:13 -0300 | [diff] [blame] | 1438 | depth = fmt->vpdma_fmt[VPE_LUMA]->depth; |
| 1439 | |
| 1440 | /* |
| 1441 | * the line stride should 16 byte aligned for VPDMA to work, based on |
| 1442 | * the bytes per pixel, figure out how much the width should be aligned |
| 1443 | * to make sure line stride is 16 byte aligned |
| 1444 | */ |
| 1445 | depth_bytes = depth >> 3; |
| 1446 | |
| 1447 | if (depth_bytes == 3) |
| 1448 | /* |
| 1449 | * if bpp is 3(as in some RGB formats), the pixel width doesn't |
| 1450 | * really help in ensuring line stride is 16 byte aligned |
| 1451 | */ |
| 1452 | w_align = 4; |
| 1453 | else |
| 1454 | /* |
| 1455 | * for the remainder bpp(4, 2 and 1), the pixel width alignment |
| 1456 | * can ensure a line stride alignment of 16 bytes. For example, |
| 1457 | * if bpp is 2, then the line stride can be 16 byte aligned if |
| 1458 | * the width is 8 byte aligned |
| 1459 | */ |
| 1460 | w_align = order_base_2(VPDMA_DESC_ALIGN / depth_bytes); |
| 1461 | |
| 1462 | v4l_bound_align_image(&pix->width, MIN_W, MAX_W, w_align, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1463 | &pix->height, MIN_H, MAX_H, H_ALIGN, |
| 1464 | S_ALIGN); |
| 1465 | |
| 1466 | pix->num_planes = fmt->coplanar ? 2 : 1; |
| 1467 | pix->pixelformat = fmt->fourcc; |
| 1468 | |
Archit Taneja | 3049679 | 2013-12-12 05:36:03 -0300 | [diff] [blame] | 1469 | if (!pix->colorspace) { |
| 1470 | if (fmt->fourcc == V4L2_PIX_FMT_RGB24 || |
| 1471 | fmt->fourcc == V4L2_PIX_FMT_BGR24 || |
| 1472 | fmt->fourcc == V4L2_PIX_FMT_RGB32 || |
| 1473 | fmt->fourcc == V4L2_PIX_FMT_BGR32) { |
| 1474 | pix->colorspace = V4L2_COLORSPACE_SRGB; |
| 1475 | } else { |
| 1476 | if (pix->height > 1280) /* HD */ |
| 1477 | pix->colorspace = V4L2_COLORSPACE_REC709; |
| 1478 | else /* SD */ |
| 1479 | pix->colorspace = V4L2_COLORSPACE_SMPTE170M; |
| 1480 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1481 | } |
| 1482 | |
Archit Taneja | 92851f1 | 2014-03-10 04:19:02 -0300 | [diff] [blame] | 1483 | memset(pix->reserved, 0, sizeof(pix->reserved)); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1484 | for (i = 0; i < pix->num_planes; i++) { |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1485 | plane_fmt = &pix->plane_fmt[i]; |
| 1486 | depth = fmt->vpdma_fmt[i]->depth; |
| 1487 | |
| 1488 | if (i == VPE_LUMA) |
Archit Taneja | a51cd8f | 2013-12-03 08:51:13 -0300 | [diff] [blame] | 1489 | plane_fmt->bytesperline = (pix->width * depth) >> 3; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1490 | else |
| 1491 | plane_fmt->bytesperline = pix->width; |
| 1492 | |
| 1493 | plane_fmt->sizeimage = |
| 1494 | (pix->height * pix->width * depth) >> 3; |
Archit Taneja | 92851f1 | 2014-03-10 04:19:02 -0300 | [diff] [blame] | 1495 | |
| 1496 | memset(plane_fmt->reserved, 0, sizeof(plane_fmt->reserved)); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | return 0; |
| 1500 | } |
| 1501 | |
| 1502 | static int vpe_try_fmt(struct file *file, void *priv, struct v4l2_format *f) |
| 1503 | { |
| 1504 | struct vpe_ctx *ctx = file2ctx(file); |
| 1505 | struct vpe_fmt *fmt = find_format(f); |
| 1506 | |
| 1507 | if (V4L2_TYPE_IS_OUTPUT(f->type)) |
| 1508 | return __vpe_try_fmt(ctx, f, fmt, VPE_FMT_TYPE_OUTPUT); |
| 1509 | else |
| 1510 | return __vpe_try_fmt(ctx, f, fmt, VPE_FMT_TYPE_CAPTURE); |
| 1511 | } |
| 1512 | |
| 1513 | static int __vpe_s_fmt(struct vpe_ctx *ctx, struct v4l2_format *f) |
| 1514 | { |
| 1515 | struct v4l2_pix_format_mplane *pix = &f->fmt.pix_mp; |
| 1516 | struct v4l2_plane_pix_format *plane_fmt; |
| 1517 | struct vpe_q_data *q_data; |
| 1518 | struct vb2_queue *vq; |
| 1519 | int i; |
| 1520 | |
| 1521 | vq = v4l2_m2m_get_vq(ctx->m2m_ctx, f->type); |
| 1522 | if (!vq) |
| 1523 | return -EINVAL; |
| 1524 | |
| 1525 | if (vb2_is_busy(vq)) { |
| 1526 | vpe_err(ctx->dev, "queue busy\n"); |
| 1527 | return -EBUSY; |
| 1528 | } |
| 1529 | |
| 1530 | q_data = get_q_data(ctx, f->type); |
| 1531 | if (!q_data) |
| 1532 | return -EINVAL; |
| 1533 | |
| 1534 | q_data->fmt = find_format(f); |
| 1535 | q_data->width = pix->width; |
| 1536 | q_data->height = pix->height; |
| 1537 | q_data->colorspace = pix->colorspace; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1538 | q_data->field = pix->field; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1539 | |
| 1540 | for (i = 0; i < pix->num_planes; i++) { |
| 1541 | plane_fmt = &pix->plane_fmt[i]; |
| 1542 | |
| 1543 | q_data->bytesperline[i] = plane_fmt->bytesperline; |
| 1544 | q_data->sizeimage[i] = plane_fmt->sizeimage; |
| 1545 | } |
| 1546 | |
| 1547 | q_data->c_rect.left = 0; |
| 1548 | q_data->c_rect.top = 0; |
| 1549 | q_data->c_rect.width = q_data->width; |
| 1550 | q_data->c_rect.height = q_data->height; |
| 1551 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1552 | if (q_data->field == V4L2_FIELD_ALTERNATE) |
| 1553 | q_data->flags |= Q_DATA_INTERLACED; |
| 1554 | else |
| 1555 | q_data->flags &= ~Q_DATA_INTERLACED; |
| 1556 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1557 | vpe_dbg(ctx->dev, "Setting format for type %d, wxh: %dx%d, fmt: %d bpl_y %d", |
| 1558 | f->type, q_data->width, q_data->height, q_data->fmt->fourcc, |
| 1559 | q_data->bytesperline[VPE_LUMA]); |
| 1560 | if (q_data->fmt->coplanar) |
| 1561 | vpe_dbg(ctx->dev, " bpl_uv %d\n", |
| 1562 | q_data->bytesperline[VPE_CHROMA]); |
| 1563 | |
| 1564 | return 0; |
| 1565 | } |
| 1566 | |
| 1567 | static int vpe_s_fmt(struct file *file, void *priv, struct v4l2_format *f) |
| 1568 | { |
| 1569 | int ret; |
| 1570 | struct vpe_ctx *ctx = file2ctx(file); |
| 1571 | |
| 1572 | ret = vpe_try_fmt(file, priv, f); |
| 1573 | if (ret) |
| 1574 | return ret; |
| 1575 | |
| 1576 | ret = __vpe_s_fmt(ctx, f); |
| 1577 | if (ret) |
| 1578 | return ret; |
| 1579 | |
| 1580 | if (V4L2_TYPE_IS_OUTPUT(f->type)) |
| 1581 | set_src_registers(ctx); |
| 1582 | else |
| 1583 | set_dst_registers(ctx); |
| 1584 | |
| 1585 | return set_srcdst_params(ctx); |
| 1586 | } |
| 1587 | |
| 1588 | static int vpe_reqbufs(struct file *file, void *priv, |
| 1589 | struct v4l2_requestbuffers *reqbufs) |
| 1590 | { |
| 1591 | struct vpe_ctx *ctx = file2ctx(file); |
| 1592 | |
| 1593 | return v4l2_m2m_reqbufs(file, ctx->m2m_ctx, reqbufs); |
| 1594 | } |
| 1595 | |
| 1596 | static int vpe_querybuf(struct file *file, void *priv, struct v4l2_buffer *buf) |
| 1597 | { |
| 1598 | struct vpe_ctx *ctx = file2ctx(file); |
| 1599 | |
| 1600 | return v4l2_m2m_querybuf(file, ctx->m2m_ctx, buf); |
| 1601 | } |
| 1602 | |
| 1603 | static int vpe_qbuf(struct file *file, void *priv, struct v4l2_buffer *buf) |
| 1604 | { |
| 1605 | struct vpe_ctx *ctx = file2ctx(file); |
| 1606 | |
| 1607 | return v4l2_m2m_qbuf(file, ctx->m2m_ctx, buf); |
| 1608 | } |
| 1609 | |
| 1610 | static int vpe_dqbuf(struct file *file, void *priv, struct v4l2_buffer *buf) |
| 1611 | { |
| 1612 | struct vpe_ctx *ctx = file2ctx(file); |
| 1613 | |
| 1614 | return v4l2_m2m_dqbuf(file, ctx->m2m_ctx, buf); |
| 1615 | } |
| 1616 | |
| 1617 | static int vpe_streamon(struct file *file, void *priv, enum v4l2_buf_type type) |
| 1618 | { |
| 1619 | struct vpe_ctx *ctx = file2ctx(file); |
| 1620 | |
| 1621 | return v4l2_m2m_streamon(file, ctx->m2m_ctx, type); |
| 1622 | } |
| 1623 | |
| 1624 | static int vpe_streamoff(struct file *file, void *priv, enum v4l2_buf_type type) |
| 1625 | { |
| 1626 | struct vpe_ctx *ctx = file2ctx(file); |
| 1627 | |
| 1628 | vpe_dump_regs(ctx->dev); |
| 1629 | vpdma_dump_regs(ctx->dev->vpdma); |
| 1630 | |
| 1631 | return v4l2_m2m_streamoff(file, ctx->m2m_ctx, type); |
| 1632 | } |
| 1633 | |
| 1634 | /* |
| 1635 | * defines number of buffers/frames a context can process with VPE before |
| 1636 | * switching to a different context. default value is 1 buffer per context |
| 1637 | */ |
| 1638 | #define V4L2_CID_VPE_BUFS_PER_JOB (V4L2_CID_USER_TI_VPE_BASE + 0) |
| 1639 | |
| 1640 | static int vpe_s_ctrl(struct v4l2_ctrl *ctrl) |
| 1641 | { |
| 1642 | struct vpe_ctx *ctx = |
| 1643 | container_of(ctrl->handler, struct vpe_ctx, hdl); |
| 1644 | |
| 1645 | switch (ctrl->id) { |
| 1646 | case V4L2_CID_VPE_BUFS_PER_JOB: |
| 1647 | ctx->bufs_per_job = ctrl->val; |
| 1648 | break; |
| 1649 | |
| 1650 | default: |
| 1651 | vpe_err(ctx->dev, "Invalid control\n"); |
| 1652 | return -EINVAL; |
| 1653 | } |
| 1654 | |
| 1655 | return 0; |
| 1656 | } |
| 1657 | |
| 1658 | static const struct v4l2_ctrl_ops vpe_ctrl_ops = { |
| 1659 | .s_ctrl = vpe_s_ctrl, |
| 1660 | }; |
| 1661 | |
| 1662 | static const struct v4l2_ioctl_ops vpe_ioctl_ops = { |
| 1663 | .vidioc_querycap = vpe_querycap, |
| 1664 | |
| 1665 | .vidioc_enum_fmt_vid_cap_mplane = vpe_enum_fmt, |
| 1666 | .vidioc_g_fmt_vid_cap_mplane = vpe_g_fmt, |
| 1667 | .vidioc_try_fmt_vid_cap_mplane = vpe_try_fmt, |
| 1668 | .vidioc_s_fmt_vid_cap_mplane = vpe_s_fmt, |
| 1669 | |
| 1670 | .vidioc_enum_fmt_vid_out_mplane = vpe_enum_fmt, |
| 1671 | .vidioc_g_fmt_vid_out_mplane = vpe_g_fmt, |
| 1672 | .vidioc_try_fmt_vid_out_mplane = vpe_try_fmt, |
| 1673 | .vidioc_s_fmt_vid_out_mplane = vpe_s_fmt, |
| 1674 | |
| 1675 | .vidioc_reqbufs = vpe_reqbufs, |
| 1676 | .vidioc_querybuf = vpe_querybuf, |
| 1677 | |
| 1678 | .vidioc_qbuf = vpe_qbuf, |
| 1679 | .vidioc_dqbuf = vpe_dqbuf, |
| 1680 | |
| 1681 | .vidioc_streamon = vpe_streamon, |
| 1682 | .vidioc_streamoff = vpe_streamoff, |
| 1683 | .vidioc_subscribe_event = v4l2_ctrl_subscribe_event, |
| 1684 | .vidioc_unsubscribe_event = v4l2_event_unsubscribe, |
| 1685 | }; |
| 1686 | |
| 1687 | /* |
| 1688 | * Queue operations |
| 1689 | */ |
| 1690 | static int vpe_queue_setup(struct vb2_queue *vq, |
| 1691 | const struct v4l2_format *fmt, |
| 1692 | unsigned int *nbuffers, unsigned int *nplanes, |
| 1693 | unsigned int sizes[], void *alloc_ctxs[]) |
| 1694 | { |
| 1695 | int i; |
| 1696 | struct vpe_ctx *ctx = vb2_get_drv_priv(vq); |
| 1697 | struct vpe_q_data *q_data; |
| 1698 | |
| 1699 | q_data = get_q_data(ctx, vq->type); |
| 1700 | |
| 1701 | *nplanes = q_data->fmt->coplanar ? 2 : 1; |
| 1702 | |
| 1703 | for (i = 0; i < *nplanes; i++) { |
| 1704 | sizes[i] = q_data->sizeimage[i]; |
| 1705 | alloc_ctxs[i] = ctx->dev->alloc_ctx; |
| 1706 | } |
| 1707 | |
| 1708 | vpe_dbg(ctx->dev, "get %d buffer(s) of size %d", *nbuffers, |
| 1709 | sizes[VPE_LUMA]); |
| 1710 | if (q_data->fmt->coplanar) |
| 1711 | vpe_dbg(ctx->dev, " and %d\n", sizes[VPE_CHROMA]); |
| 1712 | |
| 1713 | return 0; |
| 1714 | } |
| 1715 | |
| 1716 | static int vpe_buf_prepare(struct vb2_buffer *vb) |
| 1717 | { |
| 1718 | struct vpe_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); |
| 1719 | struct vpe_q_data *q_data; |
| 1720 | int i, num_planes; |
| 1721 | |
| 1722 | vpe_dbg(ctx->dev, "type: %d\n", vb->vb2_queue->type); |
| 1723 | |
| 1724 | q_data = get_q_data(ctx, vb->vb2_queue->type); |
| 1725 | num_planes = q_data->fmt->coplanar ? 2 : 1; |
| 1726 | |
Archit Taneja | 5269fef | 2014-03-10 03:24:01 -0300 | [diff] [blame] | 1727 | if (vb->vb2_queue->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE) { |
| 1728 | if (!(q_data->flags & Q_DATA_INTERLACED)) { |
| 1729 | vb->v4l2_buf.field = V4L2_FIELD_NONE; |
| 1730 | } else { |
| 1731 | if (vb->v4l2_buf.field != V4L2_FIELD_TOP && |
| 1732 | vb->v4l2_buf.field != V4L2_FIELD_BOTTOM) |
| 1733 | return -EINVAL; |
| 1734 | } |
| 1735 | } |
| 1736 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1737 | for (i = 0; i < num_planes; i++) { |
| 1738 | if (vb2_plane_size(vb, i) < q_data->sizeimage[i]) { |
| 1739 | vpe_err(ctx->dev, |
| 1740 | "data will not fit into plane (%lu < %lu)\n", |
| 1741 | vb2_plane_size(vb, i), |
| 1742 | (long) q_data->sizeimage[i]); |
| 1743 | return -EINVAL; |
| 1744 | } |
| 1745 | } |
| 1746 | |
| 1747 | for (i = 0; i < num_planes; i++) |
| 1748 | vb2_set_plane_payload(vb, i, q_data->sizeimage[i]); |
| 1749 | |
| 1750 | return 0; |
| 1751 | } |
| 1752 | |
| 1753 | static void vpe_buf_queue(struct vb2_buffer *vb) |
| 1754 | { |
| 1755 | struct vpe_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); |
| 1756 | v4l2_m2m_buf_queue(ctx->m2m_ctx, vb); |
| 1757 | } |
| 1758 | |
| 1759 | static void vpe_wait_prepare(struct vb2_queue *q) |
| 1760 | { |
| 1761 | struct vpe_ctx *ctx = vb2_get_drv_priv(q); |
| 1762 | vpe_unlock(ctx); |
| 1763 | } |
| 1764 | |
| 1765 | static void vpe_wait_finish(struct vb2_queue *q) |
| 1766 | { |
| 1767 | struct vpe_ctx *ctx = vb2_get_drv_priv(q); |
| 1768 | vpe_lock(ctx); |
| 1769 | } |
| 1770 | |
| 1771 | static struct vb2_ops vpe_qops = { |
| 1772 | .queue_setup = vpe_queue_setup, |
| 1773 | .buf_prepare = vpe_buf_prepare, |
| 1774 | .buf_queue = vpe_buf_queue, |
| 1775 | .wait_prepare = vpe_wait_prepare, |
| 1776 | .wait_finish = vpe_wait_finish, |
| 1777 | }; |
| 1778 | |
| 1779 | static int queue_init(void *priv, struct vb2_queue *src_vq, |
| 1780 | struct vb2_queue *dst_vq) |
| 1781 | { |
| 1782 | struct vpe_ctx *ctx = priv; |
| 1783 | int ret; |
| 1784 | |
| 1785 | memset(src_vq, 0, sizeof(*src_vq)); |
| 1786 | src_vq->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE; |
Archit Taneja | 668f91d | 2014-03-13 08:44:06 -0300 | [diff] [blame^] | 1787 | src_vq->io_modes = VB2_MMAP | VB2_DMABUF; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1788 | src_vq->drv_priv = ctx; |
| 1789 | src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer); |
| 1790 | src_vq->ops = &vpe_qops; |
| 1791 | src_vq->mem_ops = &vb2_dma_contig_memops; |
Sakari Ailus | ade4868 | 2014-02-25 19:12:19 -0300 | [diff] [blame] | 1792 | src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1793 | |
| 1794 | ret = vb2_queue_init(src_vq); |
| 1795 | if (ret) |
| 1796 | return ret; |
| 1797 | |
| 1798 | memset(dst_vq, 0, sizeof(*dst_vq)); |
| 1799 | dst_vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; |
Archit Taneja | 668f91d | 2014-03-13 08:44:06 -0300 | [diff] [blame^] | 1800 | dst_vq->io_modes = VB2_MMAP | VB2_DMABUF; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1801 | dst_vq->drv_priv = ctx; |
| 1802 | dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer); |
| 1803 | dst_vq->ops = &vpe_qops; |
| 1804 | dst_vq->mem_ops = &vb2_dma_contig_memops; |
Sakari Ailus | ade4868 | 2014-02-25 19:12:19 -0300 | [diff] [blame] | 1805 | dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1806 | |
| 1807 | return vb2_queue_init(dst_vq); |
| 1808 | } |
| 1809 | |
| 1810 | static const struct v4l2_ctrl_config vpe_bufs_per_job = { |
| 1811 | .ops = &vpe_ctrl_ops, |
| 1812 | .id = V4L2_CID_VPE_BUFS_PER_JOB, |
| 1813 | .name = "Buffers Per Transaction", |
| 1814 | .type = V4L2_CTRL_TYPE_INTEGER, |
| 1815 | .def = VPE_DEF_BUFS_PER_JOB, |
| 1816 | .min = 1, |
| 1817 | .max = VIDEO_MAX_FRAME, |
| 1818 | .step = 1, |
| 1819 | }; |
| 1820 | |
| 1821 | /* |
| 1822 | * File operations |
| 1823 | */ |
| 1824 | static int vpe_open(struct file *file) |
| 1825 | { |
| 1826 | struct vpe_dev *dev = video_drvdata(file); |
| 1827 | struct vpe_ctx *ctx = NULL; |
| 1828 | struct vpe_q_data *s_q_data; |
| 1829 | struct v4l2_ctrl_handler *hdl; |
| 1830 | int ret; |
| 1831 | |
| 1832 | vpe_dbg(dev, "vpe_open\n"); |
| 1833 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1834 | ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); |
| 1835 | if (!ctx) |
| 1836 | return -ENOMEM; |
| 1837 | |
| 1838 | ctx->dev = dev; |
| 1839 | |
| 1840 | if (mutex_lock_interruptible(&dev->dev_mutex)) { |
| 1841 | ret = -ERESTARTSYS; |
| 1842 | goto free_ctx; |
| 1843 | } |
| 1844 | |
| 1845 | ret = vpdma_create_desc_list(&ctx->desc_list, VPE_DESC_LIST_SIZE, |
| 1846 | VPDMA_LIST_TYPE_NORMAL); |
| 1847 | if (ret != 0) |
| 1848 | goto unlock; |
| 1849 | |
| 1850 | ret = vpdma_alloc_desc_buf(&ctx->mmr_adb, sizeof(struct vpe_mmr_adb)); |
| 1851 | if (ret != 0) |
| 1852 | goto free_desc_list; |
| 1853 | |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 1854 | ret = vpdma_alloc_desc_buf(&ctx->sc_coeff_h, SC_COEF_SRAM_SIZE); |
| 1855 | if (ret != 0) |
| 1856 | goto free_mmr_adb; |
| 1857 | |
| 1858 | ret = vpdma_alloc_desc_buf(&ctx->sc_coeff_v, SC_COEF_SRAM_SIZE); |
| 1859 | if (ret != 0) |
| 1860 | goto free_sc_h; |
| 1861 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1862 | init_adb_hdrs(ctx); |
| 1863 | |
| 1864 | v4l2_fh_init(&ctx->fh, video_devdata(file)); |
| 1865 | file->private_data = &ctx->fh; |
| 1866 | |
| 1867 | hdl = &ctx->hdl; |
| 1868 | v4l2_ctrl_handler_init(hdl, 1); |
| 1869 | v4l2_ctrl_new_custom(hdl, &vpe_bufs_per_job, NULL); |
| 1870 | if (hdl->error) { |
| 1871 | ret = hdl->error; |
| 1872 | goto exit_fh; |
| 1873 | } |
| 1874 | ctx->fh.ctrl_handler = hdl; |
| 1875 | v4l2_ctrl_handler_setup(hdl); |
| 1876 | |
| 1877 | s_q_data = &ctx->q_data[Q_DATA_SRC]; |
| 1878 | s_q_data->fmt = &vpe_formats[2]; |
| 1879 | s_q_data->width = 1920; |
| 1880 | s_q_data->height = 1080; |
Archit Taneja | 67fb87e | 2014-03-10 03:57:40 -0300 | [diff] [blame] | 1881 | s_q_data->bytesperline[VPE_LUMA] = (s_q_data->width * |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1882 | s_q_data->fmt->vpdma_fmt[VPE_LUMA]->depth) >> 3; |
Archit Taneja | 67fb87e | 2014-03-10 03:57:40 -0300 | [diff] [blame] | 1883 | s_q_data->sizeimage[VPE_LUMA] = (s_q_data->bytesperline[VPE_LUMA] * |
| 1884 | s_q_data->height); |
| 1885 | s_q_data->colorspace = V4L2_COLORSPACE_REC709; |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1886 | s_q_data->field = V4L2_FIELD_NONE; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1887 | s_q_data->c_rect.left = 0; |
| 1888 | s_q_data->c_rect.top = 0; |
| 1889 | s_q_data->c_rect.width = s_q_data->width; |
| 1890 | s_q_data->c_rect.height = s_q_data->height; |
| 1891 | s_q_data->flags = 0; |
| 1892 | |
| 1893 | ctx->q_data[Q_DATA_DST] = *s_q_data; |
| 1894 | |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1895 | set_dei_shadow_registers(ctx); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1896 | set_src_registers(ctx); |
| 1897 | set_dst_registers(ctx); |
| 1898 | ret = set_srcdst_params(ctx); |
| 1899 | if (ret) |
| 1900 | goto exit_fh; |
| 1901 | |
| 1902 | ctx->m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx, &queue_init); |
| 1903 | |
| 1904 | if (IS_ERR(ctx->m2m_ctx)) { |
| 1905 | ret = PTR_ERR(ctx->m2m_ctx); |
| 1906 | goto exit_fh; |
| 1907 | } |
| 1908 | |
| 1909 | v4l2_fh_add(&ctx->fh); |
| 1910 | |
| 1911 | /* |
| 1912 | * for now, just report the creation of the first instance, we can later |
| 1913 | * optimize the driver to enable or disable clocks when the first |
| 1914 | * instance is created or the last instance released |
| 1915 | */ |
| 1916 | if (atomic_inc_return(&dev->num_instances) == 1) |
| 1917 | vpe_dbg(dev, "first instance created\n"); |
| 1918 | |
| 1919 | ctx->bufs_per_job = VPE_DEF_BUFS_PER_JOB; |
| 1920 | |
| 1921 | ctx->load_mmrs = true; |
| 1922 | |
| 1923 | vpe_dbg(dev, "created instance %p, m2m_ctx: %p\n", |
| 1924 | ctx, ctx->m2m_ctx); |
| 1925 | |
| 1926 | mutex_unlock(&dev->dev_mutex); |
| 1927 | |
| 1928 | return 0; |
| 1929 | exit_fh: |
| 1930 | v4l2_ctrl_handler_free(hdl); |
| 1931 | v4l2_fh_exit(&ctx->fh); |
Archit Taneja | 773f065 | 2013-12-12 05:35:59 -0300 | [diff] [blame] | 1932 | vpdma_free_desc_buf(&ctx->sc_coeff_v); |
| 1933 | free_sc_h: |
| 1934 | vpdma_free_desc_buf(&ctx->sc_coeff_h); |
| 1935 | free_mmr_adb: |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1936 | vpdma_free_desc_buf(&ctx->mmr_adb); |
| 1937 | free_desc_list: |
| 1938 | vpdma_free_desc_list(&ctx->desc_list); |
| 1939 | unlock: |
| 1940 | mutex_unlock(&dev->dev_mutex); |
| 1941 | free_ctx: |
| 1942 | kfree(ctx); |
| 1943 | return ret; |
| 1944 | } |
| 1945 | |
| 1946 | static int vpe_release(struct file *file) |
| 1947 | { |
| 1948 | struct vpe_dev *dev = video_drvdata(file); |
| 1949 | struct vpe_ctx *ctx = file2ctx(file); |
| 1950 | |
| 1951 | vpe_dbg(dev, "releasing instance %p\n", ctx); |
| 1952 | |
| 1953 | mutex_lock(&dev->dev_mutex); |
Archit Taneja | 585e6f0 | 2013-10-16 02:36:48 -0300 | [diff] [blame] | 1954 | free_vbs(ctx); |
| 1955 | free_mv_buffers(ctx); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 1956 | vpdma_free_desc_list(&ctx->desc_list); |
| 1957 | vpdma_free_desc_buf(&ctx->mmr_adb); |
| 1958 | |
| 1959 | v4l2_fh_del(&ctx->fh); |
| 1960 | v4l2_fh_exit(&ctx->fh); |
| 1961 | v4l2_ctrl_handler_free(&ctx->hdl); |
| 1962 | v4l2_m2m_ctx_release(ctx->m2m_ctx); |
| 1963 | |
| 1964 | kfree(ctx); |
| 1965 | |
| 1966 | /* |
| 1967 | * for now, just report the release of the last instance, we can later |
| 1968 | * optimize the driver to enable or disable clocks when the first |
| 1969 | * instance is created or the last instance released |
| 1970 | */ |
| 1971 | if (atomic_dec_return(&dev->num_instances) == 0) |
| 1972 | vpe_dbg(dev, "last instance released\n"); |
| 1973 | |
| 1974 | mutex_unlock(&dev->dev_mutex); |
| 1975 | |
| 1976 | return 0; |
| 1977 | } |
| 1978 | |
| 1979 | static unsigned int vpe_poll(struct file *file, |
| 1980 | struct poll_table_struct *wait) |
| 1981 | { |
| 1982 | struct vpe_ctx *ctx = file2ctx(file); |
| 1983 | struct vpe_dev *dev = ctx->dev; |
| 1984 | int ret; |
| 1985 | |
| 1986 | mutex_lock(&dev->dev_mutex); |
| 1987 | ret = v4l2_m2m_poll(file, ctx->m2m_ctx, wait); |
| 1988 | mutex_unlock(&dev->dev_mutex); |
| 1989 | return ret; |
| 1990 | } |
| 1991 | |
| 1992 | static int vpe_mmap(struct file *file, struct vm_area_struct *vma) |
| 1993 | { |
| 1994 | struct vpe_ctx *ctx = file2ctx(file); |
| 1995 | struct vpe_dev *dev = ctx->dev; |
| 1996 | int ret; |
| 1997 | |
| 1998 | if (mutex_lock_interruptible(&dev->dev_mutex)) |
| 1999 | return -ERESTARTSYS; |
| 2000 | ret = v4l2_m2m_mmap(file, ctx->m2m_ctx, vma); |
| 2001 | mutex_unlock(&dev->dev_mutex); |
| 2002 | return ret; |
| 2003 | } |
| 2004 | |
| 2005 | static const struct v4l2_file_operations vpe_fops = { |
| 2006 | .owner = THIS_MODULE, |
| 2007 | .open = vpe_open, |
| 2008 | .release = vpe_release, |
| 2009 | .poll = vpe_poll, |
| 2010 | .unlocked_ioctl = video_ioctl2, |
| 2011 | .mmap = vpe_mmap, |
| 2012 | }; |
| 2013 | |
| 2014 | static struct video_device vpe_videodev = { |
| 2015 | .name = VPE_MODULE_NAME, |
| 2016 | .fops = &vpe_fops, |
| 2017 | .ioctl_ops = &vpe_ioctl_ops, |
| 2018 | .minor = -1, |
Archit Taneja | 772a7b7 | 2014-02-18 10:24:07 -0300 | [diff] [blame] | 2019 | .release = video_device_release_empty, |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2020 | .vfl_dir = VFL_DIR_M2M, |
| 2021 | }; |
| 2022 | |
| 2023 | static struct v4l2_m2m_ops m2m_ops = { |
| 2024 | .device_run = device_run, |
| 2025 | .job_ready = job_ready, |
| 2026 | .job_abort = job_abort, |
| 2027 | .lock = vpe_lock, |
| 2028 | .unlock = vpe_unlock, |
| 2029 | }; |
| 2030 | |
| 2031 | static int vpe_runtime_get(struct platform_device *pdev) |
| 2032 | { |
| 2033 | int r; |
| 2034 | |
| 2035 | dev_dbg(&pdev->dev, "vpe_runtime_get\n"); |
| 2036 | |
| 2037 | r = pm_runtime_get_sync(&pdev->dev); |
| 2038 | WARN_ON(r < 0); |
| 2039 | return r < 0 ? r : 0; |
| 2040 | } |
| 2041 | |
| 2042 | static void vpe_runtime_put(struct platform_device *pdev) |
| 2043 | { |
| 2044 | |
| 2045 | int r; |
| 2046 | |
| 2047 | dev_dbg(&pdev->dev, "vpe_runtime_put\n"); |
| 2048 | |
| 2049 | r = pm_runtime_put_sync(&pdev->dev); |
| 2050 | WARN_ON(r < 0 && r != -ENOSYS); |
| 2051 | } |
| 2052 | |
Archit Taneja | b2c9472 | 2014-03-13 08:44:04 -0300 | [diff] [blame] | 2053 | static void vpe_fw_cb(struct platform_device *pdev) |
| 2054 | { |
| 2055 | struct vpe_dev *dev = platform_get_drvdata(pdev); |
| 2056 | struct video_device *vfd; |
| 2057 | int ret; |
| 2058 | |
| 2059 | vfd = &dev->vfd; |
| 2060 | *vfd = vpe_videodev; |
| 2061 | vfd->lock = &dev->dev_mutex; |
| 2062 | vfd->v4l2_dev = &dev->v4l2_dev; |
| 2063 | |
| 2064 | ret = video_register_device(vfd, VFL_TYPE_GRABBER, 0); |
| 2065 | if (ret) { |
| 2066 | vpe_err(dev, "Failed to register video device\n"); |
| 2067 | |
| 2068 | vpe_set_clock_enable(dev, 0); |
| 2069 | vpe_runtime_put(pdev); |
| 2070 | pm_runtime_disable(&pdev->dev); |
| 2071 | v4l2_m2m_release(dev->m2m_dev); |
| 2072 | vb2_dma_contig_cleanup_ctx(dev->alloc_ctx); |
| 2073 | v4l2_device_unregister(&dev->v4l2_dev); |
| 2074 | |
| 2075 | return; |
| 2076 | } |
| 2077 | |
| 2078 | video_set_drvdata(vfd, dev); |
| 2079 | snprintf(vfd->name, sizeof(vfd->name), "%s", vpe_videodev.name); |
| 2080 | dev_info(dev->v4l2_dev.dev, "Device registered as /dev/video%d\n", |
| 2081 | vfd->num); |
| 2082 | } |
| 2083 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2084 | static int vpe_probe(struct platform_device *pdev) |
| 2085 | { |
| 2086 | struct vpe_dev *dev; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2087 | int ret, irq, func; |
| 2088 | |
| 2089 | dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL); |
Wei Yongjun | b68231a | 2013-10-30 00:15:13 -0300 | [diff] [blame] | 2090 | if (!dev) |
| 2091 | return -ENOMEM; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2092 | |
| 2093 | spin_lock_init(&dev->lock); |
| 2094 | |
| 2095 | ret = v4l2_device_register(&pdev->dev, &dev->v4l2_dev); |
| 2096 | if (ret) |
| 2097 | return ret; |
| 2098 | |
| 2099 | atomic_set(&dev->num_instances, 0); |
| 2100 | mutex_init(&dev->dev_mutex); |
| 2101 | |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 2102 | dev->res = platform_get_resource_byname(pdev, IORESOURCE_MEM, |
| 2103 | "vpe_top"); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2104 | /* |
| 2105 | * HACK: we get resource info from device tree in the form of a list of |
| 2106 | * VPE sub blocks, the driver currently uses only the base of vpe_top |
| 2107 | * for register access, the driver should be changed later to access |
| 2108 | * registers based on the sub block base addresses |
| 2109 | */ |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 2110 | dev->base = devm_ioremap(&pdev->dev, dev->res->start, SZ_32K); |
Wei Yongjun | b68231a | 2013-10-30 00:15:13 -0300 | [diff] [blame] | 2111 | if (!dev->base) { |
| 2112 | ret = -ENOMEM; |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2113 | goto v4l2_dev_unreg; |
| 2114 | } |
| 2115 | |
| 2116 | irq = platform_get_irq(pdev, 0); |
| 2117 | ret = devm_request_irq(&pdev->dev, irq, vpe_irq, 0, VPE_MODULE_NAME, |
| 2118 | dev); |
| 2119 | if (ret) |
| 2120 | goto v4l2_dev_unreg; |
| 2121 | |
| 2122 | platform_set_drvdata(pdev, dev); |
| 2123 | |
| 2124 | dev->alloc_ctx = vb2_dma_contig_init_ctx(&pdev->dev); |
| 2125 | if (IS_ERR(dev->alloc_ctx)) { |
| 2126 | vpe_err(dev, "Failed to alloc vb2 context\n"); |
| 2127 | ret = PTR_ERR(dev->alloc_ctx); |
| 2128 | goto v4l2_dev_unreg; |
| 2129 | } |
| 2130 | |
| 2131 | dev->m2m_dev = v4l2_m2m_init(&m2m_ops); |
| 2132 | if (IS_ERR(dev->m2m_dev)) { |
| 2133 | vpe_err(dev, "Failed to init mem2mem device\n"); |
| 2134 | ret = PTR_ERR(dev->m2m_dev); |
| 2135 | goto rel_ctx; |
| 2136 | } |
| 2137 | |
| 2138 | pm_runtime_enable(&pdev->dev); |
| 2139 | |
| 2140 | ret = vpe_runtime_get(pdev); |
| 2141 | if (ret) |
| 2142 | goto rel_m2m; |
| 2143 | |
| 2144 | /* Perform clk enable followed by reset */ |
| 2145 | vpe_set_clock_enable(dev, 1); |
| 2146 | |
| 2147 | vpe_top_reset(dev); |
| 2148 | |
| 2149 | func = read_field_reg(dev, VPE_PID, VPE_PID_FUNC_MASK, |
| 2150 | VPE_PID_FUNC_SHIFT); |
| 2151 | vpe_dbg(dev, "VPE PID function %x\n", func); |
| 2152 | |
| 2153 | vpe_top_vpdma_reset(dev); |
| 2154 | |
Archit Taneja | 44687b2 | 2013-12-12 05:35:57 -0300 | [diff] [blame] | 2155 | dev->sc = sc_create(pdev); |
| 2156 | if (IS_ERR(dev->sc)) { |
| 2157 | ret = PTR_ERR(dev->sc); |
| 2158 | goto runtime_put; |
| 2159 | } |
| 2160 | |
Archit Taneja | 6948082 | 2013-12-12 05:36:01 -0300 | [diff] [blame] | 2161 | dev->csc = csc_create(pdev); |
| 2162 | if (IS_ERR(dev->csc)) { |
| 2163 | ret = PTR_ERR(dev->csc); |
| 2164 | goto runtime_put; |
| 2165 | } |
| 2166 | |
Archit Taneja | b2c9472 | 2014-03-13 08:44:04 -0300 | [diff] [blame] | 2167 | dev->vpdma = vpdma_create(pdev, vpe_fw_cb); |
Wei Yongjun | 6676caf | 2013-10-30 00:10:45 -0300 | [diff] [blame] | 2168 | if (IS_ERR(dev->vpdma)) { |
| 2169 | ret = PTR_ERR(dev->vpdma); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2170 | goto runtime_put; |
Wei Yongjun | 6676caf | 2013-10-30 00:10:45 -0300 | [diff] [blame] | 2171 | } |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2172 | |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2173 | return 0; |
| 2174 | |
| 2175 | runtime_put: |
| 2176 | vpe_runtime_put(pdev); |
| 2177 | rel_m2m: |
| 2178 | pm_runtime_disable(&pdev->dev); |
| 2179 | v4l2_m2m_release(dev->m2m_dev); |
| 2180 | rel_ctx: |
| 2181 | vb2_dma_contig_cleanup_ctx(dev->alloc_ctx); |
| 2182 | v4l2_dev_unreg: |
| 2183 | v4l2_device_unregister(&dev->v4l2_dev); |
| 2184 | |
| 2185 | return ret; |
| 2186 | } |
| 2187 | |
| 2188 | static int vpe_remove(struct platform_device *pdev) |
| 2189 | { |
| 2190 | struct vpe_dev *dev = |
| 2191 | (struct vpe_dev *) platform_get_drvdata(pdev); |
| 2192 | |
| 2193 | v4l2_info(&dev->v4l2_dev, "Removing " VPE_MODULE_NAME); |
| 2194 | |
| 2195 | v4l2_m2m_release(dev->m2m_dev); |
| 2196 | video_unregister_device(&dev->vfd); |
| 2197 | v4l2_device_unregister(&dev->v4l2_dev); |
| 2198 | vb2_dma_contig_cleanup_ctx(dev->alloc_ctx); |
| 2199 | |
| 2200 | vpe_set_clock_enable(dev, 0); |
| 2201 | vpe_runtime_put(pdev); |
| 2202 | pm_runtime_disable(&pdev->dev); |
| 2203 | |
| 2204 | return 0; |
| 2205 | } |
| 2206 | |
| 2207 | #if defined(CONFIG_OF) |
| 2208 | static const struct of_device_id vpe_of_match[] = { |
| 2209 | { |
| 2210 | .compatible = "ti,vpe", |
| 2211 | }, |
| 2212 | {}, |
| 2213 | }; |
| 2214 | #else |
| 2215 | #define vpe_of_match NULL |
| 2216 | #endif |
| 2217 | |
| 2218 | static struct platform_driver vpe_pdrv = { |
| 2219 | .probe = vpe_probe, |
| 2220 | .remove = vpe_remove, |
| 2221 | .driver = { |
| 2222 | .name = VPE_MODULE_NAME, |
| 2223 | .owner = THIS_MODULE, |
| 2224 | .of_match_table = vpe_of_match, |
| 2225 | }, |
| 2226 | }; |
| 2227 | |
Wei Yongjun | 903cbb8 | 2013-10-30 00:09:44 -0300 | [diff] [blame] | 2228 | module_platform_driver(vpe_pdrv); |
Archit Taneja | 4571912 | 2013-10-16 02:36:47 -0300 | [diff] [blame] | 2229 | |
| 2230 | MODULE_DESCRIPTION("TI VPE driver"); |
| 2231 | MODULE_AUTHOR("Dale Farnsworth, <dale@farnsworth.org>"); |
| 2232 | MODULE_LICENSE("GPL"); |