1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * V4L2 Capture CSI Subdev for Freescale i.MX6UL/L / i.MX7 SOC 4 * 5 * Copyright (c) 2019 Linaro Ltd 6 * 7 */ 8 9 #include <linux/clk.h> 10 #include <linux/delay.h> 11 #include <linux/interrupt.h> 12 #include <linux/mfd/syscon.h> 13 #include <linux/module.h> 14 #include <linux/of_device.h> 15 #include <linux/of_graph.h> 16 #include <linux/pinctrl/consumer.h> 17 #include <linux/platform_device.h> 18 #include <linux/regmap.h> 19 #include <linux/slab.h> 20 #include <linux/spinlock.h> 21 #include <linux/types.h> 22 23 #include <media/v4l2-device.h> 24 #include <media/v4l2-fwnode.h> 25 #include <media/v4l2-ioctl.h> 26 #include <media/v4l2-mc.h> 27 #include <media/v4l2-subdev.h> 28 #include <media/videobuf2-dma-contig.h> 29 30 #define IMX7_CSI_PAD_SINK 0 31 #define IMX7_CSI_PAD_SRC 1 32 #define IMX7_CSI_PADS_NUM 2 33 34 /* csi control reg 1 */ 35 #define BIT_SWAP16_EN BIT(31) 36 #define BIT_EXT_VSYNC BIT(30) 37 #define BIT_EOF_INT_EN BIT(29) 38 #define BIT_PRP_IF_EN BIT(28) 39 #define BIT_CCIR_MODE BIT(27) 40 #define BIT_COF_INT_EN BIT(26) 41 #define BIT_SF_OR_INTEN BIT(25) 42 #define BIT_RF_OR_INTEN BIT(24) 43 #define BIT_SFF_DMA_DONE_INTEN BIT(22) 44 #define BIT_STATFF_INTEN BIT(21) 45 #define BIT_FB2_DMA_DONE_INTEN BIT(20) 46 #define BIT_FB1_DMA_DONE_INTEN BIT(19) 47 #define BIT_RXFF_INTEN BIT(18) 48 #define BIT_SOF_POL BIT(17) 49 #define BIT_SOF_INTEN BIT(16) 50 #define BIT_MCLKDIV(n) ((n) << 12) 51 #define BIT_MCLKDIV_MASK (0xf << 12) 52 #define BIT_HSYNC_POL BIT(11) 53 #define BIT_CCIR_EN BIT(10) 54 #define BIT_MCLKEN BIT(9) 55 #define BIT_FCC BIT(8) 56 #define BIT_PACK_DIR BIT(7) 57 #define BIT_CLR_STATFIFO BIT(6) 58 #define BIT_CLR_RXFIFO BIT(5) 59 #define BIT_GCLK_MODE BIT(4) 60 #define BIT_INV_DATA BIT(3) 61 #define BIT_INV_PCLK BIT(2) 62 #define BIT_REDGE BIT(1) 63 #define BIT_PIXEL_BIT BIT(0) 64 65 /* control reg 2 */ 66 #define BIT_DMA_BURST_TYPE_RFF_INCR4 (1 << 30) 67 #define BIT_DMA_BURST_TYPE_RFF_INCR8 (2 << 30) 68 #define BIT_DMA_BURST_TYPE_RFF_INCR16 (3 << 30) 69 #define BIT_DMA_BURST_TYPE_RFF_MASK (3 << 30) 70 71 /* control reg 3 */ 72 #define BIT_FRMCNT(n) ((n) << 16) 73 #define BIT_FRMCNT_MASK (0xffff << 16) 74 #define BIT_FRMCNT_RST BIT(15) 75 #define BIT_DMA_REFLASH_RFF BIT(14) 76 #define BIT_DMA_REFLASH_SFF BIT(13) 77 #define BIT_DMA_REQ_EN_RFF BIT(12) 78 #define BIT_DMA_REQ_EN_SFF BIT(11) 79 #define BIT_STATFF_LEVEL(n) ((n) << 8) 80 #define BIT_STATFF_LEVEL_MASK (0x7 << 8) 81 #define BIT_HRESP_ERR_EN BIT(7) 82 #define BIT_RXFF_LEVEL(n) ((n) << 4) 83 #define BIT_RXFF_LEVEL_MASK (0x7 << 4) 84 #define BIT_TWO_8BIT_SENSOR BIT(3) 85 #define BIT_ZERO_PACK_EN BIT(2) 86 #define BIT_ECC_INT_EN BIT(1) 87 #define BIT_ECC_AUTO_EN BIT(0) 88 89 /* csi status reg */ 90 #define BIT_ADDR_CH_ERR_INT BIT(28) 91 #define BIT_FIELD0_INT BIT(27) 92 #define BIT_FIELD1_INT BIT(26) 93 #define BIT_SFF_OR_INT BIT(25) 94 #define BIT_RFF_OR_INT BIT(24) 95 #define BIT_DMA_TSF_DONE_SFF BIT(22) 96 #define BIT_STATFF_INT BIT(21) 97 #define BIT_DMA_TSF_DONE_FB2 BIT(20) 98 #define BIT_DMA_TSF_DONE_FB1 BIT(19) 99 #define BIT_RXFF_INT BIT(18) 100 #define BIT_EOF_INT BIT(17) 101 #define BIT_SOF_INT BIT(16) 102 #define BIT_F2_INT BIT(15) 103 #define BIT_F1_INT BIT(14) 104 #define BIT_COF_INT BIT(13) 105 #define BIT_HRESP_ERR_INT BIT(7) 106 #define BIT_ECC_INT BIT(1) 107 #define BIT_DRDY BIT(0) 108 109 /* csi image parameter reg */ 110 #define BIT_IMAGE_WIDTH(n) ((n) << 16) 111 #define BIT_IMAGE_HEIGHT(n) (n) 112 113 /* csi control reg 18 */ 114 #define BIT_CSI_HW_ENABLE BIT(31) 115 #define BIT_MIPI_DATA_FORMAT_RAW8 (0x2a << 25) 116 #define BIT_MIPI_DATA_FORMAT_RAW10 (0x2b << 25) 117 #define BIT_MIPI_DATA_FORMAT_RAW12 (0x2c << 25) 118 #define BIT_MIPI_DATA_FORMAT_RAW14 (0x2d << 25) 119 #define BIT_MIPI_DATA_FORMAT_YUV422_8B (0x1e << 25) 120 #define BIT_MIPI_DATA_FORMAT_MASK (0x3f << 25) 121 #define BIT_DATA_FROM_MIPI BIT(22) 122 #define BIT_MIPI_YU_SWAP BIT(21) 123 #define BIT_MIPI_DOUBLE_CMPNT BIT(20) 124 #define BIT_MASK_OPTION_FIRST_FRAME (0 << 18) 125 #define BIT_MASK_OPTION_CSI_EN (1 << 18) 126 #define BIT_MASK_OPTION_SECOND_FRAME (2 << 18) 127 #define BIT_MASK_OPTION_ON_DATA (3 << 18) 128 #define BIT_BASEADDR_CHG_ERR_EN BIT(9) 129 #define BIT_BASEADDR_SWITCH_SEL BIT(5) 130 #define BIT_BASEADDR_SWITCH_EN BIT(4) 131 #define BIT_PARALLEL24_EN BIT(3) 132 #define BIT_DEINTERLACE_EN BIT(2) 133 #define BIT_TVDECODER_IN_EN BIT(1) 134 #define BIT_NTSC_EN BIT(0) 135 136 #define CSI_MCLK_VF 1 137 #define CSI_MCLK_ENC 2 138 #define CSI_MCLK_RAW 4 139 #define CSI_MCLK_I2C 8 140 141 #define CSI_CSICR1 0x00 142 #define CSI_CSICR2 0x04 143 #define CSI_CSICR3 0x08 144 #define CSI_STATFIFO 0x0c 145 #define CSI_CSIRXFIFO 0x10 146 #define CSI_CSIRXCNT 0x14 147 #define CSI_CSISR 0x18 148 149 #define CSI_CSIDBG 0x1c 150 #define CSI_CSIDMASA_STATFIFO 0x20 151 #define CSI_CSIDMATS_STATFIFO 0x24 152 #define CSI_CSIDMASA_FB1 0x28 153 #define CSI_CSIDMASA_FB2 0x2c 154 #define CSI_CSIFBUF_PARA 0x30 155 #define CSI_CSIIMAG_PARA 0x34 156 157 #define CSI_CSICR18 0x48 158 #define CSI_CSICR19 0x4c 159 160 #define IMX7_CSI_VIDEO_NAME "imx-capture" 161 /* In bytes, per queue */ 162 #define IMX7_CSI_VIDEO_MEM_LIMIT SZ_512M 163 #define IMX7_CSI_VIDEO_EOF_TIMEOUT 2000 164 165 #define IMX7_CSI_DEF_MBUS_CODE MEDIA_BUS_FMT_UYVY8_2X8 166 #define IMX7_CSI_DEF_PIX_FORMAT V4L2_PIX_FMT_UYVY 167 #define IMX7_CSI_DEF_PIX_WIDTH 640 168 #define IMX7_CSI_DEF_PIX_HEIGHT 480 169 170 enum imx_csi_model { 171 IMX7_CSI_IMX7 = 0, 172 IMX7_CSI_IMX8MQ, 173 }; 174 175 struct imx7_csi_pixfmt { 176 /* the in-memory FourCC pixel format */ 177 u32 fourcc; 178 /* 179 * the set of equivalent media bus codes for the fourcc. 180 * NOTE! codes pointer is NULL for in-memory-only formats. 181 */ 182 const u32 *codes; 183 int bpp; /* total bpp */ 184 bool yuv; 185 }; 186 187 struct imx7_csi_vb2_buffer { 188 struct vb2_v4l2_buffer vbuf; 189 struct list_head list; 190 }; 191 192 static inline struct imx7_csi_vb2_buffer * 193 to_imx7_csi_vb2_buffer(struct vb2_buffer *vb) 194 { 195 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); 196 197 return container_of(vbuf, struct imx7_csi_vb2_buffer, vbuf); 198 } 199 200 struct imx7_csi_dma_buf { 201 void *virt; 202 dma_addr_t dma_addr; 203 unsigned long len; 204 }; 205 206 struct imx7_csi { 207 struct device *dev; 208 209 /* Resources and locks */ 210 void __iomem *regbase; 211 int irq; 212 struct clk *mclk; 213 214 spinlock_t irqlock; /* Protects last_eof */ 215 216 /* Media and V4L2 device */ 217 struct media_device mdev; 218 struct v4l2_device v4l2_dev; 219 struct v4l2_async_notifier notifier; 220 struct media_pipeline pipe; 221 222 struct v4l2_subdev *src_sd; 223 bool is_csi2; 224 225 /* V4L2 subdev */ 226 struct v4l2_subdev sd; 227 struct media_pad pad[IMX7_CSI_PADS_NUM]; 228 229 /* Video device */ 230 struct video_device *vdev; /* Video device */ 231 struct media_pad vdev_pad; /* Video device pad */ 232 233 struct v4l2_pix_format vdev_fmt; /* The user format */ 234 const struct imx7_csi_pixfmt *vdev_cc; 235 struct v4l2_rect vdev_compose; /* The compose rectangle */ 236 237 struct mutex vdev_mutex; /* Protect vdev operations */ 238 239 struct vb2_queue q; /* The videobuf2 queue */ 240 struct list_head ready_q; /* List of queued buffers */ 241 spinlock_t q_lock; /* Protect ready_q */ 242 243 /* Buffers and streaming state */ 244 struct imx7_csi_vb2_buffer *active_vb2_buf[2]; 245 struct imx7_csi_dma_buf underrun_buf; 246 247 bool is_streaming; 248 int buf_num; 249 u32 frame_sequence; 250 251 bool last_eof; 252 struct completion last_eof_completion; 253 254 enum imx_csi_model model; 255 }; 256 257 static struct imx7_csi * 258 imx7_csi_notifier_to_dev(struct v4l2_async_notifier *n) 259 { 260 return container_of(n, struct imx7_csi, notifier); 261 } 262 263 /* ----------------------------------------------------------------------------- 264 * Hardware Configuration 265 */ 266 267 static u32 imx7_csi_reg_read(struct imx7_csi *csi, unsigned int offset) 268 { 269 return readl(csi->regbase + offset); 270 } 271 272 static void imx7_csi_reg_write(struct imx7_csi *csi, unsigned int value, 273 unsigned int offset) 274 { 275 writel(value, csi->regbase + offset); 276 } 277 278 static u32 imx7_csi_irq_clear(struct imx7_csi *csi) 279 { 280 u32 isr; 281 282 isr = imx7_csi_reg_read(csi, CSI_CSISR); 283 imx7_csi_reg_write(csi, isr, CSI_CSISR); 284 285 return isr; 286 } 287 288 static void imx7_csi_init_default(struct imx7_csi *csi) 289 { 290 imx7_csi_reg_write(csi, BIT_SOF_POL | BIT_REDGE | BIT_GCLK_MODE | 291 BIT_HSYNC_POL | BIT_FCC | BIT_MCLKDIV(1) | 292 BIT_MCLKEN, CSI_CSICR1); 293 imx7_csi_reg_write(csi, 0, CSI_CSICR2); 294 imx7_csi_reg_write(csi, BIT_FRMCNT_RST, CSI_CSICR3); 295 296 imx7_csi_reg_write(csi, BIT_IMAGE_WIDTH(IMX7_CSI_DEF_PIX_WIDTH) | 297 BIT_IMAGE_HEIGHT(IMX7_CSI_DEF_PIX_HEIGHT), 298 CSI_CSIIMAG_PARA); 299 300 imx7_csi_reg_write(csi, BIT_DMA_REFLASH_RFF, CSI_CSICR3); 301 } 302 303 static void imx7_csi_hw_enable_irq(struct imx7_csi *csi) 304 { 305 u32 cr1 = imx7_csi_reg_read(csi, CSI_CSICR1); 306 307 cr1 |= BIT_RFF_OR_INT; 308 cr1 |= BIT_FB1_DMA_DONE_INTEN; 309 cr1 |= BIT_FB2_DMA_DONE_INTEN; 310 311 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); 312 } 313 314 static void imx7_csi_hw_disable_irq(struct imx7_csi *csi) 315 { 316 u32 cr1 = imx7_csi_reg_read(csi, CSI_CSICR1); 317 318 cr1 &= ~BIT_RFF_OR_INT; 319 cr1 &= ~BIT_FB1_DMA_DONE_INTEN; 320 cr1 &= ~BIT_FB2_DMA_DONE_INTEN; 321 322 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); 323 } 324 325 static void imx7_csi_hw_enable(struct imx7_csi *csi) 326 { 327 u32 cr = imx7_csi_reg_read(csi, CSI_CSICR18); 328 329 cr |= BIT_CSI_HW_ENABLE; 330 331 imx7_csi_reg_write(csi, cr, CSI_CSICR18); 332 } 333 334 static void imx7_csi_hw_disable(struct imx7_csi *csi) 335 { 336 u32 cr = imx7_csi_reg_read(csi, CSI_CSICR18); 337 338 cr &= ~BIT_CSI_HW_ENABLE; 339 340 imx7_csi_reg_write(csi, cr, CSI_CSICR18); 341 } 342 343 static void imx7_csi_dma_reflash(struct imx7_csi *csi) 344 { 345 u32 cr3; 346 347 cr3 = imx7_csi_reg_read(csi, CSI_CSICR3); 348 cr3 |= BIT_DMA_REFLASH_RFF; 349 imx7_csi_reg_write(csi, cr3, CSI_CSICR3); 350 } 351 352 static void imx7_csi_rx_fifo_clear(struct imx7_csi *csi) 353 { 354 u32 cr1 = imx7_csi_reg_read(csi, CSI_CSICR1) & ~BIT_FCC; 355 356 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); 357 imx7_csi_reg_write(csi, cr1 | BIT_CLR_RXFIFO, CSI_CSICR1); 358 imx7_csi_reg_write(csi, cr1 | BIT_FCC, CSI_CSICR1); 359 } 360 361 static void imx7_csi_dmareq_rff_enable(struct imx7_csi *csi) 362 { 363 u32 cr3 = imx7_csi_reg_read(csi, CSI_CSICR3); 364 365 cr3 |= BIT_DMA_REQ_EN_RFF; 366 cr3 |= BIT_HRESP_ERR_EN; 367 cr3 &= ~BIT_RXFF_LEVEL_MASK; 368 cr3 |= BIT_RXFF_LEVEL(2); 369 370 imx7_csi_reg_write(csi, cr3, CSI_CSICR3); 371 } 372 373 static void imx7_csi_dmareq_rff_disable(struct imx7_csi *csi) 374 { 375 u32 cr3 = imx7_csi_reg_read(csi, CSI_CSICR3); 376 377 cr3 &= ~BIT_DMA_REQ_EN_RFF; 378 cr3 &= ~BIT_HRESP_ERR_EN; 379 imx7_csi_reg_write(csi, cr3, CSI_CSICR3); 380 } 381 382 static void imx7_csi_update_buf(struct imx7_csi *csi, dma_addr_t dma_addr, 383 int buf_num) 384 { 385 if (buf_num == 1) 386 imx7_csi_reg_write(csi, dma_addr, CSI_CSIDMASA_FB2); 387 else 388 imx7_csi_reg_write(csi, dma_addr, CSI_CSIDMASA_FB1); 389 } 390 391 static struct imx7_csi_vb2_buffer *imx7_csi_video_next_buf(struct imx7_csi *csi); 392 393 static void imx7_csi_setup_vb2_buf(struct imx7_csi *csi) 394 { 395 struct imx7_csi_vb2_buffer *buf; 396 struct vb2_buffer *vb2_buf; 397 int i; 398 399 for (i = 0; i < 2; i++) { 400 dma_addr_t dma_addr; 401 402 buf = imx7_csi_video_next_buf(csi); 403 if (buf) { 404 csi->active_vb2_buf[i] = buf; 405 vb2_buf = &buf->vbuf.vb2_buf; 406 dma_addr = vb2_dma_contig_plane_dma_addr(vb2_buf, 0); 407 } else { 408 csi->active_vb2_buf[i] = NULL; 409 dma_addr = csi->underrun_buf.dma_addr; 410 } 411 412 imx7_csi_update_buf(csi, dma_addr, i); 413 } 414 } 415 416 static void imx7_csi_dma_unsetup_vb2_buf(struct imx7_csi *csi, 417 enum vb2_buffer_state return_status) 418 { 419 struct imx7_csi_vb2_buffer *buf; 420 int i; 421 422 /* return any remaining active frames with return_status */ 423 for (i = 0; i < 2; i++) { 424 buf = csi->active_vb2_buf[i]; 425 if (buf) { 426 struct vb2_buffer *vb = &buf->vbuf.vb2_buf; 427 428 vb->timestamp = ktime_get_ns(); 429 vb2_buffer_done(vb, return_status); 430 csi->active_vb2_buf[i] = NULL; 431 } 432 } 433 } 434 435 static void imx7_csi_free_dma_buf(struct imx7_csi *csi, 436 struct imx7_csi_dma_buf *buf) 437 { 438 if (buf->virt) 439 dma_free_coherent(csi->dev, buf->len, buf->virt, buf->dma_addr); 440 441 buf->virt = NULL; 442 buf->dma_addr = 0; 443 } 444 445 static int imx7_csi_alloc_dma_buf(struct imx7_csi *csi, 446 struct imx7_csi_dma_buf *buf, int size) 447 { 448 imx7_csi_free_dma_buf(csi, buf); 449 450 buf->len = PAGE_ALIGN(size); 451 buf->virt = dma_alloc_coherent(csi->dev, buf->len, &buf->dma_addr, 452 GFP_DMA | GFP_KERNEL); 453 if (!buf->virt) 454 return -ENOMEM; 455 456 return 0; 457 } 458 459 static int imx7_csi_dma_setup(struct imx7_csi *csi) 460 { 461 int ret; 462 463 ret = imx7_csi_alloc_dma_buf(csi, &csi->underrun_buf, 464 csi->vdev_fmt.sizeimage); 465 if (ret < 0) { 466 v4l2_warn(&csi->sd, "consider increasing the CMA area\n"); 467 return ret; 468 } 469 470 csi->frame_sequence = 0; 471 csi->last_eof = false; 472 init_completion(&csi->last_eof_completion); 473 474 imx7_csi_setup_vb2_buf(csi); 475 476 return 0; 477 } 478 479 static void imx7_csi_dma_cleanup(struct imx7_csi *csi, 480 enum vb2_buffer_state return_status) 481 { 482 imx7_csi_dma_unsetup_vb2_buf(csi, return_status); 483 imx7_csi_free_dma_buf(csi, &csi->underrun_buf); 484 } 485 486 static void imx7_csi_dma_stop(struct imx7_csi *csi) 487 { 488 unsigned long timeout_jiffies; 489 unsigned long flags; 490 int ret; 491 492 /* mark next EOF interrupt as the last before stream off */ 493 spin_lock_irqsave(&csi->irqlock, flags); 494 csi->last_eof = true; 495 spin_unlock_irqrestore(&csi->irqlock, flags); 496 497 /* 498 * and then wait for interrupt handler to mark completion. 499 */ 500 timeout_jiffies = msecs_to_jiffies(IMX7_CSI_VIDEO_EOF_TIMEOUT); 501 ret = wait_for_completion_timeout(&csi->last_eof_completion, 502 timeout_jiffies); 503 if (ret == 0) 504 v4l2_warn(&csi->sd, "wait last EOF timeout\n"); 505 506 imx7_csi_hw_disable_irq(csi); 507 } 508 509 static void imx7_csi_configure(struct imx7_csi *csi, 510 struct v4l2_subdev_state *sd_state) 511 { 512 struct v4l2_pix_format *out_pix = &csi->vdev_fmt; 513 int width = out_pix->width; 514 u32 stride = 0; 515 u32 cr3 = BIT_FRMCNT_RST; 516 u32 cr1, cr18; 517 518 cr18 = imx7_csi_reg_read(csi, CSI_CSICR18); 519 520 cr18 &= ~(BIT_CSI_HW_ENABLE | BIT_MIPI_DATA_FORMAT_MASK | 521 BIT_DATA_FROM_MIPI | BIT_MIPI_DOUBLE_CMPNT | 522 BIT_BASEADDR_CHG_ERR_EN | BIT_BASEADDR_SWITCH_SEL | 523 BIT_BASEADDR_SWITCH_EN | BIT_DEINTERLACE_EN); 524 525 if (out_pix->field == V4L2_FIELD_INTERLACED) { 526 cr18 |= BIT_DEINTERLACE_EN; 527 stride = out_pix->width; 528 } 529 530 if (!csi->is_csi2) { 531 cr1 = BIT_SOF_POL | BIT_REDGE | BIT_GCLK_MODE | BIT_HSYNC_POL 532 | BIT_FCC | BIT_MCLKDIV(1) | BIT_MCLKEN; 533 534 cr18 |= BIT_BASEADDR_SWITCH_EN | BIT_BASEADDR_SWITCH_SEL | 535 BIT_BASEADDR_CHG_ERR_EN; 536 537 if (out_pix->pixelformat == V4L2_PIX_FMT_UYVY || 538 out_pix->pixelformat == V4L2_PIX_FMT_YUYV) 539 width *= 2; 540 } else { 541 const struct v4l2_mbus_framefmt *sink_fmt; 542 543 sink_fmt = v4l2_subdev_get_pad_format(&csi->sd, sd_state, 544 IMX7_CSI_PAD_SINK); 545 546 cr1 = BIT_SOF_POL | BIT_REDGE | BIT_HSYNC_POL | BIT_FCC 547 | BIT_MCLKDIV(1) | BIT_MCLKEN; 548 549 cr18 |= BIT_DATA_FROM_MIPI; 550 551 switch (sink_fmt->code) { 552 case MEDIA_BUS_FMT_Y8_1X8: 553 case MEDIA_BUS_FMT_SBGGR8_1X8: 554 case MEDIA_BUS_FMT_SGBRG8_1X8: 555 case MEDIA_BUS_FMT_SGRBG8_1X8: 556 case MEDIA_BUS_FMT_SRGGB8_1X8: 557 cr18 |= BIT_MIPI_DATA_FORMAT_RAW8; 558 break; 559 case MEDIA_BUS_FMT_Y10_1X10: 560 case MEDIA_BUS_FMT_SBGGR10_1X10: 561 case MEDIA_BUS_FMT_SGBRG10_1X10: 562 case MEDIA_BUS_FMT_SGRBG10_1X10: 563 case MEDIA_BUS_FMT_SRGGB10_1X10: 564 cr3 |= BIT_TWO_8BIT_SENSOR; 565 cr18 |= BIT_MIPI_DATA_FORMAT_RAW10; 566 break; 567 case MEDIA_BUS_FMT_Y12_1X12: 568 case MEDIA_BUS_FMT_SBGGR12_1X12: 569 case MEDIA_BUS_FMT_SGBRG12_1X12: 570 case MEDIA_BUS_FMT_SGRBG12_1X12: 571 case MEDIA_BUS_FMT_SRGGB12_1X12: 572 cr3 |= BIT_TWO_8BIT_SENSOR; 573 cr18 |= BIT_MIPI_DATA_FORMAT_RAW12; 574 break; 575 case MEDIA_BUS_FMT_Y14_1X14: 576 case MEDIA_BUS_FMT_SBGGR14_1X14: 577 case MEDIA_BUS_FMT_SGBRG14_1X14: 578 case MEDIA_BUS_FMT_SGRBG14_1X14: 579 case MEDIA_BUS_FMT_SRGGB14_1X14: 580 cr3 |= BIT_TWO_8BIT_SENSOR; 581 cr18 |= BIT_MIPI_DATA_FORMAT_RAW14; 582 break; 583 584 /* 585 * The CSI bridge has a 16-bit input bus. Depending on the 586 * connected source, data may be transmitted with 8 or 10 bits 587 * per clock sample (in bits [9:2] or [9:0] respectively) or 588 * with 16 bits per clock sample (in bits [15:0]). The data is 589 * then packed into a 32-bit FIFO (as shown in figure 13-11 of 590 * the i.MX8MM reference manual rev. 3). 591 * 592 * The data packing in a 32-bit FIFO input word is controlled by 593 * the CR3 TWO_8BIT_SENSOR field (also known as SENSOR_16BITS in 594 * the i.MX8MM reference manual). When set to 0, data packing 595 * groups four 8-bit input samples (bits [9:2]). When set to 1, 596 * data packing groups two 16-bit input samples (bits [15:0]). 597 * 598 * The register field CR18 MIPI_DOUBLE_CMPNT also needs to be 599 * configured according to the input format for YUV 4:2:2 data. 600 * The field controls the gasket between the CSI-2 receiver and 601 * the CSI bridge. On i.MX7 and i.MX8MM, the field must be set 602 * to 1 when the CSIS outputs 16-bit samples. On i.MX8MQ, the 603 * gasket ignores the MIPI_DOUBLE_CMPNT bit and YUV 4:2:2 always 604 * uses 16-bit samples. Setting MIPI_DOUBLE_CMPNT in that case 605 * has no effect, but doesn't cause any issue. 606 */ 607 case MEDIA_BUS_FMT_UYVY8_2X8: 608 case MEDIA_BUS_FMT_YUYV8_2X8: 609 cr18 |= BIT_MIPI_DATA_FORMAT_YUV422_8B; 610 break; 611 case MEDIA_BUS_FMT_UYVY8_1X16: 612 case MEDIA_BUS_FMT_YUYV8_1X16: 613 cr3 |= BIT_TWO_8BIT_SENSOR; 614 cr18 |= BIT_MIPI_DATA_FORMAT_YUV422_8B | 615 BIT_MIPI_DOUBLE_CMPNT; 616 break; 617 } 618 } 619 620 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); 621 imx7_csi_reg_write(csi, BIT_DMA_BURST_TYPE_RFF_INCR16, CSI_CSICR2); 622 imx7_csi_reg_write(csi, cr3, CSI_CSICR3); 623 imx7_csi_reg_write(csi, cr18, CSI_CSICR18); 624 625 imx7_csi_reg_write(csi, (width * out_pix->height) >> 2, CSI_CSIRXCNT); 626 imx7_csi_reg_write(csi, BIT_IMAGE_WIDTH(width) | 627 BIT_IMAGE_HEIGHT(out_pix->height), 628 CSI_CSIIMAG_PARA); 629 imx7_csi_reg_write(csi, stride, CSI_CSIFBUF_PARA); 630 } 631 632 static int imx7_csi_init(struct imx7_csi *csi, 633 struct v4l2_subdev_state *sd_state) 634 { 635 int ret; 636 637 ret = clk_prepare_enable(csi->mclk); 638 if (ret < 0) 639 return ret; 640 641 imx7_csi_configure(csi, sd_state); 642 643 ret = imx7_csi_dma_setup(csi); 644 if (ret < 0) { 645 clk_disable_unprepare(csi->mclk); 646 return ret; 647 } 648 649 return 0; 650 } 651 652 static void imx7_csi_deinit(struct imx7_csi *csi, 653 enum vb2_buffer_state return_status) 654 { 655 imx7_csi_dma_cleanup(csi, return_status); 656 imx7_csi_init_default(csi); 657 imx7_csi_dmareq_rff_disable(csi); 658 clk_disable_unprepare(csi->mclk); 659 } 660 661 static void imx7_csi_baseaddr_switch_on_second_frame(struct imx7_csi *csi) 662 { 663 u32 cr18 = imx7_csi_reg_read(csi, CSI_CSICR18); 664 665 cr18 |= BIT_BASEADDR_SWITCH_EN | BIT_BASEADDR_SWITCH_SEL | 666 BIT_BASEADDR_CHG_ERR_EN; 667 cr18 |= BIT_MASK_OPTION_SECOND_FRAME; 668 imx7_csi_reg_write(csi, cr18, CSI_CSICR18); 669 } 670 671 static void imx7_csi_enable(struct imx7_csi *csi) 672 { 673 /* Clear the Rx FIFO and reflash the DMA controller. */ 674 imx7_csi_rx_fifo_clear(csi); 675 imx7_csi_dma_reflash(csi); 676 677 usleep_range(2000, 3000); 678 679 /* Clear and enable the interrupts. */ 680 imx7_csi_irq_clear(csi); 681 imx7_csi_hw_enable_irq(csi); 682 683 /* Enable the RxFIFO DMA and the CSI. */ 684 imx7_csi_dmareq_rff_enable(csi); 685 imx7_csi_hw_enable(csi); 686 687 if (csi->model == IMX7_CSI_IMX8MQ) 688 imx7_csi_baseaddr_switch_on_second_frame(csi); 689 } 690 691 static void imx7_csi_disable(struct imx7_csi *csi) 692 { 693 imx7_csi_dma_stop(csi); 694 695 imx7_csi_dmareq_rff_disable(csi); 696 697 imx7_csi_hw_disable_irq(csi); 698 699 imx7_csi_hw_disable(csi); 700 } 701 702 /* ----------------------------------------------------------------------------- 703 * Interrupt Handling 704 */ 705 706 static void imx7_csi_error_recovery(struct imx7_csi *csi) 707 { 708 imx7_csi_hw_disable(csi); 709 710 imx7_csi_rx_fifo_clear(csi); 711 712 imx7_csi_dma_reflash(csi); 713 714 imx7_csi_hw_enable(csi); 715 } 716 717 static void imx7_csi_vb2_buf_done(struct imx7_csi *csi) 718 { 719 struct imx7_csi_vb2_buffer *done, *next; 720 struct vb2_buffer *vb; 721 dma_addr_t dma_addr; 722 723 done = csi->active_vb2_buf[csi->buf_num]; 724 if (done) { 725 done->vbuf.field = csi->vdev_fmt.field; 726 done->vbuf.sequence = csi->frame_sequence; 727 vb = &done->vbuf.vb2_buf; 728 vb->timestamp = ktime_get_ns(); 729 vb2_buffer_done(vb, VB2_BUF_STATE_DONE); 730 } 731 csi->frame_sequence++; 732 733 /* get next queued buffer */ 734 next = imx7_csi_video_next_buf(csi); 735 if (next) { 736 dma_addr = vb2_dma_contig_plane_dma_addr(&next->vbuf.vb2_buf, 0); 737 csi->active_vb2_buf[csi->buf_num] = next; 738 } else { 739 dma_addr = csi->underrun_buf.dma_addr; 740 csi->active_vb2_buf[csi->buf_num] = NULL; 741 } 742 743 imx7_csi_update_buf(csi, dma_addr, csi->buf_num); 744 } 745 746 static irqreturn_t imx7_csi_irq_handler(int irq, void *data) 747 { 748 struct imx7_csi *csi = data; 749 u32 status; 750 751 spin_lock(&csi->irqlock); 752 753 status = imx7_csi_irq_clear(csi); 754 755 if (status & BIT_RFF_OR_INT) { 756 dev_warn(csi->dev, "Rx fifo overflow\n"); 757 imx7_csi_error_recovery(csi); 758 } 759 760 if (status & BIT_HRESP_ERR_INT) { 761 dev_warn(csi->dev, "Hresponse error detected\n"); 762 imx7_csi_error_recovery(csi); 763 } 764 765 if (status & BIT_ADDR_CH_ERR_INT) { 766 imx7_csi_hw_disable(csi); 767 768 imx7_csi_dma_reflash(csi); 769 770 imx7_csi_hw_enable(csi); 771 } 772 773 if ((status & BIT_DMA_TSF_DONE_FB1) && 774 (status & BIT_DMA_TSF_DONE_FB2)) { 775 /* 776 * For both FB1 and FB2 interrupter bits set case, 777 * CSI DMA is work in one of FB1 and FB2 buffer, 778 * but software can not know the state. 779 * Skip it to avoid base address updated 780 * when csi work in field0 and field1 will write to 781 * new base address. 782 */ 783 } else if (status & BIT_DMA_TSF_DONE_FB1) { 784 csi->buf_num = 0; 785 } else if (status & BIT_DMA_TSF_DONE_FB2) { 786 csi->buf_num = 1; 787 } 788 789 if ((status & BIT_DMA_TSF_DONE_FB1) || 790 (status & BIT_DMA_TSF_DONE_FB2)) { 791 imx7_csi_vb2_buf_done(csi); 792 793 if (csi->last_eof) { 794 complete(&csi->last_eof_completion); 795 csi->last_eof = false; 796 } 797 } 798 799 spin_unlock(&csi->irqlock); 800 801 return IRQ_HANDLED; 802 } 803 804 /* ----------------------------------------------------------------------------- 805 * Format Helpers 806 */ 807 808 #define IMX_BUS_FMTS(fmt...) (const u32[]) {fmt, 0} 809 810 /* 811 * List of supported pixel formats for the subdevs. Keep V4L2_PIX_FMT_UYVY and 812 * MEDIA_BUS_FMT_UYVY8_2X8 first to match IMX7_CSI_DEF_PIX_FORMAT and 813 * IMX7_CSI_DEF_MBUS_CODE. 814 * 815 * TODO: Restrict the supported formats list based on the SoC integration. 816 * 817 * The CSI bridge can be configured to sample pixel components from the Rx queue 818 * in single (8bpp) or double (16bpp) component modes. Image format variants 819 * with different sample sizes (ie YUYV_2X8 vs YUYV_1X16) determine the pixel 820 * components sampling size per each clock cycle and their packing mode (see 821 * imx7_csi_configure() for details). 822 * 823 * As the CSI bridge can be interfaced with different IP blocks depending on the 824 * SoC model it is integrated on, the Rx queue sampling size should match the 825 * size of the samples transferred by the transmitting IP block. To avoid 826 * misconfigurations of the capture pipeline, the enumeration of the supported 827 * formats should be restricted to match the pixel source transmitting mode. 828 * 829 * Example: i.MX8MM SoC integrates the CSI bridge with the Samsung CSIS CSI-2 830 * receiver which operates in dual pixel sampling mode. The CSI bridge should 831 * only expose the 1X16 formats variant which instructs it to operate in dual 832 * pixel sampling mode. When the CSI bridge is instead integrated on an i.MX7, 833 * which supports both serial and parallel input, it should expose both 834 * variants. 835 * 836 * This currently only applies to YUYV formats, but other formats might need to 837 * be handled in the same way. 838 */ 839 static const struct imx7_csi_pixfmt pixel_formats[] = { 840 /*** YUV formats start here ***/ 841 { 842 .fourcc = V4L2_PIX_FMT_UYVY, 843 .codes = IMX_BUS_FMTS( 844 MEDIA_BUS_FMT_UYVY8_2X8, 845 MEDIA_BUS_FMT_UYVY8_1X16 846 ), 847 .yuv = true, 848 .bpp = 16, 849 }, { 850 .fourcc = V4L2_PIX_FMT_YUYV, 851 .codes = IMX_BUS_FMTS( 852 MEDIA_BUS_FMT_YUYV8_2X8, 853 MEDIA_BUS_FMT_YUYV8_1X16 854 ), 855 .yuv = true, 856 .bpp = 16, 857 }, 858 /*** raw bayer and grayscale formats start here ***/ 859 { 860 .fourcc = V4L2_PIX_FMT_SBGGR8, 861 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SBGGR8_1X8), 862 .bpp = 8, 863 }, { 864 .fourcc = V4L2_PIX_FMT_SGBRG8, 865 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGBRG8_1X8), 866 .bpp = 8, 867 }, { 868 .fourcc = V4L2_PIX_FMT_SGRBG8, 869 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGRBG8_1X8), 870 .bpp = 8, 871 }, { 872 .fourcc = V4L2_PIX_FMT_SRGGB8, 873 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SRGGB8_1X8), 874 .bpp = 8, 875 }, { 876 .fourcc = V4L2_PIX_FMT_SBGGR10, 877 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SBGGR10_1X10), 878 .bpp = 16, 879 }, { 880 .fourcc = V4L2_PIX_FMT_SGBRG10, 881 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGBRG10_1X10), 882 .bpp = 16, 883 }, { 884 .fourcc = V4L2_PIX_FMT_SGRBG10, 885 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGRBG10_1X10), 886 .bpp = 16, 887 }, { 888 .fourcc = V4L2_PIX_FMT_SRGGB10, 889 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SRGGB10_1X10), 890 .bpp = 16, 891 }, { 892 .fourcc = V4L2_PIX_FMT_SBGGR12, 893 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SBGGR12_1X12), 894 .bpp = 16, 895 }, { 896 .fourcc = V4L2_PIX_FMT_SGBRG12, 897 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGBRG12_1X12), 898 .bpp = 16, 899 }, { 900 .fourcc = V4L2_PIX_FMT_SGRBG12, 901 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGRBG12_1X12), 902 .bpp = 16, 903 }, { 904 .fourcc = V4L2_PIX_FMT_SRGGB12, 905 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SRGGB12_1X12), 906 .bpp = 16, 907 }, { 908 .fourcc = V4L2_PIX_FMT_SBGGR14, 909 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SBGGR14_1X14), 910 .bpp = 16, 911 }, { 912 .fourcc = V4L2_PIX_FMT_SGBRG14, 913 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGBRG14_1X14), 914 .bpp = 16, 915 }, { 916 .fourcc = V4L2_PIX_FMT_SGRBG14, 917 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SGRBG14_1X14), 918 .bpp = 16, 919 }, { 920 .fourcc = V4L2_PIX_FMT_SRGGB14, 921 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_SRGGB14_1X14), 922 .bpp = 16, 923 }, { 924 .fourcc = V4L2_PIX_FMT_GREY, 925 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_Y8_1X8), 926 .bpp = 8, 927 }, { 928 .fourcc = V4L2_PIX_FMT_Y10, 929 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_Y10_1X10), 930 .bpp = 16, 931 }, { 932 .fourcc = V4L2_PIX_FMT_Y12, 933 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_Y12_1X12), 934 .bpp = 16, 935 }, { 936 .fourcc = V4L2_PIX_FMT_Y14, 937 .codes = IMX_BUS_FMTS(MEDIA_BUS_FMT_Y14_1X14), 938 .bpp = 16, 939 }, 940 }; 941 942 /* 943 * Search in the pixel_formats[] array for an entry with the given fourcc 944 * return it. 945 */ 946 static const struct imx7_csi_pixfmt *imx7_csi_find_pixel_format(u32 fourcc) 947 { 948 unsigned int i; 949 950 for (i = 0; i < ARRAY_SIZE(pixel_formats); i++) { 951 const struct imx7_csi_pixfmt *fmt = &pixel_formats[i]; 952 953 if (fmt->fourcc == fourcc) 954 return fmt; 955 } 956 957 return NULL; 958 } 959 960 /* 961 * Search in the pixel_formats[] array for an entry with the given media 962 * bus code and return it. 963 */ 964 static const struct imx7_csi_pixfmt *imx7_csi_find_mbus_format(u32 code) 965 { 966 unsigned int i; 967 968 for (i = 0; i < ARRAY_SIZE(pixel_formats); i++) { 969 const struct imx7_csi_pixfmt *fmt = &pixel_formats[i]; 970 unsigned int j; 971 972 if (!fmt->codes) 973 continue; 974 975 for (j = 0; fmt->codes[j]; j++) { 976 if (code == fmt->codes[j]) 977 return fmt; 978 } 979 } 980 981 return NULL; 982 } 983 984 /* 985 * Enumerate entries in the pixel_formats[] array that match the 986 * requested search criteria. Return the media-bus code that matches 987 * the search criteria at the requested match index. 988 * 989 * @code: The returned media-bus code that matches the search criteria at 990 * the requested match index. 991 * @index: The requested match index. 992 */ 993 static int imx7_csi_enum_mbus_formats(u32 *code, u32 index) 994 { 995 unsigned int i; 996 997 for (i = 0; i < ARRAY_SIZE(pixel_formats); i++) { 998 const struct imx7_csi_pixfmt *fmt = &pixel_formats[i]; 999 unsigned int j; 1000 1001 if (!fmt->codes) 1002 continue; 1003 1004 for (j = 0; fmt->codes[j]; j++) { 1005 if (index == 0) { 1006 *code = fmt->codes[j]; 1007 return 0; 1008 } 1009 1010 index--; 1011 } 1012 } 1013 1014 return -EINVAL; 1015 } 1016 1017 static int imx7_csi_mbus_fmt_to_pix_fmt(struct v4l2_pix_format *pix, 1018 const struct v4l2_mbus_framefmt *mbus, 1019 const struct imx7_csi_pixfmt *cc) 1020 { 1021 u32 width; 1022 u32 stride; 1023 1024 if (!cc) { 1025 cc = imx7_csi_find_mbus_format(mbus->code); 1026 if (!cc) 1027 return -EINVAL; 1028 } 1029 1030 /* Round up width for minimum burst size */ 1031 width = round_up(mbus->width, 8); 1032 1033 /* Round up stride for IDMAC line start address alignment */ 1034 stride = round_up((width * cc->bpp) >> 3, 8); 1035 1036 pix->width = width; 1037 pix->height = mbus->height; 1038 pix->pixelformat = cc->fourcc; 1039 pix->colorspace = mbus->colorspace; 1040 pix->xfer_func = mbus->xfer_func; 1041 pix->ycbcr_enc = mbus->ycbcr_enc; 1042 pix->quantization = mbus->quantization; 1043 pix->field = mbus->field; 1044 pix->bytesperline = stride; 1045 pix->sizeimage = stride * pix->height; 1046 1047 return 0; 1048 } 1049 1050 /* ----------------------------------------------------------------------------- 1051 * Video Capture Device - IOCTLs 1052 */ 1053 1054 static int imx7_csi_video_querycap(struct file *file, void *fh, 1055 struct v4l2_capability *cap) 1056 { 1057 struct imx7_csi *csi = video_drvdata(file); 1058 1059 strscpy(cap->driver, IMX7_CSI_VIDEO_NAME, sizeof(cap->driver)); 1060 strscpy(cap->card, IMX7_CSI_VIDEO_NAME, sizeof(cap->card)); 1061 snprintf(cap->bus_info, sizeof(cap->bus_info), 1062 "platform:%s", dev_name(csi->dev)); 1063 1064 return 0; 1065 } 1066 1067 static int imx7_csi_video_enum_fmt_vid_cap(struct file *file, void *fh, 1068 struct v4l2_fmtdesc *f) 1069 { 1070 unsigned int index = f->index; 1071 unsigned int i; 1072 1073 for (i = 0; i < ARRAY_SIZE(pixel_formats); i++) { 1074 const struct imx7_csi_pixfmt *fmt = &pixel_formats[i]; 1075 1076 /* 1077 * If a media bus code is specified, only consider formats that 1078 * match it. 1079 */ 1080 if (f->mbus_code) { 1081 unsigned int j; 1082 1083 if (!fmt->codes) 1084 continue; 1085 1086 for (j = 0; fmt->codes[j]; j++) { 1087 if (f->mbus_code == fmt->codes[j]) 1088 break; 1089 } 1090 1091 if (!fmt->codes[j]) 1092 continue; 1093 } 1094 1095 if (index == 0) { 1096 f->pixelformat = fmt->fourcc; 1097 return 0; 1098 } 1099 1100 index--; 1101 } 1102 1103 return -EINVAL; 1104 } 1105 1106 static int imx7_csi_video_enum_framesizes(struct file *file, void *fh, 1107 struct v4l2_frmsizeenum *fsize) 1108 { 1109 const struct imx7_csi_pixfmt *cc; 1110 1111 if (fsize->index > 0) 1112 return -EINVAL; 1113 1114 cc = imx7_csi_find_pixel_format(fsize->pixel_format); 1115 if (!cc) 1116 return -EINVAL; 1117 1118 /* 1119 * TODO: The constraints are hardware-specific and may depend on the 1120 * pixel format. This should come from the driver using 1121 * imx_media_capture. 1122 */ 1123 fsize->type = V4L2_FRMSIZE_TYPE_CONTINUOUS; 1124 fsize->stepwise.min_width = 1; 1125 fsize->stepwise.max_width = 65535; 1126 fsize->stepwise.min_height = 1; 1127 fsize->stepwise.max_height = 65535; 1128 fsize->stepwise.step_width = 1; 1129 fsize->stepwise.step_height = 1; 1130 1131 return 0; 1132 } 1133 1134 static int imx7_csi_video_g_fmt_vid_cap(struct file *file, void *fh, 1135 struct v4l2_format *f) 1136 { 1137 struct imx7_csi *csi = video_drvdata(file); 1138 1139 f->fmt.pix = csi->vdev_fmt; 1140 1141 return 0; 1142 } 1143 1144 static const struct imx7_csi_pixfmt * 1145 __imx7_csi_video_try_fmt(struct v4l2_pix_format *pixfmt, 1146 struct v4l2_rect *compose) 1147 { 1148 struct v4l2_mbus_framefmt fmt_src; 1149 const struct imx7_csi_pixfmt *cc; 1150 1151 /* 1152 * Find the pixel format, default to the first supported format if not 1153 * found. 1154 */ 1155 cc = imx7_csi_find_pixel_format(pixfmt->pixelformat); 1156 if (!cc) { 1157 pixfmt->pixelformat = IMX7_CSI_DEF_PIX_FORMAT; 1158 cc = imx7_csi_find_pixel_format(pixfmt->pixelformat); 1159 } 1160 1161 /* Allow IDMAC interweave but enforce field order from source. */ 1162 if (V4L2_FIELD_IS_INTERLACED(pixfmt->field)) { 1163 switch (pixfmt->field) { 1164 case V4L2_FIELD_SEQ_TB: 1165 pixfmt->field = V4L2_FIELD_INTERLACED_TB; 1166 break; 1167 case V4L2_FIELD_SEQ_BT: 1168 pixfmt->field = V4L2_FIELD_INTERLACED_BT; 1169 break; 1170 default: 1171 break; 1172 } 1173 } 1174 1175 v4l2_fill_mbus_format(&fmt_src, pixfmt, 0); 1176 imx7_csi_mbus_fmt_to_pix_fmt(pixfmt, &fmt_src, cc); 1177 1178 if (compose) { 1179 compose->width = fmt_src.width; 1180 compose->height = fmt_src.height; 1181 } 1182 1183 return cc; 1184 } 1185 1186 static int imx7_csi_video_try_fmt_vid_cap(struct file *file, void *fh, 1187 struct v4l2_format *f) 1188 { 1189 __imx7_csi_video_try_fmt(&f->fmt.pix, NULL); 1190 return 0; 1191 } 1192 1193 static int imx7_csi_video_s_fmt_vid_cap(struct file *file, void *fh, 1194 struct v4l2_format *f) 1195 { 1196 struct imx7_csi *csi = video_drvdata(file); 1197 const struct imx7_csi_pixfmt *cc; 1198 1199 if (vb2_is_busy(&csi->q)) { 1200 dev_err(csi->dev, "%s queue busy\n", __func__); 1201 return -EBUSY; 1202 } 1203 1204 cc = __imx7_csi_video_try_fmt(&f->fmt.pix, &csi->vdev_compose); 1205 1206 csi->vdev_cc = cc; 1207 csi->vdev_fmt = f->fmt.pix; 1208 1209 return 0; 1210 } 1211 1212 static int imx7_csi_video_g_selection(struct file *file, void *fh, 1213 struct v4l2_selection *s) 1214 { 1215 struct imx7_csi *csi = video_drvdata(file); 1216 1217 switch (s->target) { 1218 case V4L2_SEL_TGT_COMPOSE: 1219 case V4L2_SEL_TGT_COMPOSE_DEFAULT: 1220 case V4L2_SEL_TGT_COMPOSE_BOUNDS: 1221 /* The compose rectangle is fixed to the source format. */ 1222 s->r = csi->vdev_compose; 1223 break; 1224 case V4L2_SEL_TGT_COMPOSE_PADDED: 1225 /* 1226 * The hardware writes with a configurable but fixed DMA burst 1227 * size. If the source format width is not burst size aligned, 1228 * the written frame contains padding to the right. 1229 */ 1230 s->r.left = 0; 1231 s->r.top = 0; 1232 s->r.width = csi->vdev_fmt.width; 1233 s->r.height = csi->vdev_fmt.height; 1234 break; 1235 default: 1236 return -EINVAL; 1237 } 1238 1239 return 0; 1240 } 1241 1242 static const struct v4l2_ioctl_ops imx7_csi_video_ioctl_ops = { 1243 .vidioc_querycap = imx7_csi_video_querycap, 1244 1245 .vidioc_enum_fmt_vid_cap = imx7_csi_video_enum_fmt_vid_cap, 1246 .vidioc_enum_framesizes = imx7_csi_video_enum_framesizes, 1247 1248 .vidioc_g_fmt_vid_cap = imx7_csi_video_g_fmt_vid_cap, 1249 .vidioc_try_fmt_vid_cap = imx7_csi_video_try_fmt_vid_cap, 1250 .vidioc_s_fmt_vid_cap = imx7_csi_video_s_fmt_vid_cap, 1251 1252 .vidioc_g_selection = imx7_csi_video_g_selection, 1253 1254 .vidioc_reqbufs = vb2_ioctl_reqbufs, 1255 .vidioc_create_bufs = vb2_ioctl_create_bufs, 1256 .vidioc_prepare_buf = vb2_ioctl_prepare_buf, 1257 .vidioc_querybuf = vb2_ioctl_querybuf, 1258 .vidioc_qbuf = vb2_ioctl_qbuf, 1259 .vidioc_dqbuf = vb2_ioctl_dqbuf, 1260 .vidioc_expbuf = vb2_ioctl_expbuf, 1261 .vidioc_streamon = vb2_ioctl_streamon, 1262 .vidioc_streamoff = vb2_ioctl_streamoff, 1263 }; 1264 1265 /* ----------------------------------------------------------------------------- 1266 * Video Capture Device - Queue Operations 1267 */ 1268 1269 static int imx7_csi_video_queue_setup(struct vb2_queue *vq, 1270 unsigned int *nbuffers, 1271 unsigned int *nplanes, 1272 unsigned int sizes[], 1273 struct device *alloc_devs[]) 1274 { 1275 struct imx7_csi *csi = vb2_get_drv_priv(vq); 1276 struct v4l2_pix_format *pix = &csi->vdev_fmt; 1277 unsigned int count = *nbuffers; 1278 1279 if (vq->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) 1280 return -EINVAL; 1281 1282 if (*nplanes) { 1283 if (*nplanes != 1 || sizes[0] < pix->sizeimage) 1284 return -EINVAL; 1285 count += vq->num_buffers; 1286 } 1287 1288 count = min_t(__u32, IMX7_CSI_VIDEO_MEM_LIMIT / pix->sizeimage, count); 1289 1290 if (*nplanes) 1291 *nbuffers = (count < vq->num_buffers) ? 0 : 1292 count - vq->num_buffers; 1293 else 1294 *nbuffers = count; 1295 1296 *nplanes = 1; 1297 sizes[0] = pix->sizeimage; 1298 1299 return 0; 1300 } 1301 1302 static int imx7_csi_video_buf_init(struct vb2_buffer *vb) 1303 { 1304 struct imx7_csi_vb2_buffer *buf = to_imx7_csi_vb2_buffer(vb); 1305 1306 INIT_LIST_HEAD(&buf->list); 1307 1308 return 0; 1309 } 1310 1311 static int imx7_csi_video_buf_prepare(struct vb2_buffer *vb) 1312 { 1313 struct imx7_csi *csi = vb2_get_drv_priv(vb->vb2_queue); 1314 struct v4l2_pix_format *pix = &csi->vdev_fmt; 1315 1316 if (vb2_plane_size(vb, 0) < pix->sizeimage) { 1317 dev_err(csi->dev, 1318 "data will not fit into plane (%lu < %lu)\n", 1319 vb2_plane_size(vb, 0), (long)pix->sizeimage); 1320 return -EINVAL; 1321 } 1322 1323 vb2_set_plane_payload(vb, 0, pix->sizeimage); 1324 1325 return 0; 1326 } 1327 1328 static bool imx7_csi_fast_track_buffer(struct imx7_csi *csi, 1329 struct imx7_csi_vb2_buffer *buf) 1330 { 1331 unsigned long flags; 1332 dma_addr_t dma_addr; 1333 int buf_num; 1334 u32 isr; 1335 1336 if (!csi->is_streaming) 1337 return false; 1338 1339 dma_addr = vb2_dma_contig_plane_dma_addr(&buf->vbuf.vb2_buf, 0); 1340 1341 /* 1342 * buf_num holds the framebuffer ID of the most recently (*not* the 1343 * next anticipated) triggered interrupt. Without loss of generality, 1344 * if buf_num is 0, the hardware is capturing to FB2. If FB1 has been 1345 * programmed with a dummy buffer (as indicated by active_vb2_buf[0] 1346 * being NULL), then we can fast-track the new buffer by programming 1347 * its address in FB1 before the hardware completes FB2, instead of 1348 * adding it to the buffer queue and incurring a delay of one 1349 * additional frame. 1350 * 1351 * The irqlock prevents races with the interrupt handler that updates 1352 * buf_num when it programs the next buffer, but we can still race with 1353 * the hardware if we program the buffer in FB1 just after the hardware 1354 * completes FB2 and switches to FB1 and before buf_num can be updated 1355 * by the interrupt handler for FB2. The fast-tracked buffer would 1356 * then be ignored by the hardware while the driver would think it has 1357 * successfully been processed. 1358 * 1359 * To avoid this problem, if we can't avoid the race, we can detect 1360 * that we have lost it by checking, after programming the buffer in 1361 * FB1, if the interrupt flag indicating completion of FB2 has been 1362 * raised. If that is not the case, fast-tracking succeeded, and we can 1363 * update active_vb2_buf[0]. Otherwise, we may or may not have lost the 1364 * race (as the interrupt flag may have been raised just after 1365 * programming FB1 and before we read the interrupt status register), 1366 * and we need to assume the worst case of a race loss and queue the 1367 * buffer through the slow path. 1368 */ 1369 1370 spin_lock_irqsave(&csi->irqlock, flags); 1371 1372 buf_num = csi->buf_num; 1373 if (csi->active_vb2_buf[buf_num]) { 1374 spin_unlock_irqrestore(&csi->irqlock, flags); 1375 return false; 1376 } 1377 1378 imx7_csi_update_buf(csi, dma_addr, buf_num); 1379 1380 isr = imx7_csi_reg_read(csi, CSI_CSISR); 1381 if (isr & (buf_num ? BIT_DMA_TSF_DONE_FB1 : BIT_DMA_TSF_DONE_FB2)) { 1382 /* 1383 * The interrupt for the /other/ FB just came (the isr hasn't 1384 * run yet though, because we have the lock here); we can't be 1385 * sure we've programmed buf_num FB in time, so queue the buffer 1386 * to the buffer queue normally. No need to undo writing the FB 1387 * register, since we won't return it as active_vb2_buf is NULL, 1388 * so it's okay to potentially write it to both FB1 and FB2; 1389 * only the one where it was queued normally will be returned. 1390 */ 1391 spin_unlock_irqrestore(&csi->irqlock, flags); 1392 return false; 1393 } 1394 1395 csi->active_vb2_buf[buf_num] = buf; 1396 1397 spin_unlock_irqrestore(&csi->irqlock, flags); 1398 return true; 1399 } 1400 1401 static void imx7_csi_video_buf_queue(struct vb2_buffer *vb) 1402 { 1403 struct imx7_csi *csi = vb2_get_drv_priv(vb->vb2_queue); 1404 struct imx7_csi_vb2_buffer *buf = to_imx7_csi_vb2_buffer(vb); 1405 unsigned long flags; 1406 1407 if (imx7_csi_fast_track_buffer(csi, buf)) 1408 return; 1409 1410 spin_lock_irqsave(&csi->q_lock, flags); 1411 1412 list_add_tail(&buf->list, &csi->ready_q); 1413 1414 spin_unlock_irqrestore(&csi->q_lock, flags); 1415 } 1416 1417 static int imx7_csi_video_validate_fmt(struct imx7_csi *csi) 1418 { 1419 struct v4l2_subdev_format fmt_src = { 1420 .pad = IMX7_CSI_PAD_SRC, 1421 .which = V4L2_SUBDEV_FORMAT_ACTIVE, 1422 }; 1423 const struct imx7_csi_pixfmt *cc; 1424 int ret; 1425 1426 /* Retrieve the media bus format on the source subdev. */ 1427 ret = v4l2_subdev_call_state_active(&csi->sd, pad, get_fmt, &fmt_src); 1428 if (ret) 1429 return ret; 1430 1431 /* 1432 * Verify that the media bus size matches the size set on the video 1433 * node. It is sufficient to check the compose rectangle size without 1434 * checking the rounded size from pix_fmt, as the rounded size is 1435 * derived directly from the compose rectangle size, and will thus 1436 * always match if the compose rectangle matches. 1437 */ 1438 if (csi->vdev_compose.width != fmt_src.format.width || 1439 csi->vdev_compose.height != fmt_src.format.height) 1440 return -EPIPE; 1441 1442 /* 1443 * Verify that the media bus code is compatible with the pixel format 1444 * set on the video node. 1445 */ 1446 cc = imx7_csi_find_mbus_format(fmt_src.format.code); 1447 if (!cc || csi->vdev_cc->yuv != cc->yuv) 1448 return -EPIPE; 1449 1450 return 0; 1451 } 1452 1453 static int imx7_csi_video_start_streaming(struct vb2_queue *vq, 1454 unsigned int count) 1455 { 1456 struct imx7_csi *csi = vb2_get_drv_priv(vq); 1457 struct imx7_csi_vb2_buffer *buf, *tmp; 1458 unsigned long flags; 1459 int ret; 1460 1461 ret = imx7_csi_video_validate_fmt(csi); 1462 if (ret) { 1463 dev_err(csi->dev, "capture format not valid\n"); 1464 goto err_buffers; 1465 } 1466 1467 mutex_lock(&csi->mdev.graph_mutex); 1468 1469 ret = __video_device_pipeline_start(csi->vdev, &csi->pipe); 1470 if (ret) 1471 goto err_unlock; 1472 1473 ret = v4l2_subdev_call(&csi->sd, video, s_stream, 1); 1474 if (ret) 1475 goto err_stop; 1476 1477 mutex_unlock(&csi->mdev.graph_mutex); 1478 1479 return 0; 1480 1481 err_stop: 1482 __video_device_pipeline_stop(csi->vdev); 1483 err_unlock: 1484 mutex_unlock(&csi->mdev.graph_mutex); 1485 dev_err(csi->dev, "pipeline start failed with %d\n", ret); 1486 err_buffers: 1487 spin_lock_irqsave(&csi->q_lock, flags); 1488 list_for_each_entry_safe(buf, tmp, &csi->ready_q, list) { 1489 list_del(&buf->list); 1490 vb2_buffer_done(&buf->vbuf.vb2_buf, VB2_BUF_STATE_QUEUED); 1491 } 1492 spin_unlock_irqrestore(&csi->q_lock, flags); 1493 return ret; 1494 } 1495 1496 static void imx7_csi_video_stop_streaming(struct vb2_queue *vq) 1497 { 1498 struct imx7_csi *csi = vb2_get_drv_priv(vq); 1499 struct imx7_csi_vb2_buffer *frame; 1500 struct imx7_csi_vb2_buffer *tmp; 1501 unsigned long flags; 1502 1503 mutex_lock(&csi->mdev.graph_mutex); 1504 v4l2_subdev_call(&csi->sd, video, s_stream, 0); 1505 __video_device_pipeline_stop(csi->vdev); 1506 mutex_unlock(&csi->mdev.graph_mutex); 1507 1508 /* release all active buffers */ 1509 spin_lock_irqsave(&csi->q_lock, flags); 1510 list_for_each_entry_safe(frame, tmp, &csi->ready_q, list) { 1511 list_del(&frame->list); 1512 vb2_buffer_done(&frame->vbuf.vb2_buf, VB2_BUF_STATE_ERROR); 1513 } 1514 spin_unlock_irqrestore(&csi->q_lock, flags); 1515 } 1516 1517 static const struct vb2_ops imx7_csi_video_qops = { 1518 .queue_setup = imx7_csi_video_queue_setup, 1519 .buf_init = imx7_csi_video_buf_init, 1520 .buf_prepare = imx7_csi_video_buf_prepare, 1521 .buf_queue = imx7_csi_video_buf_queue, 1522 .wait_prepare = vb2_ops_wait_prepare, 1523 .wait_finish = vb2_ops_wait_finish, 1524 .start_streaming = imx7_csi_video_start_streaming, 1525 .stop_streaming = imx7_csi_video_stop_streaming, 1526 }; 1527 1528 /* ----------------------------------------------------------------------------- 1529 * Video Capture Device - File Operations 1530 */ 1531 1532 static int imx7_csi_video_open(struct file *file) 1533 { 1534 struct imx7_csi *csi = video_drvdata(file); 1535 int ret; 1536 1537 if (mutex_lock_interruptible(&csi->vdev_mutex)) 1538 return -ERESTARTSYS; 1539 1540 ret = v4l2_fh_open(file); 1541 if (ret) { 1542 dev_err(csi->dev, "v4l2_fh_open failed\n"); 1543 goto out; 1544 } 1545 1546 ret = v4l2_pipeline_pm_get(&csi->vdev->entity); 1547 if (ret) 1548 v4l2_fh_release(file); 1549 1550 out: 1551 mutex_unlock(&csi->vdev_mutex); 1552 return ret; 1553 } 1554 1555 static int imx7_csi_video_release(struct file *file) 1556 { 1557 struct imx7_csi *csi = video_drvdata(file); 1558 struct vb2_queue *vq = &csi->q; 1559 1560 mutex_lock(&csi->vdev_mutex); 1561 1562 if (file->private_data == vq->owner) { 1563 vb2_queue_release(vq); 1564 vq->owner = NULL; 1565 } 1566 1567 v4l2_pipeline_pm_put(&csi->vdev->entity); 1568 1569 v4l2_fh_release(file); 1570 mutex_unlock(&csi->vdev_mutex); 1571 return 0; 1572 } 1573 1574 static const struct v4l2_file_operations imx7_csi_video_fops = { 1575 .owner = THIS_MODULE, 1576 .open = imx7_csi_video_open, 1577 .release = imx7_csi_video_release, 1578 .poll = vb2_fop_poll, 1579 .unlocked_ioctl = video_ioctl2, 1580 .mmap = vb2_fop_mmap, 1581 }; 1582 1583 /* ----------------------------------------------------------------------------- 1584 * Video Capture Device - Init & Cleanup 1585 */ 1586 1587 static struct imx7_csi_vb2_buffer *imx7_csi_video_next_buf(struct imx7_csi *csi) 1588 { 1589 struct imx7_csi_vb2_buffer *buf = NULL; 1590 unsigned long flags; 1591 1592 spin_lock_irqsave(&csi->q_lock, flags); 1593 1594 /* get next queued buffer */ 1595 if (!list_empty(&csi->ready_q)) { 1596 buf = list_entry(csi->ready_q.next, struct imx7_csi_vb2_buffer, 1597 list); 1598 list_del(&buf->list); 1599 } 1600 1601 spin_unlock_irqrestore(&csi->q_lock, flags); 1602 1603 return buf; 1604 } 1605 1606 static int imx7_csi_video_init_format(struct imx7_csi *csi) 1607 { 1608 struct v4l2_mbus_framefmt format = { }; 1609 1610 format.code = IMX7_CSI_DEF_MBUS_CODE; 1611 format.width = IMX7_CSI_DEF_PIX_WIDTH; 1612 format.height = IMX7_CSI_DEF_PIX_HEIGHT; 1613 1614 imx7_csi_mbus_fmt_to_pix_fmt(&csi->vdev_fmt, &format, NULL); 1615 csi->vdev_compose.width = format.width; 1616 csi->vdev_compose.height = format.height; 1617 1618 csi->vdev_cc = imx7_csi_find_pixel_format(csi->vdev_fmt.pixelformat); 1619 1620 return 0; 1621 } 1622 1623 static int imx7_csi_video_register(struct imx7_csi *csi) 1624 { 1625 struct v4l2_subdev *sd = &csi->sd; 1626 struct v4l2_device *v4l2_dev = sd->v4l2_dev; 1627 struct video_device *vdev = csi->vdev; 1628 int ret; 1629 1630 vdev->v4l2_dev = v4l2_dev; 1631 1632 /* Initialize the default format and compose rectangle. */ 1633 ret = imx7_csi_video_init_format(csi); 1634 if (ret < 0) 1635 return ret; 1636 1637 /* Register the video device. */ 1638 ret = video_register_device(vdev, VFL_TYPE_VIDEO, -1); 1639 if (ret) { 1640 dev_err(csi->dev, "Failed to register video device\n"); 1641 return ret; 1642 } 1643 1644 dev_info(csi->dev, "Registered %s as /dev/%s\n", vdev->name, 1645 video_device_node_name(vdev)); 1646 1647 /* Create the link from the CSI subdev to the video device. */ 1648 ret = media_create_pad_link(&sd->entity, IMX7_CSI_PAD_SRC, 1649 &vdev->entity, 0, MEDIA_LNK_FL_IMMUTABLE | 1650 MEDIA_LNK_FL_ENABLED); 1651 if (ret) { 1652 dev_err(csi->dev, "failed to create link to device node\n"); 1653 video_unregister_device(vdev); 1654 return ret; 1655 } 1656 1657 return 0; 1658 } 1659 1660 static void imx7_csi_video_unregister(struct imx7_csi *csi) 1661 { 1662 media_entity_cleanup(&csi->vdev->entity); 1663 video_unregister_device(csi->vdev); 1664 } 1665 1666 static int imx7_csi_video_init(struct imx7_csi *csi) 1667 { 1668 struct video_device *vdev; 1669 struct vb2_queue *vq; 1670 int ret; 1671 1672 mutex_init(&csi->vdev_mutex); 1673 INIT_LIST_HEAD(&csi->ready_q); 1674 spin_lock_init(&csi->q_lock); 1675 1676 /* Allocate and initialize the video device. */ 1677 vdev = video_device_alloc(); 1678 if (!vdev) 1679 return -ENOMEM; 1680 1681 vdev->fops = &imx7_csi_video_fops; 1682 vdev->ioctl_ops = &imx7_csi_video_ioctl_ops; 1683 vdev->minor = -1; 1684 vdev->release = video_device_release; 1685 vdev->vfl_dir = VFL_DIR_RX; 1686 vdev->tvnorms = V4L2_STD_NTSC | V4L2_STD_PAL | V4L2_STD_SECAM; 1687 vdev->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING 1688 | V4L2_CAP_IO_MC; 1689 vdev->lock = &csi->vdev_mutex; 1690 vdev->queue = &csi->q; 1691 1692 snprintf(vdev->name, sizeof(vdev->name), "%s capture", csi->sd.name); 1693 1694 video_set_drvdata(vdev, csi); 1695 csi->vdev = vdev; 1696 1697 /* Initialize the video device pad. */ 1698 csi->vdev_pad.flags = MEDIA_PAD_FL_SINK; 1699 ret = media_entity_pads_init(&vdev->entity, 1, &csi->vdev_pad); 1700 if (ret) { 1701 video_device_release(vdev); 1702 return ret; 1703 } 1704 1705 /* Initialize the vb2 queue. */ 1706 vq = &csi->q; 1707 vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; 1708 vq->io_modes = VB2_MMAP | VB2_DMABUF; 1709 vq->drv_priv = csi; 1710 vq->buf_struct_size = sizeof(struct imx7_csi_vb2_buffer); 1711 vq->ops = &imx7_csi_video_qops; 1712 vq->mem_ops = &vb2_dma_contig_memops; 1713 vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC; 1714 vq->lock = &csi->vdev_mutex; 1715 vq->min_buffers_needed = 2; 1716 vq->dev = csi->dev; 1717 1718 ret = vb2_queue_init(vq); 1719 if (ret) { 1720 dev_err(csi->dev, "vb2_queue_init failed\n"); 1721 video_device_release(vdev); 1722 return ret; 1723 } 1724 1725 return 0; 1726 } 1727 1728 /* ----------------------------------------------------------------------------- 1729 * V4L2 Subdev Operations 1730 */ 1731 1732 static int imx7_csi_s_stream(struct v4l2_subdev *sd, int enable) 1733 { 1734 struct imx7_csi *csi = v4l2_get_subdevdata(sd); 1735 struct v4l2_subdev_state *sd_state; 1736 int ret = 0; 1737 1738 sd_state = v4l2_subdev_lock_and_get_active_state(sd); 1739 1740 if (enable) { 1741 ret = imx7_csi_init(csi, sd_state); 1742 if (ret < 0) 1743 goto out_unlock; 1744 1745 ret = v4l2_subdev_call(csi->src_sd, video, s_stream, 1); 1746 if (ret < 0) { 1747 imx7_csi_deinit(csi, VB2_BUF_STATE_QUEUED); 1748 goto out_unlock; 1749 } 1750 1751 imx7_csi_enable(csi); 1752 } else { 1753 imx7_csi_disable(csi); 1754 1755 v4l2_subdev_call(csi->src_sd, video, s_stream, 0); 1756 1757 imx7_csi_deinit(csi, VB2_BUF_STATE_ERROR); 1758 } 1759 1760 csi->is_streaming = !!enable; 1761 1762 out_unlock: 1763 v4l2_subdev_unlock_state(sd_state); 1764 1765 return ret; 1766 } 1767 1768 static int imx7_csi_init_cfg(struct v4l2_subdev *sd, 1769 struct v4l2_subdev_state *sd_state) 1770 { 1771 const struct imx7_csi_pixfmt *cc; 1772 int i; 1773 1774 cc = imx7_csi_find_mbus_format(IMX7_CSI_DEF_MBUS_CODE); 1775 1776 for (i = 0; i < IMX7_CSI_PADS_NUM; i++) { 1777 struct v4l2_mbus_framefmt *mf = 1778 v4l2_subdev_get_pad_format(sd, sd_state, i); 1779 1780 mf->code = IMX7_CSI_DEF_MBUS_CODE; 1781 mf->width = IMX7_CSI_DEF_PIX_WIDTH; 1782 mf->height = IMX7_CSI_DEF_PIX_HEIGHT; 1783 mf->field = V4L2_FIELD_NONE; 1784 1785 mf->colorspace = V4L2_COLORSPACE_SRGB; 1786 mf->xfer_func = V4L2_MAP_XFER_FUNC_DEFAULT(mf->colorspace); 1787 mf->ycbcr_enc = V4L2_MAP_YCBCR_ENC_DEFAULT(mf->colorspace); 1788 mf->quantization = V4L2_MAP_QUANTIZATION_DEFAULT(!cc->yuv, 1789 mf->colorspace, mf->ycbcr_enc); 1790 } 1791 1792 return 0; 1793 } 1794 1795 static int imx7_csi_enum_mbus_code(struct v4l2_subdev *sd, 1796 struct v4l2_subdev_state *sd_state, 1797 struct v4l2_subdev_mbus_code_enum *code) 1798 { 1799 struct v4l2_mbus_framefmt *in_fmt; 1800 int ret = 0; 1801 1802 in_fmt = v4l2_subdev_get_pad_format(sd, sd_state, IMX7_CSI_PAD_SINK); 1803 1804 switch (code->pad) { 1805 case IMX7_CSI_PAD_SINK: 1806 ret = imx7_csi_enum_mbus_formats(&code->code, code->index); 1807 break; 1808 1809 case IMX7_CSI_PAD_SRC: 1810 if (code->index != 0) { 1811 ret = -EINVAL; 1812 break; 1813 } 1814 1815 code->code = in_fmt->code; 1816 break; 1817 1818 default: 1819 ret = -EINVAL; 1820 break; 1821 } 1822 1823 return ret; 1824 } 1825 1826 /* 1827 * Default the colorspace in tryfmt to SRGB if set to an unsupported 1828 * colorspace or not initialized. Then set the remaining colorimetry 1829 * parameters based on the colorspace if they are uninitialized. 1830 * 1831 * tryfmt->code must be set on entry. 1832 */ 1833 static void imx7_csi_try_colorimetry(struct v4l2_mbus_framefmt *tryfmt) 1834 { 1835 const struct imx7_csi_pixfmt *cc; 1836 bool is_rgb = false; 1837 1838 cc = imx7_csi_find_mbus_format(tryfmt->code); 1839 if (cc && !cc->yuv) 1840 is_rgb = true; 1841 1842 switch (tryfmt->colorspace) { 1843 case V4L2_COLORSPACE_SMPTE170M: 1844 case V4L2_COLORSPACE_REC709: 1845 case V4L2_COLORSPACE_JPEG: 1846 case V4L2_COLORSPACE_SRGB: 1847 case V4L2_COLORSPACE_BT2020: 1848 case V4L2_COLORSPACE_OPRGB: 1849 case V4L2_COLORSPACE_DCI_P3: 1850 case V4L2_COLORSPACE_RAW: 1851 break; 1852 default: 1853 tryfmt->colorspace = V4L2_COLORSPACE_SRGB; 1854 break; 1855 } 1856 1857 if (tryfmt->xfer_func == V4L2_XFER_FUNC_DEFAULT) 1858 tryfmt->xfer_func = 1859 V4L2_MAP_XFER_FUNC_DEFAULT(tryfmt->colorspace); 1860 1861 if (tryfmt->ycbcr_enc == V4L2_YCBCR_ENC_DEFAULT) 1862 tryfmt->ycbcr_enc = 1863 V4L2_MAP_YCBCR_ENC_DEFAULT(tryfmt->colorspace); 1864 1865 if (tryfmt->quantization == V4L2_QUANTIZATION_DEFAULT) 1866 tryfmt->quantization = 1867 V4L2_MAP_QUANTIZATION_DEFAULT(is_rgb, 1868 tryfmt->colorspace, 1869 tryfmt->ycbcr_enc); 1870 } 1871 1872 static void imx7_csi_try_fmt(struct v4l2_subdev *sd, 1873 struct v4l2_subdev_state *sd_state, 1874 struct v4l2_subdev_format *sdformat, 1875 const struct imx7_csi_pixfmt **cc) 1876 { 1877 const struct imx7_csi_pixfmt *in_cc; 1878 struct v4l2_mbus_framefmt *in_fmt; 1879 u32 code; 1880 1881 in_fmt = v4l2_subdev_get_pad_format(sd, sd_state, IMX7_CSI_PAD_SINK); 1882 1883 switch (sdformat->pad) { 1884 case IMX7_CSI_PAD_SRC: 1885 in_cc = imx7_csi_find_mbus_format(in_fmt->code); 1886 1887 sdformat->format.width = in_fmt->width; 1888 sdformat->format.height = in_fmt->height; 1889 sdformat->format.code = in_fmt->code; 1890 sdformat->format.field = in_fmt->field; 1891 *cc = in_cc; 1892 1893 sdformat->format.colorspace = in_fmt->colorspace; 1894 sdformat->format.xfer_func = in_fmt->xfer_func; 1895 sdformat->format.quantization = in_fmt->quantization; 1896 sdformat->format.ycbcr_enc = in_fmt->ycbcr_enc; 1897 break; 1898 1899 case IMX7_CSI_PAD_SINK: 1900 *cc = imx7_csi_find_mbus_format(sdformat->format.code); 1901 if (!*cc) { 1902 code = IMX7_CSI_DEF_MBUS_CODE; 1903 *cc = imx7_csi_find_mbus_format(code); 1904 sdformat->format.code = code; 1905 } 1906 1907 if (sdformat->format.field != V4L2_FIELD_INTERLACED) 1908 sdformat->format.field = V4L2_FIELD_NONE; 1909 break; 1910 } 1911 1912 imx7_csi_try_colorimetry(&sdformat->format); 1913 } 1914 1915 static int imx7_csi_set_fmt(struct v4l2_subdev *sd, 1916 struct v4l2_subdev_state *sd_state, 1917 struct v4l2_subdev_format *sdformat) 1918 { 1919 struct imx7_csi *csi = v4l2_get_subdevdata(sd); 1920 const struct imx7_csi_pixfmt *outcc; 1921 struct v4l2_mbus_framefmt *outfmt; 1922 const struct imx7_csi_pixfmt *cc; 1923 struct v4l2_mbus_framefmt *fmt; 1924 struct v4l2_subdev_format format; 1925 1926 if (csi->is_streaming) 1927 return -EBUSY; 1928 1929 imx7_csi_try_fmt(sd, sd_state, sdformat, &cc); 1930 1931 fmt = v4l2_subdev_get_pad_format(sd, sd_state, sdformat->pad); 1932 1933 *fmt = sdformat->format; 1934 1935 if (sdformat->pad == IMX7_CSI_PAD_SINK) { 1936 /* propagate format to source pads */ 1937 format.pad = IMX7_CSI_PAD_SRC; 1938 format.which = sdformat->which; 1939 format.format = sdformat->format; 1940 imx7_csi_try_fmt(sd, sd_state, &format, &outcc); 1941 1942 outfmt = v4l2_subdev_get_pad_format(sd, sd_state, 1943 IMX7_CSI_PAD_SRC); 1944 *outfmt = format.format; 1945 } 1946 1947 return 0; 1948 } 1949 1950 static int imx7_csi_pad_link_validate(struct v4l2_subdev *sd, 1951 struct media_link *link, 1952 struct v4l2_subdev_format *source_fmt, 1953 struct v4l2_subdev_format *sink_fmt) 1954 { 1955 struct imx7_csi *csi = v4l2_get_subdevdata(sd); 1956 struct media_pad *pad = NULL; 1957 unsigned int i; 1958 int ret; 1959 1960 /* 1961 * Validate the source link, and record whether the source uses the 1962 * parallel input or the CSI-2 receiver. 1963 */ 1964 ret = v4l2_subdev_link_validate_default(sd, link, source_fmt, sink_fmt); 1965 if (ret) 1966 return ret; 1967 1968 switch (csi->src_sd->entity.function) { 1969 case MEDIA_ENT_F_VID_IF_BRIDGE: 1970 /* The input is the CSI-2 receiver. */ 1971 csi->is_csi2 = true; 1972 break; 1973 1974 case MEDIA_ENT_F_VID_MUX: 1975 /* The input is the mux, check its input. */ 1976 for (i = 0; i < csi->src_sd->entity.num_pads; i++) { 1977 struct media_pad *spad = &csi->src_sd->entity.pads[i]; 1978 1979 if (!(spad->flags & MEDIA_PAD_FL_SINK)) 1980 continue; 1981 1982 pad = media_pad_remote_pad_first(spad); 1983 if (pad) 1984 break; 1985 } 1986 1987 if (!pad) 1988 return -ENODEV; 1989 1990 csi->is_csi2 = pad->entity->function == MEDIA_ENT_F_VID_IF_BRIDGE; 1991 break; 1992 1993 default: 1994 /* 1995 * The input is an external entity, it must use the parallel 1996 * bus. 1997 */ 1998 csi->is_csi2 = false; 1999 break; 2000 } 2001 2002 return 0; 2003 } 2004 2005 static int imx7_csi_registered(struct v4l2_subdev *sd) 2006 { 2007 struct imx7_csi *csi = v4l2_get_subdevdata(sd); 2008 int ret; 2009 2010 ret = imx7_csi_video_init(csi); 2011 if (ret) 2012 return ret; 2013 2014 ret = imx7_csi_video_register(csi); 2015 if (ret) 2016 return ret; 2017 2018 ret = v4l2_device_register_subdev_nodes(&csi->v4l2_dev); 2019 if (ret) 2020 goto err_unreg; 2021 2022 ret = media_device_register(&csi->mdev); 2023 if (ret) 2024 goto err_unreg; 2025 2026 return 0; 2027 2028 err_unreg: 2029 imx7_csi_video_unregister(csi); 2030 return ret; 2031 } 2032 2033 static void imx7_csi_unregistered(struct v4l2_subdev *sd) 2034 { 2035 struct imx7_csi *csi = v4l2_get_subdevdata(sd); 2036 2037 imx7_csi_video_unregister(csi); 2038 } 2039 2040 static const struct v4l2_subdev_video_ops imx7_csi_video_ops = { 2041 .s_stream = imx7_csi_s_stream, 2042 }; 2043 2044 static const struct v4l2_subdev_pad_ops imx7_csi_pad_ops = { 2045 .init_cfg = imx7_csi_init_cfg, 2046 .enum_mbus_code = imx7_csi_enum_mbus_code, 2047 .get_fmt = v4l2_subdev_get_fmt, 2048 .set_fmt = imx7_csi_set_fmt, 2049 .link_validate = imx7_csi_pad_link_validate, 2050 }; 2051 2052 static const struct v4l2_subdev_ops imx7_csi_subdev_ops = { 2053 .video = &imx7_csi_video_ops, 2054 .pad = &imx7_csi_pad_ops, 2055 }; 2056 2057 static const struct v4l2_subdev_internal_ops imx7_csi_internal_ops = { 2058 .registered = imx7_csi_registered, 2059 .unregistered = imx7_csi_unregistered, 2060 }; 2061 2062 /* ----------------------------------------------------------------------------- 2063 * Media Entity Operations 2064 */ 2065 2066 static const struct media_entity_operations imx7_csi_entity_ops = { 2067 .link_validate = v4l2_subdev_link_validate, 2068 .get_fwnode_pad = v4l2_subdev_get_fwnode_pad_1_to_1, 2069 }; 2070 2071 /* ----------------------------------------------------------------------------- 2072 * Probe & Remove 2073 */ 2074 2075 static int imx7_csi_notify_bound(struct v4l2_async_notifier *notifier, 2076 struct v4l2_subdev *sd, 2077 struct v4l2_async_subdev *asd) 2078 { 2079 struct imx7_csi *csi = imx7_csi_notifier_to_dev(notifier); 2080 struct media_pad *sink = &csi->sd.entity.pads[IMX7_CSI_PAD_SINK]; 2081 2082 csi->src_sd = sd; 2083 2084 return v4l2_create_fwnode_links_to_pad(sd, sink, MEDIA_LNK_FL_ENABLED | 2085 MEDIA_LNK_FL_IMMUTABLE); 2086 } 2087 2088 static int imx7_csi_notify_complete(struct v4l2_async_notifier *notifier) 2089 { 2090 struct imx7_csi *csi = imx7_csi_notifier_to_dev(notifier); 2091 2092 return v4l2_device_register_subdev_nodes(&csi->v4l2_dev); 2093 } 2094 2095 static const struct v4l2_async_notifier_operations imx7_csi_notify_ops = { 2096 .bound = imx7_csi_notify_bound, 2097 .complete = imx7_csi_notify_complete, 2098 }; 2099 2100 static int imx7_csi_async_register(struct imx7_csi *csi) 2101 { 2102 struct v4l2_async_subdev *asd; 2103 struct fwnode_handle *ep; 2104 int ret; 2105 2106 v4l2_async_nf_init(&csi->notifier); 2107 2108 ep = fwnode_graph_get_endpoint_by_id(dev_fwnode(csi->dev), 0, 0, 2109 FWNODE_GRAPH_ENDPOINT_NEXT); 2110 if (ep) { 2111 asd = v4l2_async_nf_add_fwnode_remote(&csi->notifier, ep, 2112 struct v4l2_async_subdev); 2113 2114 fwnode_handle_put(ep); 2115 2116 if (IS_ERR(asd)) { 2117 ret = PTR_ERR(asd); 2118 /* OK if asd already exists */ 2119 if (ret != -EEXIST) 2120 goto error; 2121 } 2122 } 2123 2124 csi->notifier.ops = &imx7_csi_notify_ops; 2125 2126 ret = v4l2_async_nf_register(&csi->v4l2_dev, &csi->notifier); 2127 if (ret) 2128 goto error; 2129 2130 return 0; 2131 2132 error: 2133 v4l2_async_nf_cleanup(&csi->notifier); 2134 return ret; 2135 } 2136 2137 static void imx7_csi_media_cleanup(struct imx7_csi *csi) 2138 { 2139 v4l2_device_unregister(&csi->v4l2_dev); 2140 media_device_unregister(&csi->mdev); 2141 v4l2_subdev_cleanup(&csi->sd); 2142 media_device_cleanup(&csi->mdev); 2143 } 2144 2145 static const struct media_device_ops imx7_csi_media_ops = { 2146 .link_notify = v4l2_pipeline_link_notify, 2147 }; 2148 2149 static int imx7_csi_media_dev_init(struct imx7_csi *csi) 2150 { 2151 int ret; 2152 2153 strscpy(csi->mdev.model, "imx-media", sizeof(csi->mdev.model)); 2154 csi->mdev.ops = &imx7_csi_media_ops; 2155 csi->mdev.dev = csi->dev; 2156 2157 csi->v4l2_dev.mdev = &csi->mdev; 2158 strscpy(csi->v4l2_dev.name, "imx-media", 2159 sizeof(csi->v4l2_dev.name)); 2160 snprintf(csi->mdev.bus_info, sizeof(csi->mdev.bus_info), 2161 "platform:%s", dev_name(csi->mdev.dev)); 2162 2163 media_device_init(&csi->mdev); 2164 2165 ret = v4l2_device_register(csi->dev, &csi->v4l2_dev); 2166 if (ret < 0) { 2167 v4l2_err(&csi->v4l2_dev, 2168 "Failed to register v4l2_device: %d\n", ret); 2169 goto cleanup; 2170 } 2171 2172 return 0; 2173 2174 cleanup: 2175 media_device_cleanup(&csi->mdev); 2176 2177 return ret; 2178 } 2179 2180 static int imx7_csi_media_init(struct imx7_csi *csi) 2181 { 2182 unsigned int i; 2183 int ret; 2184 2185 /* add media device */ 2186 ret = imx7_csi_media_dev_init(csi); 2187 if (ret) 2188 return ret; 2189 2190 v4l2_subdev_init(&csi->sd, &imx7_csi_subdev_ops); 2191 v4l2_set_subdevdata(&csi->sd, csi); 2192 csi->sd.internal_ops = &imx7_csi_internal_ops; 2193 csi->sd.entity.ops = &imx7_csi_entity_ops; 2194 csi->sd.entity.function = MEDIA_ENT_F_VID_IF_BRIDGE; 2195 csi->sd.dev = csi->dev; 2196 csi->sd.owner = THIS_MODULE; 2197 csi->sd.flags = V4L2_SUBDEV_FL_HAS_DEVNODE; 2198 snprintf(csi->sd.name, sizeof(csi->sd.name), "csi"); 2199 2200 for (i = 0; i < IMX7_CSI_PADS_NUM; i++) 2201 csi->pad[i].flags = (i == IMX7_CSI_PAD_SINK) ? 2202 MEDIA_PAD_FL_SINK : MEDIA_PAD_FL_SOURCE; 2203 2204 ret = media_entity_pads_init(&csi->sd.entity, IMX7_CSI_PADS_NUM, 2205 csi->pad); 2206 if (ret) 2207 goto error; 2208 2209 ret = v4l2_subdev_init_finalize(&csi->sd); 2210 if (ret) 2211 goto error; 2212 2213 ret = v4l2_device_register_subdev(&csi->v4l2_dev, &csi->sd); 2214 if (ret) 2215 goto error; 2216 2217 return 0; 2218 2219 error: 2220 imx7_csi_media_cleanup(csi); 2221 return ret; 2222 } 2223 2224 static int imx7_csi_probe(struct platform_device *pdev) 2225 { 2226 struct device *dev = &pdev->dev; 2227 struct imx7_csi *csi; 2228 int ret; 2229 2230 csi = devm_kzalloc(&pdev->dev, sizeof(*csi), GFP_KERNEL); 2231 if (!csi) 2232 return -ENOMEM; 2233 2234 csi->dev = dev; 2235 platform_set_drvdata(pdev, csi); 2236 2237 spin_lock_init(&csi->irqlock); 2238 2239 /* Acquire resources and install interrupt handler. */ 2240 csi->mclk = devm_clk_get(&pdev->dev, "mclk"); 2241 if (IS_ERR(csi->mclk)) { 2242 ret = PTR_ERR(csi->mclk); 2243 dev_err(dev, "Failed to get mclk: %d", ret); 2244 return ret; 2245 } 2246 2247 csi->irq = platform_get_irq(pdev, 0); 2248 if (csi->irq < 0) 2249 return csi->irq; 2250 2251 csi->regbase = devm_platform_ioremap_resource(pdev, 0); 2252 if (IS_ERR(csi->regbase)) 2253 return PTR_ERR(csi->regbase); 2254 2255 csi->model = (enum imx_csi_model)(uintptr_t)of_device_get_match_data(&pdev->dev); 2256 2257 ret = devm_request_irq(dev, csi->irq, imx7_csi_irq_handler, 0, "csi", 2258 (void *)csi); 2259 if (ret < 0) { 2260 dev_err(dev, "Request CSI IRQ failed.\n"); 2261 return ret; 2262 } 2263 2264 /* Initialize all the media device infrastructure. */ 2265 ret = imx7_csi_media_init(csi); 2266 if (ret) 2267 return ret; 2268 2269 ret = imx7_csi_async_register(csi); 2270 if (ret) 2271 goto err_media_cleanup; 2272 2273 return 0; 2274 2275 err_media_cleanup: 2276 imx7_csi_media_cleanup(csi); 2277 2278 return ret; 2279 } 2280 2281 static int imx7_csi_remove(struct platform_device *pdev) 2282 { 2283 struct imx7_csi *csi = platform_get_drvdata(pdev); 2284 2285 imx7_csi_media_cleanup(csi); 2286 2287 v4l2_async_nf_unregister(&csi->notifier); 2288 v4l2_async_nf_cleanup(&csi->notifier); 2289 v4l2_async_unregister_subdev(&csi->sd); 2290 2291 return 0; 2292 } 2293 2294 static const struct of_device_id imx7_csi_of_match[] = { 2295 { .compatible = "fsl,imx8mq-csi", .data = (void *)IMX7_CSI_IMX8MQ }, 2296 { .compatible = "fsl,imx7-csi", .data = (void *)IMX7_CSI_IMX7 }, 2297 { .compatible = "fsl,imx6ul-csi", .data = (void *)IMX7_CSI_IMX7 }, 2298 { }, 2299 }; 2300 MODULE_DEVICE_TABLE(of, imx7_csi_of_match); 2301 2302 static struct platform_driver imx7_csi_driver = { 2303 .probe = imx7_csi_probe, 2304 .remove = imx7_csi_remove, 2305 .driver = { 2306 .of_match_table = imx7_csi_of_match, 2307 .name = "imx7-csi", 2308 }, 2309 }; 2310 module_platform_driver(imx7_csi_driver); 2311 2312 MODULE_DESCRIPTION("i.MX7 CSI subdev driver"); 2313 MODULE_AUTHOR("Rui Miguel Silva <rui.silva@linaro.org>"); 2314 MODULE_LICENSE("GPL v2"); 2315 MODULE_ALIAS("platform:imx7-csi"); 2316