1 // SPDX-License-Identifier: GPL-2.0
5 * Qualcomm MSM Camera Subsystem - CSIPHY Module
7 * Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
8 * Copyright (C) 2016-2018 Linaro Ltd.
10 #include <linux/clk.h>
11 #include <linux/delay.h>
12 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
18 #include <media/media-entity.h>
19 #include <media/v4l2-device.h>
20 #include <media/v4l2-subdev.h>
22 #include "camss-csiphy.h"
25 #define MSM_CSIPHY_NAME "msm_csiphy"
27 static const struct csiphy_format_info formats_8x16
[] = {
28 { MEDIA_BUS_FMT_UYVY8_1X16
, 8 },
29 { MEDIA_BUS_FMT_VYUY8_1X16
, 8 },
30 { MEDIA_BUS_FMT_YUYV8_1X16
, 8 },
31 { MEDIA_BUS_FMT_YVYU8_1X16
, 8 },
32 { MEDIA_BUS_FMT_SBGGR8_1X8
, 8 },
33 { MEDIA_BUS_FMT_SGBRG8_1X8
, 8 },
34 { MEDIA_BUS_FMT_SGRBG8_1X8
, 8 },
35 { MEDIA_BUS_FMT_SRGGB8_1X8
, 8 },
36 { MEDIA_BUS_FMT_SBGGR10_1X10
, 10 },
37 { MEDIA_BUS_FMT_SGBRG10_1X10
, 10 },
38 { MEDIA_BUS_FMT_SGRBG10_1X10
, 10 },
39 { MEDIA_BUS_FMT_SRGGB10_1X10
, 10 },
40 { MEDIA_BUS_FMT_SBGGR12_1X12
, 12 },
41 { MEDIA_BUS_FMT_SGBRG12_1X12
, 12 },
42 { MEDIA_BUS_FMT_SGRBG12_1X12
, 12 },
43 { MEDIA_BUS_FMT_SRGGB12_1X12
, 12 },
44 { MEDIA_BUS_FMT_Y10_1X10
, 10 },
47 static const struct csiphy_format_info formats_8x96
[] = {
48 { MEDIA_BUS_FMT_UYVY8_1X16
, 8 },
49 { MEDIA_BUS_FMT_VYUY8_1X16
, 8 },
50 { MEDIA_BUS_FMT_YUYV8_1X16
, 8 },
51 { MEDIA_BUS_FMT_YVYU8_1X16
, 8 },
52 { MEDIA_BUS_FMT_SBGGR8_1X8
, 8 },
53 { MEDIA_BUS_FMT_SGBRG8_1X8
, 8 },
54 { MEDIA_BUS_FMT_SGRBG8_1X8
, 8 },
55 { MEDIA_BUS_FMT_SRGGB8_1X8
, 8 },
56 { MEDIA_BUS_FMT_SBGGR10_1X10
, 10 },
57 { MEDIA_BUS_FMT_SGBRG10_1X10
, 10 },
58 { MEDIA_BUS_FMT_SGRBG10_1X10
, 10 },
59 { MEDIA_BUS_FMT_SRGGB10_1X10
, 10 },
60 { MEDIA_BUS_FMT_SBGGR12_1X12
, 12 },
61 { MEDIA_BUS_FMT_SGBRG12_1X12
, 12 },
62 { MEDIA_BUS_FMT_SGRBG12_1X12
, 12 },
63 { MEDIA_BUS_FMT_SRGGB12_1X12
, 12 },
64 { MEDIA_BUS_FMT_SBGGR14_1X14
, 14 },
65 { MEDIA_BUS_FMT_SGBRG14_1X14
, 14 },
66 { MEDIA_BUS_FMT_SGRBG14_1X14
, 14 },
67 { MEDIA_BUS_FMT_SRGGB14_1X14
, 14 },
68 { MEDIA_BUS_FMT_Y10_1X10
, 10 },
71 static const struct csiphy_format_info formats_sdm845
[] = {
72 { MEDIA_BUS_FMT_UYVY8_1X16
, 8 },
73 { MEDIA_BUS_FMT_VYUY8_1X16
, 8 },
74 { MEDIA_BUS_FMT_YUYV8_1X16
, 8 },
75 { MEDIA_BUS_FMT_YVYU8_1X16
, 8 },
76 { MEDIA_BUS_FMT_SBGGR8_1X8
, 8 },
77 { MEDIA_BUS_FMT_SGBRG8_1X8
, 8 },
78 { MEDIA_BUS_FMT_SGRBG8_1X8
, 8 },
79 { MEDIA_BUS_FMT_SRGGB8_1X8
, 8 },
80 { MEDIA_BUS_FMT_SBGGR10_1X10
, 10 },
81 { MEDIA_BUS_FMT_SGBRG10_1X10
, 10 },
82 { MEDIA_BUS_FMT_SGRBG10_1X10
, 10 },
83 { MEDIA_BUS_FMT_SRGGB10_1X10
, 10 },
84 { MEDIA_BUS_FMT_SBGGR12_1X12
, 12 },
85 { MEDIA_BUS_FMT_SGBRG12_1X12
, 12 },
86 { MEDIA_BUS_FMT_SGRBG12_1X12
, 12 },
87 { MEDIA_BUS_FMT_SRGGB12_1X12
, 12 },
88 { MEDIA_BUS_FMT_SBGGR14_1X14
, 14 },
89 { MEDIA_BUS_FMT_SGBRG14_1X14
, 14 },
90 { MEDIA_BUS_FMT_SGRBG14_1X14
, 14 },
91 { MEDIA_BUS_FMT_SRGGB14_1X14
, 14 },
92 { MEDIA_BUS_FMT_Y8_1X8
, 8 },
93 { MEDIA_BUS_FMT_Y10_1X10
, 10 },
96 const struct csiphy_formats csiphy_formats_8x16
= {
97 .nformats
= ARRAY_SIZE(formats_8x16
),
98 .formats
= formats_8x16
101 const struct csiphy_formats csiphy_formats_8x96
= {
102 .nformats
= ARRAY_SIZE(formats_8x96
),
103 .formats
= formats_8x96
106 const struct csiphy_formats csiphy_formats_sdm845
= {
107 .nformats
= ARRAY_SIZE(formats_sdm845
),
108 .formats
= formats_sdm845
112 * csiphy_get_bpp - map media bus format to bits per pixel
113 * @formats: supported media bus formats array
114 * @nformats: size of @formats array
115 * @code: media bus format code
117 * Return number of bits per pixel
119 static u8
csiphy_get_bpp(const struct csiphy_format_info
*formats
,
120 unsigned int nformats
, u32 code
)
124 for (i
= 0; i
< nformats
; i
++)
125 if (code
== formats
[i
].code
)
126 return formats
[i
].bpp
;
128 WARN(1, "Unknown format\n");
130 return formats
[0].bpp
;
134 * csiphy_set_clock_rates - Calculate and set clock rates on CSIPHY module
135 * @csiphy: CSIPHY device
137 static int csiphy_set_clock_rates(struct csiphy_device
*csiphy
)
139 struct device
*dev
= csiphy
->camss
->dev
;
144 u8 bpp
= csiphy_get_bpp(csiphy
->res
->formats
->formats
, csiphy
->res
->formats
->nformats
,
145 csiphy
->fmt
[MSM_CSIPHY_PAD_SINK
].code
);
146 u8 num_lanes
= csiphy
->cfg
.csi2
->lane_cfg
.num_data
;
148 link_freq
= camss_get_link_freq(&csiphy
->subdev
.entity
, bpp
, num_lanes
);
152 for (i
= 0; i
< csiphy
->nclocks
; i
++) {
153 struct camss_clock
*clock
= &csiphy
->clock
[i
];
155 if (csiphy
->rate_set
[i
]) {
156 u64 min_rate
= link_freq
/ 4;
159 camss_add_clock_margin(&min_rate
);
161 for (j
= 0; j
< clock
->nfreqs
; j
++)
162 if (min_rate
< clock
->freq
[j
])
165 if (j
== clock
->nfreqs
) {
167 "Pixel clock is too high for CSIPHY\n");
171 /* if sensor pixel clock is not available */
172 /* set highest possible CSIPHY clock rate */
174 j
= clock
->nfreqs
- 1;
176 round_rate
= clk_round_rate(clock
->clk
, clock
->freq
[j
]);
177 if (round_rate
< 0) {
178 dev_err(dev
, "clk round rate failed: %ld\n",
183 csiphy
->timer_clk_rate
= round_rate
;
185 ret
= clk_set_rate(clock
->clk
, csiphy
->timer_clk_rate
);
187 dev_err(dev
, "clk set rate failed: %d\n", ret
);
197 * csiphy_set_power - Power on/off CSIPHY module
198 * @sd: CSIPHY V4L2 subdevice
199 * @on: Requested power state
201 * Return 0 on success or a negative error code otherwise
203 static int csiphy_set_power(struct v4l2_subdev
*sd
, int on
)
205 struct csiphy_device
*csiphy
= v4l2_get_subdevdata(sd
);
206 struct device
*dev
= csiphy
->camss
->dev
;
211 ret
= pm_runtime_resume_and_get(dev
);
215 ret
= regulator_bulk_enable(csiphy
->num_supplies
,
218 pm_runtime_put_sync(dev
);
222 ret
= csiphy_set_clock_rates(csiphy
);
224 regulator_bulk_disable(csiphy
->num_supplies
,
226 pm_runtime_put_sync(dev
);
230 ret
= camss_enable_clocks(csiphy
->nclocks
, csiphy
->clock
, dev
);
232 regulator_bulk_disable(csiphy
->num_supplies
,
234 pm_runtime_put_sync(dev
);
238 enable_irq(csiphy
->irq
);
240 csiphy
->res
->hw_ops
->reset(csiphy
);
242 csiphy
->res
->hw_ops
->hw_version_read(csiphy
, dev
);
244 disable_irq(csiphy
->irq
);
246 camss_disable_clocks(csiphy
->nclocks
, csiphy
->clock
);
248 regulator_bulk_disable(csiphy
->num_supplies
, csiphy
->supplies
);
250 pm_runtime_put_sync(dev
);
257 * csiphy_stream_on - Enable streaming on CSIPHY module
258 * @csiphy: CSIPHY device
260 * Helper function to enable streaming on CSIPHY module.
261 * Main configuration of CSIPHY module is also done here.
263 * Return 0 on success or a negative error code otherwise
265 static int csiphy_stream_on(struct csiphy_device
*csiphy
)
267 struct csiphy_config
*cfg
= &csiphy
->cfg
;
269 u8 lane_mask
= csiphy
->res
->hw_ops
->get_lane_mask(&cfg
->csi2
->lane_cfg
);
270 u8 bpp
= csiphy_get_bpp(csiphy
->res
->formats
->formats
, csiphy
->res
->formats
->nformats
,
271 csiphy
->fmt
[MSM_CSIPHY_PAD_SINK
].code
);
272 u8 num_lanes
= csiphy
->cfg
.csi2
->lane_cfg
.num_data
;
275 link_freq
= camss_get_link_freq(&csiphy
->subdev
.entity
, bpp
, num_lanes
);
278 dev_err(csiphy
->camss
->dev
,
279 "Cannot get CSI2 transmitter's link frequency\n");
283 if (csiphy
->base_clk_mux
) {
284 val
= readl_relaxed(csiphy
->base_clk_mux
);
285 if (cfg
->combo_mode
&& (lane_mask
& 0x18) == 0x18) {
287 val
|= cfg
->csid_id
<< 4;
292 writel_relaxed(val
, csiphy
->base_clk_mux
);
294 /* Enforce reg write ordering between clk mux & lane enabling */
298 csiphy
->res
->hw_ops
->lanes_enable(csiphy
, cfg
, link_freq
, lane_mask
);
304 * csiphy_stream_off - Disable streaming on CSIPHY module
305 * @csiphy: CSIPHY device
307 * Helper function to disable streaming on CSIPHY module
309 static void csiphy_stream_off(struct csiphy_device
*csiphy
)
311 csiphy
->res
->hw_ops
->lanes_disable(csiphy
, &csiphy
->cfg
);
316 * csiphy_set_stream - Enable/disable streaming on CSIPHY module
317 * @sd: CSIPHY V4L2 subdevice
318 * @enable: Requested streaming state
320 * Return 0 on success or a negative error code otherwise
322 static int csiphy_set_stream(struct v4l2_subdev
*sd
, int enable
)
324 struct csiphy_device
*csiphy
= v4l2_get_subdevdata(sd
);
328 ret
= csiphy_stream_on(csiphy
);
330 csiphy_stream_off(csiphy
);
336 * __csiphy_get_format - Get pointer to format structure
337 * @csiphy: CSIPHY device
338 * @sd_state: V4L2 subdev state
339 * @pad: pad from which format is requested
340 * @which: TRY or ACTIVE format
342 * Return pointer to TRY or ACTIVE format structure
344 static struct v4l2_mbus_framefmt
*
345 __csiphy_get_format(struct csiphy_device
*csiphy
,
346 struct v4l2_subdev_state
*sd_state
,
348 enum v4l2_subdev_format_whence which
)
350 if (which
== V4L2_SUBDEV_FORMAT_TRY
)
351 return v4l2_subdev_state_get_format(sd_state
, pad
);
353 return &csiphy
->fmt
[pad
];
357 * csiphy_try_format - Handle try format by pad subdev method
358 * @csiphy: CSIPHY device
359 * @sd_state: V4L2 subdev state
360 * @pad: pad on which format is requested
361 * @fmt: pointer to v4l2 format structure
362 * @which: wanted subdev format
364 static void csiphy_try_format(struct csiphy_device
*csiphy
,
365 struct v4l2_subdev_state
*sd_state
,
367 struct v4l2_mbus_framefmt
*fmt
,
368 enum v4l2_subdev_format_whence which
)
373 case MSM_CSIPHY_PAD_SINK
:
374 /* Set format on sink pad */
376 for (i
= 0; i
< csiphy
->res
->formats
->nformats
; i
++)
377 if (fmt
->code
== csiphy
->res
->formats
->formats
[i
].code
)
380 /* If not found, use UYVY as default */
381 if (i
>= csiphy
->res
->formats
->nformats
)
382 fmt
->code
= MEDIA_BUS_FMT_UYVY8_1X16
;
384 fmt
->width
= clamp_t(u32
, fmt
->width
, 1, 8191);
385 fmt
->height
= clamp_t(u32
, fmt
->height
, 1, 8191);
387 fmt
->field
= V4L2_FIELD_NONE
;
388 fmt
->colorspace
= V4L2_COLORSPACE_SRGB
;
392 case MSM_CSIPHY_PAD_SRC
:
393 /* Set and return a format same as sink pad */
395 *fmt
= *__csiphy_get_format(csiphy
, sd_state
,
404 * csiphy_enum_mbus_code - Handle pixel format enumeration
405 * @sd: CSIPHY V4L2 subdevice
406 * @sd_state: V4L2 subdev state
407 * @code: pointer to v4l2_subdev_mbus_code_enum structure
408 * return -EINVAL or zero on success
410 static int csiphy_enum_mbus_code(struct v4l2_subdev
*sd
,
411 struct v4l2_subdev_state
*sd_state
,
412 struct v4l2_subdev_mbus_code_enum
*code
)
414 struct csiphy_device
*csiphy
= v4l2_get_subdevdata(sd
);
415 struct v4l2_mbus_framefmt
*format
;
417 if (code
->pad
== MSM_CSIPHY_PAD_SINK
) {
418 if (code
->index
>= csiphy
->res
->formats
->nformats
)
421 code
->code
= csiphy
->res
->formats
->formats
[code
->index
].code
;
426 format
= __csiphy_get_format(csiphy
, sd_state
,
430 code
->code
= format
->code
;
437 * csiphy_enum_frame_size - Handle frame size enumeration
438 * @sd: CSIPHY V4L2 subdevice
439 * @sd_state: V4L2 subdev state
440 * @fse: pointer to v4l2_subdev_frame_size_enum structure
441 * return -EINVAL or zero on success
443 static int csiphy_enum_frame_size(struct v4l2_subdev
*sd
,
444 struct v4l2_subdev_state
*sd_state
,
445 struct v4l2_subdev_frame_size_enum
*fse
)
447 struct csiphy_device
*csiphy
= v4l2_get_subdevdata(sd
);
448 struct v4l2_mbus_framefmt format
;
453 format
.code
= fse
->code
;
456 csiphy_try_format(csiphy
, sd_state
, fse
->pad
, &format
, fse
->which
);
457 fse
->min_width
= format
.width
;
458 fse
->min_height
= format
.height
;
460 if (format
.code
!= fse
->code
)
463 format
.code
= fse
->code
;
466 csiphy_try_format(csiphy
, sd_state
, fse
->pad
, &format
, fse
->which
);
467 fse
->max_width
= format
.width
;
468 fse
->max_height
= format
.height
;
474 * csiphy_get_format - Handle get format by pads subdev method
475 * @sd: CSIPHY V4L2 subdevice
476 * @sd_state: V4L2 subdev state
477 * @fmt: pointer to v4l2 subdev format structure
479 * Return -EINVAL or zero on success
481 static int csiphy_get_format(struct v4l2_subdev
*sd
,
482 struct v4l2_subdev_state
*sd_state
,
483 struct v4l2_subdev_format
*fmt
)
485 struct csiphy_device
*csiphy
= v4l2_get_subdevdata(sd
);
486 struct v4l2_mbus_framefmt
*format
;
488 format
= __csiphy_get_format(csiphy
, sd_state
, fmt
->pad
, fmt
->which
);
492 fmt
->format
= *format
;
498 * csiphy_set_format - Handle set format by pads subdev method
499 * @sd: CSIPHY V4L2 subdevice
500 * @sd_state: V4L2 subdev state
501 * @fmt: pointer to v4l2 subdev format structure
503 * Return -EINVAL or zero on success
505 static int csiphy_set_format(struct v4l2_subdev
*sd
,
506 struct v4l2_subdev_state
*sd_state
,
507 struct v4l2_subdev_format
*fmt
)
509 struct csiphy_device
*csiphy
= v4l2_get_subdevdata(sd
);
510 struct v4l2_mbus_framefmt
*format
;
512 format
= __csiphy_get_format(csiphy
, sd_state
, fmt
->pad
, fmt
->which
);
516 csiphy_try_format(csiphy
, sd_state
, fmt
->pad
, &fmt
->format
,
518 *format
= fmt
->format
;
520 /* Propagate the format from sink to source */
521 if (fmt
->pad
== MSM_CSIPHY_PAD_SINK
) {
522 format
= __csiphy_get_format(csiphy
, sd_state
,
526 *format
= fmt
->format
;
527 csiphy_try_format(csiphy
, sd_state
, MSM_CSIPHY_PAD_SRC
,
536 * csiphy_init_formats - Initialize formats on all pads
537 * @sd: CSIPHY V4L2 subdevice
538 * @fh: V4L2 subdev file handle
540 * Initialize all pad formats with default values.
542 * Return 0 on success or a negative error code otherwise
544 static int csiphy_init_formats(struct v4l2_subdev
*sd
,
545 struct v4l2_subdev_fh
*fh
)
547 struct v4l2_subdev_format format
= {
548 .pad
= MSM_CSIPHY_PAD_SINK
,
549 .which
= fh
? V4L2_SUBDEV_FORMAT_TRY
:
550 V4L2_SUBDEV_FORMAT_ACTIVE
,
552 .code
= MEDIA_BUS_FMT_UYVY8_1X16
,
558 return csiphy_set_format(sd
, fh
? fh
->state
: NULL
, &format
);
561 static bool csiphy_match_clock_name(const char *clock_name
, const char *format
,
564 char name
[16]; /* csiphyXXX_timer\0 */
566 snprintf(name
, sizeof(name
), format
, index
);
567 return !strcmp(clock_name
, name
);
571 * msm_csiphy_subdev_init - Initialize CSIPHY device structure and resources
572 * @csiphy: CSIPHY device
573 * @res: CSIPHY module resources table
574 * @id: CSIPHY module id
576 * Return 0 on success or a negative error code otherwise
578 int msm_csiphy_subdev_init(struct camss
*camss
,
579 struct csiphy_device
*csiphy
,
580 const struct camss_subdev_resources
*res
, u8 id
)
582 struct device
*dev
= camss
->dev
;
583 struct platform_device
*pdev
= to_platform_device(dev
);
587 csiphy
->camss
= camss
;
589 csiphy
->cfg
.combo_mode
= 0;
590 csiphy
->res
= &res
->csiphy
;
594 csiphy
->base
= devm_platform_ioremap_resource_byname(pdev
, res
->reg
[0]);
595 if (IS_ERR(csiphy
->base
))
596 return PTR_ERR(csiphy
->base
);
598 if (camss
->res
->version
== CAMSS_8x16
||
599 camss
->res
->version
== CAMSS_8x53
||
600 camss
->res
->version
== CAMSS_8x96
) {
601 csiphy
->base_clk_mux
=
602 devm_platform_ioremap_resource_byname(pdev
, res
->reg
[1]);
603 if (IS_ERR(csiphy
->base_clk_mux
))
604 return PTR_ERR(csiphy
->base_clk_mux
);
606 csiphy
->base_clk_mux
= NULL
;
611 ret
= platform_get_irq_byname(pdev
, res
->interrupt
[0]);
616 snprintf(csiphy
->irq_name
, sizeof(csiphy
->irq_name
), "%s_%s%d",
617 dev_name(dev
), MSM_CSIPHY_NAME
, csiphy
->id
);
619 ret
= devm_request_irq(dev
, csiphy
->irq
, csiphy
->res
->hw_ops
->isr
,
620 IRQF_TRIGGER_RISING
| IRQF_NO_AUTOEN
,
621 csiphy
->irq_name
, csiphy
);
623 dev_err(dev
, "request_irq failed: %d\n", ret
);
630 while (res
->clock
[csiphy
->nclocks
])
633 csiphy
->clock
= devm_kcalloc(dev
,
634 csiphy
->nclocks
, sizeof(*csiphy
->clock
),
639 csiphy
->rate_set
= devm_kcalloc(dev
,
641 sizeof(*csiphy
->rate_set
),
643 if (!csiphy
->rate_set
)
646 for (i
= 0; i
< csiphy
->nclocks
; i
++) {
647 struct camss_clock
*clock
= &csiphy
->clock
[i
];
649 clock
->clk
= devm_clk_get(dev
, res
->clock
[i
]);
650 if (IS_ERR(clock
->clk
))
651 return PTR_ERR(clock
->clk
);
653 clock
->name
= res
->clock
[i
];
656 while (res
->clock_rate
[i
][clock
->nfreqs
])
659 if (!clock
->nfreqs
) {
664 clock
->freq
= devm_kcalloc(dev
,
666 sizeof(*clock
->freq
),
671 for (j
= 0; j
< clock
->nfreqs
; j
++)
672 clock
->freq
[j
] = res
->clock_rate
[i
][j
];
674 for (k
= 0; k
< camss
->res
->csiphy_num
; k
++) {
675 csiphy
->rate_set
[i
] = csiphy_match_clock_name(clock
->name
,
676 "csiphy%d_timer", k
);
677 if (csiphy
->rate_set
[i
])
680 if (camss
->res
->version
== CAMSS_660
) {
681 csiphy
->rate_set
[i
] = csiphy_match_clock_name(clock
->name
,
683 if (csiphy
->rate_set
[i
])
687 csiphy
->rate_set
[i
] = csiphy_match_clock_name(clock
->name
, "csiphy%d", k
);
688 if (csiphy
->rate_set
[i
])
693 /* CSIPHY supplies */
694 for (i
= 0; i
< ARRAY_SIZE(res
->regulators
); i
++) {
695 if (res
->regulators
[i
])
696 csiphy
->num_supplies
++;
699 if (csiphy
->num_supplies
) {
700 csiphy
->supplies
= devm_kmalloc_array(camss
->dev
,
701 csiphy
->num_supplies
,
702 sizeof(*csiphy
->supplies
),
704 if (!csiphy
->supplies
)
708 for (i
= 0; i
< csiphy
->num_supplies
; i
++)
709 csiphy
->supplies
[i
].supply
= res
->regulators
[i
];
711 ret
= devm_regulator_bulk_get(camss
->dev
, csiphy
->num_supplies
,
717 * csiphy_link_setup - Setup CSIPHY connections
718 * @entity: Pointer to media entity structure
719 * @local: Pointer to local pad
720 * @remote: Pointer to remote pad
723 * Rreturn 0 on success
725 static int csiphy_link_setup(struct media_entity
*entity
,
726 const struct media_pad
*local
,
727 const struct media_pad
*remote
, u32 flags
)
729 if ((local
->flags
& MEDIA_PAD_FL_SOURCE
) &&
730 (flags
& MEDIA_LNK_FL_ENABLED
)) {
731 struct v4l2_subdev
*sd
;
732 struct csiphy_device
*csiphy
;
733 struct csid_device
*csid
;
735 if (media_pad_remote_pad_first(local
))
738 sd
= media_entity_to_v4l2_subdev(entity
);
739 csiphy
= v4l2_get_subdevdata(sd
);
741 sd
= media_entity_to_v4l2_subdev(remote
->entity
);
742 csid
= v4l2_get_subdevdata(sd
);
744 csiphy
->cfg
.csid_id
= csid
->id
;
750 static const struct v4l2_subdev_core_ops csiphy_core_ops
= {
751 .s_power
= csiphy_set_power
,
754 static const struct v4l2_subdev_video_ops csiphy_video_ops
= {
755 .s_stream
= csiphy_set_stream
,
758 static const struct v4l2_subdev_pad_ops csiphy_pad_ops
= {
759 .enum_mbus_code
= csiphy_enum_mbus_code
,
760 .enum_frame_size
= csiphy_enum_frame_size
,
761 .get_fmt
= csiphy_get_format
,
762 .set_fmt
= csiphy_set_format
,
765 static const struct v4l2_subdev_ops csiphy_v4l2_ops
= {
766 .core
= &csiphy_core_ops
,
767 .video
= &csiphy_video_ops
,
768 .pad
= &csiphy_pad_ops
,
771 static const struct v4l2_subdev_internal_ops csiphy_v4l2_internal_ops
= {
772 .open
= csiphy_init_formats
,
775 static const struct media_entity_operations csiphy_media_ops
= {
776 .link_setup
= csiphy_link_setup
,
777 .link_validate
= v4l2_subdev_link_validate
,
781 * msm_csiphy_register_entity - Register subdev node for CSIPHY module
782 * @csiphy: CSIPHY device
783 * @v4l2_dev: V4L2 device
785 * Return 0 on success or a negative error code otherwise
787 int msm_csiphy_register_entity(struct csiphy_device
*csiphy
,
788 struct v4l2_device
*v4l2_dev
)
790 struct v4l2_subdev
*sd
= &csiphy
->subdev
;
791 struct media_pad
*pads
= csiphy
->pads
;
792 struct device
*dev
= csiphy
->camss
->dev
;
795 v4l2_subdev_init(sd
, &csiphy_v4l2_ops
);
796 sd
->internal_ops
= &csiphy_v4l2_internal_ops
;
797 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
798 snprintf(sd
->name
, ARRAY_SIZE(sd
->name
), "%s%d",
799 MSM_CSIPHY_NAME
, csiphy
->id
);
800 v4l2_set_subdevdata(sd
, csiphy
);
802 ret
= csiphy_init_formats(sd
, NULL
);
804 dev_err(dev
, "Failed to init format: %d\n", ret
);
808 pads
[MSM_CSIPHY_PAD_SINK
].flags
= MEDIA_PAD_FL_SINK
;
809 pads
[MSM_CSIPHY_PAD_SRC
].flags
= MEDIA_PAD_FL_SOURCE
;
811 sd
->entity
.function
= MEDIA_ENT_F_PROC_VIDEO_PIXEL_FORMATTER
;
812 sd
->entity
.ops
= &csiphy_media_ops
;
813 ret
= media_entity_pads_init(&sd
->entity
, MSM_CSIPHY_PADS_NUM
, pads
);
815 dev_err(dev
, "Failed to init media entity: %d\n", ret
);
819 ret
= v4l2_device_register_subdev(v4l2_dev
, sd
);
821 dev_err(dev
, "Failed to register subdev: %d\n", ret
);
822 media_entity_cleanup(&sd
->entity
);
829 * msm_csiphy_unregister_entity - Unregister CSIPHY module subdev node
830 * @csiphy: CSIPHY device
832 void msm_csiphy_unregister_entity(struct csiphy_device
*csiphy
)
834 v4l2_device_unregister_subdev(&csiphy
->subdev
);
835 media_entity_cleanup(&csiphy
->subdev
.entity
);