2 * adv7842 - Analog Devices ADV7842 video decoder driver
4 * Copyright 2013 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
6 * This program is free software; you may redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
11 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
12 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
13 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
14 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
15 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
16 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * References (c = chapter, p = page):
23 * REF_01 - Analog devices, ADV7842,
24 * Register Settings Recommendations, Rev. 1.9, April 2011
25 * REF_02 - Analog devices, Software User Guide, UG-206,
26 * ADV7842 I2C Register Maps, Rev. 0, November 2010
27 * REF_03 - Analog devices, Hardware User Guide, UG-214,
28 * ADV7842 Fast Switching 2:1 HDMI 1.4 Receiver with 3D-Comb
29 * Decoder and Digitizer , Rev. 0, January 2011
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/slab.h>
36 #include <linux/i2c.h>
37 #include <linux/delay.h>
38 #include <linux/videodev2.h>
39 #include <linux/workqueue.h>
40 #include <linux/v4l2-dv-timings.h>
41 #include <media/v4l2-device.h>
42 #include <media/v4l2-ctrls.h>
43 #include <media/v4l2-dv-timings.h>
44 #include <media/adv7842.h>
47 module_param(debug
, int, 0644);
48 MODULE_PARM_DESC(debug
, "debug level (0-2)");
50 MODULE_DESCRIPTION("Analog Devices ADV7842 video decoder driver");
51 MODULE_AUTHOR("Hans Verkuil <hans.verkuil@cisco.com>");
52 MODULE_AUTHOR("Martin Bugge <marbugge@cisco.com>");
53 MODULE_LICENSE("GPL");
55 /* ADV7842 system clock frequency */
56 #define ADV7842_fsc (28636360)
59 **********************************************************************
61 * Arrays with configuration parameters for the ADV7842
63 **********************************************************************
66 struct adv7842_state
{
67 struct adv7842_platform_data pdata
;
68 struct v4l2_subdev sd
;
70 struct v4l2_ctrl_handler hdl
;
71 enum adv7842_mode mode
;
72 struct v4l2_dv_timings timings
;
73 enum adv7842_vid_std_select vid_std_select
;
83 struct v4l2_fract aspect_ratio
;
84 u32 rgb_quantization_range
;
86 struct workqueue_struct
*work_queues
;
87 struct delayed_work delayed_work_enable_hotplug
;
88 bool restart_stdi_once
;
92 struct i2c_client
*i2c_sdp_io
;
93 struct i2c_client
*i2c_sdp
;
94 struct i2c_client
*i2c_cp
;
95 struct i2c_client
*i2c_vdp
;
96 struct i2c_client
*i2c_afe
;
97 struct i2c_client
*i2c_hdmi
;
98 struct i2c_client
*i2c_repeater
;
99 struct i2c_client
*i2c_edid
;
100 struct i2c_client
*i2c_infoframe
;
101 struct i2c_client
*i2c_cec
;
102 struct i2c_client
*i2c_avlink
;
105 struct v4l2_ctrl
*detect_tx_5v_ctrl
;
106 struct v4l2_ctrl
*analog_sampling_phase_ctrl
;
107 struct v4l2_ctrl
*free_run_color_ctrl_manual
;
108 struct v4l2_ctrl
*free_run_color_ctrl
;
109 struct v4l2_ctrl
*rgb_quantization_range_ctrl
;
112 /* Unsupported timings. This device cannot support 720p30. */
113 static const struct v4l2_dv_timings adv7842_timings_exceptions
[] = {
114 V4L2_DV_BT_CEA_1280X720P30
,
118 static bool adv7842_check_dv_timings(const struct v4l2_dv_timings
*t
, void *hdl
)
122 for (i
= 0; adv7842_timings_exceptions
[i
].bt
.width
; i
++)
123 if (v4l2_match_dv_timings(t
, adv7842_timings_exceptions
+ i
, 0))
128 struct adv7842_video_standards
{
129 struct v4l2_dv_timings timings
;
134 /* sorted by number of lines */
135 static const struct adv7842_video_standards adv7842_prim_mode_comp
[] = {
136 /* { V4L2_DV_BT_CEA_720X480P59_94, 0x0a, 0x00 }, TODO flickering */
137 { V4L2_DV_BT_CEA_720X576P50
, 0x0b, 0x00 },
138 { V4L2_DV_BT_CEA_1280X720P50
, 0x19, 0x01 },
139 { V4L2_DV_BT_CEA_1280X720P60
, 0x19, 0x00 },
140 { V4L2_DV_BT_CEA_1920X1080P24
, 0x1e, 0x04 },
141 { V4L2_DV_BT_CEA_1920X1080P25
, 0x1e, 0x03 },
142 { V4L2_DV_BT_CEA_1920X1080P30
, 0x1e, 0x02 },
143 { V4L2_DV_BT_CEA_1920X1080P50
, 0x1e, 0x01 },
144 { V4L2_DV_BT_CEA_1920X1080P60
, 0x1e, 0x00 },
145 /* TODO add 1920x1080P60_RB (CVT timing) */
149 /* sorted by number of lines */
150 static const struct adv7842_video_standards adv7842_prim_mode_gr
[] = {
151 { V4L2_DV_BT_DMT_640X480P60
, 0x08, 0x00 },
152 { V4L2_DV_BT_DMT_640X480P72
, 0x09, 0x00 },
153 { V4L2_DV_BT_DMT_640X480P75
, 0x0a, 0x00 },
154 { V4L2_DV_BT_DMT_640X480P85
, 0x0b, 0x00 },
155 { V4L2_DV_BT_DMT_800X600P56
, 0x00, 0x00 },
156 { V4L2_DV_BT_DMT_800X600P60
, 0x01, 0x00 },
157 { V4L2_DV_BT_DMT_800X600P72
, 0x02, 0x00 },
158 { V4L2_DV_BT_DMT_800X600P75
, 0x03, 0x00 },
159 { V4L2_DV_BT_DMT_800X600P85
, 0x04, 0x00 },
160 { V4L2_DV_BT_DMT_1024X768P60
, 0x0c, 0x00 },
161 { V4L2_DV_BT_DMT_1024X768P70
, 0x0d, 0x00 },
162 { V4L2_DV_BT_DMT_1024X768P75
, 0x0e, 0x00 },
163 { V4L2_DV_BT_DMT_1024X768P85
, 0x0f, 0x00 },
164 { V4L2_DV_BT_DMT_1280X1024P60
, 0x05, 0x00 },
165 { V4L2_DV_BT_DMT_1280X1024P75
, 0x06, 0x00 },
166 { V4L2_DV_BT_DMT_1360X768P60
, 0x12, 0x00 },
167 { V4L2_DV_BT_DMT_1366X768P60
, 0x13, 0x00 },
168 { V4L2_DV_BT_DMT_1400X1050P60
, 0x14, 0x00 },
169 { V4L2_DV_BT_DMT_1400X1050P75
, 0x15, 0x00 },
170 { V4L2_DV_BT_DMT_1600X1200P60
, 0x16, 0x00 }, /* TODO not tested */
171 /* TODO add 1600X1200P60_RB (not a DMT timing) */
172 { V4L2_DV_BT_DMT_1680X1050P60
, 0x18, 0x00 },
173 { V4L2_DV_BT_DMT_1920X1200P60_RB
, 0x19, 0x00 }, /* TODO not tested */
177 /* sorted by number of lines */
178 static const struct adv7842_video_standards adv7842_prim_mode_hdmi_comp
[] = {
179 { V4L2_DV_BT_CEA_720X480P59_94
, 0x0a, 0x00 },
180 { V4L2_DV_BT_CEA_720X576P50
, 0x0b, 0x00 },
181 { V4L2_DV_BT_CEA_1280X720P50
, 0x13, 0x01 },
182 { V4L2_DV_BT_CEA_1280X720P60
, 0x13, 0x00 },
183 { V4L2_DV_BT_CEA_1920X1080P24
, 0x1e, 0x04 },
184 { V4L2_DV_BT_CEA_1920X1080P25
, 0x1e, 0x03 },
185 { V4L2_DV_BT_CEA_1920X1080P30
, 0x1e, 0x02 },
186 { V4L2_DV_BT_CEA_1920X1080P50
, 0x1e, 0x01 },
187 { V4L2_DV_BT_CEA_1920X1080P60
, 0x1e, 0x00 },
191 /* sorted by number of lines */
192 static const struct adv7842_video_standards adv7842_prim_mode_hdmi_gr
[] = {
193 { V4L2_DV_BT_DMT_640X480P60
, 0x08, 0x00 },
194 { V4L2_DV_BT_DMT_640X480P72
, 0x09, 0x00 },
195 { V4L2_DV_BT_DMT_640X480P75
, 0x0a, 0x00 },
196 { V4L2_DV_BT_DMT_640X480P85
, 0x0b, 0x00 },
197 { V4L2_DV_BT_DMT_800X600P56
, 0x00, 0x00 },
198 { V4L2_DV_BT_DMT_800X600P60
, 0x01, 0x00 },
199 { V4L2_DV_BT_DMT_800X600P72
, 0x02, 0x00 },
200 { V4L2_DV_BT_DMT_800X600P75
, 0x03, 0x00 },
201 { V4L2_DV_BT_DMT_800X600P85
, 0x04, 0x00 },
202 { V4L2_DV_BT_DMT_1024X768P60
, 0x0c, 0x00 },
203 { V4L2_DV_BT_DMT_1024X768P70
, 0x0d, 0x00 },
204 { V4L2_DV_BT_DMT_1024X768P75
, 0x0e, 0x00 },
205 { V4L2_DV_BT_DMT_1024X768P85
, 0x0f, 0x00 },
206 { V4L2_DV_BT_DMT_1280X1024P60
, 0x05, 0x00 },
207 { V4L2_DV_BT_DMT_1280X1024P75
, 0x06, 0x00 },
211 /* ----------------------------------------------------------------------- */
213 static inline struct adv7842_state
*to_state(struct v4l2_subdev
*sd
)
215 return container_of(sd
, struct adv7842_state
, sd
);
218 static inline struct v4l2_subdev
*to_sd(struct v4l2_ctrl
*ctrl
)
220 return &container_of(ctrl
->handler
, struct adv7842_state
, hdl
)->sd
;
223 static inline unsigned hblanking(const struct v4l2_bt_timings
*t
)
225 return V4L2_DV_BT_BLANKING_WIDTH(t
);
228 static inline unsigned htotal(const struct v4l2_bt_timings
*t
)
230 return V4L2_DV_BT_FRAME_WIDTH(t
);
233 static inline unsigned vblanking(const struct v4l2_bt_timings
*t
)
235 return V4L2_DV_BT_BLANKING_HEIGHT(t
);
238 static inline unsigned vtotal(const struct v4l2_bt_timings
*t
)
240 return V4L2_DV_BT_FRAME_HEIGHT(t
);
244 /* ----------------------------------------------------------------------- */
246 static s32
adv_smbus_read_byte_data_check(struct i2c_client
*client
,
247 u8 command
, bool check
)
249 union i2c_smbus_data data
;
251 if (!i2c_smbus_xfer(client
->adapter
, client
->addr
, client
->flags
,
252 I2C_SMBUS_READ
, command
,
253 I2C_SMBUS_BYTE_DATA
, &data
))
256 v4l_err(client
, "error reading %02x, %02x\n",
257 client
->addr
, command
);
261 static s32
adv_smbus_read_byte_data(struct i2c_client
*client
, u8 command
)
265 for (i
= 0; i
< 3; i
++) {
266 int ret
= adv_smbus_read_byte_data_check(client
, command
, true);
270 v4l_err(client
, "read ok after %d retries\n", i
);
274 v4l_err(client
, "read failed\n");
278 static s32
adv_smbus_write_byte_data(struct i2c_client
*client
,
279 u8 command
, u8 value
)
281 union i2c_smbus_data data
;
286 for (i
= 0; i
< 3; i
++) {
287 err
= i2c_smbus_xfer(client
->adapter
, client
->addr
,
289 I2C_SMBUS_WRITE
, command
,
290 I2C_SMBUS_BYTE_DATA
, &data
);
295 v4l_err(client
, "error writing %02x, %02x, %02x\n",
296 client
->addr
, command
, value
);
300 static void adv_smbus_write_byte_no_check(struct i2c_client
*client
,
301 u8 command
, u8 value
)
303 union i2c_smbus_data data
;
306 i2c_smbus_xfer(client
->adapter
, client
->addr
,
308 I2C_SMBUS_WRITE
, command
,
309 I2C_SMBUS_BYTE_DATA
, &data
);
312 static s32
adv_smbus_write_i2c_block_data(struct i2c_client
*client
,
313 u8 command
, unsigned length
, const u8
*values
)
315 union i2c_smbus_data data
;
317 if (length
> I2C_SMBUS_BLOCK_MAX
)
318 length
= I2C_SMBUS_BLOCK_MAX
;
319 data
.block
[0] = length
;
320 memcpy(data
.block
+ 1, values
, length
);
321 return i2c_smbus_xfer(client
->adapter
, client
->addr
, client
->flags
,
322 I2C_SMBUS_WRITE
, command
,
323 I2C_SMBUS_I2C_BLOCK_DATA
, &data
);
326 /* ----------------------------------------------------------------------- */
328 static inline int io_read(struct v4l2_subdev
*sd
, u8 reg
)
330 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
332 return adv_smbus_read_byte_data(client
, reg
);
335 static inline int io_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
337 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
339 return adv_smbus_write_byte_data(client
, reg
, val
);
342 static inline int io_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
344 return io_write(sd
, reg
, (io_read(sd
, reg
) & mask
) | val
);
347 static inline int avlink_read(struct v4l2_subdev
*sd
, u8 reg
)
349 struct adv7842_state
*state
= to_state(sd
);
351 return adv_smbus_read_byte_data(state
->i2c_avlink
, reg
);
354 static inline int avlink_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
356 struct adv7842_state
*state
= to_state(sd
);
358 return adv_smbus_write_byte_data(state
->i2c_avlink
, reg
, val
);
361 static inline int cec_read(struct v4l2_subdev
*sd
, u8 reg
)
363 struct adv7842_state
*state
= to_state(sd
);
365 return adv_smbus_read_byte_data(state
->i2c_cec
, reg
);
368 static inline int cec_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
370 struct adv7842_state
*state
= to_state(sd
);
372 return adv_smbus_write_byte_data(state
->i2c_cec
, reg
, val
);
375 static inline int cec_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
377 return cec_write(sd
, reg
, (cec_read(sd
, reg
) & mask
) | val
);
380 static inline int infoframe_read(struct v4l2_subdev
*sd
, u8 reg
)
382 struct adv7842_state
*state
= to_state(sd
);
384 return adv_smbus_read_byte_data(state
->i2c_infoframe
, reg
);
387 static inline int infoframe_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
389 struct adv7842_state
*state
= to_state(sd
);
391 return adv_smbus_write_byte_data(state
->i2c_infoframe
, reg
, val
);
394 static inline int sdp_io_read(struct v4l2_subdev
*sd
, u8 reg
)
396 struct adv7842_state
*state
= to_state(sd
);
398 return adv_smbus_read_byte_data(state
->i2c_sdp_io
, reg
);
401 static inline int sdp_io_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
403 struct adv7842_state
*state
= to_state(sd
);
405 return adv_smbus_write_byte_data(state
->i2c_sdp_io
, reg
, val
);
408 static inline int sdp_io_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
410 return sdp_io_write(sd
, reg
, (sdp_io_read(sd
, reg
) & mask
) | val
);
413 static inline int sdp_read(struct v4l2_subdev
*sd
, u8 reg
)
415 struct adv7842_state
*state
= to_state(sd
);
417 return adv_smbus_read_byte_data(state
->i2c_sdp
, reg
);
420 static inline int sdp_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
422 struct adv7842_state
*state
= to_state(sd
);
424 return adv_smbus_write_byte_data(state
->i2c_sdp
, reg
, val
);
427 static inline int sdp_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
429 return sdp_write(sd
, reg
, (sdp_read(sd
, reg
) & mask
) | val
);
432 static inline int afe_read(struct v4l2_subdev
*sd
, u8 reg
)
434 struct adv7842_state
*state
= to_state(sd
);
436 return adv_smbus_read_byte_data(state
->i2c_afe
, reg
);
439 static inline int afe_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
441 struct adv7842_state
*state
= to_state(sd
);
443 return adv_smbus_write_byte_data(state
->i2c_afe
, reg
, val
);
446 static inline int afe_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
448 return afe_write(sd
, reg
, (afe_read(sd
, reg
) & mask
) | val
);
451 static inline int rep_read(struct v4l2_subdev
*sd
, u8 reg
)
453 struct adv7842_state
*state
= to_state(sd
);
455 return adv_smbus_read_byte_data(state
->i2c_repeater
, reg
);
458 static inline int rep_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
460 struct adv7842_state
*state
= to_state(sd
);
462 return adv_smbus_write_byte_data(state
->i2c_repeater
, reg
, val
);
465 static inline int rep_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
467 return rep_write(sd
, reg
, (rep_read(sd
, reg
) & mask
) | val
);
470 static inline int edid_read(struct v4l2_subdev
*sd
, u8 reg
)
472 struct adv7842_state
*state
= to_state(sd
);
474 return adv_smbus_read_byte_data(state
->i2c_edid
, reg
);
477 static inline int edid_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
479 struct adv7842_state
*state
= to_state(sd
);
481 return adv_smbus_write_byte_data(state
->i2c_edid
, reg
, val
);
484 static inline int hdmi_read(struct v4l2_subdev
*sd
, u8 reg
)
486 struct adv7842_state
*state
= to_state(sd
);
488 return adv_smbus_read_byte_data(state
->i2c_hdmi
, reg
);
491 static inline int hdmi_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
493 struct adv7842_state
*state
= to_state(sd
);
495 return adv_smbus_write_byte_data(state
->i2c_hdmi
, reg
, val
);
498 static inline int hdmi_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
500 return hdmi_write(sd
, reg
, (hdmi_read(sd
, reg
) & mask
) | val
);
503 static inline int cp_read(struct v4l2_subdev
*sd
, u8 reg
)
505 struct adv7842_state
*state
= to_state(sd
);
507 return adv_smbus_read_byte_data(state
->i2c_cp
, reg
);
510 static inline int cp_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
512 struct adv7842_state
*state
= to_state(sd
);
514 return adv_smbus_write_byte_data(state
->i2c_cp
, reg
, val
);
517 static inline int cp_write_and_or(struct v4l2_subdev
*sd
, u8 reg
, u8 mask
, u8 val
)
519 return cp_write(sd
, reg
, (cp_read(sd
, reg
) & mask
) | val
);
522 static inline int vdp_read(struct v4l2_subdev
*sd
, u8 reg
)
524 struct adv7842_state
*state
= to_state(sd
);
526 return adv_smbus_read_byte_data(state
->i2c_vdp
, reg
);
529 static inline int vdp_write(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
531 struct adv7842_state
*state
= to_state(sd
);
533 return adv_smbus_write_byte_data(state
->i2c_vdp
, reg
, val
);
536 static void main_reset(struct v4l2_subdev
*sd
)
538 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
540 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
542 adv_smbus_write_byte_no_check(client
, 0xff, 0x80);
547 /* ----------------------------------------------------------------------- */
549 static inline bool is_digital_input(struct v4l2_subdev
*sd
)
551 struct adv7842_state
*state
= to_state(sd
);
553 return state
->mode
== ADV7842_MODE_HDMI
;
556 static const struct v4l2_dv_timings_cap adv7842_timings_cap_analog
= {
557 .type
= V4L2_DV_BT_656_1120
,
558 /* keep this initialization for compatibility with GCC < 4.4.6 */
560 V4L2_INIT_BT_TIMINGS(0, 1920, 0, 1200, 25000000, 170000000,
561 V4L2_DV_BT_STD_CEA861
| V4L2_DV_BT_STD_DMT
|
562 V4L2_DV_BT_STD_GTF
| V4L2_DV_BT_STD_CVT
,
563 V4L2_DV_BT_CAP_PROGRESSIVE
| V4L2_DV_BT_CAP_REDUCED_BLANKING
|
564 V4L2_DV_BT_CAP_CUSTOM
)
567 static const struct v4l2_dv_timings_cap adv7842_timings_cap_digital
= {
568 .type
= V4L2_DV_BT_656_1120
,
569 /* keep this initialization for compatibility with GCC < 4.4.6 */
571 V4L2_INIT_BT_TIMINGS(0, 1920, 0, 1200, 25000000, 225000000,
572 V4L2_DV_BT_STD_CEA861
| V4L2_DV_BT_STD_DMT
|
573 V4L2_DV_BT_STD_GTF
| V4L2_DV_BT_STD_CVT
,
574 V4L2_DV_BT_CAP_PROGRESSIVE
| V4L2_DV_BT_CAP_REDUCED_BLANKING
|
575 V4L2_DV_BT_CAP_CUSTOM
)
578 static inline const struct v4l2_dv_timings_cap
*
579 adv7842_get_dv_timings_cap(struct v4l2_subdev
*sd
)
581 return is_digital_input(sd
) ? &adv7842_timings_cap_digital
:
582 &adv7842_timings_cap_analog
;
585 /* ----------------------------------------------------------------------- */
587 static void adv7842_delayed_work_enable_hotplug(struct work_struct
*work
)
589 struct delayed_work
*dwork
= to_delayed_work(work
);
590 struct adv7842_state
*state
= container_of(dwork
,
591 struct adv7842_state
, delayed_work_enable_hotplug
);
592 struct v4l2_subdev
*sd
= &state
->sd
;
593 int present
= state
->hdmi_edid
.present
;
596 v4l2_dbg(2, debug
, sd
, "%s: enable hotplug on ports: 0x%x\n",
599 if (present
& (0x04 << ADV7842_EDID_PORT_A
))
601 if (present
& (0x04 << ADV7842_EDID_PORT_B
))
603 io_write_and_or(sd
, 0x20, 0xcf, mask
);
606 static int edid_write_vga_segment(struct v4l2_subdev
*sd
)
608 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
609 struct adv7842_state
*state
= to_state(sd
);
610 const u8
*val
= state
->vga_edid
.edid
;
614 v4l2_dbg(2, debug
, sd
, "%s: write EDID on VGA port\n", __func__
);
616 /* HPA disable on port A and B */
617 io_write_and_or(sd
, 0x20, 0xcf, 0x00);
619 /* Disable I2C access to internal EDID ram from VGA DDC port */
620 rep_write_and_or(sd
, 0x7f, 0x7f, 0x00);
622 /* edid segment pointer '1' for VGA port */
623 rep_write_and_or(sd
, 0x77, 0xef, 0x10);
625 for (i
= 0; !err
&& i
< 256; i
+= I2C_SMBUS_BLOCK_MAX
)
626 err
= adv_smbus_write_i2c_block_data(state
->i2c_edid
, i
,
627 I2C_SMBUS_BLOCK_MAX
, val
+ i
);
631 /* Calculates the checksums and enables I2C access
632 * to internal EDID ram from VGA DDC port.
634 rep_write_and_or(sd
, 0x7f, 0x7f, 0x80);
636 for (i
= 0; i
< 1000; i
++) {
637 if (rep_read(sd
, 0x79) & 0x20)
642 v4l_err(client
, "error enabling edid on VGA port\n");
646 /* enable hotplug after 200 ms */
647 queue_delayed_work(state
->work_queues
,
648 &state
->delayed_work_enable_hotplug
, HZ
/ 5);
653 static int edid_spa_location(const u8
*edid
)
658 * TODO, improve and update for other CEA extensions
659 * currently only for 1 segment (256 bytes),
660 * i.e. 1 extension block and CEA revision 3.
662 if ((edid
[0x7e] != 1) ||
663 (edid
[0x80] != 0x02) ||
664 (edid
[0x81] != 0x03)) {
668 * search Vendor Specific Data Block (tag 3)
670 d
= edid
[0x82] & 0x7f;
676 u8 len
= edid
[i
] & 0x1f;
678 if ((tag
== 3) && (len
>= 5))
686 static int edid_write_hdmi_segment(struct v4l2_subdev
*sd
, u8 port
)
688 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
689 struct adv7842_state
*state
= to_state(sd
);
690 const u8
*val
= state
->hdmi_edid
.edid
;
691 int spa_loc
= edid_spa_location(val
);
695 v4l2_dbg(2, debug
, sd
, "%s: write EDID on port %c (spa at 0x%x)\n",
696 __func__
, (port
== ADV7842_EDID_PORT_A
) ? 'A' : 'B', spa_loc
);
698 /* HPA disable on port A and B */
699 io_write_and_or(sd
, 0x20, 0xcf, 0x00);
701 /* Disable I2C access to internal EDID ram from HDMI DDC ports */
702 rep_write_and_or(sd
, 0x77, 0xf3, 0x00);
704 if (!state
->hdmi_edid
.present
)
707 /* edid segment pointer '0' for HDMI ports */
708 rep_write_and_or(sd
, 0x77, 0xef, 0x00);
710 for (i
= 0; !err
&& i
< 256; i
+= I2C_SMBUS_BLOCK_MAX
)
711 err
= adv_smbus_write_i2c_block_data(state
->i2c_edid
, i
,
712 I2C_SMBUS_BLOCK_MAX
, val
+ i
);
717 spa_loc
= 0xc0; /* Default value [REF_02, p. 199] */
719 if (port
== ADV7842_EDID_PORT_A
) {
720 rep_write(sd
, 0x72, val
[spa_loc
]);
721 rep_write(sd
, 0x73, val
[spa_loc
+ 1]);
723 rep_write(sd
, 0x74, val
[spa_loc
]);
724 rep_write(sd
, 0x75, val
[spa_loc
+ 1]);
726 rep_write(sd
, 0x76, spa_loc
& 0xff);
727 rep_write_and_or(sd
, 0x77, 0xbf, (spa_loc
>> 2) & 0x40);
729 /* Calculates the checksums and enables I2C access to internal
730 * EDID ram from HDMI DDC ports
732 rep_write_and_or(sd
, 0x77, 0xf3, state
->hdmi_edid
.present
);
734 for (i
= 0; i
< 1000; i
++) {
735 if (rep_read(sd
, 0x7d) & state
->hdmi_edid
.present
)
740 v4l_err(client
, "error enabling edid on port %c\n",
741 (port
== ADV7842_EDID_PORT_A
) ? 'A' : 'B');
745 /* enable hotplug after 200 ms */
746 queue_delayed_work(state
->work_queues
,
747 &state
->delayed_work_enable_hotplug
, HZ
/ 5);
752 /* ----------------------------------------------------------------------- */
754 #ifdef CONFIG_VIDEO_ADV_DEBUG
755 static void adv7842_inv_register(struct v4l2_subdev
*sd
)
757 v4l2_info(sd
, "0x000-0x0ff: IO Map\n");
758 v4l2_info(sd
, "0x100-0x1ff: AVLink Map\n");
759 v4l2_info(sd
, "0x200-0x2ff: CEC Map\n");
760 v4l2_info(sd
, "0x300-0x3ff: InfoFrame Map\n");
761 v4l2_info(sd
, "0x400-0x4ff: SDP_IO Map\n");
762 v4l2_info(sd
, "0x500-0x5ff: SDP Map\n");
763 v4l2_info(sd
, "0x600-0x6ff: AFE Map\n");
764 v4l2_info(sd
, "0x700-0x7ff: Repeater Map\n");
765 v4l2_info(sd
, "0x800-0x8ff: EDID Map\n");
766 v4l2_info(sd
, "0x900-0x9ff: HDMI Map\n");
767 v4l2_info(sd
, "0xa00-0xaff: CP Map\n");
768 v4l2_info(sd
, "0xb00-0xbff: VDP Map\n");
771 static int adv7842_g_register(struct v4l2_subdev
*sd
,
772 struct v4l2_dbg_register
*reg
)
775 switch (reg
->reg
>> 8) {
777 reg
->val
= io_read(sd
, reg
->reg
& 0xff);
780 reg
->val
= avlink_read(sd
, reg
->reg
& 0xff);
783 reg
->val
= cec_read(sd
, reg
->reg
& 0xff);
786 reg
->val
= infoframe_read(sd
, reg
->reg
& 0xff);
789 reg
->val
= sdp_io_read(sd
, reg
->reg
& 0xff);
792 reg
->val
= sdp_read(sd
, reg
->reg
& 0xff);
795 reg
->val
= afe_read(sd
, reg
->reg
& 0xff);
798 reg
->val
= rep_read(sd
, reg
->reg
& 0xff);
801 reg
->val
= edid_read(sd
, reg
->reg
& 0xff);
804 reg
->val
= hdmi_read(sd
, reg
->reg
& 0xff);
807 reg
->val
= cp_read(sd
, reg
->reg
& 0xff);
810 reg
->val
= vdp_read(sd
, reg
->reg
& 0xff);
813 v4l2_info(sd
, "Register %03llx not supported\n", reg
->reg
);
814 adv7842_inv_register(sd
);
820 static int adv7842_s_register(struct v4l2_subdev
*sd
,
821 const struct v4l2_dbg_register
*reg
)
823 u8 val
= reg
->val
& 0xff;
825 switch (reg
->reg
>> 8) {
827 io_write(sd
, reg
->reg
& 0xff, val
);
830 avlink_write(sd
, reg
->reg
& 0xff, val
);
833 cec_write(sd
, reg
->reg
& 0xff, val
);
836 infoframe_write(sd
, reg
->reg
& 0xff, val
);
839 sdp_io_write(sd
, reg
->reg
& 0xff, val
);
842 sdp_write(sd
, reg
->reg
& 0xff, val
);
845 afe_write(sd
, reg
->reg
& 0xff, val
);
848 rep_write(sd
, reg
->reg
& 0xff, val
);
851 edid_write(sd
, reg
->reg
& 0xff, val
);
854 hdmi_write(sd
, reg
->reg
& 0xff, val
);
857 cp_write(sd
, reg
->reg
& 0xff, val
);
860 vdp_write(sd
, reg
->reg
& 0xff, val
);
863 v4l2_info(sd
, "Register %03llx not supported\n", reg
->reg
);
864 adv7842_inv_register(sd
);
871 static int adv7842_s_detect_tx_5v_ctrl(struct v4l2_subdev
*sd
)
873 struct adv7842_state
*state
= to_state(sd
);
874 int prev
= v4l2_ctrl_g_ctrl(state
->detect_tx_5v_ctrl
);
875 u8 reg_io_6f
= io_read(sd
, 0x6f);
878 if (reg_io_6f
& 0x02)
879 val
|= 1; /* port A */
880 if (reg_io_6f
& 0x01)
881 val
|= 2; /* port B */
883 v4l2_dbg(1, debug
, sd
, "%s: 0x%x -> 0x%x\n", __func__
, prev
, val
);
886 return v4l2_ctrl_s_ctrl(state
->detect_tx_5v_ctrl
, val
);
890 static int find_and_set_predefined_video_timings(struct v4l2_subdev
*sd
,
892 const struct adv7842_video_standards
*predef_vid_timings
,
893 const struct v4l2_dv_timings
*timings
)
897 for (i
= 0; predef_vid_timings
[i
].timings
.bt
.width
; i
++) {
898 if (!v4l2_match_dv_timings(timings
, &predef_vid_timings
[i
].timings
,
899 is_digital_input(sd
) ? 250000 : 1000000))
902 io_write(sd
, 0x00, predef_vid_timings
[i
].vid_std
);
903 /* v_freq and prim mode */
904 io_write(sd
, 0x01, (predef_vid_timings
[i
].v_freq
<< 4) + prim_mode
);
911 static int configure_predefined_video_timings(struct v4l2_subdev
*sd
,
912 struct v4l2_dv_timings
*timings
)
914 struct adv7842_state
*state
= to_state(sd
);
917 v4l2_dbg(1, debug
, sd
, "%s\n", __func__
);
919 /* reset to default values */
920 io_write(sd
, 0x16, 0x43);
921 io_write(sd
, 0x17, 0x5a);
922 /* disable embedded syncs for auto graphics mode */
923 cp_write_and_or(sd
, 0x81, 0xef, 0x00);
924 cp_write(sd
, 0x26, 0x00);
925 cp_write(sd
, 0x27, 0x00);
926 cp_write(sd
, 0x28, 0x00);
927 cp_write(sd
, 0x29, 0x00);
928 cp_write(sd
, 0x8f, 0x40);
929 cp_write(sd
, 0x90, 0x00);
930 cp_write(sd
, 0xa5, 0x00);
931 cp_write(sd
, 0xa6, 0x00);
932 cp_write(sd
, 0xa7, 0x00);
933 cp_write(sd
, 0xab, 0x00);
934 cp_write(sd
, 0xac, 0x00);
936 switch (state
->mode
) {
937 case ADV7842_MODE_COMP
:
938 case ADV7842_MODE_RGB
:
939 err
= find_and_set_predefined_video_timings(sd
,
940 0x01, adv7842_prim_mode_comp
, timings
);
942 err
= find_and_set_predefined_video_timings(sd
,
943 0x02, adv7842_prim_mode_gr
, timings
);
945 case ADV7842_MODE_HDMI
:
946 err
= find_and_set_predefined_video_timings(sd
,
947 0x05, adv7842_prim_mode_hdmi_comp
, timings
);
949 err
= find_and_set_predefined_video_timings(sd
,
950 0x06, adv7842_prim_mode_hdmi_gr
, timings
);
953 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
954 __func__
, state
->mode
);
963 static void configure_custom_video_timings(struct v4l2_subdev
*sd
,
964 const struct v4l2_bt_timings
*bt
)
966 struct adv7842_state
*state
= to_state(sd
);
967 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
968 u32 width
= htotal(bt
);
969 u32 height
= vtotal(bt
);
970 u16 cp_start_sav
= bt
->hsync
+ bt
->hbackporch
- 4;
971 u16 cp_start_eav
= width
- bt
->hfrontporch
;
972 u16 cp_start_vbi
= height
- bt
->vfrontporch
+ 1;
973 u16 cp_end_vbi
= bt
->vsync
+ bt
->vbackporch
+ 1;
974 u16 ch1_fr_ll
= (((u32
)bt
->pixelclock
/ 100) > 0) ?
975 ((width
* (ADV7842_fsc
/ 100)) / ((u32
)bt
->pixelclock
/ 100)) : 0;
977 0xc0 | ((width
>> 8) & 0x1f),
981 v4l2_dbg(2, debug
, sd
, "%s\n", __func__
);
983 switch (state
->mode
) {
984 case ADV7842_MODE_COMP
:
985 case ADV7842_MODE_RGB
:
987 io_write(sd
, 0x00, 0x07); /* video std */
988 io_write(sd
, 0x01, 0x02); /* prim mode */
989 /* enable embedded syncs for auto graphics mode */
990 cp_write_and_or(sd
, 0x81, 0xef, 0x10);
992 /* Should only be set in auto-graphics mode [REF_02, p. 91-92] */
993 /* setup PLL_DIV_MAN_EN and PLL_DIV_RATIO */
994 /* IO-map reg. 0x16 and 0x17 should be written in sequence */
995 if (adv_smbus_write_i2c_block_data(client
, 0x16, 2, pll
)) {
996 v4l2_err(sd
, "writing to reg 0x16 and 0x17 failed\n");
1000 /* active video - horizontal timing */
1001 cp_write(sd
, 0x26, (cp_start_sav
>> 8) & 0xf);
1002 cp_write(sd
, 0x27, (cp_start_sav
& 0xff));
1003 cp_write(sd
, 0x28, (cp_start_eav
>> 8) & 0xf);
1004 cp_write(sd
, 0x29, (cp_start_eav
& 0xff));
1006 /* active video - vertical timing */
1007 cp_write(sd
, 0xa5, (cp_start_vbi
>> 4) & 0xff);
1008 cp_write(sd
, 0xa6, ((cp_start_vbi
& 0xf) << 4) |
1009 ((cp_end_vbi
>> 8) & 0xf));
1010 cp_write(sd
, 0xa7, cp_end_vbi
& 0xff);
1012 case ADV7842_MODE_HDMI
:
1013 /* set default prim_mode/vid_std for HDMI
1014 according to [REF_03, c. 4.2] */
1015 io_write(sd
, 0x00, 0x02); /* video std */
1016 io_write(sd
, 0x01, 0x06); /* prim mode */
1019 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
1020 __func__
, state
->mode
);
1024 cp_write(sd
, 0x8f, (ch1_fr_ll
>> 8) & 0x7);
1025 cp_write(sd
, 0x90, ch1_fr_ll
& 0xff);
1026 cp_write(sd
, 0xab, (height
>> 4) & 0xff);
1027 cp_write(sd
, 0xac, (height
& 0x0f) << 4);
1030 static void set_rgb_quantization_range(struct v4l2_subdev
*sd
)
1032 struct adv7842_state
*state
= to_state(sd
);
1034 v4l2_dbg(2, debug
, sd
, "%s: rgb_quantization_range = %d\n",
1035 __func__
, state
->rgb_quantization_range
);
1037 switch (state
->rgb_quantization_range
) {
1038 case V4L2_DV_RGB_RANGE_AUTO
:
1039 if (state
->mode
== ADV7842_MODE_RGB
) {
1040 /* Receiving analog RGB signal
1041 * Set RGB full range (0-255) */
1042 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1046 if (state
->mode
== ADV7842_MODE_COMP
) {
1047 /* Receiving analog YPbPr signal
1049 io_write_and_or(sd
, 0x02, 0x0f, 0xf0);
1053 if (hdmi_read(sd
, 0x05) & 0x80) {
1054 /* Receiving HDMI signal
1056 io_write_and_or(sd
, 0x02, 0x0f, 0xf0);
1060 /* Receiving DVI-D signal
1061 * ADV7842 selects RGB limited range regardless of
1062 * input format (CE/IT) in automatic mode */
1063 if (state
->timings
.bt
.standards
& V4L2_DV_BT_STD_CEA861
) {
1064 /* RGB limited range (16-235) */
1065 io_write_and_or(sd
, 0x02, 0x0f, 0x00);
1067 /* RGB full range (0-255) */
1068 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1071 case V4L2_DV_RGB_RANGE_LIMITED
:
1072 if (state
->mode
== ADV7842_MODE_COMP
) {
1073 /* YCrCb limited range (16-235) */
1074 io_write_and_or(sd
, 0x02, 0x0f, 0x20);
1076 /* RGB limited range (16-235) */
1077 io_write_and_or(sd
, 0x02, 0x0f, 0x00);
1080 case V4L2_DV_RGB_RANGE_FULL
:
1081 if (state
->mode
== ADV7842_MODE_COMP
) {
1082 /* YCrCb full range (0-255) */
1083 io_write_and_or(sd
, 0x02, 0x0f, 0x60);
1085 /* RGB full range (0-255) */
1086 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1092 static int adv7842_s_ctrl(struct v4l2_ctrl
*ctrl
)
1094 struct v4l2_subdev
*sd
= to_sd(ctrl
);
1095 struct adv7842_state
*state
= to_state(sd
);
1098 contrast/brightness/hue/free run is acting a bit strange,
1099 not sure if sdp csc is correct.
1102 /* standard ctrls */
1103 case V4L2_CID_BRIGHTNESS
:
1104 cp_write(sd
, 0x3c, ctrl
->val
);
1105 sdp_write(sd
, 0x14, ctrl
->val
);
1106 /* ignore lsb sdp 0x17[3:2] */
1108 case V4L2_CID_CONTRAST
:
1109 cp_write(sd
, 0x3a, ctrl
->val
);
1110 sdp_write(sd
, 0x13, ctrl
->val
);
1111 /* ignore lsb sdp 0x17[1:0] */
1113 case V4L2_CID_SATURATION
:
1114 cp_write(sd
, 0x3b, ctrl
->val
);
1115 sdp_write(sd
, 0x15, ctrl
->val
);
1116 /* ignore lsb sdp 0x17[5:4] */
1119 cp_write(sd
, 0x3d, ctrl
->val
);
1120 sdp_write(sd
, 0x16, ctrl
->val
);
1121 /* ignore lsb sdp 0x17[7:6] */
1124 case V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE
:
1125 afe_write(sd
, 0xc8, ctrl
->val
);
1127 case V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL
:
1128 cp_write_and_or(sd
, 0xbf, ~0x04, (ctrl
->val
<< 2));
1129 sdp_write_and_or(sd
, 0xdd, ~0x04, (ctrl
->val
<< 2));
1131 case V4L2_CID_ADV_RX_FREE_RUN_COLOR
: {
1132 u8 R
= (ctrl
->val
& 0xff0000) >> 16;
1133 u8 G
= (ctrl
->val
& 0x00ff00) >> 8;
1134 u8 B
= (ctrl
->val
& 0x0000ff);
1135 /* RGB -> YUV, numerical approximation */
1136 int Y
= 66 * R
+ 129 * G
+ 25 * B
;
1137 int U
= -38 * R
- 74 * G
+ 112 * B
;
1138 int V
= 112 * R
- 94 * G
- 18 * B
;
1140 /* Scale down to 8 bits with rounding */
1144 /* make U,V positive */
1149 v4l2_dbg(1, debug
, sd
, "R %x, G %x, B %x\n", R
, G
, B
);
1150 v4l2_dbg(1, debug
, sd
, "Y %x, U %x, V %x\n", Y
, U
, V
);
1153 cp_write(sd
, 0xc1, R
);
1154 cp_write(sd
, 0xc0, G
);
1155 cp_write(sd
, 0xc2, B
);
1157 sdp_write(sd
, 0xde, Y
);
1158 sdp_write(sd
, 0xdf, (V
& 0xf0) | ((U
>> 4) & 0x0f));
1161 case V4L2_CID_DV_RX_RGB_RANGE
:
1162 state
->rgb_quantization_range
= ctrl
->val
;
1163 set_rgb_quantization_range(sd
);
1169 static inline bool no_power(struct v4l2_subdev
*sd
)
1171 return io_read(sd
, 0x0c) & 0x24;
1174 static inline bool no_cp_signal(struct v4l2_subdev
*sd
)
1176 return ((cp_read(sd
, 0xb5) & 0xd0) != 0xd0) || !(cp_read(sd
, 0xb1) & 0x80);
1179 static inline bool is_hdmi(struct v4l2_subdev
*sd
)
1181 return hdmi_read(sd
, 0x05) & 0x80;
1184 static int adv7842_g_input_status(struct v4l2_subdev
*sd
, u32
*status
)
1186 struct adv7842_state
*state
= to_state(sd
);
1190 if (io_read(sd
, 0x0c) & 0x24)
1191 *status
|= V4L2_IN_ST_NO_POWER
;
1193 if (state
->mode
== ADV7842_MODE_SDP
) {
1194 /* status from SDP block */
1195 if (!(sdp_read(sd
, 0x5A) & 0x01))
1196 *status
|= V4L2_IN_ST_NO_SIGNAL
;
1198 v4l2_dbg(1, debug
, sd
, "%s: SDP status = 0x%x\n",
1202 /* status from CP block */
1203 if ((cp_read(sd
, 0xb5) & 0xd0) != 0xd0 ||
1204 !(cp_read(sd
, 0xb1) & 0x80))
1205 /* TODO channel 2 */
1206 *status
|= V4L2_IN_ST_NO_SIGNAL
;
1208 if (is_digital_input(sd
) && ((io_read(sd
, 0x74) & 0x03) != 0x03))
1209 *status
|= V4L2_IN_ST_NO_SIGNAL
;
1211 v4l2_dbg(1, debug
, sd
, "%s: CP status = 0x%x\n",
1217 struct stdi_readback
{
1223 static int stdi2dv_timings(struct v4l2_subdev
*sd
,
1224 struct stdi_readback
*stdi
,
1225 struct v4l2_dv_timings
*timings
)
1227 struct adv7842_state
*state
= to_state(sd
);
1228 u32 hfreq
= (ADV7842_fsc
* 8) / stdi
->bl
;
1232 for (i
= 0; v4l2_dv_timings_presets
[i
].bt
.width
; i
++) {
1233 const struct v4l2_bt_timings
*bt
= &v4l2_dv_timings_presets
[i
].bt
;
1235 if (!v4l2_valid_dv_timings(&v4l2_dv_timings_presets
[i
],
1236 adv7842_get_dv_timings_cap(sd
),
1237 adv7842_check_dv_timings
, NULL
))
1239 if (vtotal(bt
) != stdi
->lcf
+ 1)
1241 if (bt
->vsync
!= stdi
->lcvs
)
1244 pix_clk
= hfreq
* htotal(bt
);
1246 if ((pix_clk
< bt
->pixelclock
+ 1000000) &&
1247 (pix_clk
> bt
->pixelclock
- 1000000)) {
1248 *timings
= v4l2_dv_timings_presets
[i
];
1253 if (v4l2_detect_cvt(stdi
->lcf
+ 1, hfreq
, stdi
->lcvs
,
1254 (stdi
->hs_pol
== '+' ? V4L2_DV_HSYNC_POS_POL
: 0) |
1255 (stdi
->vs_pol
== '+' ? V4L2_DV_VSYNC_POS_POL
: 0),
1258 if (v4l2_detect_gtf(stdi
->lcf
+ 1, hfreq
, stdi
->lcvs
,
1259 (stdi
->hs_pol
== '+' ? V4L2_DV_HSYNC_POS_POL
: 0) |
1260 (stdi
->vs_pol
== '+' ? V4L2_DV_VSYNC_POS_POL
: 0),
1261 state
->aspect_ratio
, timings
))
1264 v4l2_dbg(2, debug
, sd
,
1265 "%s: No format candidate found for lcvs = %d, lcf=%d, bl = %d, %chsync, %cvsync\n",
1266 __func__
, stdi
->lcvs
, stdi
->lcf
, stdi
->bl
,
1267 stdi
->hs_pol
, stdi
->vs_pol
);
1271 static int read_stdi(struct v4l2_subdev
*sd
, struct stdi_readback
*stdi
)
1275 adv7842_g_input_status(sd
, &status
);
1276 if (status
& V4L2_IN_ST_NO_SIGNAL
) {
1277 v4l2_dbg(2, debug
, sd
, "%s: no signal\n", __func__
);
1281 stdi
->bl
= ((cp_read(sd
, 0xb1) & 0x3f) << 8) | cp_read(sd
, 0xb2);
1282 stdi
->lcf
= ((cp_read(sd
, 0xb3) & 0x7) << 8) | cp_read(sd
, 0xb4);
1283 stdi
->lcvs
= cp_read(sd
, 0xb3) >> 3;
1285 if ((cp_read(sd
, 0xb5) & 0x80) && ((cp_read(sd
, 0xb5) & 0x03) == 0x01)) {
1286 stdi
->hs_pol
= ((cp_read(sd
, 0xb5) & 0x10) ?
1287 ((cp_read(sd
, 0xb5) & 0x08) ? '+' : '-') : 'x');
1288 stdi
->vs_pol
= ((cp_read(sd
, 0xb5) & 0x40) ?
1289 ((cp_read(sd
, 0xb5) & 0x20) ? '+' : '-') : 'x');
1294 stdi
->interlaced
= (cp_read(sd
, 0xb1) & 0x40) ? true : false;
1296 if (stdi
->lcf
< 239 || stdi
->bl
< 8 || stdi
->bl
== 0x3fff) {
1297 v4l2_dbg(2, debug
, sd
, "%s: invalid signal\n", __func__
);
1301 v4l2_dbg(2, debug
, sd
,
1302 "%s: lcf (frame height - 1) = %d, bl = %d, lcvs (vsync) = %d, %chsync, %cvsync, %s\n",
1303 __func__
, stdi
->lcf
, stdi
->bl
, stdi
->lcvs
,
1304 stdi
->hs_pol
, stdi
->vs_pol
,
1305 stdi
->interlaced
? "interlaced" : "progressive");
1310 static int adv7842_enum_dv_timings(struct v4l2_subdev
*sd
,
1311 struct v4l2_enum_dv_timings
*timings
)
1313 return v4l2_enum_dv_timings_cap(timings
,
1314 adv7842_get_dv_timings_cap(sd
), adv7842_check_dv_timings
, NULL
);
1317 static int adv7842_dv_timings_cap(struct v4l2_subdev
*sd
,
1318 struct v4l2_dv_timings_cap
*cap
)
1320 *cap
= *adv7842_get_dv_timings_cap(sd
);
1324 /* Fill the optional fields .standards and .flags in struct v4l2_dv_timings
1325 if the format is listed in adv7842_timings[] */
1326 static void adv7842_fill_optional_dv_timings_fields(struct v4l2_subdev
*sd
,
1327 struct v4l2_dv_timings
*timings
)
1329 v4l2_find_dv_timings_cap(timings
, adv7842_get_dv_timings_cap(sd
),
1330 is_digital_input(sd
) ? 250000 : 1000000,
1331 adv7842_check_dv_timings
, NULL
);
1334 static int adv7842_query_dv_timings(struct v4l2_subdev
*sd
,
1335 struct v4l2_dv_timings
*timings
)
1337 struct adv7842_state
*state
= to_state(sd
);
1338 struct v4l2_bt_timings
*bt
= &timings
->bt
;
1339 struct stdi_readback stdi
= { 0 };
1341 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
1344 if (state
->mode
== ADV7842_MODE_SDP
)
1348 if (read_stdi(sd
, &stdi
)) {
1349 state
->restart_stdi_once
= true;
1350 v4l2_dbg(1, debug
, sd
, "%s: no valid signal\n", __func__
);
1353 bt
->interlaced
= stdi
.interlaced
?
1354 V4L2_DV_INTERLACED
: V4L2_DV_PROGRESSIVE
;
1356 if (is_digital_input(sd
)) {
1359 timings
->type
= V4L2_DV_BT_656_1120
;
1361 bt
->width
= (hdmi_read(sd
, 0x07) & 0x0f) * 256 + hdmi_read(sd
, 0x08);
1362 bt
->height
= (hdmi_read(sd
, 0x09) & 0x0f) * 256 + hdmi_read(sd
, 0x0a);
1363 freq
= (hdmi_read(sd
, 0x06) * 1000000) +
1364 ((hdmi_read(sd
, 0x3b) & 0x30) >> 4) * 250000;
1367 /* adjust for deep color mode */
1368 freq
= freq
* 8 / (((hdmi_read(sd
, 0x0b) & 0xc0) >> 5) + 8);
1370 bt
->pixelclock
= freq
;
1371 bt
->hfrontporch
= (hdmi_read(sd
, 0x20) & 0x03) * 256 +
1372 hdmi_read(sd
, 0x21);
1373 bt
->hsync
= (hdmi_read(sd
, 0x22) & 0x03) * 256 +
1374 hdmi_read(sd
, 0x23);
1375 bt
->hbackporch
= (hdmi_read(sd
, 0x24) & 0x03) * 256 +
1376 hdmi_read(sd
, 0x25);
1377 bt
->vfrontporch
= ((hdmi_read(sd
, 0x2a) & 0x1f) * 256 +
1378 hdmi_read(sd
, 0x2b)) / 2;
1379 bt
->vsync
= ((hdmi_read(sd
, 0x2e) & 0x1f) * 256 +
1380 hdmi_read(sd
, 0x2f)) / 2;
1381 bt
->vbackporch
= ((hdmi_read(sd
, 0x32) & 0x1f) * 256 +
1382 hdmi_read(sd
, 0x33)) / 2;
1383 bt
->polarities
= ((hdmi_read(sd
, 0x05) & 0x10) ? V4L2_DV_VSYNC_POS_POL
: 0) |
1384 ((hdmi_read(sd
, 0x05) & 0x20) ? V4L2_DV_HSYNC_POS_POL
: 0);
1385 if (bt
->interlaced
== V4L2_DV_INTERLACED
) {
1386 bt
->height
+= (hdmi_read(sd
, 0x0b) & 0x0f) * 256 +
1387 hdmi_read(sd
, 0x0c);
1388 bt
->il_vfrontporch
= ((hdmi_read(sd
, 0x2c) & 0x1f) * 256 +
1389 hdmi_read(sd
, 0x2d)) / 2;
1390 bt
->il_vsync
= ((hdmi_read(sd
, 0x30) & 0x1f) * 256 +
1391 hdmi_read(sd
, 0x31)) / 2;
1392 bt
->vbackporch
= ((hdmi_read(sd
, 0x34) & 0x1f) * 256 +
1393 hdmi_read(sd
, 0x35)) / 2;
1395 adv7842_fill_optional_dv_timings_fields(sd
, timings
);
1398 * Since LCVS values are inaccurate [REF_03, p. 339-340],
1399 * stdi2dv_timings() is called with lcvs +-1 if the first attempt fails.
1401 if (!stdi2dv_timings(sd
, &stdi
, timings
))
1404 v4l2_dbg(1, debug
, sd
, "%s: lcvs + 1 = %d\n", __func__
, stdi
.lcvs
);
1405 if (!stdi2dv_timings(sd
, &stdi
, timings
))
1408 v4l2_dbg(1, debug
, sd
, "%s: lcvs - 1 = %d\n", __func__
, stdi
.lcvs
);
1409 if (stdi2dv_timings(sd
, &stdi
, timings
)) {
1411 * The STDI block may measure wrong values, especially
1412 * for lcvs and lcf. If the driver can not find any
1413 * valid timing, the STDI block is restarted to measure
1414 * the video timings again. The function will return an
1415 * error, but the restart of STDI will generate a new
1416 * STDI interrupt and the format detection process will
1419 if (state
->restart_stdi_once
) {
1420 v4l2_dbg(1, debug
, sd
, "%s: restart STDI\n", __func__
);
1421 /* TODO restart STDI for Sync Channel 2 */
1422 /* enter one-shot mode */
1423 cp_write_and_or(sd
, 0x86, 0xf9, 0x00);
1424 /* trigger STDI restart */
1425 cp_write_and_or(sd
, 0x86, 0xf9, 0x04);
1426 /* reset to continuous mode */
1427 cp_write_and_or(sd
, 0x86, 0xf9, 0x02);
1428 state
->restart_stdi_once
= false;
1431 v4l2_dbg(1, debug
, sd
, "%s: format not supported\n", __func__
);
1434 state
->restart_stdi_once
= true;
1439 v4l2_print_dv_timings(sd
->name
, "adv7842_query_dv_timings:",
1444 static int adv7842_s_dv_timings(struct v4l2_subdev
*sd
,
1445 struct v4l2_dv_timings
*timings
)
1447 struct adv7842_state
*state
= to_state(sd
);
1448 struct v4l2_bt_timings
*bt
;
1451 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
1453 if (state
->mode
== ADV7842_MODE_SDP
)
1456 if (v4l2_match_dv_timings(&state
->timings
, timings
, 0)) {
1457 v4l2_dbg(1, debug
, sd
, "%s: no change\n", __func__
);
1463 if (!v4l2_valid_dv_timings(timings
, adv7842_get_dv_timings_cap(sd
),
1464 adv7842_check_dv_timings
, NULL
))
1467 adv7842_fill_optional_dv_timings_fields(sd
, timings
);
1469 state
->timings
= *timings
;
1471 cp_write(sd
, 0x91, bt
->interlaced
? 0x40 : 0x00);
1473 /* Use prim_mode and vid_std when available */
1474 err
= configure_predefined_video_timings(sd
, timings
);
1476 /* custom settings when the video format
1477 does not have prim_mode/vid_std */
1478 configure_custom_video_timings(sd
, bt
);
1481 set_rgb_quantization_range(sd
);
1485 v4l2_print_dv_timings(sd
->name
, "adv7842_s_dv_timings: ",
1490 static int adv7842_g_dv_timings(struct v4l2_subdev
*sd
,
1491 struct v4l2_dv_timings
*timings
)
1493 struct adv7842_state
*state
= to_state(sd
);
1495 if (state
->mode
== ADV7842_MODE_SDP
)
1497 *timings
= state
->timings
;
1501 static void enable_input(struct v4l2_subdev
*sd
)
1503 struct adv7842_state
*state
= to_state(sd
);
1505 set_rgb_quantization_range(sd
);
1506 switch (state
->mode
) {
1507 case ADV7842_MODE_SDP
:
1508 case ADV7842_MODE_COMP
:
1509 case ADV7842_MODE_RGB
:
1510 io_write(sd
, 0x15, 0xb0); /* Disable Tristate of Pins (no audio) */
1512 case ADV7842_MODE_HDMI
:
1513 hdmi_write(sd
, 0x01, 0x00); /* Enable HDMI clock terminators */
1514 io_write(sd
, 0x15, 0xa0); /* Disable Tristate of Pins */
1515 hdmi_write_and_or(sd
, 0x1a, 0xef, 0x00); /* Unmute audio */
1518 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
1519 __func__
, state
->mode
);
1524 static void disable_input(struct v4l2_subdev
*sd
)
1526 hdmi_write_and_or(sd
, 0x1a, 0xef, 0x10); /* Mute audio [REF_01, c. 2.2.2] */
1527 msleep(16); /* 512 samples with >= 32 kHz sample rate [REF_03, c. 8.29] */
1528 io_write(sd
, 0x15, 0xbe); /* Tristate all outputs from video core */
1529 hdmi_write(sd
, 0x01, 0x78); /* Disable HDMI clock terminators */
1532 static void sdp_csc_coeff(struct v4l2_subdev
*sd
,
1533 const struct adv7842_sdp_csc_coeff
*c
)
1535 /* csc auto/manual */
1536 sdp_io_write_and_or(sd
, 0xe0, 0xbf, c
->manual
? 0x00 : 0x40);
1542 sdp_io_write_and_or(sd
, 0xe0, 0x7f, c
->scaling
== 2 ? 0x80 : 0x00);
1545 sdp_io_write_and_or(sd
, 0xe0, 0xe0, c
->A1
>> 8);
1546 sdp_io_write(sd
, 0xe1, c
->A1
);
1547 sdp_io_write_and_or(sd
, 0xe2, 0xe0, c
->A2
>> 8);
1548 sdp_io_write(sd
, 0xe3, c
->A2
);
1549 sdp_io_write_and_or(sd
, 0xe4, 0xe0, c
->A3
>> 8);
1550 sdp_io_write(sd
, 0xe5, c
->A3
);
1553 sdp_io_write_and_or(sd
, 0xe6, 0x80, c
->A4
>> 8);
1554 sdp_io_write(sd
, 0xe7, c
->A4
);
1557 sdp_io_write_and_or(sd
, 0xe8, 0xe0, c
->B1
>> 8);
1558 sdp_io_write(sd
, 0xe9, c
->B1
);
1559 sdp_io_write_and_or(sd
, 0xea, 0xe0, c
->B2
>> 8);
1560 sdp_io_write(sd
, 0xeb, c
->B2
);
1561 sdp_io_write_and_or(sd
, 0xec, 0xe0, c
->B3
>> 8);
1562 sdp_io_write(sd
, 0xed, c
->B3
);
1565 sdp_io_write_and_or(sd
, 0xee, 0x80, c
->B4
>> 8);
1566 sdp_io_write(sd
, 0xef, c
->B4
);
1569 sdp_io_write_and_or(sd
, 0xf0, 0xe0, c
->C1
>> 8);
1570 sdp_io_write(sd
, 0xf1, c
->C1
);
1571 sdp_io_write_and_or(sd
, 0xf2, 0xe0, c
->C2
>> 8);
1572 sdp_io_write(sd
, 0xf3, c
->C2
);
1573 sdp_io_write_and_or(sd
, 0xf4, 0xe0, c
->C3
>> 8);
1574 sdp_io_write(sd
, 0xf5, c
->C3
);
1577 sdp_io_write_and_or(sd
, 0xf6, 0x80, c
->C4
>> 8);
1578 sdp_io_write(sd
, 0xf7, c
->C4
);
1581 static void select_input(struct v4l2_subdev
*sd
,
1582 enum adv7842_vid_std_select vid_std_select
)
1584 struct adv7842_state
*state
= to_state(sd
);
1586 switch (state
->mode
) {
1587 case ADV7842_MODE_SDP
:
1588 io_write(sd
, 0x00, vid_std_select
); /* video std: CVBS or YC mode */
1589 io_write(sd
, 0x01, 0); /* prim mode */
1590 /* enable embedded syncs for auto graphics mode */
1591 cp_write_and_or(sd
, 0x81, 0xef, 0x10);
1593 afe_write(sd
, 0x00, 0x00); /* power up ADC */
1594 afe_write(sd
, 0xc8, 0x00); /* phase control */
1596 io_write(sd
, 0xdd, 0x90); /* Manual 2x output clock */
1597 /* script says register 0xde, which don't exist in manual */
1599 /* Manual analog input muxing mode, CVBS (6.4)*/
1600 afe_write_and_or(sd
, 0x02, 0x7f, 0x80);
1601 if (vid_std_select
== ADV7842_SDP_VID_STD_CVBS_SD_4x1
) {
1602 afe_write(sd
, 0x03, 0xa0); /* ADC0 to AIN10 (CVBS), ADC1 N/C*/
1603 afe_write(sd
, 0x04, 0x00); /* ADC2 N/C,ADC3 N/C*/
1605 afe_write(sd
, 0x03, 0xa0); /* ADC0 to AIN10 (CVBS), ADC1 N/C*/
1606 afe_write(sd
, 0x04, 0xc0); /* ADC2 to AIN12, ADC3 N/C*/
1608 afe_write(sd
, 0x0c, 0x1f); /* ADI recommend write */
1609 afe_write(sd
, 0x12, 0x63); /* ADI recommend write */
1611 sdp_io_write(sd
, 0xb2, 0x60); /* Disable AV codes */
1612 sdp_io_write(sd
, 0xc8, 0xe3); /* Disable Ancillary data */
1614 /* SDP recommended settings */
1615 sdp_write(sd
, 0x00, 0x3F); /* Autodetect PAL NTSC (not SECAM) */
1616 sdp_write(sd
, 0x01, 0x00); /* Pedestal Off */
1618 sdp_write(sd
, 0x03, 0xE4); /* Manual VCR Gain Luma 0x40B */
1619 sdp_write(sd
, 0x04, 0x0B); /* Manual Luma setting */
1620 sdp_write(sd
, 0x05, 0xC3); /* Manual Chroma setting 0x3FE */
1621 sdp_write(sd
, 0x06, 0xFE); /* Manual Chroma setting */
1622 sdp_write(sd
, 0x12, 0x0D); /* Frame TBC,I_P, 3D comb enabled */
1623 sdp_write(sd
, 0xA7, 0x00); /* ADI Recommended Write */
1624 sdp_io_write(sd
, 0xB0, 0x00); /* Disable H and v blanking */
1626 /* deinterlacer enabled and 3D comb */
1627 sdp_write_and_or(sd
, 0x12, 0xf6, 0x09);
1631 case ADV7842_MODE_COMP
:
1632 case ADV7842_MODE_RGB
:
1633 /* Automatic analog input muxing mode */
1634 afe_write_and_or(sd
, 0x02, 0x7f, 0x00);
1635 /* set mode and select free run resolution */
1636 io_write(sd
, 0x00, vid_std_select
); /* video std */
1637 io_write(sd
, 0x01, 0x02); /* prim mode */
1638 cp_write_and_or(sd
, 0x81, 0xef, 0x10); /* enable embedded syncs
1639 for auto graphics mode */
1641 afe_write(sd
, 0x00, 0x00); /* power up ADC */
1642 afe_write(sd
, 0xc8, 0x00); /* phase control */
1643 if (state
->mode
== ADV7842_MODE_COMP
) {
1644 /* force to YCrCb */
1645 io_write_and_or(sd
, 0x02, 0x0f, 0x60);
1648 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1651 /* set ADI recommended settings for digitizer */
1652 /* "ADV7842 Register Settings Recommendations
1653 * (rev. 1.8, November 2010)" p. 9. */
1654 afe_write(sd
, 0x0c, 0x1f); /* ADC Range improvement */
1655 afe_write(sd
, 0x12, 0x63); /* ADC Range improvement */
1657 /* set to default gain for RGB */
1658 cp_write(sd
, 0x73, 0x10);
1659 cp_write(sd
, 0x74, 0x04);
1660 cp_write(sd
, 0x75, 0x01);
1661 cp_write(sd
, 0x76, 0x00);
1663 cp_write(sd
, 0x3e, 0x04); /* CP core pre-gain control */
1664 cp_write(sd
, 0xc3, 0x39); /* CP coast control. Graphics mode */
1665 cp_write(sd
, 0x40, 0x5c); /* CP core pre-gain control. Graphics mode */
1668 case ADV7842_MODE_HDMI
:
1669 /* Automatic analog input muxing mode */
1670 afe_write_and_or(sd
, 0x02, 0x7f, 0x00);
1671 /* set mode and select free run resolution */
1672 if (state
->hdmi_port_a
)
1673 hdmi_write(sd
, 0x00, 0x02); /* select port A */
1675 hdmi_write(sd
, 0x00, 0x03); /* select port B */
1676 io_write(sd
, 0x00, vid_std_select
); /* video std */
1677 io_write(sd
, 0x01, 5); /* prim mode */
1678 cp_write_and_or(sd
, 0x81, 0xef, 0x00); /* disable embedded syncs
1679 for auto graphics mode */
1681 /* set ADI recommended settings for HDMI: */
1682 /* "ADV7842 Register Settings Recommendations
1683 * (rev. 1.8, November 2010)" p. 3. */
1684 hdmi_write(sd
, 0xc0, 0x00);
1685 hdmi_write(sd
, 0x0d, 0x34); /* ADI recommended write */
1686 hdmi_write(sd
, 0x3d, 0x10); /* ADI recommended write */
1687 hdmi_write(sd
, 0x44, 0x85); /* TMDS PLL optimization */
1688 hdmi_write(sd
, 0x46, 0x1f); /* ADI recommended write */
1689 hdmi_write(sd
, 0x57, 0xb6); /* TMDS PLL optimization */
1690 hdmi_write(sd
, 0x58, 0x03); /* TMDS PLL optimization */
1691 hdmi_write(sd
, 0x60, 0x88); /* TMDS PLL optimization */
1692 hdmi_write(sd
, 0x61, 0x88); /* TMDS PLL optimization */
1693 hdmi_write(sd
, 0x6c, 0x18); /* Disable ISRC clearing bit,
1694 Improve robustness */
1695 hdmi_write(sd
, 0x75, 0x10); /* DDC drive strength */
1696 hdmi_write(sd
, 0x85, 0x1f); /* equaliser */
1697 hdmi_write(sd
, 0x87, 0x70); /* ADI recommended write */
1698 hdmi_write(sd
, 0x89, 0x04); /* equaliser */
1699 hdmi_write(sd
, 0x8a, 0x1e); /* equaliser */
1700 hdmi_write(sd
, 0x93, 0x04); /* equaliser */
1701 hdmi_write(sd
, 0x94, 0x1e); /* equaliser */
1702 hdmi_write(sd
, 0x99, 0xa1); /* ADI recommended write */
1703 hdmi_write(sd
, 0x9b, 0x09); /* ADI recommended write */
1704 hdmi_write(sd
, 0x9d, 0x02); /* equaliser */
1706 afe_write(sd
, 0x00, 0xff); /* power down ADC */
1707 afe_write(sd
, 0xc8, 0x40); /* phase control */
1709 /* set to default gain for HDMI */
1710 cp_write(sd
, 0x73, 0x10);
1711 cp_write(sd
, 0x74, 0x04);
1712 cp_write(sd
, 0x75, 0x01);
1713 cp_write(sd
, 0x76, 0x00);
1715 /* reset ADI recommended settings for digitizer */
1716 /* "ADV7842 Register Settings Recommendations
1717 * (rev. 2.5, June 2010)" p. 17. */
1718 afe_write(sd
, 0x12, 0xfb); /* ADC noise shaping filter controls */
1719 afe_write(sd
, 0x0c, 0x0d); /* CP core gain controls */
1720 cp_write(sd
, 0x3e, 0x80); /* CP core pre-gain control,
1721 enable color control */
1722 /* CP coast control */
1723 cp_write(sd
, 0xc3, 0x33); /* Component mode */
1725 /* color space conversion, autodetect color space */
1726 io_write_and_or(sd
, 0x02, 0x0f, 0xf0);
1730 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
1731 __func__
, state
->mode
);
1736 static int adv7842_s_routing(struct v4l2_subdev
*sd
,
1737 u32 input
, u32 output
, u32 config
)
1739 struct adv7842_state
*state
= to_state(sd
);
1741 v4l2_dbg(2, debug
, sd
, "%s: input %d\n", __func__
, input
);
1744 case ADV7842_SELECT_HDMI_PORT_A
:
1745 state
->mode
= ADV7842_MODE_HDMI
;
1746 state
->vid_std_select
= ADV7842_HDMI_COMP_VID_STD_HD_1250P
;
1747 state
->hdmi_port_a
= true;
1749 case ADV7842_SELECT_HDMI_PORT_B
:
1750 state
->mode
= ADV7842_MODE_HDMI
;
1751 state
->vid_std_select
= ADV7842_HDMI_COMP_VID_STD_HD_1250P
;
1752 state
->hdmi_port_a
= false;
1754 case ADV7842_SELECT_VGA_COMP
:
1755 state
->mode
= ADV7842_MODE_COMP
;
1756 state
->vid_std_select
= ADV7842_RGB_VID_STD_AUTO_GRAPH_MODE
;
1758 case ADV7842_SELECT_VGA_RGB
:
1759 state
->mode
= ADV7842_MODE_RGB
;
1760 state
->vid_std_select
= ADV7842_RGB_VID_STD_AUTO_GRAPH_MODE
;
1762 case ADV7842_SELECT_SDP_CVBS
:
1763 state
->mode
= ADV7842_MODE_SDP
;
1764 state
->vid_std_select
= ADV7842_SDP_VID_STD_CVBS_SD_4x1
;
1766 case ADV7842_SELECT_SDP_YC
:
1767 state
->mode
= ADV7842_MODE_SDP
;
1768 state
->vid_std_select
= ADV7842_SDP_VID_STD_YC_SD4_x1
;
1775 select_input(sd
, state
->vid_std_select
);
1778 v4l2_subdev_notify(sd
, ADV7842_FMT_CHANGE
, NULL
);
1783 static int adv7842_enum_mbus_fmt(struct v4l2_subdev
*sd
, unsigned int index
,
1784 enum v4l2_mbus_pixelcode
*code
)
1788 /* Good enough for now */
1789 *code
= V4L2_MBUS_FMT_FIXED
;
1793 static int adv7842_g_mbus_fmt(struct v4l2_subdev
*sd
,
1794 struct v4l2_mbus_framefmt
*fmt
)
1796 struct adv7842_state
*state
= to_state(sd
);
1798 fmt
->width
= state
->timings
.bt
.width
;
1799 fmt
->height
= state
->timings
.bt
.height
;
1800 fmt
->code
= V4L2_MBUS_FMT_FIXED
;
1801 fmt
->field
= V4L2_FIELD_NONE
;
1803 if (state
->mode
== ADV7842_MODE_SDP
) {
1805 if (!(sdp_read(sd
, 0x5A) & 0x01))
1809 if (state
->norm
& V4L2_STD_525_60
)
1813 fmt
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1817 if (state
->timings
.bt
.standards
& V4L2_DV_BT_STD_CEA861
) {
1818 fmt
->colorspace
= (state
->timings
.bt
.height
<= 576) ?
1819 V4L2_COLORSPACE_SMPTE170M
: V4L2_COLORSPACE_REC709
;
1824 static void adv7842_irq_enable(struct v4l2_subdev
*sd
, bool enable
)
1827 /* Enable SSPD, STDI and CP locked/unlocked interrupts */
1828 io_write(sd
, 0x46, 0x9c);
1829 /* ESDP_50HZ_DET interrupt */
1830 io_write(sd
, 0x5a, 0x10);
1831 /* Enable CABLE_DET_A/B_ST (+5v) interrupt */
1832 io_write(sd
, 0x73, 0x03);
1833 /* Enable V_LOCKED and DE_REGEN_LCK interrupts */
1834 io_write(sd
, 0x78, 0x03);
1835 /* Enable SDP Standard Detection Change and SDP Video Detected */
1836 io_write(sd
, 0xa0, 0x09);
1837 /* Enable HDMI_MODE interrupt */
1838 io_write(sd
, 0x69, 0x08);
1840 io_write(sd
, 0x46, 0x0);
1841 io_write(sd
, 0x5a, 0x0);
1842 io_write(sd
, 0x73, 0x0);
1843 io_write(sd
, 0x78, 0x0);
1844 io_write(sd
, 0xa0, 0x0);
1845 io_write(sd
, 0x69, 0x0);
1849 static int adv7842_isr(struct v4l2_subdev
*sd
, u32 status
, bool *handled
)
1851 struct adv7842_state
*state
= to_state(sd
);
1852 u8 fmt_change_cp
, fmt_change_digital
, fmt_change_sdp
;
1855 adv7842_irq_enable(sd
, false);
1858 irq_status
[0] = io_read(sd
, 0x43);
1859 irq_status
[1] = io_read(sd
, 0x57);
1860 irq_status
[2] = io_read(sd
, 0x70);
1861 irq_status
[3] = io_read(sd
, 0x75);
1862 irq_status
[4] = io_read(sd
, 0x9d);
1863 irq_status
[5] = io_read(sd
, 0x66);
1867 io_write(sd
, 0x44, irq_status
[0]);
1869 io_write(sd
, 0x58, irq_status
[1]);
1871 io_write(sd
, 0x71, irq_status
[2]);
1873 io_write(sd
, 0x76, irq_status
[3]);
1875 io_write(sd
, 0x9e, irq_status
[4]);
1877 io_write(sd
, 0x67, irq_status
[5]);
1879 adv7842_irq_enable(sd
, true);
1881 v4l2_dbg(1, debug
, sd
, "%s: irq %x, %x, %x, %x, %x, %x\n", __func__
,
1882 irq_status
[0], irq_status
[1], irq_status
[2],
1883 irq_status
[3], irq_status
[4], irq_status
[5]);
1885 /* format change CP */
1886 fmt_change_cp
= irq_status
[0] & 0x9c;
1888 /* format change SDP */
1889 if (state
->mode
== ADV7842_MODE_SDP
)
1890 fmt_change_sdp
= (irq_status
[1] & 0x30) | (irq_status
[4] & 0x09);
1894 /* digital format CP */
1895 if (is_digital_input(sd
))
1896 fmt_change_digital
= irq_status
[3] & 0x03;
1898 fmt_change_digital
= 0;
1901 if (fmt_change_cp
|| fmt_change_digital
|| fmt_change_sdp
) {
1902 v4l2_dbg(1, debug
, sd
,
1903 "%s: fmt_change_cp = 0x%x, fmt_change_digital = 0x%x, fmt_change_sdp = 0x%x\n",
1904 __func__
, fmt_change_cp
, fmt_change_digital
,
1906 v4l2_subdev_notify(sd
, ADV7842_FMT_CHANGE
, NULL
);
1912 if (irq_status
[5] & 0x08) {
1913 v4l2_dbg(1, debug
, sd
, "%s: irq %s mode\n", __func__
,
1914 (io_read(sd
, 0x65) & 0x08) ? "HDMI" : "DVI");
1920 if (irq_status
[2] & 0x3) {
1921 v4l2_dbg(1, debug
, sd
, "%s: irq tx_5v\n", __func__
);
1922 adv7842_s_detect_tx_5v_ctrl(sd
);
1929 static int adv7842_get_edid(struct v4l2_subdev
*sd
, struct v4l2_subdev_edid
*edid
)
1931 struct adv7842_state
*state
= to_state(sd
);
1934 if (edid
->pad
> ADV7842_EDID_PORT_VGA
)
1936 if (edid
->blocks
== 0)
1938 if (edid
->blocks
> 2)
1940 if (edid
->start_block
> 1)
1942 if (edid
->start_block
== 1)
1947 switch (edid
->pad
) {
1948 case ADV7842_EDID_PORT_A
:
1949 case ADV7842_EDID_PORT_B
:
1950 if (state
->hdmi_edid
.present
& (0x04 << edid
->pad
))
1951 data
= state
->hdmi_edid
.edid
;
1953 case ADV7842_EDID_PORT_VGA
:
1954 if (state
->vga_edid
.present
)
1955 data
= state
->vga_edid
.edid
;
1964 data
+ edid
->start_block
* 128,
1965 edid
->blocks
* 128);
1969 static int adv7842_set_edid(struct v4l2_subdev
*sd
, struct v4l2_subdev_edid
*e
)
1971 struct adv7842_state
*state
= to_state(sd
);
1974 if (e
->pad
> ADV7842_EDID_PORT_VGA
)
1976 if (e
->start_block
!= 0)
1983 /* todo, per edid */
1984 state
->aspect_ratio
= v4l2_calc_aspect_ratio(e
->edid
[0x15],
1988 case ADV7842_EDID_PORT_VGA
:
1989 memset(&state
->vga_edid
.edid
, 0, 256);
1990 state
->vga_edid
.present
= e
->blocks
? 0x1 : 0x0;
1991 memcpy(&state
->vga_edid
.edid
, e
->edid
, 128 * e
->blocks
);
1992 err
= edid_write_vga_segment(sd
);
1994 case ADV7842_EDID_PORT_A
:
1995 case ADV7842_EDID_PORT_B
:
1996 memset(&state
->hdmi_edid
.edid
, 0, 256);
1998 state
->hdmi_edid
.present
|= 0x04 << e
->pad
;
2000 state
->hdmi_edid
.present
&= ~(0x04 << e
->pad
);
2001 memcpy(&state
->hdmi_edid
.edid
, e
->edid
, 128 * e
->blocks
);
2002 err
= edid_write_hdmi_segment(sd
, e
->pad
);
2008 v4l2_err(sd
, "error %d writing edid on port %d\n", err
, e
->pad
);
2012 /*********** avi info frame CEA-861-E **************/
2013 /* TODO move to common library */
2015 struct avi_info_frame
{
2039 static const char *y10_txt
[4] = {
2046 static const char *c10_txt
[4] = {
2050 "Extended Colorimetry information valied",
2053 static const char *itc_txt
[2] = {
2058 static const char *ec210_txt
[8] = {
2069 static const char *q10_txt
[4] = {
2076 static void parse_avi_infoframe(struct v4l2_subdev
*sd
, uint8_t *buf
,
2077 struct avi_info_frame
*avi
)
2079 avi
->f17
= (buf
[1] >> 7) & 0x1;
2080 avi
->y10
= (buf
[1] >> 5) & 0x3;
2081 avi
->a0
= (buf
[1] >> 4) & 0x1;
2082 avi
->b10
= (buf
[1] >> 2) & 0x3;
2083 avi
->s10
= buf
[1] & 0x3;
2084 avi
->c10
= (buf
[2] >> 6) & 0x3;
2085 avi
->m10
= (buf
[2] >> 4) & 0x3;
2086 avi
->r3210
= buf
[2] & 0xf;
2087 avi
->itc
= (buf
[3] >> 7) & 0x1;
2088 avi
->ec210
= (buf
[3] >> 4) & 0x7;
2089 avi
->q10
= (buf
[3] >> 2) & 0x3;
2090 avi
->sc10
= buf
[3] & 0x3;
2091 avi
->f47
= (buf
[4] >> 7) & 0x1;
2092 avi
->vic
= buf
[4] & 0x7f;
2093 avi
->yq10
= (buf
[5] >> 6) & 0x3;
2094 avi
->cn10
= (buf
[5] >> 4) & 0x3;
2095 avi
->pr3210
= buf
[5] & 0xf;
2096 avi
->etb
= buf
[6] + 256*buf
[7];
2097 avi
->sbb
= buf
[8] + 256*buf
[9];
2098 avi
->elb
= buf
[10] + 256*buf
[11];
2099 avi
->srb
= buf
[12] + 256*buf
[13];
2102 static void print_avi_infoframe(struct v4l2_subdev
*sd
)
2106 uint8_t avi_inf_len
;
2107 struct avi_info_frame avi
;
2109 if (!(hdmi_read(sd
, 0x05) & 0x80)) {
2110 v4l2_info(sd
, "receive DVI-D signal (AVI infoframe not supported)\n");
2113 if (!(io_read(sd
, 0x60) & 0x01)) {
2114 v4l2_info(sd
, "AVI infoframe not received\n");
2118 if (io_read(sd
, 0x88) & 0x10) {
2119 /* Note: the ADV7842 calculated incorrect checksums for InfoFrames
2120 with a length of 14 or 15. See the ADV7842 Register Settings
2121 Recommendations document for more details. */
2122 v4l2_info(sd
, "AVI infoframe checksum error\n");
2126 avi_inf_len
= infoframe_read(sd
, 0xe2);
2127 v4l2_info(sd
, "AVI infoframe version %d (%d byte)\n",
2128 infoframe_read(sd
, 0xe1), avi_inf_len
);
2130 if (infoframe_read(sd
, 0xe1) != 0x02)
2133 for (i
= 0; i
< 14; i
++)
2134 buf
[i
] = infoframe_read(sd
, i
);
2136 v4l2_info(sd
, "\t%02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
2137 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4], buf
[5], buf
[6], buf
[7],
2138 buf
[8], buf
[9], buf
[10], buf
[11], buf
[12], buf
[13]);
2140 parse_avi_infoframe(sd
, buf
, &avi
);
2143 v4l2_info(sd
, "\tVIC: %d\n", avi
.vic
);
2145 v4l2_info(sd
, "\t%s\n", itc_txt
[avi
.itc
]);
2148 v4l2_info(sd
, "\t%s %s\n", y10_txt
[avi
.y10
], !avi
.c10
? "" :
2149 (avi
.c10
== 0x3 ? ec210_txt
[avi
.ec210
] : c10_txt
[avi
.c10
]));
2151 v4l2_info(sd
, "\t%s %s\n", y10_txt
[avi
.y10
], q10_txt
[avi
.q10
]);
2154 static const char * const prim_mode_txt
[] = {
2159 "CVBS & HDMI AUDIO",
2173 static int adv7842_sdp_log_status(struct v4l2_subdev
*sd
)
2175 /* SDP (Standard definition processor) block */
2176 uint8_t sdp_signal_detected
= sdp_read(sd
, 0x5A) & 0x01;
2178 v4l2_info(sd
, "Chip powered %s\n", no_power(sd
) ? "off" : "on");
2179 v4l2_info(sd
, "Prim-mode = 0x%x, video std = 0x%x\n",
2180 io_read(sd
, 0x01) & 0x0f, io_read(sd
, 0x00) & 0x3f);
2182 v4l2_info(sd
, "SDP: free run: %s\n",
2183 (sdp_read(sd
, 0x56) & 0x01) ? "on" : "off");
2184 v4l2_info(sd
, "SDP: %s\n", sdp_signal_detected
?
2185 "valid SD/PR signal detected" : "invalid/no signal");
2186 if (sdp_signal_detected
) {
2187 static const char * const sdp_std_txt
[] = {
2195 "7?", "8?", "9?", "a?", "b?",
2201 v4l2_info(sd
, "SDP: standard %s\n",
2202 sdp_std_txt
[sdp_read(sd
, 0x52) & 0x0f]);
2203 v4l2_info(sd
, "SDP: %s\n",
2204 (sdp_read(sd
, 0x59) & 0x08) ? "50Hz" : "60Hz");
2205 v4l2_info(sd
, "SDP: %s\n",
2206 (sdp_read(sd
, 0x57) & 0x08) ? "Interlaced" : "Progressive");
2207 v4l2_info(sd
, "SDP: deinterlacer %s\n",
2208 (sdp_read(sd
, 0x12) & 0x08) ? "enabled" : "disabled");
2209 v4l2_info(sd
, "SDP: csc %s mode\n",
2210 (sdp_io_read(sd
, 0xe0) & 0x40) ? "auto" : "manual");
2215 static int adv7842_cp_log_status(struct v4l2_subdev
*sd
)
2218 struct adv7842_state
*state
= to_state(sd
);
2219 struct v4l2_dv_timings timings
;
2220 uint8_t reg_io_0x02
= io_read(sd
, 0x02);
2221 uint8_t reg_io_0x21
= io_read(sd
, 0x21);
2222 uint8_t reg_rep_0x77
= rep_read(sd
, 0x77);
2223 uint8_t reg_rep_0x7d
= rep_read(sd
, 0x7d);
2224 bool audio_pll_locked
= hdmi_read(sd
, 0x04) & 0x01;
2225 bool audio_sample_packet_detect
= hdmi_read(sd
, 0x18) & 0x01;
2226 bool audio_mute
= io_read(sd
, 0x65) & 0x40;
2228 static const char * const csc_coeff_sel_rb
[16] = {
2229 "bypassed", "YPbPr601 -> RGB", "reserved", "YPbPr709 -> RGB",
2230 "reserved", "RGB -> YPbPr601", "reserved", "RGB -> YPbPr709",
2231 "reserved", "YPbPr709 -> YPbPr601", "YPbPr601 -> YPbPr709",
2232 "reserved", "reserved", "reserved", "reserved", "manual"
2234 static const char * const input_color_space_txt
[16] = {
2235 "RGB limited range (16-235)", "RGB full range (0-255)",
2236 "YCbCr Bt.601 (16-235)", "YCbCr Bt.709 (16-235)",
2237 "xvYCC Bt.601", "xvYCC Bt.709",
2238 "YCbCr Bt.601 (0-255)", "YCbCr Bt.709 (0-255)",
2239 "invalid", "invalid", "invalid", "invalid", "invalid",
2240 "invalid", "invalid", "automatic"
2242 static const char * const rgb_quantization_range_txt
[] = {
2244 "RGB limited range (16-235)",
2245 "RGB full range (0-255)",
2247 static const char * const deep_color_mode_txt
[4] = {
2248 "8-bits per channel",
2249 "10-bits per channel",
2250 "12-bits per channel",
2251 "16-bits per channel (not supported)"
2254 v4l2_info(sd
, "-----Chip status-----\n");
2255 v4l2_info(sd
, "Chip power: %s\n", no_power(sd
) ? "off" : "on");
2256 v4l2_info(sd
, "HDMI/DVI-D port selected: %s\n",
2257 state
->hdmi_port_a
? "A" : "B");
2258 v4l2_info(sd
, "EDID A %s, B %s\n",
2259 ((reg_rep_0x7d
& 0x04) && (reg_rep_0x77
& 0x04)) ?
2260 "enabled" : "disabled",
2261 ((reg_rep_0x7d
& 0x08) && (reg_rep_0x77
& 0x08)) ?
2262 "enabled" : "disabled");
2263 v4l2_info(sd
, "HPD A %s, B %s\n",
2264 reg_io_0x21
& 0x02 ? "enabled" : "disabled",
2265 reg_io_0x21
& 0x01 ? "enabled" : "disabled");
2266 v4l2_info(sd
, "CEC %s\n", !!(cec_read(sd
, 0x2a) & 0x01) ?
2267 "enabled" : "disabled");
2269 v4l2_info(sd
, "-----Signal status-----\n");
2270 if (state
->hdmi_port_a
) {
2271 v4l2_info(sd
, "Cable detected (+5V power): %s\n",
2272 io_read(sd
, 0x6f) & 0x02 ? "true" : "false");
2273 v4l2_info(sd
, "TMDS signal detected: %s\n",
2274 (io_read(sd
, 0x6a) & 0x02) ? "true" : "false");
2275 v4l2_info(sd
, "TMDS signal locked: %s\n",
2276 (io_read(sd
, 0x6a) & 0x20) ? "true" : "false");
2278 v4l2_info(sd
, "Cable detected (+5V power):%s\n",
2279 io_read(sd
, 0x6f) & 0x01 ? "true" : "false");
2280 v4l2_info(sd
, "TMDS signal detected: %s\n",
2281 (io_read(sd
, 0x6a) & 0x01) ? "true" : "false");
2282 v4l2_info(sd
, "TMDS signal locked: %s\n",
2283 (io_read(sd
, 0x6a) & 0x10) ? "true" : "false");
2285 v4l2_info(sd
, "CP free run: %s\n",
2286 (!!(cp_read(sd
, 0xff) & 0x10) ? "on" : "off"));
2287 v4l2_info(sd
, "Prim-mode = 0x%x, video std = 0x%x, v_freq = 0x%x\n",
2288 io_read(sd
, 0x01) & 0x0f, io_read(sd
, 0x00) & 0x3f,
2289 (io_read(sd
, 0x01) & 0x70) >> 4);
2291 v4l2_info(sd
, "-----Video Timings-----\n");
2292 if (no_cp_signal(sd
)) {
2293 v4l2_info(sd
, "STDI: not locked\n");
2295 uint32_t bl
= ((cp_read(sd
, 0xb1) & 0x3f) << 8) | cp_read(sd
, 0xb2);
2296 uint32_t lcf
= ((cp_read(sd
, 0xb3) & 0x7) << 8) | cp_read(sd
, 0xb4);
2297 uint32_t lcvs
= cp_read(sd
, 0xb3) >> 3;
2298 uint32_t fcl
= ((cp_read(sd
, 0xb8) & 0x1f) << 8) | cp_read(sd
, 0xb9);
2299 char hs_pol
= ((cp_read(sd
, 0xb5) & 0x10) ?
2300 ((cp_read(sd
, 0xb5) & 0x08) ? '+' : '-') : 'x');
2301 char vs_pol
= ((cp_read(sd
, 0xb5) & 0x40) ?
2302 ((cp_read(sd
, 0xb5) & 0x20) ? '+' : '-') : 'x');
2304 "STDI: lcf (frame height - 1) = %d, bl = %d, lcvs (vsync) = %d, fcl = %d, %s, %chsync, %cvsync\n",
2306 (cp_read(sd
, 0xb1) & 0x40) ?
2307 "interlaced" : "progressive",
2310 if (adv7842_query_dv_timings(sd
, &timings
))
2311 v4l2_info(sd
, "No video detected\n");
2313 v4l2_print_dv_timings(sd
->name
, "Detected format: ",
2315 v4l2_print_dv_timings(sd
->name
, "Configured format: ",
2316 &state
->timings
, true);
2318 if (no_cp_signal(sd
))
2321 v4l2_info(sd
, "-----Color space-----\n");
2322 v4l2_info(sd
, "RGB quantization range ctrl: %s\n",
2323 rgb_quantization_range_txt
[state
->rgb_quantization_range
]);
2324 v4l2_info(sd
, "Input color space: %s\n",
2325 input_color_space_txt
[reg_io_0x02
>> 4]);
2326 v4l2_info(sd
, "Output color space: %s %s, saturator %s\n",
2327 (reg_io_0x02
& 0x02) ? "RGB" : "YCbCr",
2328 (reg_io_0x02
& 0x04) ? "(16-235)" : "(0-255)",
2329 ((reg_io_0x02
& 0x04) ^ (reg_io_0x02
& 0x01)) ?
2330 "enabled" : "disabled");
2331 v4l2_info(sd
, "Color space conversion: %s\n",
2332 csc_coeff_sel_rb
[cp_read(sd
, 0xf4) >> 4]);
2334 if (!is_digital_input(sd
))
2337 v4l2_info(sd
, "-----%s status-----\n", is_hdmi(sd
) ? "HDMI" : "DVI-D");
2338 v4l2_info(sd
, "HDCP encrypted content: %s\n",
2339 (hdmi_read(sd
, 0x05) & 0x40) ? "true" : "false");
2340 v4l2_info(sd
, "HDCP keys read: %s%s\n",
2341 (hdmi_read(sd
, 0x04) & 0x20) ? "yes" : "no",
2342 (hdmi_read(sd
, 0x04) & 0x10) ? "ERROR" : "");
2346 v4l2_info(sd
, "Audio: pll %s, samples %s, %s\n",
2347 audio_pll_locked
? "locked" : "not locked",
2348 audio_sample_packet_detect
? "detected" : "not detected",
2349 audio_mute
? "muted" : "enabled");
2350 if (audio_pll_locked
&& audio_sample_packet_detect
) {
2351 v4l2_info(sd
, "Audio format: %s\n",
2352 (hdmi_read(sd
, 0x07) & 0x40) ? "multi-channel" : "stereo");
2354 v4l2_info(sd
, "Audio CTS: %u\n", (hdmi_read(sd
, 0x5b) << 12) +
2355 (hdmi_read(sd
, 0x5c) << 8) +
2356 (hdmi_read(sd
, 0x5d) & 0xf0));
2357 v4l2_info(sd
, "Audio N: %u\n", ((hdmi_read(sd
, 0x5d) & 0x0f) << 16) +
2358 (hdmi_read(sd
, 0x5e) << 8) +
2359 hdmi_read(sd
, 0x5f));
2360 v4l2_info(sd
, "AV Mute: %s\n",
2361 (hdmi_read(sd
, 0x04) & 0x40) ? "on" : "off");
2362 v4l2_info(sd
, "Deep color mode: %s\n",
2363 deep_color_mode_txt
[hdmi_read(sd
, 0x0b) >> 6]);
2365 print_avi_infoframe(sd
);
2369 static int adv7842_log_status(struct v4l2_subdev
*sd
)
2371 struct adv7842_state
*state
= to_state(sd
);
2373 if (state
->mode
== ADV7842_MODE_SDP
)
2374 return adv7842_sdp_log_status(sd
);
2375 return adv7842_cp_log_status(sd
);
2378 static int adv7842_querystd(struct v4l2_subdev
*sd
, v4l2_std_id
*std
)
2380 struct adv7842_state
*state
= to_state(sd
);
2382 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
2384 if (state
->mode
!= ADV7842_MODE_SDP
)
2387 if (!(sdp_read(sd
, 0x5A) & 0x01)) {
2389 v4l2_dbg(1, debug
, sd
, "%s: no valid signal\n", __func__
);
2393 switch (sdp_read(sd
, 0x52) & 0x0f) {
2396 *std
&= V4L2_STD_NTSC
;
2400 *std
&= V4L2_STD_NTSC_443
;
2404 *std
&= V4L2_STD_SECAM
;
2408 *std
&= V4L2_STD_PAL_M
;
2412 *std
&= V4L2_STD_PAL_60
;
2416 *std
&= V4L2_STD_PAL_Nc
;
2420 *std
&= V4L2_STD_PAL
;
2424 *std
&= V4L2_STD_SECAM
;
2427 *std
&= V4L2_STD_ALL
;
2433 static void adv7842_s_sdp_io(struct v4l2_subdev
*sd
, struct adv7842_sdp_io_sync_adjustment
*s
)
2435 if (s
&& s
->adjust
) {
2436 sdp_io_write(sd
, 0x94, (s
->hs_beg
>> 8) & 0xf);
2437 sdp_io_write(sd
, 0x95, s
->hs_beg
& 0xff);
2438 sdp_io_write(sd
, 0x96, (s
->hs_width
>> 8) & 0xf);
2439 sdp_io_write(sd
, 0x97, s
->hs_width
& 0xff);
2440 sdp_io_write(sd
, 0x98, (s
->de_beg
>> 8) & 0xf);
2441 sdp_io_write(sd
, 0x99, s
->de_beg
& 0xff);
2442 sdp_io_write(sd
, 0x9a, (s
->de_end
>> 8) & 0xf);
2443 sdp_io_write(sd
, 0x9b, s
->de_end
& 0xff);
2444 sdp_io_write(sd
, 0xa8, s
->vs_beg_o
);
2445 sdp_io_write(sd
, 0xa9, s
->vs_beg_e
);
2446 sdp_io_write(sd
, 0xaa, s
->vs_end_o
);
2447 sdp_io_write(sd
, 0xab, s
->vs_end_e
);
2448 sdp_io_write(sd
, 0xac, s
->de_v_beg_o
);
2449 sdp_io_write(sd
, 0xad, s
->de_v_beg_e
);
2450 sdp_io_write(sd
, 0xae, s
->de_v_end_o
);
2451 sdp_io_write(sd
, 0xaf, s
->de_v_end_e
);
2453 /* set to default */
2454 sdp_io_write(sd
, 0x94, 0x00);
2455 sdp_io_write(sd
, 0x95, 0x00);
2456 sdp_io_write(sd
, 0x96, 0x00);
2457 sdp_io_write(sd
, 0x97, 0x20);
2458 sdp_io_write(sd
, 0x98, 0x00);
2459 sdp_io_write(sd
, 0x99, 0x00);
2460 sdp_io_write(sd
, 0x9a, 0x00);
2461 sdp_io_write(sd
, 0x9b, 0x00);
2462 sdp_io_write(sd
, 0xa8, 0x04);
2463 sdp_io_write(sd
, 0xa9, 0x04);
2464 sdp_io_write(sd
, 0xaa, 0x04);
2465 sdp_io_write(sd
, 0xab, 0x04);
2466 sdp_io_write(sd
, 0xac, 0x04);
2467 sdp_io_write(sd
, 0xad, 0x04);
2468 sdp_io_write(sd
, 0xae, 0x04);
2469 sdp_io_write(sd
, 0xaf, 0x04);
2473 static int adv7842_s_std(struct v4l2_subdev
*sd
, v4l2_std_id norm
)
2475 struct adv7842_state
*state
= to_state(sd
);
2476 struct adv7842_platform_data
*pdata
= &state
->pdata
;
2478 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
2480 if (state
->mode
!= ADV7842_MODE_SDP
)
2483 if (norm
& V4L2_STD_625_50
)
2484 adv7842_s_sdp_io(sd
, &pdata
->sdp_io_sync_625
);
2485 else if (norm
& V4L2_STD_525_60
)
2486 adv7842_s_sdp_io(sd
, &pdata
->sdp_io_sync_525
);
2488 adv7842_s_sdp_io(sd
, NULL
);
2490 if (norm
& V4L2_STD_ALL
) {
2497 static int adv7842_g_std(struct v4l2_subdev
*sd
, v4l2_std_id
*norm
)
2499 struct adv7842_state
*state
= to_state(sd
);
2501 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
2503 if (state
->mode
!= ADV7842_MODE_SDP
)
2506 *norm
= state
->norm
;
2510 /* ----------------------------------------------------------------------- */
2512 static int adv7842_core_init(struct v4l2_subdev
*sd
)
2514 struct adv7842_state
*state
= to_state(sd
);
2515 struct adv7842_platform_data
*pdata
= &state
->pdata
;
2516 hdmi_write(sd
, 0x48,
2517 (pdata
->disable_pwrdnb
? 0x80 : 0) |
2518 (pdata
->disable_cable_det_rst
? 0x40 : 0));
2523 io_write(sd
, 0x0c, 0x42); /* Power up part and power down VDP */
2524 io_write(sd
, 0x15, 0x80); /* Power up pads */
2529 pdata
->alt_gamma
<< 3 |
2530 pdata
->op_656_range
<< 2 |
2531 pdata
->rgb_out
<< 1 |
2532 pdata
->alt_data_sat
<< 0);
2533 io_write(sd
, 0x03, pdata
->op_format_sel
);
2534 io_write_and_or(sd
, 0x04, 0x1f, pdata
->op_ch_sel
<< 5);
2535 io_write_and_or(sd
, 0x05, 0xf0, pdata
->blank_data
<< 3 |
2536 pdata
->insert_av_codes
<< 2 |
2537 pdata
->replicate_av_codes
<< 1 |
2538 pdata
->invert_cbcr
<< 0);
2541 hdmi_write_and_or(sd
, 0x1a, 0xf1, 0x08); /* Wait 1 s before unmute */
2543 /* Drive strength */
2544 io_write_and_or(sd
, 0x14, 0xc0,
2545 pdata
->dr_str_data
<< 4 |
2546 pdata
->dr_str_clk
<< 2 |
2547 pdata
->dr_str_sync
);
2550 cp_write_and_or(sd
, 0xba, 0xfc, pdata
->hdmi_free_run_enable
|
2551 (pdata
->hdmi_free_run_mode
<< 1));
2554 sdp_write_and_or(sd
, 0xdd, 0xf0, pdata
->sdp_free_run_force
|
2555 (pdata
->sdp_free_run_cbar_en
<< 1) |
2556 (pdata
->sdp_free_run_man_col_en
<< 2) |
2557 (pdata
->sdp_free_run_auto
<< 3));
2559 /* TODO from platform data */
2560 cp_write(sd
, 0x69, 0x14); /* Enable CP CSC */
2561 io_write(sd
, 0x06, 0xa6); /* positive VS and HS and DE */
2562 cp_write(sd
, 0xf3, 0xdc); /* Low threshold to enter/exit free run mode */
2563 afe_write(sd
, 0xb5, 0x01); /* Setting MCLK to 256Fs */
2565 afe_write(sd
, 0x02, pdata
->ain_sel
); /* Select analog input muxing mode */
2566 io_write_and_or(sd
, 0x30, ~(1 << 4), pdata
->output_bus_lsb_to_msb
<< 4);
2568 sdp_csc_coeff(sd
, &pdata
->sdp_csc_coeff
);
2570 /* todo, improve settings for sdram */
2571 if (pdata
->sd_ram_size
>= 128) {
2572 sdp_write(sd
, 0x12, 0x0d); /* Frame TBC,3D comb enabled */
2573 if (pdata
->sd_ram_ddr
) {
2574 /* SDP setup for the AD eval board */
2575 sdp_io_write(sd
, 0x6f, 0x00); /* DDR mode */
2576 sdp_io_write(sd
, 0x75, 0x0a); /* 128 MB memory size */
2577 sdp_io_write(sd
, 0x7a, 0xa5); /* Timing Adjustment */
2578 sdp_io_write(sd
, 0x7b, 0x8f); /* Timing Adjustment */
2579 sdp_io_write(sd
, 0x60, 0x01); /* SDRAM reset */
2581 sdp_io_write(sd
, 0x75, 0x0a); /* 64 MB memory size ?*/
2582 sdp_io_write(sd
, 0x74, 0x00); /* must be zero for sdr sdram */
2583 sdp_io_write(sd
, 0x79, 0x33); /* CAS latency to 3,
2584 depends on memory */
2585 sdp_io_write(sd
, 0x6f, 0x01); /* SDR mode */
2586 sdp_io_write(sd
, 0x7a, 0xa5); /* Timing Adjustment */
2587 sdp_io_write(sd
, 0x7b, 0x8f); /* Timing Adjustment */
2588 sdp_io_write(sd
, 0x60, 0x01); /* SDRAM reset */
2592 * Manual UG-214, rev 0 is bit confusing on this bit
2593 * but a '1' disables any signal if the Ram is active.
2595 sdp_io_write(sd
, 0x29, 0x10); /* Tristate memory interface */
2598 select_input(sd
, pdata
->vid_std_select
);
2602 /* disable I2C access to internal EDID ram from HDMI DDC ports */
2603 rep_write_and_or(sd
, 0x77, 0xf3, 0x00);
2605 hdmi_write(sd
, 0x69, 0xa3); /* HPA manual */
2606 /* HPA disable on port A and B */
2607 io_write_and_or(sd
, 0x20, 0xcf, 0x00);
2610 io_write(sd
, 0x19, 0x80 | pdata
->llc_dll_phase
);
2611 io_write(sd
, 0x33, 0x40);
2614 io_write(sd
, 0x40, 0xf2); /* Configure INT1 */
2616 adv7842_irq_enable(sd
, true);
2618 return v4l2_ctrl_handler_setup(sd
->ctrl_handler
);
2621 /* ----------------------------------------------------------------------- */
2623 static int adv7842_ddr_ram_test(struct v4l2_subdev
*sd
)
2626 * From ADV784x external Memory test.pdf
2628 * Reset must just been performed before running test.
2629 * Recommended to reset after test.
2636 io_write(sd
, 0x00, 0x01); /* Program SDP 4x1 */
2637 io_write(sd
, 0x01, 0x00); /* Program SDP mode */
2638 afe_write(sd
, 0x80, 0x92); /* SDP Recommeneded Write */
2639 afe_write(sd
, 0x9B, 0x01); /* SDP Recommeneded Write ADV7844ES1 */
2640 afe_write(sd
, 0x9C, 0x60); /* SDP Recommeneded Write ADV7844ES1 */
2641 afe_write(sd
, 0x9E, 0x02); /* SDP Recommeneded Write ADV7844ES1 */
2642 afe_write(sd
, 0xA0, 0x0B); /* SDP Recommeneded Write ADV7844ES1 */
2643 afe_write(sd
, 0xC3, 0x02); /* Memory BIST Initialisation */
2644 io_write(sd
, 0x0C, 0x40); /* Power up ADV7844 */
2645 io_write(sd
, 0x15, 0xBA); /* Enable outputs */
2646 sdp_write(sd
, 0x12, 0x00); /* Disable 3D comb, Frame TBC & 3DNR */
2647 io_write(sd
, 0xFF, 0x04); /* Reset memory controller */
2651 sdp_write(sd
, 0x12, 0x00); /* Disable 3D Comb, Frame TBC & 3DNR */
2652 sdp_io_write(sd
, 0x2A, 0x01); /* Memory BIST Initialisation */
2653 sdp_io_write(sd
, 0x7c, 0x19); /* Memory BIST Initialisation */
2654 sdp_io_write(sd
, 0x80, 0x87); /* Memory BIST Initialisation */
2655 sdp_io_write(sd
, 0x81, 0x4a); /* Memory BIST Initialisation */
2656 sdp_io_write(sd
, 0x82, 0x2c); /* Memory BIST Initialisation */
2657 sdp_io_write(sd
, 0x83, 0x0e); /* Memory BIST Initialisation */
2658 sdp_io_write(sd
, 0x84, 0x94); /* Memory BIST Initialisation */
2659 sdp_io_write(sd
, 0x85, 0x62); /* Memory BIST Initialisation */
2660 sdp_io_write(sd
, 0x7d, 0x00); /* Memory BIST Initialisation */
2661 sdp_io_write(sd
, 0x7e, 0x1a); /* Memory BIST Initialisation */
2665 sdp_io_write(sd
, 0xd9, 0xd5); /* Enable BIST Test */
2666 sdp_write(sd
, 0x12, 0x05); /* Enable FRAME TBC & 3D COMB */
2670 for (i
= 0; i
< 10; i
++) {
2671 u8 result
= sdp_io_read(sd
, 0xdb);
2672 if (result
& 0x10) {
2682 v4l2_dbg(1, debug
, sd
,
2683 "Ram Test: completed %d of %d: pass %d, fail %d\n",
2684 complete
, i
, pass
, fail
);
2686 if (!complete
|| fail
)
2691 static void adv7842_rewrite_i2c_addresses(struct v4l2_subdev
*sd
,
2692 struct adv7842_platform_data
*pdata
)
2694 io_write(sd
, 0xf1, pdata
->i2c_sdp
<< 1);
2695 io_write(sd
, 0xf2, pdata
->i2c_sdp_io
<< 1);
2696 io_write(sd
, 0xf3, pdata
->i2c_avlink
<< 1);
2697 io_write(sd
, 0xf4, pdata
->i2c_cec
<< 1);
2698 io_write(sd
, 0xf5, pdata
->i2c_infoframe
<< 1);
2700 io_write(sd
, 0xf8, pdata
->i2c_afe
<< 1);
2701 io_write(sd
, 0xf9, pdata
->i2c_repeater
<< 1);
2702 io_write(sd
, 0xfa, pdata
->i2c_edid
<< 1);
2703 io_write(sd
, 0xfb, pdata
->i2c_hdmi
<< 1);
2705 io_write(sd
, 0xfd, pdata
->i2c_cp
<< 1);
2706 io_write(sd
, 0xfe, pdata
->i2c_vdp
<< 1);
2709 static int adv7842_command_ram_test(struct v4l2_subdev
*sd
)
2711 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
2712 struct adv7842_state
*state
= to_state(sd
);
2713 struct adv7842_platform_data
*pdata
= client
->dev
.platform_data
;
2714 struct v4l2_dv_timings timings
;
2720 if (!pdata
->sd_ram_size
|| !pdata
->sd_ram_ddr
) {
2721 v4l2_info(sd
, "no sdram or no ddr sdram\n");
2727 adv7842_rewrite_i2c_addresses(sd
, pdata
);
2730 ret
= adv7842_ddr_ram_test(sd
);
2734 adv7842_rewrite_i2c_addresses(sd
, pdata
);
2736 /* and re-init chip and state */
2737 adv7842_core_init(sd
);
2741 select_input(sd
, state
->vid_std_select
);
2745 edid_write_vga_segment(sd
);
2746 edid_write_hdmi_segment(sd
, ADV7842_EDID_PORT_A
);
2747 edid_write_hdmi_segment(sd
, ADV7842_EDID_PORT_B
);
2749 timings
= state
->timings
;
2751 memset(&state
->timings
, 0, sizeof(struct v4l2_dv_timings
));
2753 adv7842_s_dv_timings(sd
, &timings
);
2758 static long adv7842_ioctl(struct v4l2_subdev
*sd
, unsigned int cmd
, void *arg
)
2761 case ADV7842_CMD_RAM_TEST
:
2762 return adv7842_command_ram_test(sd
);
2767 /* ----------------------------------------------------------------------- */
2769 static const struct v4l2_ctrl_ops adv7842_ctrl_ops
= {
2770 .s_ctrl
= adv7842_s_ctrl
,
2773 static const struct v4l2_subdev_core_ops adv7842_core_ops
= {
2774 .log_status
= adv7842_log_status
,
2775 .g_std
= adv7842_g_std
,
2776 .s_std
= adv7842_s_std
,
2777 .ioctl
= adv7842_ioctl
,
2778 .interrupt_service_routine
= adv7842_isr
,
2779 #ifdef CONFIG_VIDEO_ADV_DEBUG
2780 .g_register
= adv7842_g_register
,
2781 .s_register
= adv7842_s_register
,
2785 static const struct v4l2_subdev_video_ops adv7842_video_ops
= {
2786 .s_routing
= adv7842_s_routing
,
2787 .querystd
= adv7842_querystd
,
2788 .g_input_status
= adv7842_g_input_status
,
2789 .s_dv_timings
= adv7842_s_dv_timings
,
2790 .g_dv_timings
= adv7842_g_dv_timings
,
2791 .query_dv_timings
= adv7842_query_dv_timings
,
2792 .enum_dv_timings
= adv7842_enum_dv_timings
,
2793 .dv_timings_cap
= adv7842_dv_timings_cap
,
2794 .enum_mbus_fmt
= adv7842_enum_mbus_fmt
,
2795 .g_mbus_fmt
= adv7842_g_mbus_fmt
,
2796 .try_mbus_fmt
= adv7842_g_mbus_fmt
,
2797 .s_mbus_fmt
= adv7842_g_mbus_fmt
,
2800 static const struct v4l2_subdev_pad_ops adv7842_pad_ops
= {
2801 .get_edid
= adv7842_get_edid
,
2802 .set_edid
= adv7842_set_edid
,
2805 static const struct v4l2_subdev_ops adv7842_ops
= {
2806 .core
= &adv7842_core_ops
,
2807 .video
= &adv7842_video_ops
,
2808 .pad
= &adv7842_pad_ops
,
2811 /* -------------------------- custom ctrls ---------------------------------- */
2813 static const struct v4l2_ctrl_config adv7842_ctrl_analog_sampling_phase
= {
2814 .ops
= &adv7842_ctrl_ops
,
2815 .id
= V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE
,
2816 .name
= "Analog Sampling Phase",
2817 .type
= V4L2_CTRL_TYPE_INTEGER
,
2824 static const struct v4l2_ctrl_config adv7842_ctrl_free_run_color_manual
= {
2825 .ops
= &adv7842_ctrl_ops
,
2826 .id
= V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL
,
2827 .name
= "Free Running Color, Manual",
2828 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
2834 static const struct v4l2_ctrl_config adv7842_ctrl_free_run_color
= {
2835 .ops
= &adv7842_ctrl_ops
,
2836 .id
= V4L2_CID_ADV_RX_FREE_RUN_COLOR
,
2837 .name
= "Free Running Color",
2838 .type
= V4L2_CTRL_TYPE_INTEGER
,
2844 static void adv7842_unregister_clients(struct v4l2_subdev
*sd
)
2846 struct adv7842_state
*state
= to_state(sd
);
2847 if (state
->i2c_avlink
)
2848 i2c_unregister_device(state
->i2c_avlink
);
2850 i2c_unregister_device(state
->i2c_cec
);
2851 if (state
->i2c_infoframe
)
2852 i2c_unregister_device(state
->i2c_infoframe
);
2853 if (state
->i2c_sdp_io
)
2854 i2c_unregister_device(state
->i2c_sdp_io
);
2856 i2c_unregister_device(state
->i2c_sdp
);
2858 i2c_unregister_device(state
->i2c_afe
);
2859 if (state
->i2c_repeater
)
2860 i2c_unregister_device(state
->i2c_repeater
);
2861 if (state
->i2c_edid
)
2862 i2c_unregister_device(state
->i2c_edid
);
2863 if (state
->i2c_hdmi
)
2864 i2c_unregister_device(state
->i2c_hdmi
);
2866 i2c_unregister_device(state
->i2c_cp
);
2868 i2c_unregister_device(state
->i2c_vdp
);
2870 state
->i2c_avlink
= NULL
;
2871 state
->i2c_cec
= NULL
;
2872 state
->i2c_infoframe
= NULL
;
2873 state
->i2c_sdp_io
= NULL
;
2874 state
->i2c_sdp
= NULL
;
2875 state
->i2c_afe
= NULL
;
2876 state
->i2c_repeater
= NULL
;
2877 state
->i2c_edid
= NULL
;
2878 state
->i2c_hdmi
= NULL
;
2879 state
->i2c_cp
= NULL
;
2880 state
->i2c_vdp
= NULL
;
2883 static struct i2c_client
*adv7842_dummy_client(struct v4l2_subdev
*sd
, const char *desc
,
2886 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
2887 struct i2c_client
*cp
;
2889 io_write(sd
, io_reg
, addr
<< 1);
2892 v4l2_err(sd
, "no %s i2c addr configured\n", desc
);
2896 cp
= i2c_new_dummy(client
->adapter
, io_read(sd
, io_reg
) >> 1);
2898 v4l2_err(sd
, "register %s on i2c addr 0x%x failed\n", desc
, addr
);
2903 static int adv7842_register_clients(struct v4l2_subdev
*sd
)
2905 struct adv7842_state
*state
= to_state(sd
);
2906 struct adv7842_platform_data
*pdata
= &state
->pdata
;
2908 state
->i2c_avlink
= adv7842_dummy_client(sd
, "avlink", pdata
->i2c_avlink
, 0xf3);
2909 state
->i2c_cec
= adv7842_dummy_client(sd
, "cec", pdata
->i2c_cec
, 0xf4);
2910 state
->i2c_infoframe
= adv7842_dummy_client(sd
, "infoframe", pdata
->i2c_infoframe
, 0xf5);
2911 state
->i2c_sdp_io
= adv7842_dummy_client(sd
, "sdp_io", pdata
->i2c_sdp_io
, 0xf2);
2912 state
->i2c_sdp
= adv7842_dummy_client(sd
, "sdp", pdata
->i2c_sdp
, 0xf1);
2913 state
->i2c_afe
= adv7842_dummy_client(sd
, "afe", pdata
->i2c_afe
, 0xf8);
2914 state
->i2c_repeater
= adv7842_dummy_client(sd
, "repeater", pdata
->i2c_repeater
, 0xf9);
2915 state
->i2c_edid
= adv7842_dummy_client(sd
, "edid", pdata
->i2c_edid
, 0xfa);
2916 state
->i2c_hdmi
= adv7842_dummy_client(sd
, "hdmi", pdata
->i2c_hdmi
, 0xfb);
2917 state
->i2c_cp
= adv7842_dummy_client(sd
, "cp", pdata
->i2c_cp
, 0xfd);
2918 state
->i2c_vdp
= adv7842_dummy_client(sd
, "vdp", pdata
->i2c_vdp
, 0xfe);
2920 if (!state
->i2c_avlink
||
2922 !state
->i2c_infoframe
||
2923 !state
->i2c_sdp_io
||
2926 !state
->i2c_repeater
||
2936 static int adv7842_probe(struct i2c_client
*client
,
2937 const struct i2c_device_id
*id
)
2939 struct adv7842_state
*state
;
2940 static const struct v4l2_dv_timings cea640x480
=
2941 V4L2_DV_BT_CEA_640X480P59_94
;
2942 struct adv7842_platform_data
*pdata
= client
->dev
.platform_data
;
2943 struct v4l2_ctrl_handler
*hdl
;
2944 struct v4l2_subdev
*sd
;
2948 /* Check if the adapter supports the needed features */
2949 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
2952 v4l_dbg(1, debug
, client
, "detecting adv7842 client on address 0x%x\n",
2956 v4l_err(client
, "No platform data!\n");
2960 state
= devm_kzalloc(&client
->dev
, sizeof(struct adv7842_state
), GFP_KERNEL
);
2962 v4l_err(client
, "Could not allocate adv7842_state memory!\n");
2967 state
->pdata
= *pdata
;
2968 state
->timings
= cea640x480
;
2971 v4l2_i2c_subdev_init(sd
, client
, &adv7842_ops
);
2972 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
2973 state
->mode
= pdata
->mode
;
2975 state
->hdmi_port_a
= pdata
->input
== ADV7842_SELECT_HDMI_PORT_A
;
2976 state
->restart_stdi_once
= true;
2978 /* i2c access to adv7842? */
2979 rev
= adv_smbus_read_byte_data_check(client
, 0xea, false) << 8 |
2980 adv_smbus_read_byte_data_check(client
, 0xeb, false);
2981 if (rev
!= 0x2012) {
2982 v4l2_info(sd
, "got rev=0x%04x on first read attempt\n", rev
);
2983 rev
= adv_smbus_read_byte_data_check(client
, 0xea, false) << 8 |
2984 adv_smbus_read_byte_data_check(client
, 0xeb, false);
2986 if (rev
!= 0x2012) {
2987 v4l2_info(sd
, "not an adv7842 on address 0x%x (rev=0x%04x)\n",
2988 client
->addr
<< 1, rev
);
2992 if (pdata
->chip_reset
)
2995 /* control handlers */
2997 v4l2_ctrl_handler_init(hdl
, 6);
2999 /* add in ascending ID order */
3000 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3001 V4L2_CID_BRIGHTNESS
, -128, 127, 1, 0);
3002 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3003 V4L2_CID_CONTRAST
, 0, 255, 1, 128);
3004 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3005 V4L2_CID_SATURATION
, 0, 255, 1, 128);
3006 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3007 V4L2_CID_HUE
, 0, 128, 1, 0);
3009 /* custom controls */
3010 state
->detect_tx_5v_ctrl
= v4l2_ctrl_new_std(hdl
, NULL
,
3011 V4L2_CID_DV_RX_POWER_PRESENT
, 0, 3, 0, 0);
3012 state
->analog_sampling_phase_ctrl
= v4l2_ctrl_new_custom(hdl
,
3013 &adv7842_ctrl_analog_sampling_phase
, NULL
);
3014 state
->free_run_color_ctrl_manual
= v4l2_ctrl_new_custom(hdl
,
3015 &adv7842_ctrl_free_run_color_manual
, NULL
);
3016 state
->free_run_color_ctrl
= v4l2_ctrl_new_custom(hdl
,
3017 &adv7842_ctrl_free_run_color
, NULL
);
3018 state
->rgb_quantization_range_ctrl
=
3019 v4l2_ctrl_new_std_menu(hdl
, &adv7842_ctrl_ops
,
3020 V4L2_CID_DV_RX_RGB_RANGE
, V4L2_DV_RGB_RANGE_FULL
,
3021 0, V4L2_DV_RGB_RANGE_AUTO
);
3022 sd
->ctrl_handler
= hdl
;
3027 state
->detect_tx_5v_ctrl
->is_private
= true;
3028 state
->rgb_quantization_range_ctrl
->is_private
= true;
3029 state
->analog_sampling_phase_ctrl
->is_private
= true;
3030 state
->free_run_color_ctrl_manual
->is_private
= true;
3031 state
->free_run_color_ctrl
->is_private
= true;
3033 if (adv7842_s_detect_tx_5v_ctrl(sd
)) {
3038 if (adv7842_register_clients(sd
) < 0) {
3040 v4l2_err(sd
, "failed to create all i2c clients\n");
3045 state
->work_queues
= create_singlethread_workqueue(client
->name
);
3046 if (!state
->work_queues
) {
3047 v4l2_err(sd
, "Could not create work queue\n");
3052 INIT_DELAYED_WORK(&state
->delayed_work_enable_hotplug
,
3053 adv7842_delayed_work_enable_hotplug
);
3055 state
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
3056 err
= media_entity_init(&sd
->entity
, 1, &state
->pad
, 0);
3058 goto err_work_queues
;
3060 err
= adv7842_core_init(sd
);
3064 v4l2_info(sd
, "%s found @ 0x%x (%s)\n", client
->name
,
3065 client
->addr
<< 1, client
->adapter
->name
);
3069 media_entity_cleanup(&sd
->entity
);
3071 cancel_delayed_work(&state
->delayed_work_enable_hotplug
);
3072 destroy_workqueue(state
->work_queues
);
3074 adv7842_unregister_clients(sd
);
3076 v4l2_ctrl_handler_free(hdl
);
3080 /* ----------------------------------------------------------------------- */
3082 static int adv7842_remove(struct i2c_client
*client
)
3084 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
3085 struct adv7842_state
*state
= to_state(sd
);
3087 adv7842_irq_enable(sd
, false);
3089 cancel_delayed_work(&state
->delayed_work_enable_hotplug
);
3090 destroy_workqueue(state
->work_queues
);
3091 v4l2_device_unregister_subdev(sd
);
3092 media_entity_cleanup(&sd
->entity
);
3093 adv7842_unregister_clients(sd
);
3094 v4l2_ctrl_handler_free(sd
->ctrl_handler
);
3098 /* ----------------------------------------------------------------------- */
3100 static struct i2c_device_id adv7842_id
[] = {
3104 MODULE_DEVICE_TABLE(i2c
, adv7842_id
);
3106 /* ----------------------------------------------------------------------- */
3108 static struct i2c_driver adv7842_driver
= {
3110 .owner
= THIS_MODULE
,
3113 .probe
= adv7842_probe
,
3114 .remove
= adv7842_remove
,
3115 .id_table
= adv7842_id
,
3118 module_i2c_driver(adv7842_driver
);