1 // SPDX-License-Identifier: GPL-2.0-only
3 * Microchip Image Sensor Controller (ISC) common driver base
5 * Copyright (C) 2016-2019 Microchip Technology, Inc.
11 #include <linux/delay.h>
12 #include <linux/interrupt.h>
13 #include <linux/math64.h>
14 #include <linux/module.h>
16 #include <linux/of_graph.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/regmap.h>
20 #include <linux/videodev2.h>
21 #include <linux/atmel-isc-media.h>
23 #include <media/v4l2-ctrls.h>
24 #include <media/v4l2-device.h>
25 #include <media/v4l2-event.h>
26 #include <media/v4l2-image-sizes.h>
27 #include <media/v4l2-ioctl.h>
28 #include <media/v4l2-fwnode.h>
29 #include <media/v4l2-subdev.h>
30 #include <media/videobuf2-dma-contig.h>
32 #include "microchip-isc-regs.h"
33 #include "microchip-isc.h"
35 #define ISC_IS_FORMAT_RAW(mbus_code) \
36 (((mbus_code) & 0xf000) == 0x3000)
38 #define ISC_IS_FORMAT_GREY(mbus_code) \
39 (((mbus_code) == MEDIA_BUS_FMT_Y10_1X10) | \
40 (((mbus_code) == MEDIA_BUS_FMT_Y8_1X8)))
42 static inline void isc_update_v4l2_ctrls(struct isc_device *isc)
44 struct isc_ctrls *ctrls = &isc->ctrls;
46 /* In here we set the v4l2 controls w.r.t. our pipeline config */
47 v4l2_ctrl_s_ctrl(isc->r_gain_ctrl, ctrls->gain[ISC_HIS_CFG_MODE_R]);
48 v4l2_ctrl_s_ctrl(isc->b_gain_ctrl, ctrls->gain[ISC_HIS_CFG_MODE_B]);
49 v4l2_ctrl_s_ctrl(isc->gr_gain_ctrl, ctrls->gain[ISC_HIS_CFG_MODE_GR]);
50 v4l2_ctrl_s_ctrl(isc->gb_gain_ctrl, ctrls->gain[ISC_HIS_CFG_MODE_GB]);
52 v4l2_ctrl_s_ctrl(isc->r_off_ctrl, ctrls->offset[ISC_HIS_CFG_MODE_R]);
53 v4l2_ctrl_s_ctrl(isc->b_off_ctrl, ctrls->offset[ISC_HIS_CFG_MODE_B]);
54 v4l2_ctrl_s_ctrl(isc->gr_off_ctrl, ctrls->offset[ISC_HIS_CFG_MODE_GR]);
55 v4l2_ctrl_s_ctrl(isc->gb_off_ctrl, ctrls->offset[ISC_HIS_CFG_MODE_GB]);
58 static inline void isc_update_awb_ctrls(struct isc_device *isc)
60 struct isc_ctrls *ctrls = &isc->ctrls;
62 /* In here we set our actual hw pipeline config */
64 regmap_write(isc->regmap, ISC_WB_O_RGR,
65 ((ctrls->offset[ISC_HIS_CFG_MODE_R])) |
66 ((ctrls->offset[ISC_HIS_CFG_MODE_GR]) << 16));
67 regmap_write(isc->regmap, ISC_WB_O_BGB,
68 ((ctrls->offset[ISC_HIS_CFG_MODE_B])) |
69 ((ctrls->offset[ISC_HIS_CFG_MODE_GB]) << 16));
70 regmap_write(isc->regmap, ISC_WB_G_RGR,
71 ctrls->gain[ISC_HIS_CFG_MODE_R] |
72 (ctrls->gain[ISC_HIS_CFG_MODE_GR] << 16));
73 regmap_write(isc->regmap, ISC_WB_G_BGB,
74 ctrls->gain[ISC_HIS_CFG_MODE_B] |
75 (ctrls->gain[ISC_HIS_CFG_MODE_GB] << 16));
78 static inline void isc_reset_awb_ctrls(struct isc_device *isc)
82 for (c = ISC_HIS_CFG_MODE_GR; c <= ISC_HIS_CFG_MODE_B; c++) {
83 /* gains have a fixed point at 9 decimals */
84 isc->ctrls.gain[c] = 1 << 9;
85 /* offsets are in 2's complements */
86 isc->ctrls.offset[c] = 0;
90 static int isc_queue_setup(struct vb2_queue *vq,
91 unsigned int *nbuffers, unsigned int *nplanes,
92 unsigned int sizes[], struct device *alloc_devs[])
94 struct isc_device *isc = vb2_get_drv_priv(vq);
95 unsigned int size = isc->fmt.fmt.pix.sizeimage;
98 return sizes[0] < size ? -EINVAL : 0;
106 static int isc_buffer_prepare(struct vb2_buffer *vb)
108 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
109 struct isc_device *isc = vb2_get_drv_priv(vb->vb2_queue);
110 unsigned long size = isc->fmt.fmt.pix.sizeimage;
112 if (vb2_plane_size(vb, 0) < size) {
113 dev_err(isc->dev, "buffer too small (%lu < %lu)\n",
114 vb2_plane_size(vb, 0), size);
118 vb2_set_plane_payload(vb, 0, size);
120 vbuf->field = isc->fmt.fmt.pix.field;
125 static void isc_crop_pfe(struct isc_device *isc)
127 struct regmap *regmap = isc->regmap;
130 h = isc->fmt.fmt.pix.height;
131 w = isc->fmt.fmt.pix.width;
134 * In case the sensor is not RAW, it will output a pixel (12-16 bits)
135 * with two samples on the ISC Data bus (which is 8-12)
136 * ISC will count each sample, so, we need to multiply these values
137 * by two, to get the real number of samples for the required pixels.
139 if (!ISC_IS_FORMAT_RAW(isc->config.sd_format->mbus_code)) {
145 * We limit the column/row count that the ISC will output according
146 * to the configured resolution that we want.
147 * This will avoid the situation where the sensor is misconfigured,
148 * sending more data, and the ISC will just take it and DMA to memory,
149 * causing corruption.
151 regmap_write(regmap, ISC_PFE_CFG1,
152 (ISC_PFE_CFG1_COLMIN(0) & ISC_PFE_CFG1_COLMIN_MASK) |
153 (ISC_PFE_CFG1_COLMAX(w - 1) & ISC_PFE_CFG1_COLMAX_MASK));
155 regmap_write(regmap, ISC_PFE_CFG2,
156 (ISC_PFE_CFG2_ROWMIN(0) & ISC_PFE_CFG2_ROWMIN_MASK) |
157 (ISC_PFE_CFG2_ROWMAX(h - 1) & ISC_PFE_CFG2_ROWMAX_MASK));
159 regmap_update_bits(regmap, ISC_PFE_CFG0,
160 ISC_PFE_CFG0_COLEN | ISC_PFE_CFG0_ROWEN,
161 ISC_PFE_CFG0_COLEN | ISC_PFE_CFG0_ROWEN);
164 static void isc_start_dma(struct isc_device *isc)
166 struct regmap *regmap = isc->regmap;
167 u32 sizeimage = isc->fmt.fmt.pix.sizeimage;
171 addr0 = vb2_dma_contig_plane_dma_addr(&isc->cur_frm->vb.vb2_buf, 0);
172 regmap_write(regmap, ISC_DAD0 + isc->offsets.dma, addr0);
174 switch (isc->config.fourcc) {
175 case V4L2_PIX_FMT_YUV420:
176 regmap_write(regmap, ISC_DAD1 + isc->offsets.dma,
177 addr0 + (sizeimage * 2) / 3);
178 regmap_write(regmap, ISC_DAD2 + isc->offsets.dma,
179 addr0 + (sizeimage * 5) / 6);
181 case V4L2_PIX_FMT_YUV422P:
182 regmap_write(regmap, ISC_DAD1 + isc->offsets.dma,
183 addr0 + sizeimage / 2);
184 regmap_write(regmap, ISC_DAD2 + isc->offsets.dma,
185 addr0 + (sizeimage * 3) / 4);
191 dctrl_dview = isc->config.dctrl_dview;
193 regmap_write(regmap, ISC_DCTRL + isc->offsets.dma,
194 dctrl_dview | ISC_DCTRL_IE_IS);
195 spin_lock(&isc->awb_lock);
196 regmap_write(regmap, ISC_CTRLEN, ISC_CTRL_CAPTURE);
197 spin_unlock(&isc->awb_lock);
200 static void isc_set_pipeline(struct isc_device *isc, u32 pipeline)
202 struct regmap *regmap = isc->regmap;
203 struct isc_ctrls *ctrls = &isc->ctrls;
208 /* WB-->CFA-->CC-->GAM-->CSC-->CBC-->SUB422-->SUB420 */
209 for (i = 0; i < ISC_PIPE_LINE_NODE_NUM; i++) {
210 val = pipeline & BIT(i) ? 1 : 0;
211 regmap_field_write(isc->pipeline[i], val);
217 bay_cfg = isc->config.sd_format->cfa_baycfg;
219 regmap_write(regmap, ISC_WB_CFG, bay_cfg);
220 isc_update_awb_ctrls(isc);
221 isc_update_v4l2_ctrls(isc);
223 regmap_write(regmap, ISC_CFA_CFG, bay_cfg | ISC_CFA_CFG_EITPOL);
225 gamma = &isc->gamma_table[ctrls->gamma_index][0];
226 regmap_bulk_write(regmap, ISC_GAM_BENTRY, gamma, GAMMA_ENTRIES);
227 regmap_bulk_write(regmap, ISC_GAM_GENTRY, gamma, GAMMA_ENTRIES);
228 regmap_bulk_write(regmap, ISC_GAM_RENTRY, gamma, GAMMA_ENTRIES);
230 isc->config_dpc(isc);
231 isc->config_csc(isc);
232 isc->config_cbc(isc);
234 isc->config_gam(isc);
237 static int isc_update_profile(struct isc_device *isc)
239 struct regmap *regmap = isc->regmap;
243 regmap_write(regmap, ISC_CTRLEN, ISC_CTRL_UPPRO);
245 regmap_read(regmap, ISC_CTRLSR, &sr);
246 while ((sr & ISC_CTRL_UPPRO) && counter--) {
247 usleep_range(1000, 2000);
248 regmap_read(regmap, ISC_CTRLSR, &sr);
252 v4l2_warn(&isc->v4l2_dev, "Time out to update profile\n");
259 static void isc_set_histogram(struct isc_device *isc, bool enable)
261 struct regmap *regmap = isc->regmap;
262 struct isc_ctrls *ctrls = &isc->ctrls;
265 regmap_write(regmap, ISC_HIS_CFG + isc->offsets.his,
266 ISC_HIS_CFG_MODE_GR |
267 (isc->config.sd_format->cfa_baycfg
268 << ISC_HIS_CFG_BAYSEL_SHIFT) |
270 regmap_write(regmap, ISC_HIS_CTRL + isc->offsets.his,
272 regmap_write(regmap, ISC_INTEN, ISC_INT_HISDONE);
273 ctrls->hist_id = ISC_HIS_CFG_MODE_GR;
274 isc_update_profile(isc);
275 regmap_write(regmap, ISC_CTRLEN, ISC_CTRL_HISREQ);
277 ctrls->hist_stat = HIST_ENABLED;
279 regmap_write(regmap, ISC_INTDIS, ISC_INT_HISDONE);
280 regmap_write(regmap, ISC_HIS_CTRL + isc->offsets.his,
283 ctrls->hist_stat = HIST_DISABLED;
287 static int isc_configure(struct isc_device *isc)
289 struct regmap *regmap = isc->regmap;
290 u32 pfe_cfg0, dcfg, mask, pipeline;
291 struct isc_subdev_entity *subdev = isc->current_subdev;
293 pfe_cfg0 = isc->config.sd_format->pfe_cfg0_bps;
294 pipeline = isc->config.bits_pipeline;
296 dcfg = isc->config.dcfg_imode | isc->dcfg;
298 pfe_cfg0 |= subdev->pfe_cfg0 | ISC_PFE_CFG0_MODE_PROGRESSIVE;
299 mask = ISC_PFE_CFG0_BPS_MASK | ISC_PFE_CFG0_HPOL_LOW |
300 ISC_PFE_CFG0_VPOL_LOW | ISC_PFE_CFG0_PPOL_LOW |
301 ISC_PFE_CFG0_MODE_MASK | ISC_PFE_CFG0_CCIR_CRC |
302 ISC_PFE_CFG0_CCIR656 | ISC_PFE_CFG0_MIPI;
304 regmap_update_bits(regmap, ISC_PFE_CFG0, mask, pfe_cfg0);
306 isc->config_rlp(isc);
308 regmap_write(regmap, ISC_DCFG + isc->offsets.dma, dcfg);
310 /* Set the pipeline */
311 isc_set_pipeline(isc, pipeline);
314 * The current implemented histogram is available for RAW R, B, GB, GR
315 * channels. We need to check if sensor is outputting RAW BAYER
317 if (isc->ctrls.awb &&
318 ISC_IS_FORMAT_RAW(isc->config.sd_format->mbus_code))
319 isc_set_histogram(isc, true);
321 isc_set_histogram(isc, false);
324 return isc_update_profile(isc);
327 static int isc_prepare_streaming(struct vb2_queue *vq)
329 struct isc_device *isc = vb2_get_drv_priv(vq);
331 return media_pipeline_start(isc->video_dev.entity.pads, &isc->mpipe);
334 static int isc_start_streaming(struct vb2_queue *vq, unsigned int count)
336 struct isc_device *isc = vb2_get_drv_priv(vq);
337 struct regmap *regmap = isc->regmap;
338 struct isc_buffer *buf;
342 /* Enable stream on the sub device */
343 ret = v4l2_subdev_call(isc->current_subdev->sd, video, s_stream, 1);
344 if (ret && ret != -ENOIOCTLCMD) {
345 dev_err(isc->dev, "stream on failed in subdev %d\n", ret);
346 goto err_start_stream;
349 ret = pm_runtime_resume_and_get(isc->dev);
351 dev_err(isc->dev, "RPM resume failed in subdev %d\n",
356 ret = isc_configure(isc);
360 /* Enable DMA interrupt */
361 regmap_write(regmap, ISC_INTEN, ISC_INT_DDONE);
363 spin_lock_irqsave(&isc->dma_queue_lock, flags);
367 reinit_completion(&isc->comp);
369 isc->cur_frm = list_first_entry(&isc->dma_queue,
370 struct isc_buffer, list);
371 list_del(&isc->cur_frm->list);
376 spin_unlock_irqrestore(&isc->dma_queue_lock, flags);
378 /* if we streaming from RAW, we can do one-shot white balance adj */
379 if (ISC_IS_FORMAT_RAW(isc->config.sd_format->mbus_code))
380 v4l2_ctrl_activate(isc->do_wb_ctrl, true);
385 pm_runtime_put_sync(isc->dev);
387 v4l2_subdev_call(isc->current_subdev->sd, video, s_stream, 0);
390 spin_lock_irqsave(&isc->dma_queue_lock, flags);
391 list_for_each_entry(buf, &isc->dma_queue, list)
392 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_QUEUED);
393 INIT_LIST_HEAD(&isc->dma_queue);
394 spin_unlock_irqrestore(&isc->dma_queue_lock, flags);
399 static void isc_unprepare_streaming(struct vb2_queue *vq)
401 struct isc_device *isc = vb2_get_drv_priv(vq);
403 /* Stop media pipeline */
404 media_pipeline_stop(isc->video_dev.entity.pads);
407 static void isc_stop_streaming(struct vb2_queue *vq)
409 struct isc_device *isc = vb2_get_drv_priv(vq);
411 struct isc_buffer *buf;
414 mutex_lock(&isc->awb_mutex);
415 v4l2_ctrl_activate(isc->do_wb_ctrl, false);
419 /* Wait until the end of the current frame */
420 if (isc->cur_frm && !wait_for_completion_timeout(&isc->comp, 5 * HZ))
421 dev_err(isc->dev, "Timeout waiting for end of the capture\n");
423 mutex_unlock(&isc->awb_mutex);
425 /* Disable DMA interrupt */
426 regmap_write(isc->regmap, ISC_INTDIS, ISC_INT_DDONE);
428 pm_runtime_put_sync(isc->dev);
430 /* Disable stream on the sub device */
431 ret = v4l2_subdev_call(isc->current_subdev->sd, video, s_stream, 0);
432 if (ret && ret != -ENOIOCTLCMD)
433 dev_err(isc->dev, "stream off failed in subdev\n");
435 /* Release all active buffers */
436 spin_lock_irqsave(&isc->dma_queue_lock, flags);
437 if (unlikely(isc->cur_frm)) {
438 vb2_buffer_done(&isc->cur_frm->vb.vb2_buf,
439 VB2_BUF_STATE_ERROR);
442 list_for_each_entry(buf, &isc->dma_queue, list)
443 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
444 INIT_LIST_HEAD(&isc->dma_queue);
445 spin_unlock_irqrestore(&isc->dma_queue_lock, flags);
448 static void isc_buffer_queue(struct vb2_buffer *vb)
450 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
451 struct isc_buffer *buf = container_of(vbuf, struct isc_buffer, vb);
452 struct isc_device *isc = vb2_get_drv_priv(vb->vb2_queue);
455 spin_lock_irqsave(&isc->dma_queue_lock, flags);
456 if (!isc->cur_frm && list_empty(&isc->dma_queue) &&
457 vb2_start_streaming_called(vb->vb2_queue)) {
461 list_add_tail(&buf->list, &isc->dma_queue);
463 spin_unlock_irqrestore(&isc->dma_queue_lock, flags);
466 static const struct vb2_ops isc_vb2_ops = {
467 .queue_setup = isc_queue_setup,
468 .wait_prepare = vb2_ops_wait_prepare,
469 .wait_finish = vb2_ops_wait_finish,
470 .buf_prepare = isc_buffer_prepare,
471 .start_streaming = isc_start_streaming,
472 .stop_streaming = isc_stop_streaming,
473 .buf_queue = isc_buffer_queue,
474 .prepare_streaming = isc_prepare_streaming,
475 .unprepare_streaming = isc_unprepare_streaming,
478 static int isc_querycap(struct file *file, void *priv,
479 struct v4l2_capability *cap)
481 struct isc_device *isc = video_drvdata(file);
483 strscpy(cap->driver, "microchip-isc", sizeof(cap->driver));
484 strscpy(cap->card, "Microchip Image Sensor Controller", sizeof(cap->card));
485 snprintf(cap->bus_info, sizeof(cap->bus_info),
486 "platform:%s", isc->v4l2_dev.name);
491 static int isc_enum_fmt_vid_cap(struct file *file, void *priv,
492 struct v4l2_fmtdesc *f)
494 struct isc_device *isc = video_drvdata(file);
495 u32 index = f->index;
496 u32 i, supported_index = 0;
497 struct isc_format *fmt;
500 * If we are not asked a specific mbus_code, we have to report all
501 * the formats that we can output.
504 if (index >= isc->controller_formats_size)
507 f->pixelformat = isc->controller_formats[index].fourcc;
513 * If a specific mbus_code is requested, check if we support
514 * this mbus_code as input for the ISC.
515 * If it's supported, then we report the corresponding pixelformat
516 * as first possible option for the ISC.
517 * E.g. mbus MEDIA_BUS_FMT_YUYV8_2X8 and report
518 * 'YUYV' (YUYV 4:2:2)
520 fmt = isc_find_format_by_code(isc, f->mbus_code, &i);
525 f->pixelformat = fmt->fourcc;
532 /* If the index is not raw, we don't have anymore formats to report */
533 if (!ISC_IS_FORMAT_RAW(f->mbus_code))
537 * We are asked for a specific mbus code, which is raw.
538 * We have to search through the formats we can convert to.
539 * We have to skip the raw formats, we cannot convert to raw.
540 * E.g. 'AR12' (16-bit ARGB 4-4-4-4), 'AR15' (16-bit ARGB 1-5-5-5), etc.
542 for (i = 0; i < isc->controller_formats_size; i++) {
543 if (isc->controller_formats[i].raw)
545 if (index == supported_index) {
546 f->pixelformat = isc->controller_formats[i].fourcc;
555 static int isc_g_fmt_vid_cap(struct file *file, void *priv,
556 struct v4l2_format *fmt)
558 struct isc_device *isc = video_drvdata(file);
566 * Checks the current configured format, if ISC can output it,
567 * considering which type of format the ISC receives from the sensor
569 static int isc_try_validate_formats(struct isc_device *isc)
572 bool bayer = false, yuv = false, rgb = false, grey = false;
574 /* all formats supported by the RLP module are OK */
575 switch (isc->try_config.fourcc) {
576 case V4L2_PIX_FMT_SBGGR8:
577 case V4L2_PIX_FMT_SGBRG8:
578 case V4L2_PIX_FMT_SGRBG8:
579 case V4L2_PIX_FMT_SRGGB8:
580 case V4L2_PIX_FMT_SBGGR10:
581 case V4L2_PIX_FMT_SGBRG10:
582 case V4L2_PIX_FMT_SGRBG10:
583 case V4L2_PIX_FMT_SRGGB10:
584 case V4L2_PIX_FMT_SBGGR12:
585 case V4L2_PIX_FMT_SGBRG12:
586 case V4L2_PIX_FMT_SGRBG12:
587 case V4L2_PIX_FMT_SRGGB12:
592 case V4L2_PIX_FMT_YUV420:
593 case V4L2_PIX_FMT_YUV422P:
594 case V4L2_PIX_FMT_YUYV:
595 case V4L2_PIX_FMT_UYVY:
596 case V4L2_PIX_FMT_VYUY:
601 case V4L2_PIX_FMT_RGB565:
602 case V4L2_PIX_FMT_ABGR32:
603 case V4L2_PIX_FMT_XBGR32:
604 case V4L2_PIX_FMT_ARGB444:
605 case V4L2_PIX_FMT_ARGB555:
609 case V4L2_PIX_FMT_GREY:
610 case V4L2_PIX_FMT_Y10:
611 case V4L2_PIX_FMT_Y16:
616 /* any other different formats are not supported */
617 dev_err(isc->dev, "Requested unsupported format.\n");
621 "Format validation, requested rgb=%u, yuv=%u, grey=%u, bayer=%u\n",
622 rgb, yuv, grey, bayer);
625 !ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code)) {
626 dev_err(isc->dev, "Cannot output RAW if we do not receive RAW.\n");
630 if (grey && !ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code) &&
631 !ISC_IS_FORMAT_GREY(isc->try_config.sd_format->mbus_code)) {
632 dev_err(isc->dev, "Cannot output GREY if we do not receive RAW/GREY.\n");
636 if ((rgb || bayer || yuv) &&
637 ISC_IS_FORMAT_GREY(isc->try_config.sd_format->mbus_code)) {
638 dev_err(isc->dev, "Cannot convert GREY to another format.\n");
646 * Configures the RLP and DMA modules, depending on the output format
647 * configured for the ISC.
648 * If direct_dump == true, just dump raw data 8/16 bits depending on format.
650 static int isc_try_configure_rlp_dma(struct isc_device *isc, bool direct_dump)
652 isc->try_config.rlp_cfg_mode = 0;
654 switch (isc->try_config.fourcc) {
655 case V4L2_PIX_FMT_SBGGR8:
656 case V4L2_PIX_FMT_SGBRG8:
657 case V4L2_PIX_FMT_SGRBG8:
658 case V4L2_PIX_FMT_SRGGB8:
659 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_DAT8;
660 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED8;
661 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
662 isc->try_config.bpp = 8;
663 isc->try_config.bpp_v4l2 = 8;
665 case V4L2_PIX_FMT_SBGGR10:
666 case V4L2_PIX_FMT_SGBRG10:
667 case V4L2_PIX_FMT_SGRBG10:
668 case V4L2_PIX_FMT_SRGGB10:
669 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_DAT10;
670 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED16;
671 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
672 isc->try_config.bpp = 16;
673 isc->try_config.bpp_v4l2 = 16;
675 case V4L2_PIX_FMT_SBGGR12:
676 case V4L2_PIX_FMT_SGBRG12:
677 case V4L2_PIX_FMT_SGRBG12:
678 case V4L2_PIX_FMT_SRGGB12:
679 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_DAT12;
680 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED16;
681 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
682 isc->try_config.bpp = 16;
683 isc->try_config.bpp_v4l2 = 16;
685 case V4L2_PIX_FMT_RGB565:
686 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_RGB565;
687 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED16;
688 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
689 isc->try_config.bpp = 16;
690 isc->try_config.bpp_v4l2 = 16;
692 case V4L2_PIX_FMT_ARGB444:
693 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_ARGB444;
694 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED16;
695 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
696 isc->try_config.bpp = 16;
697 isc->try_config.bpp_v4l2 = 16;
699 case V4L2_PIX_FMT_ARGB555:
700 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_ARGB555;
701 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED16;
702 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
703 isc->try_config.bpp = 16;
704 isc->try_config.bpp_v4l2 = 16;
706 case V4L2_PIX_FMT_ABGR32:
707 case V4L2_PIX_FMT_XBGR32:
708 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_ARGB32;
709 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED32;
710 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
711 isc->try_config.bpp = 32;
712 isc->try_config.bpp_v4l2 = 32;
714 case V4L2_PIX_FMT_YUV420:
715 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_YYCC;
716 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_YC420P;
717 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PLANAR;
718 isc->try_config.bpp = 12;
719 isc->try_config.bpp_v4l2 = 8; /* only first plane */
721 case V4L2_PIX_FMT_YUV422P:
722 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_YYCC;
723 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_YC422P;
724 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PLANAR;
725 isc->try_config.bpp = 16;
726 isc->try_config.bpp_v4l2 = 8; /* only first plane */
728 case V4L2_PIX_FMT_YUYV:
729 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_YCYC | ISC_RLP_CFG_YMODE_YUYV;
730 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED32;
731 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
732 isc->try_config.bpp = 16;
733 isc->try_config.bpp_v4l2 = 16;
735 case V4L2_PIX_FMT_UYVY:
736 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_YCYC | ISC_RLP_CFG_YMODE_UYVY;
737 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED32;
738 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
739 isc->try_config.bpp = 16;
740 isc->try_config.bpp_v4l2 = 16;
742 case V4L2_PIX_FMT_VYUY:
743 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_YCYC | ISC_RLP_CFG_YMODE_VYUY;
744 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED32;
745 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
746 isc->try_config.bpp = 16;
747 isc->try_config.bpp_v4l2 = 16;
749 case V4L2_PIX_FMT_GREY:
750 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_DATY8;
751 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED8;
752 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
753 isc->try_config.bpp = 8;
754 isc->try_config.bpp_v4l2 = 8;
756 case V4L2_PIX_FMT_Y16:
757 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_DATY10 | ISC_RLP_CFG_LSH;
759 case V4L2_PIX_FMT_Y10:
760 isc->try_config.rlp_cfg_mode |= ISC_RLP_CFG_MODE_DATY10;
761 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED16;
762 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
763 isc->try_config.bpp = 16;
764 isc->try_config.bpp_v4l2 = 16;
771 isc->try_config.rlp_cfg_mode = ISC_RLP_CFG_MODE_DAT8;
772 isc->try_config.dcfg_imode = ISC_DCFG_IMODE_PACKED8;
773 isc->try_config.dctrl_dview = ISC_DCTRL_DVIEW_PACKED;
781 * Configuring pipeline modules, depending on which format the ISC outputs
782 * and considering which format it has as input from the sensor.
784 static int isc_try_configure_pipeline(struct isc_device *isc)
786 switch (isc->try_config.fourcc) {
787 case V4L2_PIX_FMT_RGB565:
788 case V4L2_PIX_FMT_ARGB555:
789 case V4L2_PIX_FMT_ARGB444:
790 case V4L2_PIX_FMT_ABGR32:
791 case V4L2_PIX_FMT_XBGR32:
792 /* if sensor format is RAW, we convert inside ISC */
793 if (ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code)) {
794 isc->try_config.bits_pipeline = CFA_ENABLE |
795 WB_ENABLE | GAM_ENABLES | DPC_BLCENABLE |
798 isc->try_config.bits_pipeline = 0x0;
801 case V4L2_PIX_FMT_YUV420:
802 /* if sensor format is RAW, we convert inside ISC */
803 if (ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code)) {
804 isc->try_config.bits_pipeline = CFA_ENABLE |
805 CSC_ENABLE | GAM_ENABLES | WB_ENABLE |
806 SUB420_ENABLE | SUB422_ENABLE | CBC_ENABLE |
809 isc->try_config.bits_pipeline = 0x0;
812 case V4L2_PIX_FMT_YUV422P:
813 /* if sensor format is RAW, we convert inside ISC */
814 if (ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code)) {
815 isc->try_config.bits_pipeline = CFA_ENABLE |
816 CSC_ENABLE | WB_ENABLE | GAM_ENABLES |
817 SUB422_ENABLE | CBC_ENABLE | DPC_BLCENABLE;
819 isc->try_config.bits_pipeline = 0x0;
822 case V4L2_PIX_FMT_YUYV:
823 case V4L2_PIX_FMT_UYVY:
824 case V4L2_PIX_FMT_VYUY:
825 /* if sensor format is RAW, we convert inside ISC */
826 if (ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code)) {
827 isc->try_config.bits_pipeline = CFA_ENABLE |
828 CSC_ENABLE | WB_ENABLE | GAM_ENABLES |
829 SUB422_ENABLE | CBC_ENABLE | DPC_BLCENABLE;
831 isc->try_config.bits_pipeline = 0x0;
834 case V4L2_PIX_FMT_GREY:
835 case V4L2_PIX_FMT_Y16:
836 /* if sensor format is RAW, we convert inside ISC */
837 if (ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code)) {
838 isc->try_config.bits_pipeline = CFA_ENABLE |
839 CSC_ENABLE | WB_ENABLE | GAM_ENABLES |
840 CBC_ENABLE | DPC_BLCENABLE;
842 isc->try_config.bits_pipeline = 0x0;
846 if (ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code))
847 isc->try_config.bits_pipeline = WB_ENABLE | DPC_BLCENABLE;
849 isc->try_config.bits_pipeline = 0x0;
852 /* Tune the pipeline to product specific */
853 isc->adapt_pipeline(isc);
858 static void isc_try_fse(struct isc_device *isc,
859 struct v4l2_subdev_state *sd_state)
861 struct v4l2_subdev_frame_size_enum fse = {
862 .which = V4L2_SUBDEV_FORMAT_TRY,
867 * If we do not know yet which format the subdev is using, we cannot
870 if (!isc->config.sd_format)
873 fse.code = isc->try_config.sd_format->mbus_code;
875 ret = v4l2_subdev_call(isc->current_subdev->sd, pad, enum_frame_size,
878 * Attempt to obtain format size from subdev. If not available,
879 * just use the maximum ISC can receive.
882 sd_state->pads->try_crop.width = isc->max_width;
883 sd_state->pads->try_crop.height = isc->max_height;
885 sd_state->pads->try_crop.width = fse.max_width;
886 sd_state->pads->try_crop.height = fse.max_height;
890 static int isc_try_fmt(struct isc_device *isc, struct v4l2_format *f)
892 struct v4l2_pix_format *pixfmt = &f->fmt.pix;
895 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
898 isc->try_config.fourcc = isc->controller_formats[0].fourcc;
900 /* find if the format requested is supported */
901 for (i = 0; i < isc->controller_formats_size; i++)
902 if (isc->controller_formats[i].fourcc == pixfmt->pixelformat) {
903 isc->try_config.fourcc = pixfmt->pixelformat;
907 isc_try_configure_rlp_dma(isc, false);
909 /* Limit to Microchip ISC hardware capabilities */
910 v4l_bound_align_image(&pixfmt->width, 16, isc->max_width, 0,
911 &pixfmt->height, 16, isc->max_height, 0, 0);
912 /* If we did not find the requested format, we will fallback here */
913 pixfmt->pixelformat = isc->try_config.fourcc;
914 pixfmt->colorspace = V4L2_COLORSPACE_SRGB;
915 pixfmt->field = V4L2_FIELD_NONE;
917 pixfmt->bytesperline = (pixfmt->width * isc->try_config.bpp_v4l2) >> 3;
918 pixfmt->sizeimage = ((pixfmt->width * isc->try_config.bpp) >> 3) *
926 static int isc_set_fmt(struct isc_device *isc, struct v4l2_format *f)
930 /* make the try configuration active */
931 isc->config = isc->try_config;
932 isc->fmt = isc->try_fmt;
934 dev_dbg(isc->dev, "ISC set_fmt to %.4s @%dx%d\n",
935 (char *)&f->fmt.pix.pixelformat,
936 f->fmt.pix.width, f->fmt.pix.height);
941 static int isc_validate(struct isc_device *isc)
945 struct isc_format *sd_fmt = NULL;
946 struct v4l2_pix_format *pixfmt = &isc->fmt.fmt.pix;
947 struct v4l2_subdev_format format = {
948 .which = V4L2_SUBDEV_FORMAT_ACTIVE,
949 .pad = isc->remote_pad,
951 struct v4l2_subdev_pad_config pad_cfg = {};
952 struct v4l2_subdev_state pad_state = {
956 /* Get current format from subdev */
957 ret = v4l2_subdev_call(isc->current_subdev->sd, pad, get_fmt, NULL,
962 /* Identify the subdev's format configuration */
963 for (i = 0; i < isc->formats_list_size; i++)
964 if (isc->formats_list[i].mbus_code == format.format.code) {
965 sd_fmt = &isc->formats_list[i];
969 /* Check if the format is not supported */
972 "Current subdevice is streaming a media bus code that is not supported 0x%x\n",
977 /* At this moment we know which format the subdev will use */
978 isc->try_config.sd_format = sd_fmt;
980 /* If the sensor is not RAW, we can only do a direct dump */
981 if (!ISC_IS_FORMAT_RAW(isc->try_config.sd_format->mbus_code))
982 isc_try_configure_rlp_dma(isc, true);
984 /* Limit to Microchip ISC hardware capabilities */
985 v4l_bound_align_image(&format.format.width, 16, isc->max_width, 0,
986 &format.format.height, 16, isc->max_height, 0, 0);
988 /* Check if the frame size is the same. Otherwise we may overflow */
989 if (pixfmt->height != format.format.height ||
990 pixfmt->width != format.format.width) {
992 "ISC not configured with the proper frame size: %dx%d\n",
993 format.format.width, format.format.height);
998 "Identified subdev using format %.4s with %dx%d %d bpp\n",
999 (char *)&sd_fmt->fourcc, pixfmt->width, pixfmt->height,
1000 isc->try_config.bpp);
1002 /* Reset and restart AWB if the subdevice changed the format */
1003 if (isc->try_config.sd_format && isc->config.sd_format &&
1004 isc->try_config.sd_format != isc->config.sd_format) {
1005 isc->ctrls.hist_stat = HIST_INIT;
1006 isc_reset_awb_ctrls(isc);
1007 isc_update_v4l2_ctrls(isc);
1010 /* Validate formats */
1011 ret = isc_try_validate_formats(isc);
1015 /* Obtain frame sizes if possible to have crop requirements ready */
1016 isc_try_fse(isc, &pad_state);
1018 /* Configure ISC pipeline for the config */
1019 ret = isc_try_configure_pipeline(isc);
1023 isc->config = isc->try_config;
1025 dev_dbg(isc->dev, "New ISC configuration in place\n");
1030 static int isc_s_fmt_vid_cap(struct file *file, void *priv,
1031 struct v4l2_format *f)
1033 struct isc_device *isc = video_drvdata(file);
1035 if (vb2_is_busy(&isc->vb2_vidq))
1038 return isc_set_fmt(isc, f);
1041 static int isc_try_fmt_vid_cap(struct file *file, void *priv,
1042 struct v4l2_format *f)
1044 struct isc_device *isc = video_drvdata(file);
1046 return isc_try_fmt(isc, f);
1049 static int isc_enum_input(struct file *file, void *priv,
1050 struct v4l2_input *inp)
1052 if (inp->index != 0)
1055 inp->type = V4L2_INPUT_TYPE_CAMERA;
1057 strscpy(inp->name, "Camera", sizeof(inp->name));
1062 static int isc_g_input(struct file *file, void *priv, unsigned int *i)
1069 static int isc_s_input(struct file *file, void *priv, unsigned int i)
1077 static int isc_g_parm(struct file *file, void *fh, struct v4l2_streamparm *a)
1079 struct isc_device *isc = video_drvdata(file);
1081 return v4l2_g_parm_cap(video_devdata(file), isc->current_subdev->sd, a);
1084 static int isc_s_parm(struct file *file, void *fh, struct v4l2_streamparm *a)
1086 struct isc_device *isc = video_drvdata(file);
1088 return v4l2_s_parm_cap(video_devdata(file), isc->current_subdev->sd, a);
1091 static int isc_enum_framesizes(struct file *file, void *fh,
1092 struct v4l2_frmsizeenum *fsize)
1094 struct isc_device *isc = video_drvdata(file);
1101 for (i = 0; i < isc->controller_formats_size; i++)
1102 if (isc->controller_formats[i].fourcc == fsize->pixel_format)
1108 fsize->type = V4L2_FRMSIZE_TYPE_CONTINUOUS;
1110 fsize->stepwise.min_width = 16;
1111 fsize->stepwise.max_width = isc->max_width;
1112 fsize->stepwise.min_height = 16;
1113 fsize->stepwise.max_height = isc->max_height;
1114 fsize->stepwise.step_width = 1;
1115 fsize->stepwise.step_height = 1;
1120 static const struct v4l2_ioctl_ops isc_ioctl_ops = {
1121 .vidioc_querycap = isc_querycap,
1122 .vidioc_enum_fmt_vid_cap = isc_enum_fmt_vid_cap,
1123 .vidioc_g_fmt_vid_cap = isc_g_fmt_vid_cap,
1124 .vidioc_s_fmt_vid_cap = isc_s_fmt_vid_cap,
1125 .vidioc_try_fmt_vid_cap = isc_try_fmt_vid_cap,
1127 .vidioc_enum_input = isc_enum_input,
1128 .vidioc_g_input = isc_g_input,
1129 .vidioc_s_input = isc_s_input,
1131 .vidioc_reqbufs = vb2_ioctl_reqbufs,
1132 .vidioc_querybuf = vb2_ioctl_querybuf,
1133 .vidioc_qbuf = vb2_ioctl_qbuf,
1134 .vidioc_expbuf = vb2_ioctl_expbuf,
1135 .vidioc_dqbuf = vb2_ioctl_dqbuf,
1136 .vidioc_create_bufs = vb2_ioctl_create_bufs,
1137 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
1138 .vidioc_streamon = vb2_ioctl_streamon,
1139 .vidioc_streamoff = vb2_ioctl_streamoff,
1141 .vidioc_g_parm = isc_g_parm,
1142 .vidioc_s_parm = isc_s_parm,
1143 .vidioc_enum_framesizes = isc_enum_framesizes,
1145 .vidioc_log_status = v4l2_ctrl_log_status,
1146 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1147 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1150 static int isc_open(struct file *file)
1152 struct isc_device *isc = video_drvdata(file);
1153 struct v4l2_subdev *sd = isc->current_subdev->sd;
1156 if (mutex_lock_interruptible(&isc->lock))
1157 return -ERESTARTSYS;
1159 ret = v4l2_fh_open(file);
1163 if (!v4l2_fh_is_singular_file(file))
1166 ret = v4l2_subdev_call(sd, core, s_power, 1);
1167 if (ret < 0 && ret != -ENOIOCTLCMD) {
1168 v4l2_fh_release(file);
1172 ret = isc_set_fmt(isc, &isc->fmt);
1174 v4l2_subdev_call(sd, core, s_power, 0);
1175 v4l2_fh_release(file);
1179 mutex_unlock(&isc->lock);
1183 static int isc_release(struct file *file)
1185 struct isc_device *isc = video_drvdata(file);
1186 struct v4l2_subdev *sd = isc->current_subdev->sd;
1190 mutex_lock(&isc->lock);
1192 fh_singular = v4l2_fh_is_singular_file(file);
1194 ret = _vb2_fop_release(file, NULL);
1197 v4l2_subdev_call(sd, core, s_power, 0);
1199 mutex_unlock(&isc->lock);
1204 static const struct v4l2_file_operations isc_fops = {
1205 .owner = THIS_MODULE,
1207 .release = isc_release,
1208 .unlocked_ioctl = video_ioctl2,
1209 .read = vb2_fop_read,
1210 .mmap = vb2_fop_mmap,
1211 .poll = vb2_fop_poll,
1214 irqreturn_t microchip_isc_interrupt(int irq, void *dev_id)
1216 struct isc_device *isc = (struct isc_device *)dev_id;
1217 struct regmap *regmap = isc->regmap;
1218 u32 isc_intsr, isc_intmask, pending;
1219 irqreturn_t ret = IRQ_NONE;
1221 regmap_read(regmap, ISC_INTSR, &isc_intsr);
1222 regmap_read(regmap, ISC_INTMASK, &isc_intmask);
1224 pending = isc_intsr & isc_intmask;
1226 if (likely(pending & ISC_INT_DDONE)) {
1227 spin_lock(&isc->dma_queue_lock);
1229 struct vb2_v4l2_buffer *vbuf = &isc->cur_frm->vb;
1230 struct vb2_buffer *vb = &vbuf->vb2_buf;
1232 vb->timestamp = ktime_get_ns();
1233 vbuf->sequence = isc->sequence++;
1234 vb2_buffer_done(vb, VB2_BUF_STATE_DONE);
1235 isc->cur_frm = NULL;
1238 if (!list_empty(&isc->dma_queue) && !isc->stop) {
1239 isc->cur_frm = list_first_entry(&isc->dma_queue,
1240 struct isc_buffer, list);
1241 list_del(&isc->cur_frm->list);
1247 complete(&isc->comp);
1250 spin_unlock(&isc->dma_queue_lock);
1253 if (pending & ISC_INT_HISDONE) {
1254 schedule_work(&isc->awb_work);
1260 EXPORT_SYMBOL_GPL(microchip_isc_interrupt);
1262 static void isc_hist_count(struct isc_device *isc, u32 *min, u32 *max)
1264 struct regmap *regmap = isc->regmap;
1265 struct isc_ctrls *ctrls = &isc->ctrls;
1266 u32 *hist_count = &ctrls->hist_count[ctrls->hist_id];
1267 u32 *hist_entry = &ctrls->hist_entry[0];
1271 *max = HIST_ENTRIES;
1273 regmap_bulk_read(regmap, ISC_HIS_ENTRY + isc->offsets.his_entry,
1274 hist_entry, HIST_ENTRIES);
1278 * we deliberately ignore the end of the histogram,
1279 * the most white pixels
1281 for (i = 1; i < HIST_ENTRIES; i++) {
1282 if (*hist_entry && !*min)
1286 *hist_count += i * (*hist_entry++);
1292 dev_dbg(isc->dev, "isc wb: hist_id %u, hist_count %u",
1293 ctrls->hist_id, *hist_count);
1296 static void isc_wb_update(struct isc_ctrls *ctrls)
1298 struct isc_device *isc = container_of(ctrls, struct isc_device, ctrls);
1299 u32 *hist_count = &ctrls->hist_count[0];
1302 /* We compute two gains, stretch gain and grey world gain */
1303 u32 s_gain[4], gw_gain[4];
1306 * According to Grey World, we need to set gains for R/B to normalize
1307 * them towards the green channel.
1308 * Thus we want to keep Green as fixed and adjust only Red/Blue
1309 * Compute the average of the both green channels first
1311 avg = (u64)hist_count[ISC_HIS_CFG_MODE_GR] +
1312 (u64)hist_count[ISC_HIS_CFG_MODE_GB];
1315 dev_dbg(isc->dev, "isc wb: green components average %llu\n", avg);
1317 /* Green histogram is null, nothing to do */
1321 for (c = ISC_HIS_CFG_MODE_GR; c <= ISC_HIS_CFG_MODE_B; c++) {
1323 * the color offset is the minimum value of the histogram.
1324 * we stretch this color to the full range by substracting
1325 * this value from the color component.
1327 offset[c] = ctrls->hist_minmax[c][HIST_MIN_INDEX];
1329 * The offset is always at least 1. If the offset is 1, we do
1330 * not need to adjust it, so our result must be zero.
1331 * the offset is computed in a histogram on 9 bits (0..512)
1332 * but the offset in register is based on
1333 * 12 bits pipeline (0..4096).
1334 * we need to shift with the 3 bits that the histogram is
1337 ctrls->offset[c] = (offset[c] - 1) << 3;
1340 * the offset is then taken and converted to 2's complements,
1341 * and must be negative, as we subtract this value from the
1344 ctrls->offset[c] = -ctrls->offset[c];
1347 * the stretch gain is the total number of histogram bins
1348 * divided by the actual range of color component (Max - Min)
1349 * If we compute gain like this, the actual color component
1350 * will be stretched to the full histogram.
1351 * We need to shift 9 bits for precision, we have 9 bits for
1354 s_gain[c] = (HIST_ENTRIES << 9) /
1355 (ctrls->hist_minmax[c][HIST_MAX_INDEX] -
1356 ctrls->hist_minmax[c][HIST_MIN_INDEX] + 1);
1359 * Now we have to compute the gain w.r.t. the average.
1360 * Add/lose gain to the component towards the average.
1361 * If it happens that the component is zero, use the
1362 * fixed point value : 1.0 gain.
1365 gw_gain[c] = div_u64(avg << 9, hist_count[c]);
1367 gw_gain[c] = 1 << 9;
1370 "isc wb: component %d, s_gain %u, gw_gain %u\n",
1371 c, s_gain[c], gw_gain[c]);
1372 /* multiply both gains and adjust for decimals */
1373 ctrls->gain[c] = s_gain[c] * gw_gain[c];
1374 ctrls->gain[c] >>= 9;
1376 /* make sure we are not out of range */
1377 ctrls->gain[c] = clamp_val(ctrls->gain[c], 0, GENMASK(12, 0));
1379 dev_dbg(isc->dev, "isc wb: component %d, final gain %u\n",
1384 static void isc_awb_work(struct work_struct *w)
1386 struct isc_device *isc =
1387 container_of(w, struct isc_device, awb_work);
1388 struct regmap *regmap = isc->regmap;
1389 struct isc_ctrls *ctrls = &isc->ctrls;
1390 u32 hist_id = ctrls->hist_id;
1392 unsigned long flags;
1396 if (ctrls->hist_stat != HIST_ENABLED)
1399 isc_hist_count(isc, &min, &max);
1402 "isc wb mode %d: hist min %u , max %u\n", hist_id, min, max);
1404 ctrls->hist_minmax[hist_id][HIST_MIN_INDEX] = min;
1405 ctrls->hist_minmax[hist_id][HIST_MAX_INDEX] = max;
1407 if (hist_id != ISC_HIS_CFG_MODE_B) {
1410 isc_wb_update(ctrls);
1411 hist_id = ISC_HIS_CFG_MODE_GR;
1414 ctrls->hist_id = hist_id;
1415 baysel = isc->config.sd_format->cfa_baycfg << ISC_HIS_CFG_BAYSEL_SHIFT;
1417 ret = pm_runtime_resume_and_get(isc->dev);
1422 * only update if we have all the required histograms and controls
1423 * if awb has been disabled, we need to reset registers as well.
1425 if (hist_id == ISC_HIS_CFG_MODE_GR || ctrls->awb == ISC_WB_NONE) {
1427 * It may happen that DMA Done IRQ will trigger while we are
1428 * updating white balance registers here.
1429 * In that case, only parts of the controls have been updated.
1430 * We can avoid that by locking the section.
1432 spin_lock_irqsave(&isc->awb_lock, flags);
1433 isc_update_awb_ctrls(isc);
1434 spin_unlock_irqrestore(&isc->awb_lock, flags);
1437 * if we are doing just the one time white balance adjustment,
1438 * we are basically done.
1440 if (ctrls->awb == ISC_WB_ONETIME) {
1442 "Completed one time white-balance adjustment.\n");
1443 /* update the v4l2 controls values */
1444 isc_update_v4l2_ctrls(isc);
1445 ctrls->awb = ISC_WB_NONE;
1448 regmap_write(regmap, ISC_HIS_CFG + isc->offsets.his,
1449 hist_id | baysel | ISC_HIS_CFG_RAR);
1452 * We have to make sure the streaming has not stopped meanwhile.
1453 * ISC requires a frame to clock the internal profile update.
1454 * To avoid issues, lock the sequence with a mutex
1456 mutex_lock(&isc->awb_mutex);
1458 /* streaming is not active anymore */
1460 mutex_unlock(&isc->awb_mutex);
1464 isc_update_profile(isc);
1466 mutex_unlock(&isc->awb_mutex);
1468 /* if awb has been disabled, we don't need to start another histogram */
1470 regmap_write(regmap, ISC_CTRLEN, ISC_CTRL_HISREQ);
1472 pm_runtime_put_sync(isc->dev);
1475 static int isc_s_ctrl(struct v4l2_ctrl *ctrl)
1477 struct isc_device *isc = container_of(ctrl->handler,
1478 struct isc_device, ctrls.handler);
1479 struct isc_ctrls *ctrls = &isc->ctrls;
1481 if (ctrl->flags & V4L2_CTRL_FLAG_INACTIVE)
1485 case V4L2_CID_BRIGHTNESS:
1486 ctrls->brightness = ctrl->val & ISC_CBC_BRIGHT_MASK;
1488 case V4L2_CID_CONTRAST:
1489 ctrls->contrast = ctrl->val & ISC_CBC_CONTRAST_MASK;
1491 case V4L2_CID_GAMMA:
1492 ctrls->gamma_index = ctrl->val;
1501 static const struct v4l2_ctrl_ops isc_ctrl_ops = {
1502 .s_ctrl = isc_s_ctrl,
1505 static int isc_s_awb_ctrl(struct v4l2_ctrl *ctrl)
1507 struct isc_device *isc = container_of(ctrl->handler,
1508 struct isc_device, ctrls.handler);
1509 struct isc_ctrls *ctrls = &isc->ctrls;
1511 if (ctrl->flags & V4L2_CTRL_FLAG_INACTIVE)
1515 case V4L2_CID_AUTO_WHITE_BALANCE:
1517 ctrls->awb = ISC_WB_AUTO;
1519 ctrls->awb = ISC_WB_NONE;
1521 /* configure the controls with new values from v4l2 */
1522 if (ctrl->cluster[ISC_CTRL_R_GAIN]->is_new)
1523 ctrls->gain[ISC_HIS_CFG_MODE_R] = isc->r_gain_ctrl->val;
1524 if (ctrl->cluster[ISC_CTRL_B_GAIN]->is_new)
1525 ctrls->gain[ISC_HIS_CFG_MODE_B] = isc->b_gain_ctrl->val;
1526 if (ctrl->cluster[ISC_CTRL_GR_GAIN]->is_new)
1527 ctrls->gain[ISC_HIS_CFG_MODE_GR] = isc->gr_gain_ctrl->val;
1528 if (ctrl->cluster[ISC_CTRL_GB_GAIN]->is_new)
1529 ctrls->gain[ISC_HIS_CFG_MODE_GB] = isc->gb_gain_ctrl->val;
1531 if (ctrl->cluster[ISC_CTRL_R_OFF]->is_new)
1532 ctrls->offset[ISC_HIS_CFG_MODE_R] = isc->r_off_ctrl->val;
1533 if (ctrl->cluster[ISC_CTRL_B_OFF]->is_new)
1534 ctrls->offset[ISC_HIS_CFG_MODE_B] = isc->b_off_ctrl->val;
1535 if (ctrl->cluster[ISC_CTRL_GR_OFF]->is_new)
1536 ctrls->offset[ISC_HIS_CFG_MODE_GR] = isc->gr_off_ctrl->val;
1537 if (ctrl->cluster[ISC_CTRL_GB_OFF]->is_new)
1538 ctrls->offset[ISC_HIS_CFG_MODE_GB] = isc->gb_off_ctrl->val;
1540 isc_update_awb_ctrls(isc);
1542 mutex_lock(&isc->awb_mutex);
1543 if (vb2_is_streaming(&isc->vb2_vidq)) {
1545 * If we are streaming, we can update profile to
1546 * have the new settings in place.
1548 isc_update_profile(isc);
1551 * The auto cluster will activate automatically this
1552 * control. This has to be deactivated when not
1555 v4l2_ctrl_activate(isc->do_wb_ctrl, false);
1557 mutex_unlock(&isc->awb_mutex);
1559 /* if we have autowhitebalance on, start histogram procedure */
1560 if (ctrls->awb == ISC_WB_AUTO &&
1561 vb2_is_streaming(&isc->vb2_vidq) &&
1562 ISC_IS_FORMAT_RAW(isc->config.sd_format->mbus_code))
1563 isc_set_histogram(isc, true);
1566 * for one time whitebalance adjustment, check the button,
1567 * if it's pressed, perform the one time operation.
1569 if (ctrls->awb == ISC_WB_NONE &&
1570 ctrl->cluster[ISC_CTRL_DO_WB]->is_new &&
1571 !(ctrl->cluster[ISC_CTRL_DO_WB]->flags &
1572 V4L2_CTRL_FLAG_INACTIVE)) {
1573 ctrls->awb = ISC_WB_ONETIME;
1574 isc_set_histogram(isc, true);
1575 dev_dbg(isc->dev, "One time white-balance started.\n");
1582 static int isc_g_volatile_awb_ctrl(struct v4l2_ctrl *ctrl)
1584 struct isc_device *isc = container_of(ctrl->handler,
1585 struct isc_device, ctrls.handler);
1586 struct isc_ctrls *ctrls = &isc->ctrls;
1589 /* being a cluster, this id will be called for every control */
1590 case V4L2_CID_AUTO_WHITE_BALANCE:
1591 ctrl->cluster[ISC_CTRL_R_GAIN]->val =
1592 ctrls->gain[ISC_HIS_CFG_MODE_R];
1593 ctrl->cluster[ISC_CTRL_B_GAIN]->val =
1594 ctrls->gain[ISC_HIS_CFG_MODE_B];
1595 ctrl->cluster[ISC_CTRL_GR_GAIN]->val =
1596 ctrls->gain[ISC_HIS_CFG_MODE_GR];
1597 ctrl->cluster[ISC_CTRL_GB_GAIN]->val =
1598 ctrls->gain[ISC_HIS_CFG_MODE_GB];
1600 ctrl->cluster[ISC_CTRL_R_OFF]->val =
1601 ctrls->offset[ISC_HIS_CFG_MODE_R];
1602 ctrl->cluster[ISC_CTRL_B_OFF]->val =
1603 ctrls->offset[ISC_HIS_CFG_MODE_B];
1604 ctrl->cluster[ISC_CTRL_GR_OFF]->val =
1605 ctrls->offset[ISC_HIS_CFG_MODE_GR];
1606 ctrl->cluster[ISC_CTRL_GB_OFF]->val =
1607 ctrls->offset[ISC_HIS_CFG_MODE_GB];
1613 static const struct v4l2_ctrl_ops isc_awb_ops = {
1614 .s_ctrl = isc_s_awb_ctrl,
1615 .g_volatile_ctrl = isc_g_volatile_awb_ctrl,
1618 #define ISC_CTRL_OFF(_name, _id, _name_str) \
1619 static const struct v4l2_ctrl_config _name = { \
1620 .ops = &isc_awb_ops, \
1622 .name = _name_str, \
1623 .type = V4L2_CTRL_TYPE_INTEGER, \
1624 .flags = V4L2_CTRL_FLAG_SLIDER, \
1631 ISC_CTRL_OFF(isc_r_off_ctrl, ISC_CID_R_OFFSET, "Red Component Offset");
1632 ISC_CTRL_OFF(isc_b_off_ctrl, ISC_CID_B_OFFSET, "Blue Component Offset");
1633 ISC_CTRL_OFF(isc_gr_off_ctrl, ISC_CID_GR_OFFSET, "Green Red Component Offset");
1634 ISC_CTRL_OFF(isc_gb_off_ctrl, ISC_CID_GB_OFFSET, "Green Blue Component Offset");
1636 #define ISC_CTRL_GAIN(_name, _id, _name_str) \
1637 static const struct v4l2_ctrl_config _name = { \
1638 .ops = &isc_awb_ops, \
1640 .name = _name_str, \
1641 .type = V4L2_CTRL_TYPE_INTEGER, \
1642 .flags = V4L2_CTRL_FLAG_SLIDER, \
1649 ISC_CTRL_GAIN(isc_r_gain_ctrl, ISC_CID_R_GAIN, "Red Component Gain");
1650 ISC_CTRL_GAIN(isc_b_gain_ctrl, ISC_CID_B_GAIN, "Blue Component Gain");
1651 ISC_CTRL_GAIN(isc_gr_gain_ctrl, ISC_CID_GR_GAIN, "Green Red Component Gain");
1652 ISC_CTRL_GAIN(isc_gb_gain_ctrl, ISC_CID_GB_GAIN, "Green Blue Component Gain");
1654 static int isc_ctrl_init(struct isc_device *isc)
1656 const struct v4l2_ctrl_ops *ops = &isc_ctrl_ops;
1657 struct isc_ctrls *ctrls = &isc->ctrls;
1658 struct v4l2_ctrl_handler *hdl = &ctrls->handler;
1661 ctrls->hist_stat = HIST_INIT;
1662 isc_reset_awb_ctrls(isc);
1664 ret = v4l2_ctrl_handler_init(hdl, 13);
1668 /* Initialize product specific controls. For example, contrast */
1669 isc->config_ctrls(isc, ops);
1671 ctrls->brightness = 0;
1673 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BRIGHTNESS, -1024, 1023, 1, 0);
1674 v4l2_ctrl_new_std(hdl, ops, V4L2_CID_GAMMA, 0, isc->gamma_max, 1,
1676 isc->awb_ctrl = v4l2_ctrl_new_std(hdl, &isc_awb_ops,
1677 V4L2_CID_AUTO_WHITE_BALANCE,
1680 /* do_white_balance is a button, so min,max,step,default are ignored */
1681 isc->do_wb_ctrl = v4l2_ctrl_new_std(hdl, &isc_awb_ops,
1682 V4L2_CID_DO_WHITE_BALANCE,
1685 if (!isc->do_wb_ctrl) {
1687 v4l2_ctrl_handler_free(hdl);
1691 v4l2_ctrl_activate(isc->do_wb_ctrl, false);
1693 isc->r_gain_ctrl = v4l2_ctrl_new_custom(hdl, &isc_r_gain_ctrl, NULL);
1694 isc->b_gain_ctrl = v4l2_ctrl_new_custom(hdl, &isc_b_gain_ctrl, NULL);
1695 isc->gr_gain_ctrl = v4l2_ctrl_new_custom(hdl, &isc_gr_gain_ctrl, NULL);
1696 isc->gb_gain_ctrl = v4l2_ctrl_new_custom(hdl, &isc_gb_gain_ctrl, NULL);
1697 isc->r_off_ctrl = v4l2_ctrl_new_custom(hdl, &isc_r_off_ctrl, NULL);
1698 isc->b_off_ctrl = v4l2_ctrl_new_custom(hdl, &isc_b_off_ctrl, NULL);
1699 isc->gr_off_ctrl = v4l2_ctrl_new_custom(hdl, &isc_gr_off_ctrl, NULL);
1700 isc->gb_off_ctrl = v4l2_ctrl_new_custom(hdl, &isc_gb_off_ctrl, NULL);
1703 * The cluster is in auto mode with autowhitebalance enabled
1704 * and manual mode otherwise.
1706 v4l2_ctrl_auto_cluster(10, &isc->awb_ctrl, 0, true);
1708 v4l2_ctrl_handler_setup(hdl);
1713 static int isc_async_bound(struct v4l2_async_notifier *notifier,
1714 struct v4l2_subdev *subdev,
1715 struct v4l2_async_subdev *asd)
1717 struct isc_device *isc = container_of(notifier->v4l2_dev,
1718 struct isc_device, v4l2_dev);
1719 struct isc_subdev_entity *subdev_entity =
1720 container_of(notifier, struct isc_subdev_entity, notifier);
1723 if (video_is_registered(&isc->video_dev)) {
1724 dev_err(isc->dev, "only supports one sub-device.\n");
1728 subdev_entity->sd = subdev;
1730 pad = media_entity_get_fwnode_pad(&subdev->entity, asd->match.fwnode,
1731 MEDIA_PAD_FL_SOURCE);
1733 dev_err(isc->dev, "failed to find pad for %s\n", subdev->name);
1737 isc->remote_pad = pad;
1742 static void isc_async_unbind(struct v4l2_async_notifier *notifier,
1743 struct v4l2_subdev *subdev,
1744 struct v4l2_async_subdev *asd)
1746 struct isc_device *isc = container_of(notifier->v4l2_dev,
1747 struct isc_device, v4l2_dev);
1748 mutex_destroy(&isc->awb_mutex);
1749 cancel_work_sync(&isc->awb_work);
1750 video_unregister_device(&isc->video_dev);
1751 v4l2_ctrl_handler_free(&isc->ctrls.handler);
1754 struct isc_format *isc_find_format_by_code(struct isc_device *isc,
1755 unsigned int code, int *index)
1757 struct isc_format *fmt = &isc->formats_list[0];
1760 for (i = 0; i < isc->formats_list_size; i++) {
1761 if (fmt->mbus_code == code) {
1771 EXPORT_SYMBOL_GPL(isc_find_format_by_code);
1773 static int isc_set_default_fmt(struct isc_device *isc)
1775 struct v4l2_format f = {
1776 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
1779 .height = VGA_HEIGHT,
1780 .field = V4L2_FIELD_NONE,
1781 .pixelformat = isc->controller_formats[0].fourcc,
1786 ret = isc_try_fmt(isc, &f);
1794 static int isc_async_complete(struct v4l2_async_notifier *notifier)
1796 struct isc_device *isc = container_of(notifier->v4l2_dev,
1797 struct isc_device, v4l2_dev);
1798 struct video_device *vdev = &isc->video_dev;
1799 struct vb2_queue *q = &isc->vb2_vidq;
1802 INIT_WORK(&isc->awb_work, isc_awb_work);
1804 ret = v4l2_device_register_subdev_nodes(&isc->v4l2_dev);
1806 dev_err(isc->dev, "Failed to register subdev nodes\n");
1810 isc->current_subdev = container_of(notifier,
1811 struct isc_subdev_entity, notifier);
1812 mutex_init(&isc->lock);
1813 mutex_init(&isc->awb_mutex);
1815 init_completion(&isc->comp);
1817 /* Initialize videobuf2 queue */
1818 q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1819 q->io_modes = VB2_MMAP | VB2_DMABUF | VB2_READ;
1821 q->buf_struct_size = sizeof(struct isc_buffer);
1822 q->ops = &isc_vb2_ops;
1823 q->mem_ops = &vb2_dma_contig_memops;
1824 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1825 q->lock = &isc->lock;
1826 q->min_buffers_needed = 1;
1829 ret = vb2_queue_init(q);
1831 dev_err(isc->dev, "vb2_queue_init() failed: %d\n", ret);
1832 goto isc_async_complete_err;
1835 /* Init video dma queues */
1836 INIT_LIST_HEAD(&isc->dma_queue);
1837 spin_lock_init(&isc->dma_queue_lock);
1838 spin_lock_init(&isc->awb_lock);
1840 ret = isc_set_default_fmt(isc);
1842 dev_err(isc->dev, "Could not set default format\n");
1843 goto isc_async_complete_err;
1846 ret = isc_ctrl_init(isc);
1848 dev_err(isc->dev, "Init isc ctrols failed: %d\n", ret);
1849 goto isc_async_complete_err;
1852 /* Register video device */
1853 strscpy(vdev->name, KBUILD_MODNAME, sizeof(vdev->name));
1854 vdev->release = video_device_release_empty;
1855 vdev->fops = &isc_fops;
1856 vdev->ioctl_ops = &isc_ioctl_ops;
1857 vdev->v4l2_dev = &isc->v4l2_dev;
1858 vdev->vfl_dir = VFL_DIR_RX;
1860 vdev->lock = &isc->lock;
1861 vdev->ctrl_handler = &isc->ctrls.handler;
1862 vdev->device_caps = V4L2_CAP_STREAMING | V4L2_CAP_VIDEO_CAPTURE |
1864 video_set_drvdata(vdev, isc);
1866 ret = video_register_device(vdev, VFL_TYPE_VIDEO, -1);
1868 dev_err(isc->dev, "video_register_device failed: %d\n", ret);
1869 goto isc_async_complete_err;
1872 ret = isc_scaler_link(isc);
1874 goto isc_async_complete_unregister_device;
1876 ret = media_device_register(&isc->mdev);
1878 goto isc_async_complete_unregister_device;
1882 isc_async_complete_unregister_device:
1883 video_unregister_device(vdev);
1885 isc_async_complete_err:
1886 mutex_destroy(&isc->awb_mutex);
1887 mutex_destroy(&isc->lock);
1891 const struct v4l2_async_notifier_operations microchip_isc_async_ops = {
1892 .bound = isc_async_bound,
1893 .unbind = isc_async_unbind,
1894 .complete = isc_async_complete,
1896 EXPORT_SYMBOL_GPL(microchip_isc_async_ops);
1898 void microchip_isc_subdev_cleanup(struct isc_device *isc)
1900 struct isc_subdev_entity *subdev_entity;
1902 list_for_each_entry(subdev_entity, &isc->subdev_entities, list) {
1903 v4l2_async_nf_unregister(&subdev_entity->notifier);
1904 v4l2_async_nf_cleanup(&subdev_entity->notifier);
1907 INIT_LIST_HEAD(&isc->subdev_entities);
1909 EXPORT_SYMBOL_GPL(microchip_isc_subdev_cleanup);
1911 int microchip_isc_pipeline_init(struct isc_device *isc)
1913 struct device *dev = isc->dev;
1914 struct regmap *regmap = isc->regmap;
1915 struct regmap_field *regs;
1919 * DPCEN-->GDCEN-->BLCEN-->WB-->CFA-->CC-->
1920 * GAM-->VHXS-->CSC-->CBC-->SUB422-->SUB420
1922 const struct reg_field regfields[ISC_PIPE_LINE_NODE_NUM] = {
1923 REG_FIELD(ISC_DPC_CTRL, 0, 0),
1924 REG_FIELD(ISC_DPC_CTRL, 1, 1),
1925 REG_FIELD(ISC_DPC_CTRL, 2, 2),
1926 REG_FIELD(ISC_WB_CTRL, 0, 0),
1927 REG_FIELD(ISC_CFA_CTRL, 0, 0),
1928 REG_FIELD(ISC_CC_CTRL, 0, 0),
1929 REG_FIELD(ISC_GAM_CTRL, 0, 0),
1930 REG_FIELD(ISC_GAM_CTRL, 1, 1),
1931 REG_FIELD(ISC_GAM_CTRL, 2, 2),
1932 REG_FIELD(ISC_GAM_CTRL, 3, 3),
1933 REG_FIELD(ISC_VHXS_CTRL, 0, 0),
1934 REG_FIELD(ISC_CSC_CTRL + isc->offsets.csc, 0, 0),
1935 REG_FIELD(ISC_CBC_CTRL + isc->offsets.cbc, 0, 0),
1936 REG_FIELD(ISC_SUB422_CTRL + isc->offsets.sub422, 0, 0),
1937 REG_FIELD(ISC_SUB420_CTRL + isc->offsets.sub420, 0, 0),
1940 for (i = 0; i < ISC_PIPE_LINE_NODE_NUM; i++) {
1941 regs = devm_regmap_field_alloc(dev, regmap, regfields[i]);
1943 return PTR_ERR(regs);
1945 isc->pipeline[i] = regs;
1950 EXPORT_SYMBOL_GPL(microchip_isc_pipeline_init);
1952 static int isc_link_validate(struct media_link *link)
1954 struct video_device *vdev =
1955 media_entity_to_video_device(link->sink->entity);
1956 struct isc_device *isc = video_get_drvdata(vdev);
1959 ret = v4l2_subdev_link_validate(link);
1963 return isc_validate(isc);
1966 static const struct media_entity_operations isc_entity_operations = {
1967 .link_validate = isc_link_validate,
1970 int isc_mc_init(struct isc_device *isc, u32 ver)
1972 const struct of_device_id *match;
1975 isc->video_dev.entity.function = MEDIA_ENT_F_IO_V4L;
1976 isc->video_dev.entity.flags = MEDIA_ENT_FL_DEFAULT;
1977 isc->video_dev.entity.ops = &isc_entity_operations;
1979 isc->pads[ISC_PAD_SINK].flags = MEDIA_PAD_FL_SINK;
1981 ret = media_entity_pads_init(&isc->video_dev.entity, ISC_PADS_NUM,
1984 dev_err(isc->dev, "media entity init failed\n");
1988 isc->mdev.dev = isc->dev;
1990 match = of_match_node(isc->dev->driver->of_match_table,
1993 strscpy(isc->mdev.driver_name, KBUILD_MODNAME,
1994 sizeof(isc->mdev.driver_name));
1995 strscpy(isc->mdev.model, match->compatible, sizeof(isc->mdev.model));
1996 snprintf(isc->mdev.bus_info, sizeof(isc->mdev.bus_info), "platform:%s",
1997 isc->v4l2_dev.name);
1998 isc->mdev.hw_revision = ver;
2000 media_device_init(&isc->mdev);
2002 isc->v4l2_dev.mdev = &isc->mdev;
2004 return isc_scaler_init(isc);
2006 EXPORT_SYMBOL_GPL(isc_mc_init);
2008 void isc_mc_cleanup(struct isc_device *isc)
2010 media_entity_cleanup(&isc->video_dev.entity);
2011 media_device_cleanup(&isc->mdev);
2013 EXPORT_SYMBOL_GPL(isc_mc_cleanup);
2015 /* regmap configuration */
2016 #define MICROCHIP_ISC_REG_MAX 0xd5c
2017 const struct regmap_config microchip_isc_regmap_config = {
2021 .max_register = MICROCHIP_ISC_REG_MAX,
2023 EXPORT_SYMBOL_GPL(microchip_isc_regmap_config);
2025 MODULE_AUTHOR("Songjun Wu");
2026 MODULE_AUTHOR("Eugen Hristev");
2027 MODULE_DESCRIPTION("Microchip ISC common code base");
2028 MODULE_LICENSE("GPL v2");