Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 | // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2021-2023 Digiteq Automotive * author: Martin Tuma <martin.tuma@digiteqautomotive.com> * * This is the v4l2 output device module. It initializes the signal serializers * and creates the v4l2 video devices. * * When the device is in loopback mode (a direct, in HW, in->out frame passing * mode) we disable the v4l2 output by returning EBUSY in the open() syscall. */ #include <linux/pci.h> #include <linux/align.h> #include <linux/dma/amd_xdma.h> #include <media/v4l2-ioctl.h> #include <media/videobuf2-v4l2.h> #include <media/videobuf2-dma-sg.h> #include "mgb4_core.h" #include "mgb4_dma.h" #include "mgb4_sysfs.h" #include "mgb4_io.h" #include "mgb4_cmt.h" #include "mgb4_vout.h" ATTRIBUTE_GROUPS(mgb4_fpdl3_out); ATTRIBUTE_GROUPS(mgb4_gmsl_out); static const struct mgb4_vout_config vout_cfg[] = { {0, 0, 8, {0x78, 0x60, 0x64, 0x68, 0x74, 0x6C, 0x70, 0x7c}}, {1, 1, 9, {0x98, 0x80, 0x84, 0x88, 0x94, 0x8c, 0x90, 0x9c}} }; static const struct i2c_board_info fpdl3_ser_info[] = { {I2C_BOARD_INFO("serializer1", 0x14)}, {I2C_BOARD_INFO("serializer2", 0x16)}, }; static const struct mgb4_i2c_kv fpdl3_i2c[] = { {0x05, 0xFF, 0x04}, {0x06, 0xFF, 0x01}, {0xC2, 0xFF, 0x80} }; static void return_all_buffers(struct mgb4_vout_dev *voutdev, enum vb2_buffer_state state) { struct mgb4_frame_buffer *buf, *node; unsigned long flags; spin_lock_irqsave(&voutdev->qlock, flags); list_for_each_entry_safe(buf, node, &voutdev->buf_list, list) { vb2_buffer_done(&buf->vb.vb2_buf, state); list_del(&buf->list); } spin_unlock_irqrestore(&voutdev->qlock, flags); } static int queue_setup(struct vb2_queue *q, unsigned int *nbuffers, unsigned int *nplanes, unsigned int sizes[], struct device *alloc_devs[]) { struct mgb4_vout_dev *voutdev = vb2_get_drv_priv(q); unsigned int size; /* * If I/O reconfiguration is in process, do not allow to start * the queue. See video_source_store() in mgb4_sysfs_out.c for * details. */ if (test_bit(0, &voutdev->mgbdev->io_reconfig)) return -EBUSY; size = (voutdev->width + voutdev->padding) * voutdev->height * 4; if (*nplanes) return sizes[0] < size ? -EINVAL : 0; *nplanes = 1; sizes[0] = size; return 0; } static int buffer_init(struct vb2_buffer *vb) { struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); struct mgb4_frame_buffer *buf = to_frame_buffer(vbuf); INIT_LIST_HEAD(&buf->list); return 0; } static int buffer_prepare(struct vb2_buffer *vb) { struct mgb4_vout_dev *voutdev = vb2_get_drv_priv(vb->vb2_queue); struct device *dev = &voutdev->mgbdev->pdev->dev; unsigned int size; size = (voutdev->width + voutdev->padding) * voutdev->height * 4; if (vb2_plane_size(vb, 0) < size) { dev_err(dev, "buffer too small (%lu < %u)\n", vb2_plane_size(vb, 0), size); return -EINVAL; } vb2_set_plane_payload(vb, 0, size); return 0; } static void buffer_queue(struct vb2_buffer *vb) { struct mgb4_vout_dev *vindev = vb2_get_drv_priv(vb->vb2_queue); struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); struct mgb4_frame_buffer *buf = to_frame_buffer(vbuf); unsigned long flags; spin_lock_irqsave(&vindev->qlock, flags); list_add_tail(&buf->list, &vindev->buf_list); spin_unlock_irqrestore(&vindev->qlock, flags); } static void stop_streaming(struct vb2_queue *vq) { struct mgb4_vout_dev *voutdev = vb2_get_drv_priv(vq); struct mgb4_dev *mgbdev = voutdev->mgbdev; int irq = xdma_get_user_irq(mgbdev->xdev, voutdev->config->irq); xdma_disable_user_irq(mgbdev->xdev, irq); cancel_work_sync(&voutdev->dma_work); mgb4_mask_reg(&mgbdev->video, voutdev->config->regs.config, 0x2, 0x0); return_all_buffers(voutdev, VB2_BUF_STATE_ERROR); } static int start_streaming(struct vb2_queue *vq, unsigned int count) { struct mgb4_vout_dev *voutdev = vb2_get_drv_priv(vq); struct mgb4_dev *mgbdev = voutdev->mgbdev; struct device *dev = &mgbdev->pdev->dev; struct mgb4_frame_buffer *buf; struct mgb4_regs *video = &mgbdev->video; const struct mgb4_vout_config *config = voutdev->config; int irq = xdma_get_user_irq(mgbdev->xdev, config->irq); int rv; u32 addr; mgb4_mask_reg(video, config->regs.config, 0x2, 0x2); addr = mgb4_read_reg(video, config->regs.address); if (addr >= MGB4_ERR_QUEUE_FULL) { dev_dbg(dev, "frame queue error (%d)\n", (int)addr); return_all_buffers(voutdev, VB2_BUF_STATE_QUEUED); return -EBUSY; } buf = list_first_entry(&voutdev->buf_list, struct mgb4_frame_buffer, list); list_del_init(voutdev->buf_list.next); rv = mgb4_dma_transfer(mgbdev, config->dma_channel, true, addr, vb2_dma_sg_plane_desc(&buf->vb.vb2_buf, 0)); if (rv < 0) { dev_warn(dev, "DMA transfer error\n"); vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR); } else { vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_DONE); } xdma_enable_user_irq(mgbdev->xdev, irq); return 0; } static const struct vb2_ops queue_ops = { .queue_setup = queue_setup, .buf_init = buffer_init, .buf_prepare = buffer_prepare, .buf_queue = buffer_queue, .start_streaming = start_streaming, .stop_streaming = stop_streaming, .wait_prepare = vb2_ops_wait_prepare, .wait_finish = vb2_ops_wait_finish }; static int vidioc_querycap(struct file *file, void *priv, struct v4l2_capability *cap) { strscpy(cap->driver, KBUILD_MODNAME, sizeof(cap->driver)); strscpy(cap->card, "MGB4 PCIe Card", sizeof(cap->card)); return 0; } static int vidioc_enum_fmt(struct file *file, void *priv, struct v4l2_fmtdesc *f) { if (f->index != 0) return -EINVAL; f->pixelformat = V4L2_PIX_FMT_ABGR32; return 0; } static int vidioc_g_fmt(struct file *file, void *priv, struct v4l2_format *f) { struct mgb4_vout_dev *voutdev = video_drvdata(file); f->fmt.pix.pixelformat = V4L2_PIX_FMT_ABGR32; f->fmt.pix.width = voutdev->width; f->fmt.pix.height = voutdev->height; f->fmt.pix.field = V4L2_FIELD_NONE; f->fmt.pix.colorspace = V4L2_COLORSPACE_RAW; f->fmt.pix.bytesperline = (f->fmt.pix.width + voutdev->padding) * 4; f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * f->fmt.pix.height; return 0; } static int vidioc_try_fmt(struct file *file, void *priv, struct v4l2_format *f) { struct mgb4_vout_dev *voutdev = video_drvdata(file); f->fmt.pix.pixelformat = V4L2_PIX_FMT_ABGR32; f->fmt.pix.width = voutdev->width; f->fmt.pix.height = voutdev->height; f->fmt.pix.field = V4L2_FIELD_NONE; f->fmt.pix.colorspace = V4L2_COLORSPACE_RAW; f->fmt.pix.bytesperline = max(f->fmt.pix.width * 4, ALIGN_DOWN(f->fmt.pix.bytesperline, 4)); f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * f->fmt.pix.height; return 0; } static int vidioc_s_fmt(struct file *file, void *priv, struct v4l2_format *f) { struct mgb4_vout_dev *voutdev = video_drvdata(file); struct mgb4_regs *video = &voutdev->mgbdev->video; if (vb2_is_busy(&voutdev->queue)) return -EBUSY; vidioc_try_fmt(file, priv, f); voutdev->padding = (f->fmt.pix.bytesperline - (f->fmt.pix.width * 4)) / 4; mgb4_write_reg(video, voutdev->config->regs.padding, voutdev->padding); return 0; } static int vidioc_g_output(struct file *file, void *priv, unsigned int *i) { *i = 0; return 0; } static int vidioc_s_output(struct file *file, void *priv, unsigned int i) { return i ? -EINVAL : 0; } static int vidioc_enum_output(struct file *file, void *priv, struct v4l2_output *out) { if (out->index != 0) return -EINVAL; out->type = V4L2_OUTPUT_TYPE_ANALOG; strscpy(out->name, "MGB4", sizeof(out->name)); return 0; } static const struct v4l2_ioctl_ops video_ioctl_ops = { .vidioc_querycap = vidioc_querycap, .vidioc_enum_fmt_vid_out = vidioc_enum_fmt, .vidioc_try_fmt_vid_out = vidioc_try_fmt, .vidioc_s_fmt_vid_out = vidioc_s_fmt, .vidioc_g_fmt_vid_out = vidioc_g_fmt, .vidioc_enum_output = vidioc_enum_output, .vidioc_g_output = vidioc_g_output, .vidioc_s_output = vidioc_s_output, .vidioc_reqbufs = vb2_ioctl_reqbufs, .vidioc_create_bufs = vb2_ioctl_create_bufs, .vidioc_prepare_buf = vb2_ioctl_prepare_buf, .vidioc_querybuf = vb2_ioctl_querybuf, .vidioc_qbuf = vb2_ioctl_qbuf, .vidioc_dqbuf = vb2_ioctl_dqbuf, .vidioc_expbuf = vb2_ioctl_expbuf, .vidioc_streamon = vb2_ioctl_streamon, .vidioc_streamoff = vb2_ioctl_streamoff, }; static int fh_open(struct file *file) { struct mgb4_vout_dev *voutdev = video_drvdata(file); struct mgb4_regs *video = &voutdev->mgbdev->video; struct device *dev = &voutdev->mgbdev->pdev->dev; u32 config, resolution; int rv; /* Return EBUSY when the device is in loopback mode */ config = mgb4_read_reg(video, voutdev->config->regs.config); if ((config & 0xc) >> 2 != voutdev->config->id + MGB4_VIN_DEVICES) { dev_dbg(dev, "can not open - device in loopback mode"); return -EBUSY; } mutex_lock(&voutdev->lock); rv = v4l2_fh_open(file); if (rv) goto out; if (!v4l2_fh_is_singular_file(file)) goto out; resolution = mgb4_read_reg(video, voutdev->config->regs.resolution); voutdev->width = resolution >> 16; voutdev->height = resolution & 0xFFFF; out: mutex_unlock(&voutdev->lock); return rv; } static const struct v4l2_file_operations video_fops = { .owner = THIS_MODULE, .open = fh_open, .release = vb2_fop_release, .unlocked_ioctl = video_ioctl2, .write = vb2_fop_write, .mmap = vb2_fop_mmap, .poll = vb2_fop_poll, }; static void dma_transfer(struct work_struct *work) { struct mgb4_vout_dev *voutdev = container_of(work, struct mgb4_vout_dev, dma_work); struct device *dev = &voutdev->mgbdev->pdev->dev; struct mgb4_regs *video = &voutdev->mgbdev->video; struct mgb4_frame_buffer *buf = NULL; unsigned long flags; u32 addr; int rv; spin_lock_irqsave(&voutdev->qlock, flags); if (!list_empty(&voutdev->buf_list)) { buf = list_first_entry(&voutdev->buf_list, struct mgb4_frame_buffer, list); list_del_init(voutdev->buf_list.next); } spin_unlock_irqrestore(&voutdev->qlock, flags); if (!buf) return; addr = mgb4_read_reg(video, voutdev->config->regs.address); if (addr >= MGB4_ERR_QUEUE_FULL) { dev_dbg(dev, "frame queue error (%d)\n", (int)addr); vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR); return; } rv = mgb4_dma_transfer(voutdev->mgbdev, voutdev->config->dma_channel, true, addr, vb2_dma_sg_plane_desc(&buf->vb.vb2_buf, 0)); if (rv < 0) { dev_warn(dev, "DMA transfer error\n"); vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR); } else { vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_DONE); } } static irqreturn_t handler(int irq, void *ctx) { struct mgb4_vout_dev *voutdev = (struct mgb4_vout_dev *)ctx; struct mgb4_regs *video = &voutdev->mgbdev->video; schedule_work(&voutdev->dma_work); mgb4_write_reg(video, 0xB4, 1U << voutdev->config->irq); return IRQ_HANDLED; } static int ser_init(struct mgb4_vout_dev *voutdev, int id) { int rv; const struct i2c_board_info *info = &fpdl3_ser_info[id]; struct mgb4_i2c_client *ser = &voutdev->ser; struct device *dev = &voutdev->mgbdev->pdev->dev; if (MGB4_IS_GMSL(voutdev->mgbdev)) return 0; rv = mgb4_i2c_init(ser, voutdev->mgbdev->i2c_adap, info, 8); if (rv < 0) { dev_err(dev, "failed to create serializer\n"); return rv; } rv = mgb4_i2c_configure(ser, fpdl3_i2c, ARRAY_SIZE(fpdl3_i2c)); if (rv < 0) { dev_err(dev, "failed to configure serializer\n"); goto err_i2c_dev; } return 0; err_i2c_dev: mgb4_i2c_free(ser); return rv; } static void fpga_init(struct mgb4_vout_dev *voutdev) { struct mgb4_regs *video = &voutdev->mgbdev->video; const struct mgb4_vout_regs *regs = &voutdev->config->regs; mgb4_write_reg(video, regs->config, 0x00000011); mgb4_write_reg(video, regs->resolution, (MGB4_DEFAULT_WIDTH << 16) | MGB4_DEFAULT_HEIGHT); mgb4_write_reg(video, regs->hsync, 0x00102020); mgb4_write_reg(video, regs->vsync, 0x40020202); mgb4_write_reg(video, regs->frame_period, MGB4_DEFAULT_PERIOD); mgb4_write_reg(video, regs->padding, 0x00000000); voutdev->freq = mgb4_cmt_set_vout_freq(voutdev, 70000 >> 1) << 1; mgb4_write_reg(video, regs->config, (voutdev->config->id + MGB4_VIN_DEVICES) << 2 | 1 << 4); } #ifdef CONFIG_DEBUG_FS static void debugfs_init(struct mgb4_vout_dev *voutdev) { struct mgb4_regs *video = &voutdev->mgbdev->video; voutdev->debugfs = debugfs_create_dir(voutdev->vdev.name, voutdev->mgbdev->debugfs); if (!voutdev->debugfs) return; voutdev->regs[0].name = "CONFIG"; voutdev->regs[0].offset = voutdev->config->regs.config; voutdev->regs[1].name = "STATUS"; voutdev->regs[1].offset = voutdev->config->regs.status; voutdev->regs[2].name = "RESOLUTION"; voutdev->regs[2].offset = voutdev->config->regs.resolution; voutdev->regs[3].name = "VIDEO_PARAMS_1"; voutdev->regs[3].offset = voutdev->config->regs.hsync; voutdev->regs[4].name = "VIDEO_PARAMS_2"; voutdev->regs[4].offset = voutdev->config->regs.vsync; voutdev->regs[5].name = "FRAME_PERIOD"; voutdev->regs[5].offset = voutdev->config->regs.frame_period; voutdev->regs[6].name = "PADDING"; voutdev->regs[6].offset = voutdev->config->regs.padding; voutdev->regset.base = video->membase; voutdev->regset.regs = voutdev->regs; voutdev->regset.nregs = ARRAY_SIZE(voutdev->regs); debugfs_create_regset32("registers", 0444, voutdev->debugfs, &voutdev->regset); } #endif struct mgb4_vout_dev *mgb4_vout_create(struct mgb4_dev *mgbdev, int id) { int rv, irq; const struct attribute_group **groups; struct mgb4_vout_dev *voutdev; struct pci_dev *pdev = mgbdev->pdev; struct device *dev = &pdev->dev; voutdev = kzalloc(sizeof(*voutdev), GFP_KERNEL); if (!voutdev) return NULL; voutdev->mgbdev = mgbdev; voutdev->config = &vout_cfg[id]; /* Frame queue */ INIT_LIST_HEAD(&voutdev->buf_list); spin_lock_init(&voutdev->qlock); /* DMA transfer stuff */ INIT_WORK(&voutdev->dma_work, dma_transfer); /* IRQ callback */ irq = xdma_get_user_irq(mgbdev->xdev, voutdev->config->irq); rv = request_irq(irq, handler, 0, "mgb4-vout", voutdev); if (rv) { dev_err(dev, "failed to register irq handler\n"); goto err_alloc; } /* Set the FPGA registers default values */ fpga_init(voutdev); /* Set the serializer default values */ rv = ser_init(voutdev, id); if (rv) goto err_irq; /* V4L2 stuff init */ rv = v4l2_device_register(dev, &voutdev->v4l2dev); if (rv) { dev_err(dev, "failed to register v4l2 device\n"); goto err_irq; } mutex_init(&voutdev->lock); voutdev->queue.type = V4L2_BUF_TYPE_VIDEO_OUTPUT; voutdev->queue.io_modes = VB2_MMAP | VB2_DMABUF | VB2_WRITE; voutdev->queue.buf_struct_size = sizeof(struct mgb4_frame_buffer); voutdev->queue.ops = &queue_ops; voutdev->queue.mem_ops = &vb2_dma_sg_memops; voutdev->queue.gfp_flags = GFP_DMA32; voutdev->queue.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC; voutdev->queue.min_queued_buffers = 2; voutdev->queue.drv_priv = voutdev; voutdev->queue.lock = &voutdev->lock; voutdev->queue.dev = dev; rv = vb2_queue_init(&voutdev->queue); if (rv) { dev_err(dev, "failed to initialize vb2 queue\n"); goto err_v4l2_dev; } snprintf(voutdev->vdev.name, sizeof(voutdev->vdev.name), "mgb4-out%d", id + 1); voutdev->vdev.device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_READWRITE | V4L2_CAP_STREAMING; voutdev->vdev.vfl_dir = VFL_DIR_TX; voutdev->vdev.fops = &video_fops; voutdev->vdev.ioctl_ops = &video_ioctl_ops; voutdev->vdev.release = video_device_release_empty; voutdev->vdev.v4l2_dev = &voutdev->v4l2dev; voutdev->vdev.lock = &voutdev->lock; voutdev->vdev.queue = &voutdev->queue; video_set_drvdata(&voutdev->vdev, voutdev); rv = video_register_device(&voutdev->vdev, VFL_TYPE_VIDEO, -1); if (rv) { dev_err(dev, "failed to register video device\n"); goto err_v4l2_dev; } /* Module sysfs attributes */ groups = MGB4_IS_GMSL(mgbdev) ? mgb4_gmsl_out_groups : mgb4_fpdl3_out_groups; rv = device_add_groups(&voutdev->vdev.dev, groups); if (rv) { dev_err(dev, "failed to create sysfs attributes\n"); goto err_video_dev; } #ifdef CONFIG_DEBUG_FS debugfs_init(voutdev); #endif return voutdev; err_video_dev: video_unregister_device(&voutdev->vdev); err_v4l2_dev: v4l2_device_unregister(&voutdev->v4l2dev); err_irq: free_irq(irq, voutdev); err_alloc: kfree(voutdev); return NULL; } void mgb4_vout_free(struct mgb4_vout_dev *voutdev) { const struct attribute_group **groups; int irq = xdma_get_user_irq(voutdev->mgbdev->xdev, voutdev->config->irq); free_irq(irq, voutdev); #ifdef CONFIG_DEBUG_FS debugfs_remove_recursive(voutdev->debugfs); #endif groups = MGB4_IS_GMSL(voutdev->mgbdev) ? mgb4_gmsl_out_groups : mgb4_fpdl3_out_groups; device_remove_groups(&voutdev->vdev.dev, groups); mgb4_i2c_free(&voutdev->ser); video_unregister_device(&voutdev->vdev); v4l2_device_unregister(&voutdev->v4l2dev); kfree(voutdev); } |