WIP FPC-III support
[linux/fpc-iii.git] / drivers / media / i2c / adv748x / adv748x-afe.c
blob4052cf67bf16c7fbd7c3ded1190528e96a53a00d
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Driver for Analog Devices ADV748X 8 channel analog front end (AFE) receiver
4 * with standard definition processor (SDP)
6 * Copyright (C) 2017 Renesas Electronics Corp.
7 */
9 #include <linux/delay.h>
10 #include <linux/module.h>
11 #include <linux/mutex.h>
12 #include <linux/v4l2-dv-timings.h>
14 #include <media/v4l2-ctrls.h>
15 #include <media/v4l2-device.h>
16 #include <media/v4l2-dv-timings.h>
17 #include <media/v4l2-ioctl.h>
19 #include "adv748x.h"
21 /* -----------------------------------------------------------------------------
22 * SDP
25 #define ADV748X_AFE_STD_AD_PAL_BG_NTSC_J_SECAM 0x0
26 #define ADV748X_AFE_STD_AD_PAL_BG_NTSC_J_SECAM_PED 0x1
27 #define ADV748X_AFE_STD_AD_PAL_N_NTSC_J_SECAM 0x2
28 #define ADV748X_AFE_STD_AD_PAL_N_NTSC_M_SECAM 0x3
29 #define ADV748X_AFE_STD_NTSC_J 0x4
30 #define ADV748X_AFE_STD_NTSC_M 0x5
31 #define ADV748X_AFE_STD_PAL60 0x6
32 #define ADV748X_AFE_STD_NTSC_443 0x7
33 #define ADV748X_AFE_STD_PAL_BG 0x8
34 #define ADV748X_AFE_STD_PAL_N 0x9
35 #define ADV748X_AFE_STD_PAL_M 0xa
36 #define ADV748X_AFE_STD_PAL_M_PED 0xb
37 #define ADV748X_AFE_STD_PAL_COMB_N 0xc
38 #define ADV748X_AFE_STD_PAL_COMB_N_PED 0xd
39 #define ADV748X_AFE_STD_PAL_SECAM 0xe
40 #define ADV748X_AFE_STD_PAL_SECAM_PED 0xf
42 static int adv748x_afe_read_ro_map(struct adv748x_state *state, u8 reg)
44 int ret;
46 /* Select SDP Read-Only Main Map */
47 ret = sdp_write(state, ADV748X_SDP_MAP_SEL,
48 ADV748X_SDP_MAP_SEL_RO_MAIN);
49 if (ret < 0)
50 return ret;
52 return sdp_read(state, reg);
55 static int adv748x_afe_status(struct adv748x_afe *afe, u32 *signal,
56 v4l2_std_id *std)
58 struct adv748x_state *state = adv748x_afe_to_state(afe);
59 int info;
61 /* Read status from reg 0x10 of SDP RO Map */
62 info = adv748x_afe_read_ro_map(state, ADV748X_SDP_RO_10);
63 if (info < 0)
64 return info;
66 if (signal)
67 *signal = info & ADV748X_SDP_RO_10_IN_LOCK ?
68 0 : V4L2_IN_ST_NO_SIGNAL;
70 if (!std)
71 return 0;
73 /* Standard not valid if there is no signal */
74 if (!(info & ADV748X_SDP_RO_10_IN_LOCK)) {
75 *std = V4L2_STD_UNKNOWN;
76 return 0;
79 switch (info & 0x70) {
80 case 0x00:
81 *std = V4L2_STD_NTSC;
82 break;
83 case 0x10:
84 *std = V4L2_STD_NTSC_443;
85 break;
86 case 0x20:
87 *std = V4L2_STD_PAL_M;
88 break;
89 case 0x30:
90 *std = V4L2_STD_PAL_60;
91 break;
92 case 0x40:
93 *std = V4L2_STD_PAL;
94 break;
95 case 0x50:
96 *std = V4L2_STD_SECAM;
97 break;
98 case 0x60:
99 *std = V4L2_STD_PAL_Nc | V4L2_STD_PAL_N;
100 break;
101 case 0x70:
102 *std = V4L2_STD_SECAM;
103 break;
104 default:
105 *std = V4L2_STD_UNKNOWN;
106 break;
109 return 0;
112 static void adv748x_afe_fill_format(struct adv748x_afe *afe,
113 struct v4l2_mbus_framefmt *fmt)
115 memset(fmt, 0, sizeof(*fmt));
117 fmt->code = MEDIA_BUS_FMT_UYVY8_2X8;
118 fmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
119 fmt->field = V4L2_FIELD_ALTERNATE;
121 fmt->width = 720;
122 fmt->height = afe->curr_norm & V4L2_STD_525_60 ? 480 : 576;
124 /* Field height */
125 fmt->height /= 2;
128 static int adv748x_afe_std(v4l2_std_id std)
130 if (std == V4L2_STD_PAL_60)
131 return ADV748X_AFE_STD_PAL60;
132 if (std == V4L2_STD_NTSC_443)
133 return ADV748X_AFE_STD_NTSC_443;
134 if (std == V4L2_STD_PAL_N)
135 return ADV748X_AFE_STD_PAL_N;
136 if (std == V4L2_STD_PAL_M)
137 return ADV748X_AFE_STD_PAL_M;
138 if (std == V4L2_STD_PAL_Nc)
139 return ADV748X_AFE_STD_PAL_COMB_N;
140 if (std & V4L2_STD_NTSC)
141 return ADV748X_AFE_STD_NTSC_M;
142 if (std & V4L2_STD_PAL)
143 return ADV748X_AFE_STD_PAL_BG;
144 if (std & V4L2_STD_SECAM)
145 return ADV748X_AFE_STD_PAL_SECAM;
147 return -EINVAL;
150 static void adv748x_afe_set_video_standard(struct adv748x_state *state,
151 int sdpstd)
153 sdp_clrset(state, ADV748X_SDP_VID_SEL, ADV748X_SDP_VID_SEL_MASK,
154 (sdpstd & 0xf) << ADV748X_SDP_VID_SEL_SHIFT);
157 int adv748x_afe_s_input(struct adv748x_afe *afe, unsigned int input)
159 struct adv748x_state *state = adv748x_afe_to_state(afe);
161 return sdp_write(state, ADV748X_SDP_INSEL, input);
164 static int adv748x_afe_g_pixelaspect(struct v4l2_subdev *sd,
165 struct v4l2_fract *aspect)
167 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
169 if (afe->curr_norm & V4L2_STD_525_60) {
170 aspect->numerator = 11;
171 aspect->denominator = 10;
172 } else {
173 aspect->numerator = 54;
174 aspect->denominator = 59;
177 return 0;
180 /* -----------------------------------------------------------------------------
181 * v4l2_subdev_video_ops
184 static int adv748x_afe_g_std(struct v4l2_subdev *sd, v4l2_std_id *norm)
186 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
188 *norm = afe->curr_norm;
190 return 0;
193 static int adv748x_afe_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
195 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
196 struct adv748x_state *state = adv748x_afe_to_state(afe);
197 int afe_std = adv748x_afe_std(std);
199 if (afe_std < 0)
200 return afe_std;
202 mutex_lock(&state->mutex);
204 adv748x_afe_set_video_standard(state, afe_std);
205 afe->curr_norm = std;
207 mutex_unlock(&state->mutex);
209 return 0;
212 static int adv748x_afe_querystd(struct v4l2_subdev *sd, v4l2_std_id *std)
214 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
215 struct adv748x_state *state = adv748x_afe_to_state(afe);
216 int afe_std;
217 int ret;
219 mutex_lock(&state->mutex);
221 if (afe->streaming) {
222 ret = -EBUSY;
223 goto unlock;
226 /* Set auto detect mode */
227 adv748x_afe_set_video_standard(state,
228 ADV748X_AFE_STD_AD_PAL_BG_NTSC_J_SECAM);
230 msleep(100);
232 /* Read detected standard */
233 ret = adv748x_afe_status(afe, NULL, std);
235 afe_std = adv748x_afe_std(afe->curr_norm);
236 if (afe_std < 0)
237 goto unlock;
239 /* Restore original state */
240 adv748x_afe_set_video_standard(state, afe_std);
242 unlock:
243 mutex_unlock(&state->mutex);
245 return ret;
248 static int adv748x_afe_g_tvnorms(struct v4l2_subdev *sd, v4l2_std_id *norm)
250 *norm = V4L2_STD_ALL;
252 return 0;
255 static int adv748x_afe_g_input_status(struct v4l2_subdev *sd, u32 *status)
257 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
258 struct adv748x_state *state = adv748x_afe_to_state(afe);
259 int ret;
261 mutex_lock(&state->mutex);
263 ret = adv748x_afe_status(afe, status, NULL);
265 mutex_unlock(&state->mutex);
267 return ret;
270 static int adv748x_afe_s_stream(struct v4l2_subdev *sd, int enable)
272 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
273 struct adv748x_state *state = adv748x_afe_to_state(afe);
274 u32 signal = V4L2_IN_ST_NO_SIGNAL;
275 int ret;
277 mutex_lock(&state->mutex);
279 if (enable) {
280 ret = adv748x_afe_s_input(afe, afe->input);
281 if (ret)
282 goto unlock;
285 ret = adv748x_tx_power(afe->tx, enable);
286 if (ret)
287 goto unlock;
289 afe->streaming = enable;
291 adv748x_afe_status(afe, &signal, NULL);
292 if (signal != V4L2_IN_ST_NO_SIGNAL)
293 adv_dbg(state, "Detected SDP signal\n");
294 else
295 adv_dbg(state, "Couldn't detect SDP video signal\n");
297 unlock:
298 mutex_unlock(&state->mutex);
300 return ret;
303 static const struct v4l2_subdev_video_ops adv748x_afe_video_ops = {
304 .g_std = adv748x_afe_g_std,
305 .s_std = adv748x_afe_s_std,
306 .querystd = adv748x_afe_querystd,
307 .g_tvnorms = adv748x_afe_g_tvnorms,
308 .g_input_status = adv748x_afe_g_input_status,
309 .s_stream = adv748x_afe_s_stream,
310 .g_pixelaspect = adv748x_afe_g_pixelaspect,
313 /* -----------------------------------------------------------------------------
314 * v4l2_subdev_pad_ops
317 static int adv748x_afe_propagate_pixelrate(struct adv748x_afe *afe)
319 struct v4l2_subdev *tx;
321 tx = adv748x_get_remote_sd(&afe->pads[ADV748X_AFE_SOURCE]);
322 if (!tx)
323 return -ENOLINK;
326 * The ADV748x ADC sampling frequency is twice the externally supplied
327 * clock whose frequency is required to be 28.63636 MHz. It oversamples
328 * with a factor of 4 resulting in a pixel rate of 14.3180180 MHz.
330 return adv748x_csi2_set_pixelrate(tx, 14318180);
333 static int adv748x_afe_enum_mbus_code(struct v4l2_subdev *sd,
334 struct v4l2_subdev_pad_config *cfg,
335 struct v4l2_subdev_mbus_code_enum *code)
337 if (code->index != 0)
338 return -EINVAL;
340 code->code = MEDIA_BUS_FMT_UYVY8_2X8;
342 return 0;
345 static int adv748x_afe_get_format(struct v4l2_subdev *sd,
346 struct v4l2_subdev_pad_config *cfg,
347 struct v4l2_subdev_format *sdformat)
349 struct adv748x_afe *afe = adv748x_sd_to_afe(sd);
350 struct v4l2_mbus_framefmt *mbusformat;
352 /* It makes no sense to get the format of the analog sink pads */
353 if (sdformat->pad != ADV748X_AFE_SOURCE)
354 return -EINVAL;
356 if (sdformat->which == V4L2_SUBDEV_FORMAT_TRY) {
357 mbusformat = v4l2_subdev_get_try_format(sd, cfg, sdformat->pad);
358 sdformat->format = *mbusformat;
359 } else {
360 adv748x_afe_fill_format(afe, &sdformat->format);
361 adv748x_afe_propagate_pixelrate(afe);
364 return 0;
367 static int adv748x_afe_set_format(struct v4l2_subdev *sd,
368 struct v4l2_subdev_pad_config *cfg,
369 struct v4l2_subdev_format *sdformat)
371 struct v4l2_mbus_framefmt *mbusformat;
373 /* It makes no sense to get the format of the analog sink pads */
374 if (sdformat->pad != ADV748X_AFE_SOURCE)
375 return -EINVAL;
377 if (sdformat->which == V4L2_SUBDEV_FORMAT_ACTIVE)
378 return adv748x_afe_get_format(sd, cfg, sdformat);
380 mbusformat = v4l2_subdev_get_try_format(sd, cfg, sdformat->pad);
381 *mbusformat = sdformat->format;
383 return 0;
386 static const struct v4l2_subdev_pad_ops adv748x_afe_pad_ops = {
387 .enum_mbus_code = adv748x_afe_enum_mbus_code,
388 .set_fmt = adv748x_afe_set_format,
389 .get_fmt = adv748x_afe_get_format,
392 /* -----------------------------------------------------------------------------
393 * v4l2_subdev_ops
396 static const struct v4l2_subdev_ops adv748x_afe_ops = {
397 .video = &adv748x_afe_video_ops,
398 .pad = &adv748x_afe_pad_ops,
401 /* -----------------------------------------------------------------------------
402 * Controls
405 static const char * const afe_ctrl_frp_menu[] = {
406 "Disabled",
407 "Solid Blue",
408 "Color Bars",
409 "Grey Ramp",
410 "Cb Ramp",
411 "Cr Ramp",
412 "Boundary"
415 static int adv748x_afe_s_ctrl(struct v4l2_ctrl *ctrl)
417 struct adv748x_afe *afe = adv748x_ctrl_to_afe(ctrl);
418 struct adv748x_state *state = adv748x_afe_to_state(afe);
419 bool enable;
420 int ret;
422 ret = sdp_write(state, 0x0e, 0x00);
423 if (ret < 0)
424 return ret;
426 switch (ctrl->id) {
427 case V4L2_CID_BRIGHTNESS:
428 ret = sdp_write(state, ADV748X_SDP_BRI, ctrl->val);
429 break;
430 case V4L2_CID_HUE:
431 /* Hue is inverted according to HSL chart */
432 ret = sdp_write(state, ADV748X_SDP_HUE, -ctrl->val);
433 break;
434 case V4L2_CID_CONTRAST:
435 ret = sdp_write(state, ADV748X_SDP_CON, ctrl->val);
436 break;
437 case V4L2_CID_SATURATION:
438 ret = sdp_write(state, ADV748X_SDP_SD_SAT_U, ctrl->val);
439 if (ret)
440 break;
441 ret = sdp_write(state, ADV748X_SDP_SD_SAT_V, ctrl->val);
442 break;
443 case V4L2_CID_TEST_PATTERN:
444 enable = !!ctrl->val;
446 /* Enable/Disable Color bar test patterns */
447 ret = sdp_clrset(state, ADV748X_SDP_DEF, ADV748X_SDP_DEF_VAL_EN,
448 enable);
449 if (ret)
450 break;
451 ret = sdp_clrset(state, ADV748X_SDP_FRP, ADV748X_SDP_FRP_MASK,
452 enable ? ctrl->val - 1 : 0);
453 break;
454 default:
455 return -EINVAL;
458 return ret;
461 static const struct v4l2_ctrl_ops adv748x_afe_ctrl_ops = {
462 .s_ctrl = adv748x_afe_s_ctrl,
465 static int adv748x_afe_init_controls(struct adv748x_afe *afe)
467 struct adv748x_state *state = adv748x_afe_to_state(afe);
469 v4l2_ctrl_handler_init(&afe->ctrl_hdl, 5);
471 /* Use our mutex for the controls */
472 afe->ctrl_hdl.lock = &state->mutex;
474 v4l2_ctrl_new_std(&afe->ctrl_hdl, &adv748x_afe_ctrl_ops,
475 V4L2_CID_BRIGHTNESS, ADV748X_SDP_BRI_MIN,
476 ADV748X_SDP_BRI_MAX, 1, ADV748X_SDP_BRI_DEF);
477 v4l2_ctrl_new_std(&afe->ctrl_hdl, &adv748x_afe_ctrl_ops,
478 V4L2_CID_CONTRAST, ADV748X_SDP_CON_MIN,
479 ADV748X_SDP_CON_MAX, 1, ADV748X_SDP_CON_DEF);
480 v4l2_ctrl_new_std(&afe->ctrl_hdl, &adv748x_afe_ctrl_ops,
481 V4L2_CID_SATURATION, ADV748X_SDP_SAT_MIN,
482 ADV748X_SDP_SAT_MAX, 1, ADV748X_SDP_SAT_DEF);
483 v4l2_ctrl_new_std(&afe->ctrl_hdl, &adv748x_afe_ctrl_ops,
484 V4L2_CID_HUE, ADV748X_SDP_HUE_MIN,
485 ADV748X_SDP_HUE_MAX, 1, ADV748X_SDP_HUE_DEF);
487 v4l2_ctrl_new_std_menu_items(&afe->ctrl_hdl, &adv748x_afe_ctrl_ops,
488 V4L2_CID_TEST_PATTERN,
489 ARRAY_SIZE(afe_ctrl_frp_menu) - 1,
490 0, 0, afe_ctrl_frp_menu);
492 afe->sd.ctrl_handler = &afe->ctrl_hdl;
493 if (afe->ctrl_hdl.error) {
494 v4l2_ctrl_handler_free(&afe->ctrl_hdl);
495 return afe->ctrl_hdl.error;
498 return v4l2_ctrl_handler_setup(&afe->ctrl_hdl);
501 int adv748x_afe_init(struct adv748x_afe *afe)
503 struct adv748x_state *state = adv748x_afe_to_state(afe);
504 int ret;
505 unsigned int i;
507 afe->input = 0;
508 afe->streaming = false;
509 afe->curr_norm = V4L2_STD_NTSC_M;
511 adv748x_subdev_init(&afe->sd, state, &adv748x_afe_ops,
512 MEDIA_ENT_F_ATV_DECODER, "afe");
514 /* Identify the first connector found as a default input if set */
515 for (i = ADV748X_PORT_AIN0; i <= ADV748X_PORT_AIN7; i++) {
516 /* Inputs and ports are 1-indexed to match the data sheet */
517 if (state->endpoints[i]) {
518 afe->input = i;
519 break;
523 /* Entity pads and sinks are 0-indexed to match the pads */
524 for (i = ADV748X_AFE_SINK_AIN0; i <= ADV748X_AFE_SINK_AIN7; i++)
525 afe->pads[i].flags = MEDIA_PAD_FL_SINK;
527 afe->pads[ADV748X_AFE_SOURCE].flags = MEDIA_PAD_FL_SOURCE;
529 ret = media_entity_pads_init(&afe->sd.entity, ADV748X_AFE_NR_PADS,
530 afe->pads);
531 if (ret)
532 return ret;
534 ret = adv748x_afe_init_controls(afe);
535 if (ret)
536 goto error;
538 return 0;
540 error:
541 media_entity_cleanup(&afe->sd.entity);
543 return ret;
546 void adv748x_afe_cleanup(struct adv748x_afe *afe)
548 v4l2_device_unregister_subdev(&afe->sd);
549 media_entity_cleanup(&afe->sd.entity);
550 v4l2_ctrl_handler_free(&afe->ctrl_hdl);