WIP FPC-III support
[linux/fpc-iii.git] / drivers / media / i2c / adv748x / adv748x-csi2.c
blobfa9278a08fdee3bb85fe0f968a6cc8c759ae191c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Driver for Analog Devices ADV748X CSI-2 Transmitter
5 * Copyright (C) 2017 Renesas Electronics Corp.
6 */
8 #include <linux/module.h>
9 #include <linux/mutex.h>
11 #include <media/v4l2-ctrls.h>
12 #include <media/v4l2-device.h>
13 #include <media/v4l2-ioctl.h>
15 #include "adv748x.h"
17 int adv748x_csi2_set_virtual_channel(struct adv748x_csi2 *tx, unsigned int vc)
19 return tx_write(tx, ADV748X_CSI_VC_REF, vc << ADV748X_CSI_VC_REF_SHIFT);
22 /**
23 * adv748x_csi2_register_link : Register and link internal entities
25 * @tx: CSI2 private entity
26 * @v4l2_dev: Video registration device
27 * @src: Source subdevice to establish link
28 * @src_pad: Pad number of source to link to this @tx
29 * @enable: Link enabled flag
31 * Ensure that the subdevice is registered against the v4l2_device, and link the
32 * source pad to the sink pad of the CSI2 bus entity.
34 static int adv748x_csi2_register_link(struct adv748x_csi2 *tx,
35 struct v4l2_device *v4l2_dev,
36 struct v4l2_subdev *src,
37 unsigned int src_pad,
38 bool enable)
40 int ret;
42 if (!src->v4l2_dev) {
43 ret = v4l2_device_register_subdev(v4l2_dev, src);
44 if (ret)
45 return ret;
48 ret = media_create_pad_link(&src->entity, src_pad,
49 &tx->sd.entity, ADV748X_CSI2_SINK,
50 enable ? MEDIA_LNK_FL_ENABLED : 0);
51 if (ret)
52 return ret;
54 if (enable)
55 tx->src = src;
57 return 0;
60 /* -----------------------------------------------------------------------------
61 * v4l2_subdev_internal_ops
63 * We use the internal registered operation to be able to ensure that our
64 * incremental subdevices (not connected in the forward path) can be registered
65 * against the resulting video path and media device.
68 static int adv748x_csi2_registered(struct v4l2_subdev *sd)
70 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
71 struct adv748x_state *state = tx->state;
72 int ret;
74 adv_dbg(state, "Registered %s (%s)", is_txa(tx) ? "TXA":"TXB",
75 sd->name);
78 * Link TXA to AFE and HDMI, and TXB to AFE only as TXB cannot output
79 * HDMI.
81 * The HDMI->TXA link is enabled by default, as is the AFE->TXB one.
83 if (is_afe_enabled(state)) {
84 ret = adv748x_csi2_register_link(tx, sd->v4l2_dev,
85 &state->afe.sd,
86 ADV748X_AFE_SOURCE,
87 is_txb(tx));
88 if (ret)
89 return ret;
91 /* TXB can output AFE signals only. */
92 if (is_txb(tx))
93 state->afe.tx = tx;
96 /* Register link to HDMI for TXA only. */
97 if (is_txb(tx) || !is_hdmi_enabled(state))
98 return 0;
100 ret = adv748x_csi2_register_link(tx, sd->v4l2_dev, &state->hdmi.sd,
101 ADV748X_HDMI_SOURCE, true);
102 if (ret)
103 return ret;
105 /* The default HDMI output is TXA. */
106 state->hdmi.tx = tx;
108 return 0;
111 static const struct v4l2_subdev_internal_ops adv748x_csi2_internal_ops = {
112 .registered = adv748x_csi2_registered,
115 /* -----------------------------------------------------------------------------
116 * v4l2_subdev_video_ops
119 static int adv748x_csi2_s_stream(struct v4l2_subdev *sd, int enable)
121 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
122 struct v4l2_subdev *src;
124 src = adv748x_get_remote_sd(&tx->pads[ADV748X_CSI2_SINK]);
125 if (!src)
126 return -EPIPE;
128 return v4l2_subdev_call(src, video, s_stream, enable);
131 static const struct v4l2_subdev_video_ops adv748x_csi2_video_ops = {
132 .s_stream = adv748x_csi2_s_stream,
135 /* -----------------------------------------------------------------------------
136 * v4l2_subdev_pad_ops
138 * The CSI2 bus pads are ignorant to the data sizes or formats.
139 * But we must support setting the pad formats for format propagation.
142 static struct v4l2_mbus_framefmt *
143 adv748x_csi2_get_pad_format(struct v4l2_subdev *sd,
144 struct v4l2_subdev_pad_config *cfg,
145 unsigned int pad, u32 which)
147 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
149 if (which == V4L2_SUBDEV_FORMAT_TRY)
150 return v4l2_subdev_get_try_format(sd, cfg, pad);
152 return &tx->format;
155 static int adv748x_csi2_get_format(struct v4l2_subdev *sd,
156 struct v4l2_subdev_pad_config *cfg,
157 struct v4l2_subdev_format *sdformat)
159 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
160 struct adv748x_state *state = tx->state;
161 struct v4l2_mbus_framefmt *mbusformat;
163 mbusformat = adv748x_csi2_get_pad_format(sd, cfg, sdformat->pad,
164 sdformat->which);
165 if (!mbusformat)
166 return -EINVAL;
168 mutex_lock(&state->mutex);
170 sdformat->format = *mbusformat;
172 mutex_unlock(&state->mutex);
174 return 0;
177 static int adv748x_csi2_set_format(struct v4l2_subdev *sd,
178 struct v4l2_subdev_pad_config *cfg,
179 struct v4l2_subdev_format *sdformat)
181 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
182 struct adv748x_state *state = tx->state;
183 struct v4l2_mbus_framefmt *mbusformat;
184 int ret = 0;
186 mbusformat = adv748x_csi2_get_pad_format(sd, cfg, sdformat->pad,
187 sdformat->which);
188 if (!mbusformat)
189 return -EINVAL;
191 mutex_lock(&state->mutex);
193 if (sdformat->pad == ADV748X_CSI2_SOURCE) {
194 const struct v4l2_mbus_framefmt *sink_fmt;
196 sink_fmt = adv748x_csi2_get_pad_format(sd, cfg,
197 ADV748X_CSI2_SINK,
198 sdformat->which);
200 if (!sink_fmt) {
201 ret = -EINVAL;
202 goto unlock;
205 sdformat->format = *sink_fmt;
208 *mbusformat = sdformat->format;
210 unlock:
211 mutex_unlock(&state->mutex);
213 return ret;
216 static int adv748x_csi2_get_mbus_config(struct v4l2_subdev *sd, unsigned int pad,
217 struct v4l2_mbus_config *config)
219 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
221 if (pad != ADV748X_CSI2_SOURCE)
222 return -EINVAL;
224 config->type = V4L2_MBUS_CSI2_DPHY;
225 switch (tx->active_lanes) {
226 case 1:
227 config->flags = V4L2_MBUS_CSI2_1_LANE;
228 break;
230 case 2:
231 config->flags = V4L2_MBUS_CSI2_2_LANE;
232 break;
234 case 3:
235 config->flags = V4L2_MBUS_CSI2_3_LANE;
236 break;
238 case 4:
239 config->flags = V4L2_MBUS_CSI2_4_LANE;
240 break;
243 return 0;
246 static const struct v4l2_subdev_pad_ops adv748x_csi2_pad_ops = {
247 .get_fmt = adv748x_csi2_get_format,
248 .set_fmt = adv748x_csi2_set_format,
249 .get_mbus_config = adv748x_csi2_get_mbus_config,
252 /* -----------------------------------------------------------------------------
253 * v4l2_subdev_ops
256 static const struct v4l2_subdev_ops adv748x_csi2_ops = {
257 .video = &adv748x_csi2_video_ops,
258 .pad = &adv748x_csi2_pad_ops,
261 /* -----------------------------------------------------------------------------
262 * Subdev module and controls
265 int adv748x_csi2_set_pixelrate(struct v4l2_subdev *sd, s64 rate)
267 struct adv748x_csi2 *tx = adv748x_sd_to_csi2(sd);
269 if (!tx->pixel_rate)
270 return -EINVAL;
272 return v4l2_ctrl_s_ctrl_int64(tx->pixel_rate, rate);
275 static int adv748x_csi2_s_ctrl(struct v4l2_ctrl *ctrl)
277 switch (ctrl->id) {
278 case V4L2_CID_PIXEL_RATE:
279 return 0;
280 default:
281 return -EINVAL;
285 static const struct v4l2_ctrl_ops adv748x_csi2_ctrl_ops = {
286 .s_ctrl = adv748x_csi2_s_ctrl,
289 static int adv748x_csi2_init_controls(struct adv748x_csi2 *tx)
292 v4l2_ctrl_handler_init(&tx->ctrl_hdl, 1);
294 tx->pixel_rate = v4l2_ctrl_new_std(&tx->ctrl_hdl,
295 &adv748x_csi2_ctrl_ops,
296 V4L2_CID_PIXEL_RATE, 1, INT_MAX,
297 1, 1);
299 tx->sd.ctrl_handler = &tx->ctrl_hdl;
300 if (tx->ctrl_hdl.error) {
301 v4l2_ctrl_handler_free(&tx->ctrl_hdl);
302 return tx->ctrl_hdl.error;
305 return v4l2_ctrl_handler_setup(&tx->ctrl_hdl);
308 int adv748x_csi2_init(struct adv748x_state *state, struct adv748x_csi2 *tx)
310 int ret;
312 if (!is_tx_enabled(tx))
313 return 0;
315 adv748x_subdev_init(&tx->sd, state, &adv748x_csi2_ops,
316 MEDIA_ENT_F_VID_IF_BRIDGE,
317 is_txa(tx) ? "txa" : "txb");
319 /* Ensure that matching is based upon the endpoint fwnodes */
320 tx->sd.fwnode = of_fwnode_handle(state->endpoints[tx->port]);
322 /* Register internal ops for incremental subdev registration */
323 tx->sd.internal_ops = &adv748x_csi2_internal_ops;
325 tx->pads[ADV748X_CSI2_SINK].flags = MEDIA_PAD_FL_SINK;
326 tx->pads[ADV748X_CSI2_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
328 ret = media_entity_pads_init(&tx->sd.entity, ADV748X_CSI2_NR_PADS,
329 tx->pads);
330 if (ret)
331 return ret;
333 ret = adv748x_csi2_init_controls(tx);
334 if (ret)
335 goto err_free_media;
337 ret = v4l2_async_register_subdev(&tx->sd);
338 if (ret)
339 goto err_free_ctrl;
341 return 0;
343 err_free_ctrl:
344 v4l2_ctrl_handler_free(&tx->ctrl_hdl);
345 err_free_media:
346 media_entity_cleanup(&tx->sd.entity);
348 return ret;
351 void adv748x_csi2_cleanup(struct adv748x_csi2 *tx)
353 if (!is_tx_enabled(tx))
354 return;
356 v4l2_async_unregister_subdev(&tx->sd);
357 media_entity_cleanup(&tx->sd.entity);
358 v4l2_ctrl_handler_free(&tx->ctrl_hdl);