1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * video-i2c.c - Support for I2C transport video devices 4 * 5 * Copyright (C) 2018 Matt Ranostay <matt.ranostay@konsulko.com> 6 * 7 * Supported: 8 * - Panasonic AMG88xx Grid-Eye Sensors 9 * - Melexis MLX90640 Thermal Cameras 10 */ 11 12 #include <linux/bits.h> 13 #include <linux/delay.h> 14 #include <linux/freezer.h> 15 #include <linux/hwmon.h> 16 #include <linux/kthread.h> 17 #include <linux/i2c.h> 18 #include <linux/list.h> 19 #include <linux/mod_devicetable.h> 20 #include <linux/module.h> 21 #include <linux/mutex.h> 22 #include <linux/pm_runtime.h> 23 #include <linux/nvmem-provider.h> 24 #include <linux/regmap.h> 25 #include <linux/sched.h> 26 #include <linux/slab.h> 27 #include <linux/videodev2.h> 28 #include <media/v4l2-common.h> 29 #include <media/v4l2-device.h> 30 #include <media/v4l2-event.h> 31 #include <media/v4l2-fh.h> 32 #include <media/v4l2-ioctl.h> 33 #include <media/videobuf2-v4l2.h> 34 #include <media/videobuf2-vmalloc.h> 35 36 #define VIDEO_I2C_DRIVER "video-i2c" 37 38 /* Power control register */ 39 #define AMG88XX_REG_PCTL 0x00 40 #define AMG88XX_PCTL_NORMAL 0x00 41 #define AMG88XX_PCTL_SLEEP 0x10 42 43 /* Reset register */ 44 #define AMG88XX_REG_RST 0x01 45 #define AMG88XX_RST_FLAG 0x30 46 #define AMG88XX_RST_INIT 0x3f 47 48 /* Frame rate register */ 49 #define AMG88XX_REG_FPSC 0x02 50 #define AMG88XX_FPSC_1FPS BIT(0) 51 52 /* Thermistor register */ 53 #define AMG88XX_REG_TTHL 0x0e 54 55 /* Temperature register */ 56 #define AMG88XX_REG_T01L 0x80 57 58 /* RAM */ 59 #define MLX90640_RAM_START_ADDR 0x0400 60 61 /* EEPROM */ 62 #define MLX90640_EEPROM_START_ADDR 0x2400 63 64 /* Control register */ 65 #define MLX90640_REG_CTL1 0x800d 66 #define MLX90640_REG_CTL1_MASK GENMASK(9, 7) 67 #define MLX90640_REG_CTL1_MASK_SHIFT 7 68 69 struct video_i2c_chip; 70 71 struct video_i2c_buffer { 72 struct vb2_v4l2_buffer vb; 73 struct list_head list; 74 }; 75 76 struct video_i2c_data { 77 struct regmap *regmap; 78 const struct video_i2c_chip *chip; 79 struct mutex lock; 80 spinlock_t slock; 81 unsigned int sequence; 82 struct mutex queue_lock; 83 84 struct v4l2_device v4l2_dev; 85 struct video_device vdev; 86 struct vb2_queue vb_vidq; 87 88 struct task_struct *kthread_vid_cap; 89 struct list_head vid_cap_active; 90 91 struct v4l2_fract frame_interval; 92 }; 93 94 static const struct v4l2_fmtdesc amg88xx_format = { 95 .pixelformat = V4L2_PIX_FMT_Y12, 96 }; 97 98 static const struct v4l2_frmsize_discrete amg88xx_size = { 99 .width = 8, 100 .height = 8, 101 }; 102 103 static const struct v4l2_fmtdesc mlx90640_format = { 104 .pixelformat = V4L2_PIX_FMT_Y16_BE, 105 }; 106 107 static const struct v4l2_frmsize_discrete mlx90640_size = { 108 .width = 32, 109 .height = 26, /* 24 lines of pixel data + 2 lines of processing data */ 110 }; 111 112 static const struct regmap_config amg88xx_regmap_config = { 113 .reg_bits = 8, 114 .val_bits = 8, 115 .max_register = 0xff 116 }; 117 118 static const struct regmap_config mlx90640_regmap_config = { 119 .reg_bits = 16, 120 .val_bits = 16, 121 }; 122 123 struct video_i2c_chip { 124 /* video dimensions */ 125 const struct v4l2_fmtdesc *format; 126 const struct v4l2_frmsize_discrete *size; 127 128 /* available frame intervals */ 129 const struct v4l2_fract *frame_intervals; 130 unsigned int num_frame_intervals; 131 132 /* pixel buffer size */ 133 unsigned int buffer_size; 134 135 /* pixel size in bits */ 136 unsigned int bpp; 137 138 const struct regmap_config *regmap_config; 139 struct nvmem_config *nvmem_config; 140 141 /* setup function */ 142 int (*setup)(struct video_i2c_data *data); 143 144 /* xfer function */ 145 int (*xfer)(struct video_i2c_data *data, char *buf); 146 147 /* power control function */ 148 int (*set_power)(struct video_i2c_data *data, bool on); 149 150 /* hwmon init function */ 151 int (*hwmon_init)(struct video_i2c_data *data); 152 }; 153 154 static int mlx90640_nvram_read(void *priv, unsigned int offset, void *val, 155 size_t bytes) 156 { 157 struct video_i2c_data *data = priv; 158 159 return regmap_bulk_read(data->regmap, MLX90640_EEPROM_START_ADDR + offset, val, bytes); 160 } 161 162 static struct nvmem_config mlx90640_nvram_config = { 163 .name = "mlx90640_nvram", 164 .word_size = 2, 165 .stride = 1, 166 .size = 1664, 167 .reg_read = mlx90640_nvram_read, 168 }; 169 170 static int amg88xx_xfer(struct video_i2c_data *data, char *buf) 171 { 172 return regmap_bulk_read(data->regmap, AMG88XX_REG_T01L, buf, 173 data->chip->buffer_size); 174 } 175 176 static int mlx90640_xfer(struct video_i2c_data *data, char *buf) 177 { 178 return regmap_bulk_read(data->regmap, MLX90640_RAM_START_ADDR, buf, 179 data->chip->buffer_size); 180 } 181 182 static int amg88xx_setup(struct video_i2c_data *data) 183 { 184 unsigned int mask = AMG88XX_FPSC_1FPS; 185 unsigned int val; 186 187 if (data->frame_interval.numerator == data->frame_interval.denominator) 188 val = mask; 189 else 190 val = 0; 191 192 return regmap_update_bits(data->regmap, AMG88XX_REG_FPSC, mask, val); 193 } 194 195 static int mlx90640_setup(struct video_i2c_data *data) 196 { 197 unsigned int n, idx; 198 199 for (n = 0; n < data->chip->num_frame_intervals - 1; n++) { 200 if (V4L2_FRACT_COMPARE(data->frame_interval, ==, 201 data->chip->frame_intervals[n])) 202 break; 203 } 204 205 idx = data->chip->num_frame_intervals - n - 1; 206 207 return regmap_update_bits(data->regmap, MLX90640_REG_CTL1, 208 MLX90640_REG_CTL1_MASK, 209 idx << MLX90640_REG_CTL1_MASK_SHIFT); 210 } 211 212 static int amg88xx_set_power_on(struct video_i2c_data *data) 213 { 214 int ret; 215 216 ret = regmap_write(data->regmap, AMG88XX_REG_PCTL, AMG88XX_PCTL_NORMAL); 217 if (ret) 218 return ret; 219 220 msleep(50); 221 222 ret = regmap_write(data->regmap, AMG88XX_REG_RST, AMG88XX_RST_INIT); 223 if (ret) 224 return ret; 225 226 usleep_range(2000, 3000); 227 228 ret = regmap_write(data->regmap, AMG88XX_REG_RST, AMG88XX_RST_FLAG); 229 if (ret) 230 return ret; 231 232 /* 233 * Wait two frames before reading thermistor and temperature registers 234 */ 235 msleep(200); 236 237 return 0; 238 } 239 240 static int amg88xx_set_power_off(struct video_i2c_data *data) 241 { 242 int ret; 243 244 ret = regmap_write(data->regmap, AMG88XX_REG_PCTL, AMG88XX_PCTL_SLEEP); 245 if (ret) 246 return ret; 247 /* 248 * Wait for a while to avoid resuming normal mode immediately after 249 * entering sleep mode, otherwise the device occasionally goes wrong 250 * (thermistor and temperature registers are not updated at all) 251 */ 252 msleep(100); 253 254 return 0; 255 } 256 257 static int amg88xx_set_power(struct video_i2c_data *data, bool on) 258 { 259 if (on) 260 return amg88xx_set_power_on(data); 261 262 return amg88xx_set_power_off(data); 263 } 264 265 #if IS_REACHABLE(CONFIG_HWMON) 266 267 static const struct hwmon_channel_info * const amg88xx_info[] = { 268 HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT), 269 NULL 270 }; 271 272 static umode_t amg88xx_is_visible(const void *drvdata, 273 enum hwmon_sensor_types type, 274 u32 attr, int channel) 275 { 276 return 0444; 277 } 278 279 static int amg88xx_read(struct device *dev, enum hwmon_sensor_types type, 280 u32 attr, int channel, long *val) 281 { 282 struct video_i2c_data *data = dev_get_drvdata(dev); 283 __le16 buf; 284 int tmp; 285 286 tmp = pm_runtime_resume_and_get(regmap_get_device(data->regmap)); 287 if (tmp < 0) 288 return tmp; 289 290 tmp = regmap_bulk_read(data->regmap, AMG88XX_REG_TTHL, &buf, 2); 291 pm_runtime_put_autosuspend(regmap_get_device(data->regmap)); 292 if (tmp) 293 return tmp; 294 295 tmp = le16_to_cpu(buf); 296 297 /* 298 * Check for sign bit, this isn't a two's complement value but an 299 * absolute temperature that needs to be inverted in the case of being 300 * negative. 301 */ 302 if (tmp & BIT(11)) 303 tmp = -(tmp & 0x7ff); 304 305 *val = (tmp * 625) / 10; 306 307 return 0; 308 } 309 310 static const struct hwmon_ops amg88xx_hwmon_ops = { 311 .is_visible = amg88xx_is_visible, 312 .read = amg88xx_read, 313 }; 314 315 static const struct hwmon_chip_info amg88xx_chip_info = { 316 .ops = &amg88xx_hwmon_ops, 317 .info = amg88xx_info, 318 }; 319 320 static int amg88xx_hwmon_init(struct video_i2c_data *data) 321 { 322 struct device *dev = regmap_get_device(data->regmap); 323 void *hwmon = devm_hwmon_device_register_with_info(dev, "amg88xx", data, 324 &amg88xx_chip_info, NULL); 325 326 return PTR_ERR_OR_ZERO(hwmon); 327 } 328 #else 329 #define amg88xx_hwmon_init NULL 330 #endif 331 332 enum { 333 AMG88XX, 334 MLX90640, 335 }; 336 337 static const struct v4l2_fract amg88xx_frame_intervals[] = { 338 { 1, 10 }, 339 { 1, 1 }, 340 }; 341 342 static const struct v4l2_fract mlx90640_frame_intervals[] = { 343 { 1, 64 }, 344 { 1, 32 }, 345 { 1, 16 }, 346 { 1, 8 }, 347 { 1, 4 }, 348 { 1, 2 }, 349 { 1, 1 }, 350 { 2, 1 }, 351 }; 352 353 static const struct video_i2c_chip video_i2c_chip[] = { 354 [AMG88XX] = { 355 .size = &amg88xx_size, 356 .format = &amg88xx_format, 357 .frame_intervals = amg88xx_frame_intervals, 358 .num_frame_intervals = ARRAY_SIZE(amg88xx_frame_intervals), 359 .buffer_size = 128, 360 .bpp = 16, 361 .regmap_config = &amg88xx_regmap_config, 362 .setup = &amg88xx_setup, 363 .xfer = &amg88xx_xfer, 364 .set_power = amg88xx_set_power, 365 .hwmon_init = amg88xx_hwmon_init, 366 }, 367 [MLX90640] = { 368 .size = &mlx90640_size, 369 .format = &mlx90640_format, 370 .frame_intervals = mlx90640_frame_intervals, 371 .num_frame_intervals = ARRAY_SIZE(mlx90640_frame_intervals), 372 .buffer_size = 1664, 373 .bpp = 16, 374 .regmap_config = &mlx90640_regmap_config, 375 .nvmem_config = &mlx90640_nvram_config, 376 .setup = mlx90640_setup, 377 .xfer = mlx90640_xfer, 378 }, 379 }; 380 381 static const struct v4l2_file_operations video_i2c_fops = { 382 .owner = THIS_MODULE, 383 .open = v4l2_fh_open, 384 .release = vb2_fop_release, 385 .poll = vb2_fop_poll, 386 .read = vb2_fop_read, 387 .mmap = vb2_fop_mmap, 388 .unlocked_ioctl = video_ioctl2, 389 }; 390 391 static int queue_setup(struct vb2_queue *vq, 392 unsigned int *nbuffers, unsigned int *nplanes, 393 unsigned int sizes[], struct device *alloc_devs[]) 394 { 395 struct video_i2c_data *data = vb2_get_drv_priv(vq); 396 unsigned int size = data->chip->buffer_size; 397 unsigned int q_num_bufs = vb2_get_num_buffers(vq); 398 399 if (q_num_bufs + *nbuffers < 2) 400 *nbuffers = 2 - q_num_bufs; 401 402 if (*nplanes) 403 return sizes[0] < size ? -EINVAL : 0; 404 405 *nplanes = 1; 406 sizes[0] = size; 407 408 return 0; 409 } 410 411 static int buffer_prepare(struct vb2_buffer *vb) 412 { 413 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); 414 struct video_i2c_data *data = vb2_get_drv_priv(vb->vb2_queue); 415 unsigned int size = data->chip->buffer_size; 416 417 if (vb2_plane_size(vb, 0) < size) 418 return -EINVAL; 419 420 vbuf->field = V4L2_FIELD_NONE; 421 vb2_set_plane_payload(vb, 0, size); 422 423 return 0; 424 } 425 426 static void buffer_queue(struct vb2_buffer *vb) 427 { 428 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb); 429 struct video_i2c_data *data = vb2_get_drv_priv(vb->vb2_queue); 430 struct video_i2c_buffer *buf = 431 container_of(vbuf, struct video_i2c_buffer, vb); 432 433 spin_lock(&data->slock); 434 list_add_tail(&buf->list, &data->vid_cap_active); 435 spin_unlock(&data->slock); 436 } 437 438 static int video_i2c_thread_vid_cap(void *priv) 439 { 440 struct video_i2c_data *data = priv; 441 u32 delay = mult_frac(1000000UL, data->frame_interval.numerator, 442 data->frame_interval.denominator); 443 s64 end_us = ktime_to_us(ktime_get()); 444 445 set_freezable(); 446 447 do { 448 struct video_i2c_buffer *vid_cap_buf = NULL; 449 s64 current_us; 450 int schedule_delay; 451 452 try_to_freeze(); 453 454 spin_lock(&data->slock); 455 456 if (!list_empty(&data->vid_cap_active)) { 457 vid_cap_buf = list_first_entry(&data->vid_cap_active, 458 struct video_i2c_buffer, 459 list); 460 list_del(&vid_cap_buf->list); 461 } 462 463 spin_unlock(&data->slock); 464 465 if (vid_cap_buf) { 466 struct vb2_buffer *vb2_buf = &vid_cap_buf->vb.vb2_buf; 467 void *vbuf = vb2_plane_vaddr(vb2_buf, 0); 468 int ret; 469 470 ret = data->chip->xfer(data, vbuf); 471 vb2_buf->timestamp = ktime_get_ns(); 472 vid_cap_buf->vb.sequence = data->sequence++; 473 vb2_buffer_done(vb2_buf, ret ? 474 VB2_BUF_STATE_ERROR : VB2_BUF_STATE_DONE); 475 } 476 477 end_us += delay; 478 current_us = ktime_to_us(ktime_get()); 479 if (current_us < end_us) { 480 schedule_delay = end_us - current_us; 481 usleep_range(schedule_delay * 3 / 4, schedule_delay); 482 } else { 483 end_us = current_us; 484 } 485 } while (!kthread_should_stop()); 486 487 return 0; 488 } 489 490 static void video_i2c_del_list(struct vb2_queue *vq, enum vb2_buffer_state state) 491 { 492 struct video_i2c_data *data = vb2_get_drv_priv(vq); 493 struct video_i2c_buffer *buf, *tmp; 494 495 spin_lock(&data->slock); 496 497 list_for_each_entry_safe(buf, tmp, &data->vid_cap_active, list) { 498 list_del(&buf->list); 499 vb2_buffer_done(&buf->vb.vb2_buf, state); 500 } 501 502 spin_unlock(&data->slock); 503 } 504 505 static int start_streaming(struct vb2_queue *vq, unsigned int count) 506 { 507 struct video_i2c_data *data = vb2_get_drv_priv(vq); 508 struct device *dev = regmap_get_device(data->regmap); 509 int ret; 510 511 if (data->kthread_vid_cap) 512 return 0; 513 514 ret = pm_runtime_resume_and_get(dev); 515 if (ret < 0) 516 goto error_del_list; 517 518 ret = data->chip->setup(data); 519 if (ret) 520 goto error_rpm_put; 521 522 data->sequence = 0; 523 data->kthread_vid_cap = kthread_run(video_i2c_thread_vid_cap, data, 524 "%s-vid-cap", data->v4l2_dev.name); 525 ret = PTR_ERR_OR_ZERO(data->kthread_vid_cap); 526 if (!ret) 527 return 0; 528 529 error_rpm_put: 530 pm_runtime_put_autosuspend(dev); 531 error_del_list: 532 video_i2c_del_list(vq, VB2_BUF_STATE_QUEUED); 533 534 return ret; 535 } 536 537 static void stop_streaming(struct vb2_queue *vq) 538 { 539 struct video_i2c_data *data = vb2_get_drv_priv(vq); 540 541 if (data->kthread_vid_cap == NULL) 542 return; 543 544 kthread_stop(data->kthread_vid_cap); 545 data->kthread_vid_cap = NULL; 546 pm_runtime_put_autosuspend(regmap_get_device(data->regmap)); 547 548 video_i2c_del_list(vq, VB2_BUF_STATE_ERROR); 549 } 550 551 static const struct vb2_ops video_i2c_video_qops = { 552 .queue_setup = queue_setup, 553 .buf_prepare = buffer_prepare, 554 .buf_queue = buffer_queue, 555 .start_streaming = start_streaming, 556 .stop_streaming = stop_streaming, 557 }; 558 559 static int video_i2c_querycap(struct file *file, void *priv, 560 struct v4l2_capability *vcap) 561 { 562 struct video_i2c_data *data = video_drvdata(file); 563 struct device *dev = regmap_get_device(data->regmap); 564 struct i2c_client *client = to_i2c_client(dev); 565 566 strscpy(vcap->driver, data->v4l2_dev.name, sizeof(vcap->driver)); 567 strscpy(vcap->card, data->vdev.name, sizeof(vcap->card)); 568 569 sprintf(vcap->bus_info, "I2C:%d-%d", client->adapter->nr, client->addr); 570 571 return 0; 572 } 573 574 static int video_i2c_g_input(struct file *file, void *fh, unsigned int *inp) 575 { 576 *inp = 0; 577 578 return 0; 579 } 580 581 static int video_i2c_s_input(struct file *file, void *fh, unsigned int inp) 582 { 583 return (inp > 0) ? -EINVAL : 0; 584 } 585 586 static int video_i2c_enum_input(struct file *file, void *fh, 587 struct v4l2_input *vin) 588 { 589 if (vin->index > 0) 590 return -EINVAL; 591 592 strscpy(vin->name, "Camera", sizeof(vin->name)); 593 594 vin->type = V4L2_INPUT_TYPE_CAMERA; 595 596 return 0; 597 } 598 599 static int video_i2c_enum_fmt_vid_cap(struct file *file, void *fh, 600 struct v4l2_fmtdesc *fmt) 601 { 602 struct video_i2c_data *data = video_drvdata(file); 603 enum v4l2_buf_type type = fmt->type; 604 605 if (fmt->index > 0) 606 return -EINVAL; 607 608 *fmt = *data->chip->format; 609 fmt->type = type; 610 611 return 0; 612 } 613 614 static int video_i2c_enum_framesizes(struct file *file, void *fh, 615 struct v4l2_frmsizeenum *fsize) 616 { 617 const struct video_i2c_data *data = video_drvdata(file); 618 const struct v4l2_frmsize_discrete *size = data->chip->size; 619 620 /* currently only one frame size is allowed */ 621 if (fsize->index > 0) 622 return -EINVAL; 623 624 if (fsize->pixel_format != data->chip->format->pixelformat) 625 return -EINVAL; 626 627 fsize->type = V4L2_FRMSIZE_TYPE_DISCRETE; 628 fsize->discrete.width = size->width; 629 fsize->discrete.height = size->height; 630 631 return 0; 632 } 633 634 static int video_i2c_enum_frameintervals(struct file *file, void *priv, 635 struct v4l2_frmivalenum *fe) 636 { 637 const struct video_i2c_data *data = video_drvdata(file); 638 const struct v4l2_frmsize_discrete *size = data->chip->size; 639 640 if (fe->index >= data->chip->num_frame_intervals) 641 return -EINVAL; 642 643 if (fe->width != size->width || fe->height != size->height) 644 return -EINVAL; 645 646 fe->type = V4L2_FRMIVAL_TYPE_DISCRETE; 647 fe->discrete = data->chip->frame_intervals[fe->index]; 648 649 return 0; 650 } 651 652 static int video_i2c_try_fmt_vid_cap(struct file *file, void *fh, 653 struct v4l2_format *fmt) 654 { 655 const struct video_i2c_data *data = video_drvdata(file); 656 const struct v4l2_frmsize_discrete *size = data->chip->size; 657 struct v4l2_pix_format *pix = &fmt->fmt.pix; 658 unsigned int bpp = data->chip->bpp / 8; 659 660 pix->width = size->width; 661 pix->height = size->height; 662 pix->pixelformat = data->chip->format->pixelformat; 663 pix->field = V4L2_FIELD_NONE; 664 pix->bytesperline = pix->width * bpp; 665 pix->sizeimage = pix->bytesperline * pix->height; 666 pix->colorspace = V4L2_COLORSPACE_RAW; 667 668 return 0; 669 } 670 671 static int video_i2c_s_fmt_vid_cap(struct file *file, void *fh, 672 struct v4l2_format *fmt) 673 { 674 struct video_i2c_data *data = video_drvdata(file); 675 676 if (vb2_is_busy(&data->vb_vidq)) 677 return -EBUSY; 678 679 return video_i2c_try_fmt_vid_cap(file, fh, fmt); 680 } 681 682 static int video_i2c_g_parm(struct file *filp, void *priv, 683 struct v4l2_streamparm *parm) 684 { 685 struct video_i2c_data *data = video_drvdata(filp); 686 687 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) 688 return -EINVAL; 689 690 parm->parm.capture.readbuffers = 1; 691 parm->parm.capture.capability = V4L2_CAP_TIMEPERFRAME; 692 parm->parm.capture.timeperframe = data->frame_interval; 693 694 return 0; 695 } 696 697 static int video_i2c_s_parm(struct file *filp, void *priv, 698 struct v4l2_streamparm *parm) 699 { 700 struct video_i2c_data *data = video_drvdata(filp); 701 int i; 702 703 for (i = 0; i < data->chip->num_frame_intervals - 1; i++) { 704 if (V4L2_FRACT_COMPARE(parm->parm.capture.timeperframe, <=, 705 data->chip->frame_intervals[i])) 706 break; 707 } 708 data->frame_interval = data->chip->frame_intervals[i]; 709 710 return video_i2c_g_parm(filp, priv, parm); 711 } 712 713 static const struct v4l2_ioctl_ops video_i2c_ioctl_ops = { 714 .vidioc_querycap = video_i2c_querycap, 715 .vidioc_g_input = video_i2c_g_input, 716 .vidioc_s_input = video_i2c_s_input, 717 .vidioc_enum_input = video_i2c_enum_input, 718 .vidioc_enum_fmt_vid_cap = video_i2c_enum_fmt_vid_cap, 719 .vidioc_enum_framesizes = video_i2c_enum_framesizes, 720 .vidioc_enum_frameintervals = video_i2c_enum_frameintervals, 721 .vidioc_g_fmt_vid_cap = video_i2c_try_fmt_vid_cap, 722 .vidioc_s_fmt_vid_cap = video_i2c_s_fmt_vid_cap, 723 .vidioc_g_parm = video_i2c_g_parm, 724 .vidioc_s_parm = video_i2c_s_parm, 725 .vidioc_try_fmt_vid_cap = video_i2c_try_fmt_vid_cap, 726 .vidioc_reqbufs = vb2_ioctl_reqbufs, 727 .vidioc_create_bufs = vb2_ioctl_create_bufs, 728 .vidioc_prepare_buf = vb2_ioctl_prepare_buf, 729 .vidioc_querybuf = vb2_ioctl_querybuf, 730 .vidioc_qbuf = vb2_ioctl_qbuf, 731 .vidioc_dqbuf = vb2_ioctl_dqbuf, 732 .vidioc_streamon = vb2_ioctl_streamon, 733 .vidioc_streamoff = vb2_ioctl_streamoff, 734 }; 735 736 static void video_i2c_release(struct video_device *vdev) 737 { 738 struct video_i2c_data *data = video_get_drvdata(vdev); 739 740 v4l2_device_unregister(&data->v4l2_dev); 741 mutex_destroy(&data->lock); 742 mutex_destroy(&data->queue_lock); 743 regmap_exit(data->regmap); 744 kfree(data); 745 } 746 747 static int video_i2c_probe(struct i2c_client *client) 748 { 749 struct video_i2c_data *data; 750 struct v4l2_device *v4l2_dev; 751 struct vb2_queue *queue; 752 int ret = -ENODEV; 753 754 data = kzalloc_obj(*data); 755 if (!data) 756 return -ENOMEM; 757 758 data->chip = i2c_get_match_data(client); 759 if (!data->chip) 760 goto error_free_device; 761 762 data->regmap = regmap_init_i2c(client, data->chip->regmap_config); 763 if (IS_ERR(data->regmap)) { 764 ret = PTR_ERR(data->regmap); 765 goto error_free_device; 766 } 767 768 v4l2_dev = &data->v4l2_dev; 769 strscpy(v4l2_dev->name, VIDEO_I2C_DRIVER, sizeof(v4l2_dev->name)); 770 771 ret = v4l2_device_register(&client->dev, v4l2_dev); 772 if (ret < 0) 773 goto error_regmap_exit; 774 775 mutex_init(&data->lock); 776 mutex_init(&data->queue_lock); 777 778 queue = &data->vb_vidq; 779 queue->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; 780 queue->io_modes = VB2_DMABUF | VB2_MMAP | VB2_USERPTR | VB2_READ; 781 queue->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC; 782 queue->drv_priv = data; 783 queue->buf_struct_size = sizeof(struct video_i2c_buffer); 784 queue->min_queued_buffers = 1; 785 queue->ops = &video_i2c_video_qops; 786 queue->mem_ops = &vb2_vmalloc_memops; 787 queue->lock = &data->queue_lock; 788 789 ret = vb2_queue_init(queue); 790 if (ret < 0) 791 goto error_unregister_device; 792 793 data->vdev.queue = queue; 794 795 snprintf(data->vdev.name, sizeof(data->vdev.name), 796 "I2C %d-%d Transport Video", 797 client->adapter->nr, client->addr); 798 799 data->vdev.v4l2_dev = v4l2_dev; 800 data->vdev.fops = &video_i2c_fops; 801 data->vdev.lock = &data->lock; 802 data->vdev.ioctl_ops = &video_i2c_ioctl_ops; 803 data->vdev.release = video_i2c_release; 804 data->vdev.device_caps = V4L2_CAP_VIDEO_CAPTURE | 805 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING; 806 807 spin_lock_init(&data->slock); 808 INIT_LIST_HEAD(&data->vid_cap_active); 809 810 data->frame_interval = data->chip->frame_intervals[0]; 811 812 video_set_drvdata(&data->vdev, data); 813 i2c_set_clientdata(client, data); 814 815 if (data->chip->set_power) { 816 ret = data->chip->set_power(data, true); 817 if (ret) 818 goto error_unregister_device; 819 } 820 821 pm_runtime_get_noresume(&client->dev); 822 pm_runtime_set_active(&client->dev); 823 pm_runtime_enable(&client->dev); 824 pm_runtime_set_autosuspend_delay(&client->dev, 2000); 825 pm_runtime_use_autosuspend(&client->dev); 826 827 if (data->chip->hwmon_init) { 828 ret = data->chip->hwmon_init(data); 829 if (ret < 0) { 830 dev_warn(&client->dev, 831 "failed to register hwmon device\n"); 832 } 833 } 834 835 if (data->chip->nvmem_config) { 836 struct nvmem_config *config = data->chip->nvmem_config; 837 struct nvmem_device *device; 838 839 config->priv = data; 840 config->dev = &client->dev; 841 842 device = devm_nvmem_register(&client->dev, config); 843 844 if (IS_ERR(device)) { 845 dev_warn(&client->dev, 846 "failed to register nvmem device\n"); 847 } 848 } 849 850 ret = video_register_device(&data->vdev, VFL_TYPE_VIDEO, -1); 851 if (ret < 0) 852 goto error_pm_disable; 853 854 pm_runtime_put_autosuspend(&client->dev); 855 856 return 0; 857 858 error_pm_disable: 859 pm_runtime_disable(&client->dev); 860 pm_runtime_set_suspended(&client->dev); 861 pm_runtime_put_noidle(&client->dev); 862 863 if (data->chip->set_power) 864 data->chip->set_power(data, false); 865 866 error_unregister_device: 867 v4l2_device_unregister(v4l2_dev); 868 mutex_destroy(&data->lock); 869 mutex_destroy(&data->queue_lock); 870 871 error_regmap_exit: 872 regmap_exit(data->regmap); 873 874 error_free_device: 875 kfree(data); 876 877 return ret; 878 } 879 880 static void video_i2c_remove(struct i2c_client *client) 881 { 882 struct video_i2c_data *data = i2c_get_clientdata(client); 883 884 pm_runtime_get_sync(&client->dev); 885 pm_runtime_disable(&client->dev); 886 pm_runtime_set_suspended(&client->dev); 887 pm_runtime_put_noidle(&client->dev); 888 889 if (data->chip->set_power) 890 data->chip->set_power(data, false); 891 892 vb2_video_unregister_device(&data->vdev); 893 } 894 895 #ifdef CONFIG_PM 896 897 static int video_i2c_pm_runtime_suspend(struct device *dev) 898 { 899 struct video_i2c_data *data = i2c_get_clientdata(to_i2c_client(dev)); 900 901 if (!data->chip->set_power) 902 return 0; 903 904 return data->chip->set_power(data, false); 905 } 906 907 static int video_i2c_pm_runtime_resume(struct device *dev) 908 { 909 struct video_i2c_data *data = i2c_get_clientdata(to_i2c_client(dev)); 910 911 if (!data->chip->set_power) 912 return 0; 913 914 return data->chip->set_power(data, true); 915 } 916 917 #endif 918 919 static const struct dev_pm_ops video_i2c_pm_ops = { 920 SET_RUNTIME_PM_OPS(video_i2c_pm_runtime_suspend, 921 video_i2c_pm_runtime_resume, NULL) 922 }; 923 924 static const struct i2c_device_id video_i2c_id_table[] = { 925 { .name = "amg88xx", .driver_data = (kernel_ulong_t)&video_i2c_chip[AMG88XX] }, 926 { .name = "mlx90640", .driver_data = (kernel_ulong_t)&video_i2c_chip[MLX90640] }, 927 { } 928 }; 929 MODULE_DEVICE_TABLE(i2c, video_i2c_id_table); 930 931 static const struct of_device_id video_i2c_of_match[] = { 932 { .compatible = "panasonic,amg88xx", .data = &video_i2c_chip[AMG88XX] }, 933 { .compatible = "melexis,mlx90640", .data = &video_i2c_chip[MLX90640] }, 934 {} 935 }; 936 MODULE_DEVICE_TABLE(of, video_i2c_of_match); 937 938 static struct i2c_driver video_i2c_driver = { 939 .driver = { 940 .name = VIDEO_I2C_DRIVER, 941 .of_match_table = video_i2c_of_match, 942 .pm = &video_i2c_pm_ops, 943 }, 944 .probe = video_i2c_probe, 945 .remove = video_i2c_remove, 946 .id_table = video_i2c_id_table, 947 }; 948 949 module_i2c_driver(video_i2c_driver); 950 951 MODULE_AUTHOR("Matt Ranostay <matt.ranostay@konsulko.com>"); 952 MODULE_DESCRIPTION("I2C transport video support"); 953 MODULE_LICENSE("GPL v2"); 954