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_analog_input(struct v4l2_subdev
*sd
)
551 struct adv7842_state
*state
= to_state(sd
);
553 return ((state
->mode
== ADV7842_MODE_RGB
) ||
554 (state
->mode
== ADV7842_MODE_COMP
));
557 static inline bool is_digital_input(struct v4l2_subdev
*sd
)
559 struct adv7842_state
*state
= to_state(sd
);
561 return state
->mode
== ADV7842_MODE_HDMI
;
564 static const struct v4l2_dv_timings_cap adv7842_timings_cap_analog
= {
565 .type
= V4L2_DV_BT_656_1120
,
566 /* keep this initialization for compatibility with GCC < 4.4.6 */
568 V4L2_INIT_BT_TIMINGS(0, 1920, 0, 1200, 25000000, 170000000,
569 V4L2_DV_BT_STD_CEA861
| V4L2_DV_BT_STD_DMT
|
570 V4L2_DV_BT_STD_GTF
| V4L2_DV_BT_STD_CVT
,
571 V4L2_DV_BT_CAP_PROGRESSIVE
| V4L2_DV_BT_CAP_REDUCED_BLANKING
|
572 V4L2_DV_BT_CAP_CUSTOM
)
575 static const struct v4l2_dv_timings_cap adv7842_timings_cap_digital
= {
576 .type
= V4L2_DV_BT_656_1120
,
577 /* keep this initialization for compatibility with GCC < 4.4.6 */
579 V4L2_INIT_BT_TIMINGS(0, 1920, 0, 1200, 25000000, 225000000,
580 V4L2_DV_BT_STD_CEA861
| V4L2_DV_BT_STD_DMT
|
581 V4L2_DV_BT_STD_GTF
| V4L2_DV_BT_STD_CVT
,
582 V4L2_DV_BT_CAP_PROGRESSIVE
| V4L2_DV_BT_CAP_REDUCED_BLANKING
|
583 V4L2_DV_BT_CAP_CUSTOM
)
586 static inline const struct v4l2_dv_timings_cap
*
587 adv7842_get_dv_timings_cap(struct v4l2_subdev
*sd
)
589 return is_digital_input(sd
) ? &adv7842_timings_cap_digital
:
590 &adv7842_timings_cap_analog
;
593 /* ----------------------------------------------------------------------- */
595 static void adv7842_delayed_work_enable_hotplug(struct work_struct
*work
)
597 struct delayed_work
*dwork
= to_delayed_work(work
);
598 struct adv7842_state
*state
= container_of(dwork
,
599 struct adv7842_state
, delayed_work_enable_hotplug
);
600 struct v4l2_subdev
*sd
= &state
->sd
;
601 int present
= state
->hdmi_edid
.present
;
604 v4l2_dbg(2, debug
, sd
, "%s: enable hotplug on ports: 0x%x\n",
607 if (present
& (0x04 << ADV7842_EDID_PORT_A
))
609 if (present
& (0x04 << ADV7842_EDID_PORT_B
))
611 io_write_and_or(sd
, 0x20, 0xcf, mask
);
614 static int edid_write_vga_segment(struct v4l2_subdev
*sd
)
616 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
617 struct adv7842_state
*state
= to_state(sd
);
618 const u8
*val
= state
->vga_edid
.edid
;
622 v4l2_dbg(2, debug
, sd
, "%s: write EDID on VGA port\n", __func__
);
624 /* HPA disable on port A and B */
625 io_write_and_or(sd
, 0x20, 0xcf, 0x00);
627 /* Disable I2C access to internal EDID ram from VGA DDC port */
628 rep_write_and_or(sd
, 0x7f, 0x7f, 0x00);
630 /* edid segment pointer '1' for VGA port */
631 rep_write_and_or(sd
, 0x77, 0xef, 0x10);
633 for (i
= 0; !err
&& i
< 256; i
+= I2C_SMBUS_BLOCK_MAX
)
634 err
= adv_smbus_write_i2c_block_data(state
->i2c_edid
, i
,
635 I2C_SMBUS_BLOCK_MAX
, val
+ i
);
639 /* Calculates the checksums and enables I2C access
640 * to internal EDID ram from VGA DDC port.
642 rep_write_and_or(sd
, 0x7f, 0x7f, 0x80);
644 for (i
= 0; i
< 1000; i
++) {
645 if (rep_read(sd
, 0x79) & 0x20)
650 v4l_err(client
, "error enabling edid on VGA port\n");
654 /* enable hotplug after 200 ms */
655 queue_delayed_work(state
->work_queues
,
656 &state
->delayed_work_enable_hotplug
, HZ
/ 5);
661 static int edid_spa_location(const u8
*edid
)
666 * TODO, improve and update for other CEA extensions
667 * currently only for 1 segment (256 bytes),
668 * i.e. 1 extension block and CEA revision 3.
670 if ((edid
[0x7e] != 1) ||
671 (edid
[0x80] != 0x02) ||
672 (edid
[0x81] != 0x03)) {
676 * search Vendor Specific Data Block (tag 3)
678 d
= edid
[0x82] & 0x7f;
684 u8 len
= edid
[i
] & 0x1f;
686 if ((tag
== 3) && (len
>= 5))
694 static int edid_write_hdmi_segment(struct v4l2_subdev
*sd
, u8 port
)
696 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
697 struct adv7842_state
*state
= to_state(sd
);
698 const u8
*val
= state
->hdmi_edid
.edid
;
699 int spa_loc
= edid_spa_location(val
);
703 v4l2_dbg(2, debug
, sd
, "%s: write EDID on port %c (spa at 0x%x)\n",
704 __func__
, (port
== ADV7842_EDID_PORT_A
) ? 'A' : 'B', spa_loc
);
706 /* HPA disable on port A and B */
707 io_write_and_or(sd
, 0x20, 0xcf, 0x00);
709 /* Disable I2C access to internal EDID ram from HDMI DDC ports */
710 rep_write_and_or(sd
, 0x77, 0xf3, 0x00);
712 if (!state
->hdmi_edid
.present
)
715 /* edid segment pointer '0' for HDMI ports */
716 rep_write_and_or(sd
, 0x77, 0xef, 0x00);
718 for (i
= 0; !err
&& i
< 256; i
+= I2C_SMBUS_BLOCK_MAX
)
719 err
= adv_smbus_write_i2c_block_data(state
->i2c_edid
, i
,
720 I2C_SMBUS_BLOCK_MAX
, val
+ i
);
725 spa_loc
= 0xc0; /* Default value [REF_02, p. 199] */
727 if (port
== ADV7842_EDID_PORT_A
) {
728 rep_write(sd
, 0x72, val
[spa_loc
]);
729 rep_write(sd
, 0x73, val
[spa_loc
+ 1]);
731 rep_write(sd
, 0x74, val
[spa_loc
]);
732 rep_write(sd
, 0x75, val
[spa_loc
+ 1]);
734 rep_write(sd
, 0x76, spa_loc
& 0xff);
735 rep_write_and_or(sd
, 0x77, 0xbf, (spa_loc
>> 2) & 0x40);
737 /* Calculates the checksums and enables I2C access to internal
738 * EDID ram from HDMI DDC ports
740 rep_write_and_or(sd
, 0x77, 0xf3, state
->hdmi_edid
.present
);
742 for (i
= 0; i
< 1000; i
++) {
743 if (rep_read(sd
, 0x7d) & state
->hdmi_edid
.present
)
748 v4l_err(client
, "error enabling edid on port %c\n",
749 (port
== ADV7842_EDID_PORT_A
) ? 'A' : 'B');
753 /* enable hotplug after 200 ms */
754 queue_delayed_work(state
->work_queues
,
755 &state
->delayed_work_enable_hotplug
, HZ
/ 5);
760 /* ----------------------------------------------------------------------- */
762 #ifdef CONFIG_VIDEO_ADV_DEBUG
763 static void adv7842_inv_register(struct v4l2_subdev
*sd
)
765 v4l2_info(sd
, "0x000-0x0ff: IO Map\n");
766 v4l2_info(sd
, "0x100-0x1ff: AVLink Map\n");
767 v4l2_info(sd
, "0x200-0x2ff: CEC Map\n");
768 v4l2_info(sd
, "0x300-0x3ff: InfoFrame Map\n");
769 v4l2_info(sd
, "0x400-0x4ff: SDP_IO Map\n");
770 v4l2_info(sd
, "0x500-0x5ff: SDP Map\n");
771 v4l2_info(sd
, "0x600-0x6ff: AFE Map\n");
772 v4l2_info(sd
, "0x700-0x7ff: Repeater Map\n");
773 v4l2_info(sd
, "0x800-0x8ff: EDID Map\n");
774 v4l2_info(sd
, "0x900-0x9ff: HDMI Map\n");
775 v4l2_info(sd
, "0xa00-0xaff: CP Map\n");
776 v4l2_info(sd
, "0xb00-0xbff: VDP Map\n");
779 static int adv7842_g_register(struct v4l2_subdev
*sd
,
780 struct v4l2_dbg_register
*reg
)
783 switch (reg
->reg
>> 8) {
785 reg
->val
= io_read(sd
, reg
->reg
& 0xff);
788 reg
->val
= avlink_read(sd
, reg
->reg
& 0xff);
791 reg
->val
= cec_read(sd
, reg
->reg
& 0xff);
794 reg
->val
= infoframe_read(sd
, reg
->reg
& 0xff);
797 reg
->val
= sdp_io_read(sd
, reg
->reg
& 0xff);
800 reg
->val
= sdp_read(sd
, reg
->reg
& 0xff);
803 reg
->val
= afe_read(sd
, reg
->reg
& 0xff);
806 reg
->val
= rep_read(sd
, reg
->reg
& 0xff);
809 reg
->val
= edid_read(sd
, reg
->reg
& 0xff);
812 reg
->val
= hdmi_read(sd
, reg
->reg
& 0xff);
815 reg
->val
= cp_read(sd
, reg
->reg
& 0xff);
818 reg
->val
= vdp_read(sd
, reg
->reg
& 0xff);
821 v4l2_info(sd
, "Register %03llx not supported\n", reg
->reg
);
822 adv7842_inv_register(sd
);
828 static int adv7842_s_register(struct v4l2_subdev
*sd
,
829 const struct v4l2_dbg_register
*reg
)
831 u8 val
= reg
->val
& 0xff;
833 switch (reg
->reg
>> 8) {
835 io_write(sd
, reg
->reg
& 0xff, val
);
838 avlink_write(sd
, reg
->reg
& 0xff, val
);
841 cec_write(sd
, reg
->reg
& 0xff, val
);
844 infoframe_write(sd
, reg
->reg
& 0xff, val
);
847 sdp_io_write(sd
, reg
->reg
& 0xff, val
);
850 sdp_write(sd
, reg
->reg
& 0xff, val
);
853 afe_write(sd
, reg
->reg
& 0xff, val
);
856 rep_write(sd
, reg
->reg
& 0xff, val
);
859 edid_write(sd
, reg
->reg
& 0xff, val
);
862 hdmi_write(sd
, reg
->reg
& 0xff, val
);
865 cp_write(sd
, reg
->reg
& 0xff, val
);
868 vdp_write(sd
, reg
->reg
& 0xff, val
);
871 v4l2_info(sd
, "Register %03llx not supported\n", reg
->reg
);
872 adv7842_inv_register(sd
);
879 static int adv7842_s_detect_tx_5v_ctrl(struct v4l2_subdev
*sd
)
881 struct adv7842_state
*state
= to_state(sd
);
882 int prev
= v4l2_ctrl_g_ctrl(state
->detect_tx_5v_ctrl
);
883 u8 reg_io_6f
= io_read(sd
, 0x6f);
886 if (reg_io_6f
& 0x02)
887 val
|= 1; /* port A */
888 if (reg_io_6f
& 0x01)
889 val
|= 2; /* port B */
891 v4l2_dbg(1, debug
, sd
, "%s: 0x%x -> 0x%x\n", __func__
, prev
, val
);
894 return v4l2_ctrl_s_ctrl(state
->detect_tx_5v_ctrl
, val
);
898 static int find_and_set_predefined_video_timings(struct v4l2_subdev
*sd
,
900 const struct adv7842_video_standards
*predef_vid_timings
,
901 const struct v4l2_dv_timings
*timings
)
905 for (i
= 0; predef_vid_timings
[i
].timings
.bt
.width
; i
++) {
906 if (!v4l2_match_dv_timings(timings
, &predef_vid_timings
[i
].timings
,
907 is_digital_input(sd
) ? 250000 : 1000000))
910 io_write(sd
, 0x00, predef_vid_timings
[i
].vid_std
);
911 /* v_freq and prim mode */
912 io_write(sd
, 0x01, (predef_vid_timings
[i
].v_freq
<< 4) + prim_mode
);
919 static int configure_predefined_video_timings(struct v4l2_subdev
*sd
,
920 struct v4l2_dv_timings
*timings
)
922 struct adv7842_state
*state
= to_state(sd
);
925 v4l2_dbg(1, debug
, sd
, "%s\n", __func__
);
927 /* reset to default values */
928 io_write(sd
, 0x16, 0x43);
929 io_write(sd
, 0x17, 0x5a);
930 /* disable embedded syncs for auto graphics mode */
931 cp_write_and_or(sd
, 0x81, 0xef, 0x00);
932 cp_write(sd
, 0x26, 0x00);
933 cp_write(sd
, 0x27, 0x00);
934 cp_write(sd
, 0x28, 0x00);
935 cp_write(sd
, 0x29, 0x00);
936 cp_write(sd
, 0x8f, 0x40);
937 cp_write(sd
, 0x90, 0x00);
938 cp_write(sd
, 0xa5, 0x00);
939 cp_write(sd
, 0xa6, 0x00);
940 cp_write(sd
, 0xa7, 0x00);
941 cp_write(sd
, 0xab, 0x00);
942 cp_write(sd
, 0xac, 0x00);
944 switch (state
->mode
) {
945 case ADV7842_MODE_COMP
:
946 case ADV7842_MODE_RGB
:
947 err
= find_and_set_predefined_video_timings(sd
,
948 0x01, adv7842_prim_mode_comp
, timings
);
950 err
= find_and_set_predefined_video_timings(sd
,
951 0x02, adv7842_prim_mode_gr
, timings
);
953 case ADV7842_MODE_HDMI
:
954 err
= find_and_set_predefined_video_timings(sd
,
955 0x05, adv7842_prim_mode_hdmi_comp
, timings
);
957 err
= find_and_set_predefined_video_timings(sd
,
958 0x06, adv7842_prim_mode_hdmi_gr
, timings
);
961 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
962 __func__
, state
->mode
);
971 static void configure_custom_video_timings(struct v4l2_subdev
*sd
,
972 const struct v4l2_bt_timings
*bt
)
974 struct adv7842_state
*state
= to_state(sd
);
975 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
976 u32 width
= htotal(bt
);
977 u32 height
= vtotal(bt
);
978 u16 cp_start_sav
= bt
->hsync
+ bt
->hbackporch
- 4;
979 u16 cp_start_eav
= width
- bt
->hfrontporch
;
980 u16 cp_start_vbi
= height
- bt
->vfrontporch
+ 1;
981 u16 cp_end_vbi
= bt
->vsync
+ bt
->vbackporch
+ 1;
982 u16 ch1_fr_ll
= (((u32
)bt
->pixelclock
/ 100) > 0) ?
983 ((width
* (ADV7842_fsc
/ 100)) / ((u32
)bt
->pixelclock
/ 100)) : 0;
985 0xc0 | ((width
>> 8) & 0x1f),
989 v4l2_dbg(2, debug
, sd
, "%s\n", __func__
);
991 switch (state
->mode
) {
992 case ADV7842_MODE_COMP
:
993 case ADV7842_MODE_RGB
:
995 io_write(sd
, 0x00, 0x07); /* video std */
996 io_write(sd
, 0x01, 0x02); /* prim mode */
997 /* enable embedded syncs for auto graphics mode */
998 cp_write_and_or(sd
, 0x81, 0xef, 0x10);
1000 /* Should only be set in auto-graphics mode [REF_02, p. 91-92] */
1001 /* setup PLL_DIV_MAN_EN and PLL_DIV_RATIO */
1002 /* IO-map reg. 0x16 and 0x17 should be written in sequence */
1003 if (adv_smbus_write_i2c_block_data(client
, 0x16, 2, pll
)) {
1004 v4l2_err(sd
, "writing to reg 0x16 and 0x17 failed\n");
1008 /* active video - horizontal timing */
1009 cp_write(sd
, 0x26, (cp_start_sav
>> 8) & 0xf);
1010 cp_write(sd
, 0x27, (cp_start_sav
& 0xff));
1011 cp_write(sd
, 0x28, (cp_start_eav
>> 8) & 0xf);
1012 cp_write(sd
, 0x29, (cp_start_eav
& 0xff));
1014 /* active video - vertical timing */
1015 cp_write(sd
, 0xa5, (cp_start_vbi
>> 4) & 0xff);
1016 cp_write(sd
, 0xa6, ((cp_start_vbi
& 0xf) << 4) |
1017 ((cp_end_vbi
>> 8) & 0xf));
1018 cp_write(sd
, 0xa7, cp_end_vbi
& 0xff);
1020 case ADV7842_MODE_HDMI
:
1021 /* set default prim_mode/vid_std for HDMI
1022 according to [REF_03, c. 4.2] */
1023 io_write(sd
, 0x00, 0x02); /* video std */
1024 io_write(sd
, 0x01, 0x06); /* prim mode */
1027 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
1028 __func__
, state
->mode
);
1032 cp_write(sd
, 0x8f, (ch1_fr_ll
>> 8) & 0x7);
1033 cp_write(sd
, 0x90, ch1_fr_ll
& 0xff);
1034 cp_write(sd
, 0xab, (height
>> 4) & 0xff);
1035 cp_write(sd
, 0xac, (height
& 0x0f) << 4);
1038 static void adv7842_set_offset(struct v4l2_subdev
*sd
, bool auto_offset
, u16 offset_a
, u16 offset_b
, u16 offset_c
)
1040 struct adv7842_state
*state
= to_state(sd
);
1049 v4l2_dbg(2, debug
, sd
, "%s: %s offset: a = 0x%x, b = 0x%x, c = 0x%x\n",
1050 __func__
, auto_offset
? "Auto" : "Manual",
1051 offset_a
, offset_b
, offset_c
);
1053 offset_buf
[0]= (cp_read(sd
, 0x77) & 0xc0) | ((offset_a
& 0x3f0) >> 4);
1054 offset_buf
[1] = ((offset_a
& 0x00f) << 4) | ((offset_b
& 0x3c0) >> 6);
1055 offset_buf
[2] = ((offset_b
& 0x03f) << 2) | ((offset_c
& 0x300) >> 8);
1056 offset_buf
[3] = offset_c
& 0x0ff;
1058 /* Registers must be written in this order with no i2c access in between */
1059 if (adv_smbus_write_i2c_block_data(state
->i2c_cp
, 0x77, 4, offset_buf
))
1060 v4l2_err(sd
, "%s: i2c error writing to CP reg 0x77, 0x78, 0x79, 0x7a\n", __func__
);
1063 static void adv7842_set_gain(struct v4l2_subdev
*sd
, bool auto_gain
, u16 gain_a
, u16 gain_b
, u16 gain_c
)
1065 struct adv7842_state
*state
= to_state(sd
);
1068 u8 agc_mode_man
= 1;
1078 v4l2_dbg(2, debug
, sd
, "%s: %s gain: a = 0x%x, b = 0x%x, c = 0x%x\n",
1079 __func__
, auto_gain
? "Auto" : "Manual",
1080 gain_a
, gain_b
, gain_c
);
1082 gain_buf
[0] = ((gain_man
<< 7) | (agc_mode_man
<< 6) | ((gain_a
& 0x3f0) >> 4));
1083 gain_buf
[1] = (((gain_a
& 0x00f) << 4) | ((gain_b
& 0x3c0) >> 6));
1084 gain_buf
[2] = (((gain_b
& 0x03f) << 2) | ((gain_c
& 0x300) >> 8));
1085 gain_buf
[3] = ((gain_c
& 0x0ff));
1087 /* Registers must be written in this order with no i2c access in between */
1088 if (adv_smbus_write_i2c_block_data(state
->i2c_cp
, 0x73, 4, gain_buf
))
1089 v4l2_err(sd
, "%s: i2c error writing to CP reg 0x73, 0x74, 0x75, 0x76\n", __func__
);
1092 static void set_rgb_quantization_range(struct v4l2_subdev
*sd
)
1094 struct adv7842_state
*state
= to_state(sd
);
1095 bool rgb_output
= io_read(sd
, 0x02) & 0x02;
1096 bool hdmi_signal
= hdmi_read(sd
, 0x05) & 0x80;
1098 v4l2_dbg(2, debug
, sd
, "%s: RGB quantization range: %d, RGB out: %d, HDMI: %d\n",
1099 __func__
, state
->rgb_quantization_range
,
1100 rgb_output
, hdmi_signal
);
1102 adv7842_set_gain(sd
, true, 0x0, 0x0, 0x0);
1103 adv7842_set_offset(sd
, true, 0x0, 0x0, 0x0);
1105 switch (state
->rgb_quantization_range
) {
1106 case V4L2_DV_RGB_RANGE_AUTO
:
1107 if (state
->mode
== ADV7842_MODE_RGB
) {
1108 /* Receiving analog RGB signal
1109 * Set RGB full range (0-255) */
1110 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1114 if (state
->mode
== ADV7842_MODE_COMP
) {
1115 /* Receiving analog YPbPr signal
1117 io_write_and_or(sd
, 0x02, 0x0f, 0xf0);
1122 /* Receiving HDMI signal
1124 io_write_and_or(sd
, 0x02, 0x0f, 0xf0);
1128 /* Receiving DVI-D signal
1129 * ADV7842 selects RGB limited range regardless of
1130 * input format (CE/IT) in automatic mode */
1131 if (state
->timings
.bt
.standards
& V4L2_DV_BT_STD_CEA861
) {
1132 /* RGB limited range (16-235) */
1133 io_write_and_or(sd
, 0x02, 0x0f, 0x00);
1135 /* RGB full range (0-255) */
1136 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1138 if (is_digital_input(sd
) && rgb_output
) {
1139 adv7842_set_offset(sd
, false, 0x40, 0x40, 0x40);
1141 adv7842_set_gain(sd
, false, 0xe0, 0xe0, 0xe0);
1142 adv7842_set_offset(sd
, false, 0x70, 0x70, 0x70);
1146 case V4L2_DV_RGB_RANGE_LIMITED
:
1147 if (state
->mode
== ADV7842_MODE_COMP
) {
1148 /* YCrCb limited range (16-235) */
1149 io_write_and_or(sd
, 0x02, 0x0f, 0x20);
1153 /* RGB limited range (16-235) */
1154 io_write_and_or(sd
, 0x02, 0x0f, 0x00);
1157 case V4L2_DV_RGB_RANGE_FULL
:
1158 if (state
->mode
== ADV7842_MODE_COMP
) {
1159 /* YCrCb full range (0-255) */
1160 io_write_and_or(sd
, 0x02, 0x0f, 0x60);
1164 /* RGB full range (0-255) */
1165 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1167 if (is_analog_input(sd
) || hdmi_signal
)
1170 /* Adjust gain/offset for DVI-D signals only */
1172 adv7842_set_offset(sd
, false, 0x40, 0x40, 0x40);
1174 adv7842_set_gain(sd
, false, 0xe0, 0xe0, 0xe0);
1175 adv7842_set_offset(sd
, false, 0x70, 0x70, 0x70);
1181 static int adv7842_s_ctrl(struct v4l2_ctrl
*ctrl
)
1183 struct v4l2_subdev
*sd
= to_sd(ctrl
);
1184 struct adv7842_state
*state
= to_state(sd
);
1187 contrast/brightness/hue/free run is acting a bit strange,
1188 not sure if sdp csc is correct.
1191 /* standard ctrls */
1192 case V4L2_CID_BRIGHTNESS
:
1193 cp_write(sd
, 0x3c, ctrl
->val
);
1194 sdp_write(sd
, 0x14, ctrl
->val
);
1195 /* ignore lsb sdp 0x17[3:2] */
1197 case V4L2_CID_CONTRAST
:
1198 cp_write(sd
, 0x3a, ctrl
->val
);
1199 sdp_write(sd
, 0x13, ctrl
->val
);
1200 /* ignore lsb sdp 0x17[1:0] */
1202 case V4L2_CID_SATURATION
:
1203 cp_write(sd
, 0x3b, ctrl
->val
);
1204 sdp_write(sd
, 0x15, ctrl
->val
);
1205 /* ignore lsb sdp 0x17[5:4] */
1208 cp_write(sd
, 0x3d, ctrl
->val
);
1209 sdp_write(sd
, 0x16, ctrl
->val
);
1210 /* ignore lsb sdp 0x17[7:6] */
1213 case V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE
:
1214 afe_write(sd
, 0xc8, ctrl
->val
);
1216 case V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL
:
1217 cp_write_and_or(sd
, 0xbf, ~0x04, (ctrl
->val
<< 2));
1218 sdp_write_and_or(sd
, 0xdd, ~0x04, (ctrl
->val
<< 2));
1220 case V4L2_CID_ADV_RX_FREE_RUN_COLOR
: {
1221 u8 R
= (ctrl
->val
& 0xff0000) >> 16;
1222 u8 G
= (ctrl
->val
& 0x00ff00) >> 8;
1223 u8 B
= (ctrl
->val
& 0x0000ff);
1224 /* RGB -> YUV, numerical approximation */
1225 int Y
= 66 * R
+ 129 * G
+ 25 * B
;
1226 int U
= -38 * R
- 74 * G
+ 112 * B
;
1227 int V
= 112 * R
- 94 * G
- 18 * B
;
1229 /* Scale down to 8 bits with rounding */
1233 /* make U,V positive */
1238 v4l2_dbg(1, debug
, sd
, "R %x, G %x, B %x\n", R
, G
, B
);
1239 v4l2_dbg(1, debug
, sd
, "Y %x, U %x, V %x\n", Y
, U
, V
);
1242 cp_write(sd
, 0xc1, R
);
1243 cp_write(sd
, 0xc0, G
);
1244 cp_write(sd
, 0xc2, B
);
1246 sdp_write(sd
, 0xde, Y
);
1247 sdp_write(sd
, 0xdf, (V
& 0xf0) | ((U
>> 4) & 0x0f));
1250 case V4L2_CID_DV_RX_RGB_RANGE
:
1251 state
->rgb_quantization_range
= ctrl
->val
;
1252 set_rgb_quantization_range(sd
);
1258 static inline bool no_power(struct v4l2_subdev
*sd
)
1260 return io_read(sd
, 0x0c) & 0x24;
1263 static inline bool no_cp_signal(struct v4l2_subdev
*sd
)
1265 return ((cp_read(sd
, 0xb5) & 0xd0) != 0xd0) || !(cp_read(sd
, 0xb1) & 0x80);
1268 static inline bool is_hdmi(struct v4l2_subdev
*sd
)
1270 return hdmi_read(sd
, 0x05) & 0x80;
1273 static int adv7842_g_input_status(struct v4l2_subdev
*sd
, u32
*status
)
1275 struct adv7842_state
*state
= to_state(sd
);
1279 if (io_read(sd
, 0x0c) & 0x24)
1280 *status
|= V4L2_IN_ST_NO_POWER
;
1282 if (state
->mode
== ADV7842_MODE_SDP
) {
1283 /* status from SDP block */
1284 if (!(sdp_read(sd
, 0x5A) & 0x01))
1285 *status
|= V4L2_IN_ST_NO_SIGNAL
;
1287 v4l2_dbg(1, debug
, sd
, "%s: SDP status = 0x%x\n",
1291 /* status from CP block */
1292 if ((cp_read(sd
, 0xb5) & 0xd0) != 0xd0 ||
1293 !(cp_read(sd
, 0xb1) & 0x80))
1294 /* TODO channel 2 */
1295 *status
|= V4L2_IN_ST_NO_SIGNAL
;
1297 if (is_digital_input(sd
) && ((io_read(sd
, 0x74) & 0x03) != 0x03))
1298 *status
|= V4L2_IN_ST_NO_SIGNAL
;
1300 v4l2_dbg(1, debug
, sd
, "%s: CP status = 0x%x\n",
1306 struct stdi_readback
{
1312 static int stdi2dv_timings(struct v4l2_subdev
*sd
,
1313 struct stdi_readback
*stdi
,
1314 struct v4l2_dv_timings
*timings
)
1316 struct adv7842_state
*state
= to_state(sd
);
1317 u32 hfreq
= (ADV7842_fsc
* 8) / stdi
->bl
;
1321 for (i
= 0; v4l2_dv_timings_presets
[i
].bt
.width
; i
++) {
1322 const struct v4l2_bt_timings
*bt
= &v4l2_dv_timings_presets
[i
].bt
;
1324 if (!v4l2_valid_dv_timings(&v4l2_dv_timings_presets
[i
],
1325 adv7842_get_dv_timings_cap(sd
),
1326 adv7842_check_dv_timings
, NULL
))
1328 if (vtotal(bt
) != stdi
->lcf
+ 1)
1330 if (bt
->vsync
!= stdi
->lcvs
)
1333 pix_clk
= hfreq
* htotal(bt
);
1335 if ((pix_clk
< bt
->pixelclock
+ 1000000) &&
1336 (pix_clk
> bt
->pixelclock
- 1000000)) {
1337 *timings
= v4l2_dv_timings_presets
[i
];
1342 if (v4l2_detect_cvt(stdi
->lcf
+ 1, hfreq
, stdi
->lcvs
,
1343 (stdi
->hs_pol
== '+' ? V4L2_DV_HSYNC_POS_POL
: 0) |
1344 (stdi
->vs_pol
== '+' ? V4L2_DV_VSYNC_POS_POL
: 0),
1347 if (v4l2_detect_gtf(stdi
->lcf
+ 1, hfreq
, stdi
->lcvs
,
1348 (stdi
->hs_pol
== '+' ? V4L2_DV_HSYNC_POS_POL
: 0) |
1349 (stdi
->vs_pol
== '+' ? V4L2_DV_VSYNC_POS_POL
: 0),
1350 state
->aspect_ratio
, timings
))
1353 v4l2_dbg(2, debug
, sd
,
1354 "%s: No format candidate found for lcvs = %d, lcf=%d, bl = %d, %chsync, %cvsync\n",
1355 __func__
, stdi
->lcvs
, stdi
->lcf
, stdi
->bl
,
1356 stdi
->hs_pol
, stdi
->vs_pol
);
1360 static int read_stdi(struct v4l2_subdev
*sd
, struct stdi_readback
*stdi
)
1364 adv7842_g_input_status(sd
, &status
);
1365 if (status
& V4L2_IN_ST_NO_SIGNAL
) {
1366 v4l2_dbg(2, debug
, sd
, "%s: no signal\n", __func__
);
1370 stdi
->bl
= ((cp_read(sd
, 0xb1) & 0x3f) << 8) | cp_read(sd
, 0xb2);
1371 stdi
->lcf
= ((cp_read(sd
, 0xb3) & 0x7) << 8) | cp_read(sd
, 0xb4);
1372 stdi
->lcvs
= cp_read(sd
, 0xb3) >> 3;
1374 if ((cp_read(sd
, 0xb5) & 0x80) && ((cp_read(sd
, 0xb5) & 0x03) == 0x01)) {
1375 stdi
->hs_pol
= ((cp_read(sd
, 0xb5) & 0x10) ?
1376 ((cp_read(sd
, 0xb5) & 0x08) ? '+' : '-') : 'x');
1377 stdi
->vs_pol
= ((cp_read(sd
, 0xb5) & 0x40) ?
1378 ((cp_read(sd
, 0xb5) & 0x20) ? '+' : '-') : 'x');
1383 stdi
->interlaced
= (cp_read(sd
, 0xb1) & 0x40) ? true : false;
1385 if (stdi
->lcf
< 239 || stdi
->bl
< 8 || stdi
->bl
== 0x3fff) {
1386 v4l2_dbg(2, debug
, sd
, "%s: invalid signal\n", __func__
);
1390 v4l2_dbg(2, debug
, sd
,
1391 "%s: lcf (frame height - 1) = %d, bl = %d, lcvs (vsync) = %d, %chsync, %cvsync, %s\n",
1392 __func__
, stdi
->lcf
, stdi
->bl
, stdi
->lcvs
,
1393 stdi
->hs_pol
, stdi
->vs_pol
,
1394 stdi
->interlaced
? "interlaced" : "progressive");
1399 static int adv7842_enum_dv_timings(struct v4l2_subdev
*sd
,
1400 struct v4l2_enum_dv_timings
*timings
)
1402 if (timings
->pad
!= 0)
1405 return v4l2_enum_dv_timings_cap(timings
,
1406 adv7842_get_dv_timings_cap(sd
), adv7842_check_dv_timings
, NULL
);
1409 static int adv7842_dv_timings_cap(struct v4l2_subdev
*sd
,
1410 struct v4l2_dv_timings_cap
*cap
)
1415 *cap
= *adv7842_get_dv_timings_cap(sd
);
1419 /* Fill the optional fields .standards and .flags in struct v4l2_dv_timings
1420 if the format is listed in adv7842_timings[] */
1421 static void adv7842_fill_optional_dv_timings_fields(struct v4l2_subdev
*sd
,
1422 struct v4l2_dv_timings
*timings
)
1424 v4l2_find_dv_timings_cap(timings
, adv7842_get_dv_timings_cap(sd
),
1425 is_digital_input(sd
) ? 250000 : 1000000,
1426 adv7842_check_dv_timings
, NULL
);
1429 static int adv7842_query_dv_timings(struct v4l2_subdev
*sd
,
1430 struct v4l2_dv_timings
*timings
)
1432 struct adv7842_state
*state
= to_state(sd
);
1433 struct v4l2_bt_timings
*bt
= &timings
->bt
;
1434 struct stdi_readback stdi
= { 0 };
1436 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
1438 memset(timings
, 0, sizeof(struct v4l2_dv_timings
));
1441 if (state
->mode
== ADV7842_MODE_SDP
)
1445 if (read_stdi(sd
, &stdi
)) {
1446 state
->restart_stdi_once
= true;
1447 v4l2_dbg(1, debug
, sd
, "%s: no valid signal\n", __func__
);
1450 bt
->interlaced
= stdi
.interlaced
?
1451 V4L2_DV_INTERLACED
: V4L2_DV_PROGRESSIVE
;
1453 if (is_digital_input(sd
)) {
1456 timings
->type
= V4L2_DV_BT_656_1120
;
1458 bt
->width
= (hdmi_read(sd
, 0x07) & 0x0f) * 256 + hdmi_read(sd
, 0x08);
1459 bt
->height
= (hdmi_read(sd
, 0x09) & 0x0f) * 256 + hdmi_read(sd
, 0x0a);
1460 freq
= ((hdmi_read(sd
, 0x51) << 1) + (hdmi_read(sd
, 0x52) >> 7)) * 1000000;
1461 freq
+= ((hdmi_read(sd
, 0x52) & 0x7f) * 7813);
1463 /* adjust for deep color mode */
1464 freq
= freq
* 8 / (((hdmi_read(sd
, 0x0b) & 0xc0) >> 6) * 2 + 8);
1466 bt
->pixelclock
= freq
;
1467 bt
->hfrontporch
= (hdmi_read(sd
, 0x20) & 0x03) * 256 +
1468 hdmi_read(sd
, 0x21);
1469 bt
->hsync
= (hdmi_read(sd
, 0x22) & 0x03) * 256 +
1470 hdmi_read(sd
, 0x23);
1471 bt
->hbackporch
= (hdmi_read(sd
, 0x24) & 0x03) * 256 +
1472 hdmi_read(sd
, 0x25);
1473 bt
->vfrontporch
= ((hdmi_read(sd
, 0x2a) & 0x1f) * 256 +
1474 hdmi_read(sd
, 0x2b)) / 2;
1475 bt
->vsync
= ((hdmi_read(sd
, 0x2e) & 0x1f) * 256 +
1476 hdmi_read(sd
, 0x2f)) / 2;
1477 bt
->vbackporch
= ((hdmi_read(sd
, 0x32) & 0x1f) * 256 +
1478 hdmi_read(sd
, 0x33)) / 2;
1479 bt
->polarities
= ((hdmi_read(sd
, 0x05) & 0x10) ? V4L2_DV_VSYNC_POS_POL
: 0) |
1480 ((hdmi_read(sd
, 0x05) & 0x20) ? V4L2_DV_HSYNC_POS_POL
: 0);
1481 if (bt
->interlaced
== V4L2_DV_INTERLACED
) {
1482 bt
->height
+= (hdmi_read(sd
, 0x0b) & 0x0f) * 256 +
1483 hdmi_read(sd
, 0x0c);
1484 bt
->il_vfrontporch
= ((hdmi_read(sd
, 0x2c) & 0x1f) * 256 +
1485 hdmi_read(sd
, 0x2d)) / 2;
1486 bt
->il_vsync
= ((hdmi_read(sd
, 0x30) & 0x1f) * 256 +
1487 hdmi_read(sd
, 0x31)) / 2;
1488 bt
->il_vbackporch
= ((hdmi_read(sd
, 0x34) & 0x1f) * 256 +
1489 hdmi_read(sd
, 0x35)) / 2;
1491 adv7842_fill_optional_dv_timings_fields(sd
, timings
);
1494 * Since LCVS values are inaccurate [REF_03, p. 339-340],
1495 * stdi2dv_timings() is called with lcvs +-1 if the first attempt fails.
1497 if (!stdi2dv_timings(sd
, &stdi
, timings
))
1500 v4l2_dbg(1, debug
, sd
, "%s: lcvs + 1 = %d\n", __func__
, stdi
.lcvs
);
1501 if (!stdi2dv_timings(sd
, &stdi
, timings
))
1504 v4l2_dbg(1, debug
, sd
, "%s: lcvs - 1 = %d\n", __func__
, stdi
.lcvs
);
1505 if (stdi2dv_timings(sd
, &stdi
, timings
)) {
1507 * The STDI block may measure wrong values, especially
1508 * for lcvs and lcf. If the driver can not find any
1509 * valid timing, the STDI block is restarted to measure
1510 * the video timings again. The function will return an
1511 * error, but the restart of STDI will generate a new
1512 * STDI interrupt and the format detection process will
1515 if (state
->restart_stdi_once
) {
1516 v4l2_dbg(1, debug
, sd
, "%s: restart STDI\n", __func__
);
1517 /* TODO restart STDI for Sync Channel 2 */
1518 /* enter one-shot mode */
1519 cp_write_and_or(sd
, 0x86, 0xf9, 0x00);
1520 /* trigger STDI restart */
1521 cp_write_and_or(sd
, 0x86, 0xf9, 0x04);
1522 /* reset to continuous mode */
1523 cp_write_and_or(sd
, 0x86, 0xf9, 0x02);
1524 state
->restart_stdi_once
= false;
1527 v4l2_dbg(1, debug
, sd
, "%s: format not supported\n", __func__
);
1530 state
->restart_stdi_once
= true;
1535 v4l2_print_dv_timings(sd
->name
, "adv7842_query_dv_timings:",
1540 static int adv7842_s_dv_timings(struct v4l2_subdev
*sd
,
1541 struct v4l2_dv_timings
*timings
)
1543 struct adv7842_state
*state
= to_state(sd
);
1544 struct v4l2_bt_timings
*bt
;
1547 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
1549 if (state
->mode
== ADV7842_MODE_SDP
)
1552 if (v4l2_match_dv_timings(&state
->timings
, timings
, 0)) {
1553 v4l2_dbg(1, debug
, sd
, "%s: no change\n", __func__
);
1559 if (!v4l2_valid_dv_timings(timings
, adv7842_get_dv_timings_cap(sd
),
1560 adv7842_check_dv_timings
, NULL
))
1563 adv7842_fill_optional_dv_timings_fields(sd
, timings
);
1565 state
->timings
= *timings
;
1567 cp_write(sd
, 0x91, bt
->interlaced
? 0x40 : 0x00);
1569 /* Use prim_mode and vid_std when available */
1570 err
= configure_predefined_video_timings(sd
, timings
);
1572 /* custom settings when the video format
1573 does not have prim_mode/vid_std */
1574 configure_custom_video_timings(sd
, bt
);
1577 set_rgb_quantization_range(sd
);
1581 v4l2_print_dv_timings(sd
->name
, "adv7842_s_dv_timings: ",
1586 static int adv7842_g_dv_timings(struct v4l2_subdev
*sd
,
1587 struct v4l2_dv_timings
*timings
)
1589 struct adv7842_state
*state
= to_state(sd
);
1591 if (state
->mode
== ADV7842_MODE_SDP
)
1593 *timings
= state
->timings
;
1597 static void enable_input(struct v4l2_subdev
*sd
)
1599 struct adv7842_state
*state
= to_state(sd
);
1601 set_rgb_quantization_range(sd
);
1602 switch (state
->mode
) {
1603 case ADV7842_MODE_SDP
:
1604 case ADV7842_MODE_COMP
:
1605 case ADV7842_MODE_RGB
:
1606 io_write(sd
, 0x15, 0xb0); /* Disable Tristate of Pins (no audio) */
1608 case ADV7842_MODE_HDMI
:
1609 hdmi_write(sd
, 0x01, 0x00); /* Enable HDMI clock terminators */
1610 io_write(sd
, 0x15, 0xa0); /* Disable Tristate of Pins */
1611 hdmi_write_and_or(sd
, 0x1a, 0xef, 0x00); /* Unmute audio */
1614 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
1615 __func__
, state
->mode
);
1620 static void disable_input(struct v4l2_subdev
*sd
)
1622 hdmi_write_and_or(sd
, 0x1a, 0xef, 0x10); /* Mute audio [REF_01, c. 2.2.2] */
1623 msleep(16); /* 512 samples with >= 32 kHz sample rate [REF_03, c. 8.29] */
1624 io_write(sd
, 0x15, 0xbe); /* Tristate all outputs from video core */
1625 hdmi_write(sd
, 0x01, 0x78); /* Disable HDMI clock terminators */
1628 static void sdp_csc_coeff(struct v4l2_subdev
*sd
,
1629 const struct adv7842_sdp_csc_coeff
*c
)
1631 /* csc auto/manual */
1632 sdp_io_write_and_or(sd
, 0xe0, 0xbf, c
->manual
? 0x00 : 0x40);
1638 sdp_io_write_and_or(sd
, 0xe0, 0x7f, c
->scaling
== 2 ? 0x80 : 0x00);
1641 sdp_io_write_and_or(sd
, 0xe0, 0xe0, c
->A1
>> 8);
1642 sdp_io_write(sd
, 0xe1, c
->A1
);
1643 sdp_io_write_and_or(sd
, 0xe2, 0xe0, c
->A2
>> 8);
1644 sdp_io_write(sd
, 0xe3, c
->A2
);
1645 sdp_io_write_and_or(sd
, 0xe4, 0xe0, c
->A3
>> 8);
1646 sdp_io_write(sd
, 0xe5, c
->A3
);
1649 sdp_io_write_and_or(sd
, 0xe6, 0x80, c
->A4
>> 8);
1650 sdp_io_write(sd
, 0xe7, c
->A4
);
1653 sdp_io_write_and_or(sd
, 0xe8, 0xe0, c
->B1
>> 8);
1654 sdp_io_write(sd
, 0xe9, c
->B1
);
1655 sdp_io_write_and_or(sd
, 0xea, 0xe0, c
->B2
>> 8);
1656 sdp_io_write(sd
, 0xeb, c
->B2
);
1657 sdp_io_write_and_or(sd
, 0xec, 0xe0, c
->B3
>> 8);
1658 sdp_io_write(sd
, 0xed, c
->B3
);
1661 sdp_io_write_and_or(sd
, 0xee, 0x80, c
->B4
>> 8);
1662 sdp_io_write(sd
, 0xef, c
->B4
);
1665 sdp_io_write_and_or(sd
, 0xf0, 0xe0, c
->C1
>> 8);
1666 sdp_io_write(sd
, 0xf1, c
->C1
);
1667 sdp_io_write_and_or(sd
, 0xf2, 0xe0, c
->C2
>> 8);
1668 sdp_io_write(sd
, 0xf3, c
->C2
);
1669 sdp_io_write_and_or(sd
, 0xf4, 0xe0, c
->C3
>> 8);
1670 sdp_io_write(sd
, 0xf5, c
->C3
);
1673 sdp_io_write_and_or(sd
, 0xf6, 0x80, c
->C4
>> 8);
1674 sdp_io_write(sd
, 0xf7, c
->C4
);
1677 static void select_input(struct v4l2_subdev
*sd
,
1678 enum adv7842_vid_std_select vid_std_select
)
1680 struct adv7842_state
*state
= to_state(sd
);
1682 switch (state
->mode
) {
1683 case ADV7842_MODE_SDP
:
1684 io_write(sd
, 0x00, vid_std_select
); /* video std: CVBS or YC mode */
1685 io_write(sd
, 0x01, 0); /* prim mode */
1686 /* enable embedded syncs for auto graphics mode */
1687 cp_write_and_or(sd
, 0x81, 0xef, 0x10);
1689 afe_write(sd
, 0x00, 0x00); /* power up ADC */
1690 afe_write(sd
, 0xc8, 0x00); /* phase control */
1692 io_write(sd
, 0xdd, 0x90); /* Manual 2x output clock */
1693 /* script says register 0xde, which don't exist in manual */
1695 /* Manual analog input muxing mode, CVBS (6.4)*/
1696 afe_write_and_or(sd
, 0x02, 0x7f, 0x80);
1697 if (vid_std_select
== ADV7842_SDP_VID_STD_CVBS_SD_4x1
) {
1698 afe_write(sd
, 0x03, 0xa0); /* ADC0 to AIN10 (CVBS), ADC1 N/C*/
1699 afe_write(sd
, 0x04, 0x00); /* ADC2 N/C,ADC3 N/C*/
1701 afe_write(sd
, 0x03, 0xa0); /* ADC0 to AIN10 (CVBS), ADC1 N/C*/
1702 afe_write(sd
, 0x04, 0xc0); /* ADC2 to AIN12, ADC3 N/C*/
1704 afe_write(sd
, 0x0c, 0x1f); /* ADI recommend write */
1705 afe_write(sd
, 0x12, 0x63); /* ADI recommend write */
1707 sdp_io_write(sd
, 0xb2, 0x60); /* Disable AV codes */
1708 sdp_io_write(sd
, 0xc8, 0xe3); /* Disable Ancillary data */
1710 /* SDP recommended settings */
1711 sdp_write(sd
, 0x00, 0x3F); /* Autodetect PAL NTSC (not SECAM) */
1712 sdp_write(sd
, 0x01, 0x00); /* Pedestal Off */
1714 sdp_write(sd
, 0x03, 0xE4); /* Manual VCR Gain Luma 0x40B */
1715 sdp_write(sd
, 0x04, 0x0B); /* Manual Luma setting */
1716 sdp_write(sd
, 0x05, 0xC3); /* Manual Chroma setting 0x3FE */
1717 sdp_write(sd
, 0x06, 0xFE); /* Manual Chroma setting */
1718 sdp_write(sd
, 0x12, 0x0D); /* Frame TBC,I_P, 3D comb enabled */
1719 sdp_write(sd
, 0xA7, 0x00); /* ADI Recommended Write */
1720 sdp_io_write(sd
, 0xB0, 0x00); /* Disable H and v blanking */
1722 /* deinterlacer enabled and 3D comb */
1723 sdp_write_and_or(sd
, 0x12, 0xf6, 0x09);
1727 case ADV7842_MODE_COMP
:
1728 case ADV7842_MODE_RGB
:
1729 /* Automatic analog input muxing mode */
1730 afe_write_and_or(sd
, 0x02, 0x7f, 0x00);
1731 /* set mode and select free run resolution */
1732 io_write(sd
, 0x00, vid_std_select
); /* video std */
1733 io_write(sd
, 0x01, 0x02); /* prim mode */
1734 cp_write_and_or(sd
, 0x81, 0xef, 0x10); /* enable embedded syncs
1735 for auto graphics mode */
1737 afe_write(sd
, 0x00, 0x00); /* power up ADC */
1738 afe_write(sd
, 0xc8, 0x00); /* phase control */
1739 if (state
->mode
== ADV7842_MODE_COMP
) {
1740 /* force to YCrCb */
1741 io_write_and_or(sd
, 0x02, 0x0f, 0x60);
1744 io_write_and_or(sd
, 0x02, 0x0f, 0x10);
1747 /* set ADI recommended settings for digitizer */
1748 /* "ADV7842 Register Settings Recommendations
1749 * (rev. 1.8, November 2010)" p. 9. */
1750 afe_write(sd
, 0x0c, 0x1f); /* ADC Range improvement */
1751 afe_write(sd
, 0x12, 0x63); /* ADC Range improvement */
1753 /* set to default gain for RGB */
1754 cp_write(sd
, 0x73, 0x10);
1755 cp_write(sd
, 0x74, 0x04);
1756 cp_write(sd
, 0x75, 0x01);
1757 cp_write(sd
, 0x76, 0x00);
1759 cp_write(sd
, 0x3e, 0x04); /* CP core pre-gain control */
1760 cp_write(sd
, 0xc3, 0x39); /* CP coast control. Graphics mode */
1761 cp_write(sd
, 0x40, 0x5c); /* CP core pre-gain control. Graphics mode */
1764 case ADV7842_MODE_HDMI
:
1765 /* Automatic analog input muxing mode */
1766 afe_write_and_or(sd
, 0x02, 0x7f, 0x00);
1767 /* set mode and select free run resolution */
1768 if (state
->hdmi_port_a
)
1769 hdmi_write(sd
, 0x00, 0x02); /* select port A */
1771 hdmi_write(sd
, 0x00, 0x03); /* select port B */
1772 io_write(sd
, 0x00, vid_std_select
); /* video std */
1773 io_write(sd
, 0x01, 5); /* prim mode */
1774 cp_write_and_or(sd
, 0x81, 0xef, 0x00); /* disable embedded syncs
1775 for auto graphics mode */
1777 /* set ADI recommended settings for HDMI: */
1778 /* "ADV7842 Register Settings Recommendations
1779 * (rev. 1.8, November 2010)" p. 3. */
1780 hdmi_write(sd
, 0xc0, 0x00);
1781 hdmi_write(sd
, 0x0d, 0x34); /* ADI recommended write */
1782 hdmi_write(sd
, 0x3d, 0x10); /* ADI recommended write */
1783 hdmi_write(sd
, 0x44, 0x85); /* TMDS PLL optimization */
1784 hdmi_write(sd
, 0x46, 0x1f); /* ADI recommended write */
1785 hdmi_write(sd
, 0x57, 0xb6); /* TMDS PLL optimization */
1786 hdmi_write(sd
, 0x58, 0x03); /* TMDS PLL optimization */
1787 hdmi_write(sd
, 0x60, 0x88); /* TMDS PLL optimization */
1788 hdmi_write(sd
, 0x61, 0x88); /* TMDS PLL optimization */
1789 hdmi_write(sd
, 0x6c, 0x18); /* Disable ISRC clearing bit,
1790 Improve robustness */
1791 hdmi_write(sd
, 0x75, 0x10); /* DDC drive strength */
1792 hdmi_write(sd
, 0x85, 0x1f); /* equaliser */
1793 hdmi_write(sd
, 0x87, 0x70); /* ADI recommended write */
1794 hdmi_write(sd
, 0x89, 0x04); /* equaliser */
1795 hdmi_write(sd
, 0x8a, 0x1e); /* equaliser */
1796 hdmi_write(sd
, 0x93, 0x04); /* equaliser */
1797 hdmi_write(sd
, 0x94, 0x1e); /* equaliser */
1798 hdmi_write(sd
, 0x99, 0xa1); /* ADI recommended write */
1799 hdmi_write(sd
, 0x9b, 0x09); /* ADI recommended write */
1800 hdmi_write(sd
, 0x9d, 0x02); /* equaliser */
1802 afe_write(sd
, 0x00, 0xff); /* power down ADC */
1803 afe_write(sd
, 0xc8, 0x40); /* phase control */
1805 /* set to default gain for HDMI */
1806 cp_write(sd
, 0x73, 0x10);
1807 cp_write(sd
, 0x74, 0x04);
1808 cp_write(sd
, 0x75, 0x01);
1809 cp_write(sd
, 0x76, 0x00);
1811 /* reset ADI recommended settings for digitizer */
1812 /* "ADV7842 Register Settings Recommendations
1813 * (rev. 2.5, June 2010)" p. 17. */
1814 afe_write(sd
, 0x12, 0xfb); /* ADC noise shaping filter controls */
1815 afe_write(sd
, 0x0c, 0x0d); /* CP core gain controls */
1816 cp_write(sd
, 0x3e, 0x00); /* CP core pre-gain control */
1818 /* CP coast control */
1819 cp_write(sd
, 0xc3, 0x33); /* Component mode */
1821 /* color space conversion, autodetect color space */
1822 io_write_and_or(sd
, 0x02, 0x0f, 0xf0);
1826 v4l2_dbg(2, debug
, sd
, "%s: Unknown mode %d\n",
1827 __func__
, state
->mode
);
1832 static int adv7842_s_routing(struct v4l2_subdev
*sd
,
1833 u32 input
, u32 output
, u32 config
)
1835 struct adv7842_state
*state
= to_state(sd
);
1837 v4l2_dbg(2, debug
, sd
, "%s: input %d\n", __func__
, input
);
1840 case ADV7842_SELECT_HDMI_PORT_A
:
1841 state
->mode
= ADV7842_MODE_HDMI
;
1842 state
->vid_std_select
= ADV7842_HDMI_COMP_VID_STD_HD_1250P
;
1843 state
->hdmi_port_a
= true;
1845 case ADV7842_SELECT_HDMI_PORT_B
:
1846 state
->mode
= ADV7842_MODE_HDMI
;
1847 state
->vid_std_select
= ADV7842_HDMI_COMP_VID_STD_HD_1250P
;
1848 state
->hdmi_port_a
= false;
1850 case ADV7842_SELECT_VGA_COMP
:
1851 state
->mode
= ADV7842_MODE_COMP
;
1852 state
->vid_std_select
= ADV7842_RGB_VID_STD_AUTO_GRAPH_MODE
;
1854 case ADV7842_SELECT_VGA_RGB
:
1855 state
->mode
= ADV7842_MODE_RGB
;
1856 state
->vid_std_select
= ADV7842_RGB_VID_STD_AUTO_GRAPH_MODE
;
1858 case ADV7842_SELECT_SDP_CVBS
:
1859 state
->mode
= ADV7842_MODE_SDP
;
1860 state
->vid_std_select
= ADV7842_SDP_VID_STD_CVBS_SD_4x1
;
1862 case ADV7842_SELECT_SDP_YC
:
1863 state
->mode
= ADV7842_MODE_SDP
;
1864 state
->vid_std_select
= ADV7842_SDP_VID_STD_YC_SD4_x1
;
1871 select_input(sd
, state
->vid_std_select
);
1874 v4l2_subdev_notify(sd
, ADV7842_FMT_CHANGE
, NULL
);
1879 static int adv7842_enum_mbus_fmt(struct v4l2_subdev
*sd
, unsigned int index
,
1884 /* Good enough for now */
1885 *code
= MEDIA_BUS_FMT_FIXED
;
1889 static int adv7842_g_mbus_fmt(struct v4l2_subdev
*sd
,
1890 struct v4l2_mbus_framefmt
*fmt
)
1892 struct adv7842_state
*state
= to_state(sd
);
1894 fmt
->width
= state
->timings
.bt
.width
;
1895 fmt
->height
= state
->timings
.bt
.height
;
1896 fmt
->code
= MEDIA_BUS_FMT_FIXED
;
1897 fmt
->field
= V4L2_FIELD_NONE
;
1899 if (state
->mode
== ADV7842_MODE_SDP
) {
1901 if (!(sdp_read(sd
, 0x5A) & 0x01))
1905 if (state
->norm
& V4L2_STD_525_60
)
1909 fmt
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1913 if (state
->timings
.bt
.standards
& V4L2_DV_BT_STD_CEA861
) {
1914 fmt
->colorspace
= (state
->timings
.bt
.height
<= 576) ?
1915 V4L2_COLORSPACE_SMPTE170M
: V4L2_COLORSPACE_REC709
;
1920 static void adv7842_irq_enable(struct v4l2_subdev
*sd
, bool enable
)
1923 /* Enable SSPD, STDI and CP locked/unlocked interrupts */
1924 io_write(sd
, 0x46, 0x9c);
1925 /* ESDP_50HZ_DET interrupt */
1926 io_write(sd
, 0x5a, 0x10);
1927 /* Enable CABLE_DET_A/B_ST (+5v) interrupt */
1928 io_write(sd
, 0x73, 0x03);
1929 /* Enable V_LOCKED and DE_REGEN_LCK interrupts */
1930 io_write(sd
, 0x78, 0x03);
1931 /* Enable SDP Standard Detection Change and SDP Video Detected */
1932 io_write(sd
, 0xa0, 0x09);
1933 /* Enable HDMI_MODE interrupt */
1934 io_write(sd
, 0x69, 0x08);
1936 io_write(sd
, 0x46, 0x0);
1937 io_write(sd
, 0x5a, 0x0);
1938 io_write(sd
, 0x73, 0x0);
1939 io_write(sd
, 0x78, 0x0);
1940 io_write(sd
, 0xa0, 0x0);
1941 io_write(sd
, 0x69, 0x0);
1945 static int adv7842_isr(struct v4l2_subdev
*sd
, u32 status
, bool *handled
)
1947 struct adv7842_state
*state
= to_state(sd
);
1948 u8 fmt_change_cp
, fmt_change_digital
, fmt_change_sdp
;
1951 adv7842_irq_enable(sd
, false);
1954 irq_status
[0] = io_read(sd
, 0x43);
1955 irq_status
[1] = io_read(sd
, 0x57);
1956 irq_status
[2] = io_read(sd
, 0x70);
1957 irq_status
[3] = io_read(sd
, 0x75);
1958 irq_status
[4] = io_read(sd
, 0x9d);
1959 irq_status
[5] = io_read(sd
, 0x66);
1963 io_write(sd
, 0x44, irq_status
[0]);
1965 io_write(sd
, 0x58, irq_status
[1]);
1967 io_write(sd
, 0x71, irq_status
[2]);
1969 io_write(sd
, 0x76, irq_status
[3]);
1971 io_write(sd
, 0x9e, irq_status
[4]);
1973 io_write(sd
, 0x67, irq_status
[5]);
1975 adv7842_irq_enable(sd
, true);
1977 v4l2_dbg(1, debug
, sd
, "%s: irq %x, %x, %x, %x, %x, %x\n", __func__
,
1978 irq_status
[0], irq_status
[1], irq_status
[2],
1979 irq_status
[3], irq_status
[4], irq_status
[5]);
1981 /* format change CP */
1982 fmt_change_cp
= irq_status
[0] & 0x9c;
1984 /* format change SDP */
1985 if (state
->mode
== ADV7842_MODE_SDP
)
1986 fmt_change_sdp
= (irq_status
[1] & 0x30) | (irq_status
[4] & 0x09);
1990 /* digital format CP */
1991 if (is_digital_input(sd
))
1992 fmt_change_digital
= irq_status
[3] & 0x03;
1994 fmt_change_digital
= 0;
1997 if (fmt_change_cp
|| fmt_change_digital
|| fmt_change_sdp
) {
1998 v4l2_dbg(1, debug
, sd
,
1999 "%s: fmt_change_cp = 0x%x, fmt_change_digital = 0x%x, fmt_change_sdp = 0x%x\n",
2000 __func__
, fmt_change_cp
, fmt_change_digital
,
2002 v4l2_subdev_notify(sd
, ADV7842_FMT_CHANGE
, NULL
);
2008 if (irq_status
[5] & 0x08) {
2009 v4l2_dbg(1, debug
, sd
, "%s: irq %s mode\n", __func__
,
2010 (io_read(sd
, 0x65) & 0x08) ? "HDMI" : "DVI");
2011 set_rgb_quantization_range(sd
);
2017 if (irq_status
[2] & 0x3) {
2018 v4l2_dbg(1, debug
, sd
, "%s: irq tx_5v\n", __func__
);
2019 adv7842_s_detect_tx_5v_ctrl(sd
);
2026 static int adv7842_get_edid(struct v4l2_subdev
*sd
, struct v4l2_edid
*edid
)
2028 struct adv7842_state
*state
= to_state(sd
);
2031 memset(edid
->reserved
, 0, sizeof(edid
->reserved
));
2033 switch (edid
->pad
) {
2034 case ADV7842_EDID_PORT_A
:
2035 case ADV7842_EDID_PORT_B
:
2036 if (state
->hdmi_edid
.present
& (0x04 << edid
->pad
))
2037 data
= state
->hdmi_edid
.edid
;
2039 case ADV7842_EDID_PORT_VGA
:
2040 if (state
->vga_edid
.present
)
2041 data
= state
->vga_edid
.edid
;
2047 if (edid
->start_block
== 0 && edid
->blocks
== 0) {
2048 edid
->blocks
= data
? 2 : 0;
2055 if (edid
->start_block
>= 2)
2058 if (edid
->start_block
+ edid
->blocks
> 2)
2059 edid
->blocks
= 2 - edid
->start_block
;
2061 memcpy(edid
->edid
, data
+ edid
->start_block
* 128, edid
->blocks
* 128);
2066 static int adv7842_set_edid(struct v4l2_subdev
*sd
, struct v4l2_edid
*e
)
2068 struct adv7842_state
*state
= to_state(sd
);
2071 memset(e
->reserved
, 0, sizeof(e
->reserved
));
2073 if (e
->pad
> ADV7842_EDID_PORT_VGA
)
2075 if (e
->start_block
!= 0)
2077 if (e
->blocks
> 2) {
2082 /* todo, per edid */
2083 state
->aspect_ratio
= v4l2_calc_aspect_ratio(e
->edid
[0x15],
2087 case ADV7842_EDID_PORT_VGA
:
2088 memset(&state
->vga_edid
.edid
, 0, 256);
2089 state
->vga_edid
.present
= e
->blocks
? 0x1 : 0x0;
2090 memcpy(&state
->vga_edid
.edid
, e
->edid
, 128 * e
->blocks
);
2091 err
= edid_write_vga_segment(sd
);
2093 case ADV7842_EDID_PORT_A
:
2094 case ADV7842_EDID_PORT_B
:
2095 memset(&state
->hdmi_edid
.edid
, 0, 256);
2097 state
->hdmi_edid
.present
|= 0x04 << e
->pad
;
2099 state
->hdmi_edid
.present
&= ~(0x04 << e
->pad
);
2100 memcpy(&state
->hdmi_edid
.edid
, e
->edid
, 128 * e
->blocks
);
2101 err
= edid_write_hdmi_segment(sd
, e
->pad
);
2107 v4l2_err(sd
, "error %d writing edid on port %d\n", err
, e
->pad
);
2111 /*********** avi info frame CEA-861-E **************/
2112 /* TODO move to common library */
2114 struct avi_info_frame
{
2138 static const char *y10_txt
[4] = {
2145 static const char *c10_txt
[4] = {
2149 "Extended Colorimetry information valied",
2152 static const char *itc_txt
[2] = {
2157 static const char *ec210_txt
[8] = {
2168 static const char *q10_txt
[4] = {
2175 static void parse_avi_infoframe(struct v4l2_subdev
*sd
, uint8_t *buf
,
2176 struct avi_info_frame
*avi
)
2178 avi
->f17
= (buf
[1] >> 7) & 0x1;
2179 avi
->y10
= (buf
[1] >> 5) & 0x3;
2180 avi
->a0
= (buf
[1] >> 4) & 0x1;
2181 avi
->b10
= (buf
[1] >> 2) & 0x3;
2182 avi
->s10
= buf
[1] & 0x3;
2183 avi
->c10
= (buf
[2] >> 6) & 0x3;
2184 avi
->m10
= (buf
[2] >> 4) & 0x3;
2185 avi
->r3210
= buf
[2] & 0xf;
2186 avi
->itc
= (buf
[3] >> 7) & 0x1;
2187 avi
->ec210
= (buf
[3] >> 4) & 0x7;
2188 avi
->q10
= (buf
[3] >> 2) & 0x3;
2189 avi
->sc10
= buf
[3] & 0x3;
2190 avi
->f47
= (buf
[4] >> 7) & 0x1;
2191 avi
->vic
= buf
[4] & 0x7f;
2192 avi
->yq10
= (buf
[5] >> 6) & 0x3;
2193 avi
->cn10
= (buf
[5] >> 4) & 0x3;
2194 avi
->pr3210
= buf
[5] & 0xf;
2195 avi
->etb
= buf
[6] + 256*buf
[7];
2196 avi
->sbb
= buf
[8] + 256*buf
[9];
2197 avi
->elb
= buf
[10] + 256*buf
[11];
2198 avi
->srb
= buf
[12] + 256*buf
[13];
2201 static void print_avi_infoframe(struct v4l2_subdev
*sd
)
2207 struct avi_info_frame avi
;
2209 if (!(hdmi_read(sd
, 0x05) & 0x80)) {
2210 v4l2_info(sd
, "receive DVI-D signal (AVI infoframe not supported)\n");
2213 if (!(io_read(sd
, 0x60) & 0x01)) {
2214 v4l2_info(sd
, "AVI infoframe not received\n");
2218 if (io_read(sd
, 0x88) & 0x10) {
2219 v4l2_info(sd
, "AVI infoframe checksum error has occurred earlier\n");
2220 io_write(sd
, 0x8a, 0x10); /* clear AVI_INF_CKS_ERR_RAW */
2221 if (io_read(sd
, 0x88) & 0x10) {
2222 v4l2_info(sd
, "AVI infoframe checksum error still present\n");
2223 io_write(sd
, 0x8a, 0x10); /* clear AVI_INF_CKS_ERR_RAW */
2227 avi_len
= infoframe_read(sd
, 0xe2);
2228 avi_ver
= infoframe_read(sd
, 0xe1);
2229 v4l2_info(sd
, "AVI infoframe version %d (%d byte)\n",
2232 if (avi_ver
!= 0x02)
2235 for (i
= 0; i
< 14; i
++)
2236 buf
[i
] = infoframe_read(sd
, i
);
2238 v4l2_info(sd
, "\t%02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
2239 buf
[0], buf
[1], buf
[2], buf
[3], buf
[4], buf
[5], buf
[6], buf
[7],
2240 buf
[8], buf
[9], buf
[10], buf
[11], buf
[12], buf
[13]);
2242 parse_avi_infoframe(sd
, buf
, &avi
);
2245 v4l2_info(sd
, "\tVIC: %d\n", avi
.vic
);
2247 v4l2_info(sd
, "\t%s\n", itc_txt
[avi
.itc
]);
2250 v4l2_info(sd
, "\t%s %s\n", y10_txt
[avi
.y10
], !avi
.c10
? "" :
2251 (avi
.c10
== 0x3 ? ec210_txt
[avi
.ec210
] : c10_txt
[avi
.c10
]));
2253 v4l2_info(sd
, "\t%s %s\n", y10_txt
[avi
.y10
], q10_txt
[avi
.q10
]);
2256 static const char * const prim_mode_txt
[] = {
2261 "CVBS & HDMI AUDIO",
2275 static int adv7842_sdp_log_status(struct v4l2_subdev
*sd
)
2277 /* SDP (Standard definition processor) block */
2278 uint8_t sdp_signal_detected
= sdp_read(sd
, 0x5A) & 0x01;
2280 v4l2_info(sd
, "Chip powered %s\n", no_power(sd
) ? "off" : "on");
2281 v4l2_info(sd
, "Prim-mode = 0x%x, video std = 0x%x\n",
2282 io_read(sd
, 0x01) & 0x0f, io_read(sd
, 0x00) & 0x3f);
2284 v4l2_info(sd
, "SDP: free run: %s\n",
2285 (sdp_read(sd
, 0x56) & 0x01) ? "on" : "off");
2286 v4l2_info(sd
, "SDP: %s\n", sdp_signal_detected
?
2287 "valid SD/PR signal detected" : "invalid/no signal");
2288 if (sdp_signal_detected
) {
2289 static const char * const sdp_std_txt
[] = {
2297 "7?", "8?", "9?", "a?", "b?",
2303 v4l2_info(sd
, "SDP: standard %s\n",
2304 sdp_std_txt
[sdp_read(sd
, 0x52) & 0x0f]);
2305 v4l2_info(sd
, "SDP: %s\n",
2306 (sdp_read(sd
, 0x59) & 0x08) ? "50Hz" : "60Hz");
2307 v4l2_info(sd
, "SDP: %s\n",
2308 (sdp_read(sd
, 0x57) & 0x08) ? "Interlaced" : "Progressive");
2309 v4l2_info(sd
, "SDP: deinterlacer %s\n",
2310 (sdp_read(sd
, 0x12) & 0x08) ? "enabled" : "disabled");
2311 v4l2_info(sd
, "SDP: csc %s mode\n",
2312 (sdp_io_read(sd
, 0xe0) & 0x40) ? "auto" : "manual");
2317 static int adv7842_cp_log_status(struct v4l2_subdev
*sd
)
2320 struct adv7842_state
*state
= to_state(sd
);
2321 struct v4l2_dv_timings timings
;
2322 uint8_t reg_io_0x02
= io_read(sd
, 0x02);
2323 uint8_t reg_io_0x21
= io_read(sd
, 0x21);
2324 uint8_t reg_rep_0x77
= rep_read(sd
, 0x77);
2325 uint8_t reg_rep_0x7d
= rep_read(sd
, 0x7d);
2326 bool audio_pll_locked
= hdmi_read(sd
, 0x04) & 0x01;
2327 bool audio_sample_packet_detect
= hdmi_read(sd
, 0x18) & 0x01;
2328 bool audio_mute
= io_read(sd
, 0x65) & 0x40;
2330 static const char * const csc_coeff_sel_rb
[16] = {
2331 "bypassed", "YPbPr601 -> RGB", "reserved", "YPbPr709 -> RGB",
2332 "reserved", "RGB -> YPbPr601", "reserved", "RGB -> YPbPr709",
2333 "reserved", "YPbPr709 -> YPbPr601", "YPbPr601 -> YPbPr709",
2334 "reserved", "reserved", "reserved", "reserved", "manual"
2336 static const char * const input_color_space_txt
[16] = {
2337 "RGB limited range (16-235)", "RGB full range (0-255)",
2338 "YCbCr Bt.601 (16-235)", "YCbCr Bt.709 (16-235)",
2339 "xvYCC Bt.601", "xvYCC Bt.709",
2340 "YCbCr Bt.601 (0-255)", "YCbCr Bt.709 (0-255)",
2341 "invalid", "invalid", "invalid", "invalid", "invalid",
2342 "invalid", "invalid", "automatic"
2344 static const char * const rgb_quantization_range_txt
[] = {
2346 "RGB limited range (16-235)",
2347 "RGB full range (0-255)",
2349 static const char * const deep_color_mode_txt
[4] = {
2350 "8-bits per channel",
2351 "10-bits per channel",
2352 "12-bits per channel",
2353 "16-bits per channel (not supported)"
2356 v4l2_info(sd
, "-----Chip status-----\n");
2357 v4l2_info(sd
, "Chip power: %s\n", no_power(sd
) ? "off" : "on");
2358 v4l2_info(sd
, "HDMI/DVI-D port selected: %s\n",
2359 state
->hdmi_port_a
? "A" : "B");
2360 v4l2_info(sd
, "EDID A %s, B %s\n",
2361 ((reg_rep_0x7d
& 0x04) && (reg_rep_0x77
& 0x04)) ?
2362 "enabled" : "disabled",
2363 ((reg_rep_0x7d
& 0x08) && (reg_rep_0x77
& 0x08)) ?
2364 "enabled" : "disabled");
2365 v4l2_info(sd
, "HPD A %s, B %s\n",
2366 reg_io_0x21
& 0x02 ? "enabled" : "disabled",
2367 reg_io_0x21
& 0x01 ? "enabled" : "disabled");
2368 v4l2_info(sd
, "CEC %s\n", !!(cec_read(sd
, 0x2a) & 0x01) ?
2369 "enabled" : "disabled");
2371 v4l2_info(sd
, "-----Signal status-----\n");
2372 if (state
->hdmi_port_a
) {
2373 v4l2_info(sd
, "Cable detected (+5V power): %s\n",
2374 io_read(sd
, 0x6f) & 0x02 ? "true" : "false");
2375 v4l2_info(sd
, "TMDS signal detected: %s\n",
2376 (io_read(sd
, 0x6a) & 0x02) ? "true" : "false");
2377 v4l2_info(sd
, "TMDS signal locked: %s\n",
2378 (io_read(sd
, 0x6a) & 0x20) ? "true" : "false");
2380 v4l2_info(sd
, "Cable detected (+5V power):%s\n",
2381 io_read(sd
, 0x6f) & 0x01 ? "true" : "false");
2382 v4l2_info(sd
, "TMDS signal detected: %s\n",
2383 (io_read(sd
, 0x6a) & 0x01) ? "true" : "false");
2384 v4l2_info(sd
, "TMDS signal locked: %s\n",
2385 (io_read(sd
, 0x6a) & 0x10) ? "true" : "false");
2387 v4l2_info(sd
, "CP free run: %s\n",
2388 (!!(cp_read(sd
, 0xff) & 0x10) ? "on" : "off"));
2389 v4l2_info(sd
, "Prim-mode = 0x%x, video std = 0x%x, v_freq = 0x%x\n",
2390 io_read(sd
, 0x01) & 0x0f, io_read(sd
, 0x00) & 0x3f,
2391 (io_read(sd
, 0x01) & 0x70) >> 4);
2393 v4l2_info(sd
, "-----Video Timings-----\n");
2394 if (no_cp_signal(sd
)) {
2395 v4l2_info(sd
, "STDI: not locked\n");
2397 uint32_t bl
= ((cp_read(sd
, 0xb1) & 0x3f) << 8) | cp_read(sd
, 0xb2);
2398 uint32_t lcf
= ((cp_read(sd
, 0xb3) & 0x7) << 8) | cp_read(sd
, 0xb4);
2399 uint32_t lcvs
= cp_read(sd
, 0xb3) >> 3;
2400 uint32_t fcl
= ((cp_read(sd
, 0xb8) & 0x1f) << 8) | cp_read(sd
, 0xb9);
2401 char hs_pol
= ((cp_read(sd
, 0xb5) & 0x10) ?
2402 ((cp_read(sd
, 0xb5) & 0x08) ? '+' : '-') : 'x');
2403 char vs_pol
= ((cp_read(sd
, 0xb5) & 0x40) ?
2404 ((cp_read(sd
, 0xb5) & 0x20) ? '+' : '-') : 'x');
2406 "STDI: lcf (frame height - 1) = %d, bl = %d, lcvs (vsync) = %d, fcl = %d, %s, %chsync, %cvsync\n",
2408 (cp_read(sd
, 0xb1) & 0x40) ?
2409 "interlaced" : "progressive",
2412 if (adv7842_query_dv_timings(sd
, &timings
))
2413 v4l2_info(sd
, "No video detected\n");
2415 v4l2_print_dv_timings(sd
->name
, "Detected format: ",
2417 v4l2_print_dv_timings(sd
->name
, "Configured format: ",
2418 &state
->timings
, true);
2420 if (no_cp_signal(sd
))
2423 v4l2_info(sd
, "-----Color space-----\n");
2424 v4l2_info(sd
, "RGB quantization range ctrl: %s\n",
2425 rgb_quantization_range_txt
[state
->rgb_quantization_range
]);
2426 v4l2_info(sd
, "Input color space: %s\n",
2427 input_color_space_txt
[reg_io_0x02
>> 4]);
2428 v4l2_info(sd
, "Output color space: %s %s, saturator %s\n",
2429 (reg_io_0x02
& 0x02) ? "RGB" : "YCbCr",
2430 (reg_io_0x02
& 0x04) ? "(16-235)" : "(0-255)",
2431 ((reg_io_0x02
& 0x04) ^ (reg_io_0x02
& 0x01)) ?
2432 "enabled" : "disabled");
2433 v4l2_info(sd
, "Color space conversion: %s\n",
2434 csc_coeff_sel_rb
[cp_read(sd
, 0xf4) >> 4]);
2436 if (!is_digital_input(sd
))
2439 v4l2_info(sd
, "-----%s status-----\n", is_hdmi(sd
) ? "HDMI" : "DVI-D");
2440 v4l2_info(sd
, "HDCP encrypted content: %s\n",
2441 (hdmi_read(sd
, 0x05) & 0x40) ? "true" : "false");
2442 v4l2_info(sd
, "HDCP keys read: %s%s\n",
2443 (hdmi_read(sd
, 0x04) & 0x20) ? "yes" : "no",
2444 (hdmi_read(sd
, 0x04) & 0x10) ? "ERROR" : "");
2448 v4l2_info(sd
, "Audio: pll %s, samples %s, %s\n",
2449 audio_pll_locked
? "locked" : "not locked",
2450 audio_sample_packet_detect
? "detected" : "not detected",
2451 audio_mute
? "muted" : "enabled");
2452 if (audio_pll_locked
&& audio_sample_packet_detect
) {
2453 v4l2_info(sd
, "Audio format: %s\n",
2454 (hdmi_read(sd
, 0x07) & 0x40) ? "multi-channel" : "stereo");
2456 v4l2_info(sd
, "Audio CTS: %u\n", (hdmi_read(sd
, 0x5b) << 12) +
2457 (hdmi_read(sd
, 0x5c) << 8) +
2458 (hdmi_read(sd
, 0x5d) & 0xf0));
2459 v4l2_info(sd
, "Audio N: %u\n", ((hdmi_read(sd
, 0x5d) & 0x0f) << 16) +
2460 (hdmi_read(sd
, 0x5e) << 8) +
2461 hdmi_read(sd
, 0x5f));
2462 v4l2_info(sd
, "AV Mute: %s\n",
2463 (hdmi_read(sd
, 0x04) & 0x40) ? "on" : "off");
2464 v4l2_info(sd
, "Deep color mode: %s\n",
2465 deep_color_mode_txt
[hdmi_read(sd
, 0x0b) >> 6]);
2467 print_avi_infoframe(sd
);
2471 static int adv7842_log_status(struct v4l2_subdev
*sd
)
2473 struct adv7842_state
*state
= to_state(sd
);
2475 if (state
->mode
== ADV7842_MODE_SDP
)
2476 return adv7842_sdp_log_status(sd
);
2477 return adv7842_cp_log_status(sd
);
2480 static int adv7842_querystd(struct v4l2_subdev
*sd
, v4l2_std_id
*std
)
2482 struct adv7842_state
*state
= to_state(sd
);
2484 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
2486 if (state
->mode
!= ADV7842_MODE_SDP
)
2489 if (!(sdp_read(sd
, 0x5A) & 0x01)) {
2491 v4l2_dbg(1, debug
, sd
, "%s: no valid signal\n", __func__
);
2495 switch (sdp_read(sd
, 0x52) & 0x0f) {
2498 *std
&= V4L2_STD_NTSC
;
2502 *std
&= V4L2_STD_NTSC_443
;
2506 *std
&= V4L2_STD_SECAM
;
2510 *std
&= V4L2_STD_PAL_M
;
2514 *std
&= V4L2_STD_PAL_60
;
2518 *std
&= V4L2_STD_PAL_Nc
;
2522 *std
&= V4L2_STD_PAL
;
2526 *std
&= V4L2_STD_SECAM
;
2529 *std
&= V4L2_STD_ALL
;
2535 static void adv7842_s_sdp_io(struct v4l2_subdev
*sd
, struct adv7842_sdp_io_sync_adjustment
*s
)
2537 if (s
&& s
->adjust
) {
2538 sdp_io_write(sd
, 0x94, (s
->hs_beg
>> 8) & 0xf);
2539 sdp_io_write(sd
, 0x95, s
->hs_beg
& 0xff);
2540 sdp_io_write(sd
, 0x96, (s
->hs_width
>> 8) & 0xf);
2541 sdp_io_write(sd
, 0x97, s
->hs_width
& 0xff);
2542 sdp_io_write(sd
, 0x98, (s
->de_beg
>> 8) & 0xf);
2543 sdp_io_write(sd
, 0x99, s
->de_beg
& 0xff);
2544 sdp_io_write(sd
, 0x9a, (s
->de_end
>> 8) & 0xf);
2545 sdp_io_write(sd
, 0x9b, s
->de_end
& 0xff);
2546 sdp_io_write(sd
, 0xa8, s
->vs_beg_o
);
2547 sdp_io_write(sd
, 0xa9, s
->vs_beg_e
);
2548 sdp_io_write(sd
, 0xaa, s
->vs_end_o
);
2549 sdp_io_write(sd
, 0xab, s
->vs_end_e
);
2550 sdp_io_write(sd
, 0xac, s
->de_v_beg_o
);
2551 sdp_io_write(sd
, 0xad, s
->de_v_beg_e
);
2552 sdp_io_write(sd
, 0xae, s
->de_v_end_o
);
2553 sdp_io_write(sd
, 0xaf, s
->de_v_end_e
);
2555 /* set to default */
2556 sdp_io_write(sd
, 0x94, 0x00);
2557 sdp_io_write(sd
, 0x95, 0x00);
2558 sdp_io_write(sd
, 0x96, 0x00);
2559 sdp_io_write(sd
, 0x97, 0x20);
2560 sdp_io_write(sd
, 0x98, 0x00);
2561 sdp_io_write(sd
, 0x99, 0x00);
2562 sdp_io_write(sd
, 0x9a, 0x00);
2563 sdp_io_write(sd
, 0x9b, 0x00);
2564 sdp_io_write(sd
, 0xa8, 0x04);
2565 sdp_io_write(sd
, 0xa9, 0x04);
2566 sdp_io_write(sd
, 0xaa, 0x04);
2567 sdp_io_write(sd
, 0xab, 0x04);
2568 sdp_io_write(sd
, 0xac, 0x04);
2569 sdp_io_write(sd
, 0xad, 0x04);
2570 sdp_io_write(sd
, 0xae, 0x04);
2571 sdp_io_write(sd
, 0xaf, 0x04);
2575 static int adv7842_s_std(struct v4l2_subdev
*sd
, v4l2_std_id norm
)
2577 struct adv7842_state
*state
= to_state(sd
);
2578 struct adv7842_platform_data
*pdata
= &state
->pdata
;
2580 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
2582 if (state
->mode
!= ADV7842_MODE_SDP
)
2585 if (norm
& V4L2_STD_625_50
)
2586 adv7842_s_sdp_io(sd
, &pdata
->sdp_io_sync_625
);
2587 else if (norm
& V4L2_STD_525_60
)
2588 adv7842_s_sdp_io(sd
, &pdata
->sdp_io_sync_525
);
2590 adv7842_s_sdp_io(sd
, NULL
);
2592 if (norm
& V4L2_STD_ALL
) {
2599 static int adv7842_g_std(struct v4l2_subdev
*sd
, v4l2_std_id
*norm
)
2601 struct adv7842_state
*state
= to_state(sd
);
2603 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
2605 if (state
->mode
!= ADV7842_MODE_SDP
)
2608 *norm
= state
->norm
;
2612 /* ----------------------------------------------------------------------- */
2614 static int adv7842_core_init(struct v4l2_subdev
*sd
)
2616 struct adv7842_state
*state
= to_state(sd
);
2617 struct adv7842_platform_data
*pdata
= &state
->pdata
;
2618 hdmi_write(sd
, 0x48,
2619 (pdata
->disable_pwrdnb
? 0x80 : 0) |
2620 (pdata
->disable_cable_det_rst
? 0x40 : 0));
2625 * Disable I2C access to internal EDID ram from HDMI DDC ports
2626 * Disable auto edid enable when leaving powerdown mode
2628 rep_write_and_or(sd
, 0x77, 0xd3, 0x20);
2631 io_write(sd
, 0x0c, 0x42); /* Power up part and power down VDP */
2632 io_write(sd
, 0x15, 0x80); /* Power up pads */
2637 pdata
->alt_gamma
<< 3 |
2638 pdata
->op_656_range
<< 2 |
2639 pdata
->rgb_out
<< 1 |
2640 pdata
->alt_data_sat
<< 0);
2641 io_write(sd
, 0x03, pdata
->op_format_sel
);
2642 io_write_and_or(sd
, 0x04, 0x1f, pdata
->op_ch_sel
<< 5);
2643 io_write_and_or(sd
, 0x05, 0xf0, pdata
->blank_data
<< 3 |
2644 pdata
->insert_av_codes
<< 2 |
2645 pdata
->replicate_av_codes
<< 1 |
2646 pdata
->invert_cbcr
<< 0);
2649 hdmi_write_and_or(sd
, 0x1a, 0xf1, 0x08); /* Wait 1 s before unmute */
2651 /* Drive strength */
2652 io_write_and_or(sd
, 0x14, 0xc0,
2653 pdata
->dr_str_data
<< 4 |
2654 pdata
->dr_str_clk
<< 2 |
2655 pdata
->dr_str_sync
);
2658 cp_write_and_or(sd
, 0xba, 0xfc, pdata
->hdmi_free_run_enable
|
2659 (pdata
->hdmi_free_run_mode
<< 1));
2662 sdp_write_and_or(sd
, 0xdd, 0xf0, pdata
->sdp_free_run_force
|
2663 (pdata
->sdp_free_run_cbar_en
<< 1) |
2664 (pdata
->sdp_free_run_man_col_en
<< 2) |
2665 (pdata
->sdp_free_run_auto
<< 3));
2667 /* TODO from platform data */
2668 cp_write(sd
, 0x69, 0x14); /* Enable CP CSC */
2669 io_write(sd
, 0x06, 0xa6); /* positive VS and HS and DE */
2670 cp_write(sd
, 0xf3, 0xdc); /* Low threshold to enter/exit free run mode */
2671 afe_write(sd
, 0xb5, 0x01); /* Setting MCLK to 256Fs */
2673 afe_write(sd
, 0x02, pdata
->ain_sel
); /* Select analog input muxing mode */
2674 io_write_and_or(sd
, 0x30, ~(1 << 4), pdata
->output_bus_lsb_to_msb
<< 4);
2676 sdp_csc_coeff(sd
, &pdata
->sdp_csc_coeff
);
2678 /* todo, improve settings for sdram */
2679 if (pdata
->sd_ram_size
>= 128) {
2680 sdp_write(sd
, 0x12, 0x0d); /* Frame TBC,3D comb enabled */
2681 if (pdata
->sd_ram_ddr
) {
2682 /* SDP setup for the AD eval board */
2683 sdp_io_write(sd
, 0x6f, 0x00); /* DDR mode */
2684 sdp_io_write(sd
, 0x75, 0x0a); /* 128 MB memory size */
2685 sdp_io_write(sd
, 0x7a, 0xa5); /* Timing Adjustment */
2686 sdp_io_write(sd
, 0x7b, 0x8f); /* Timing Adjustment */
2687 sdp_io_write(sd
, 0x60, 0x01); /* SDRAM reset */
2689 sdp_io_write(sd
, 0x75, 0x0a); /* 64 MB memory size ?*/
2690 sdp_io_write(sd
, 0x74, 0x00); /* must be zero for sdr sdram */
2691 sdp_io_write(sd
, 0x79, 0x33); /* CAS latency to 3,
2692 depends on memory */
2693 sdp_io_write(sd
, 0x6f, 0x01); /* SDR mode */
2694 sdp_io_write(sd
, 0x7a, 0xa5); /* Timing Adjustment */
2695 sdp_io_write(sd
, 0x7b, 0x8f); /* Timing Adjustment */
2696 sdp_io_write(sd
, 0x60, 0x01); /* SDRAM reset */
2700 * Manual UG-214, rev 0 is bit confusing on this bit
2701 * but a '1' disables any signal if the Ram is active.
2703 sdp_io_write(sd
, 0x29, 0x10); /* Tristate memory interface */
2706 select_input(sd
, pdata
->vid_std_select
);
2710 if (pdata
->hpa_auto
) {
2711 /* HPA auto, HPA 0.5s after Edid set and Cable detect */
2712 hdmi_write(sd
, 0x69, 0x5c);
2715 hdmi_write(sd
, 0x69, 0xa3);
2716 /* HPA disable on port A and B */
2717 io_write_and_or(sd
, 0x20, 0xcf, 0x00);
2721 io_write(sd
, 0x19, 0x80 | pdata
->llc_dll_phase
);
2722 io_write(sd
, 0x33, 0x40);
2725 io_write(sd
, 0x40, 0xf2); /* Configure INT1 */
2727 adv7842_irq_enable(sd
, true);
2729 return v4l2_ctrl_handler_setup(sd
->ctrl_handler
);
2732 /* ----------------------------------------------------------------------- */
2734 static int adv7842_ddr_ram_test(struct v4l2_subdev
*sd
)
2737 * From ADV784x external Memory test.pdf
2739 * Reset must just been performed before running test.
2740 * Recommended to reset after test.
2747 io_write(sd
, 0x00, 0x01); /* Program SDP 4x1 */
2748 io_write(sd
, 0x01, 0x00); /* Program SDP mode */
2749 afe_write(sd
, 0x80, 0x92); /* SDP Recommeneded Write */
2750 afe_write(sd
, 0x9B, 0x01); /* SDP Recommeneded Write ADV7844ES1 */
2751 afe_write(sd
, 0x9C, 0x60); /* SDP Recommeneded Write ADV7844ES1 */
2752 afe_write(sd
, 0x9E, 0x02); /* SDP Recommeneded Write ADV7844ES1 */
2753 afe_write(sd
, 0xA0, 0x0B); /* SDP Recommeneded Write ADV7844ES1 */
2754 afe_write(sd
, 0xC3, 0x02); /* Memory BIST Initialisation */
2755 io_write(sd
, 0x0C, 0x40); /* Power up ADV7844 */
2756 io_write(sd
, 0x15, 0xBA); /* Enable outputs */
2757 sdp_write(sd
, 0x12, 0x00); /* Disable 3D comb, Frame TBC & 3DNR */
2758 io_write(sd
, 0xFF, 0x04); /* Reset memory controller */
2762 sdp_write(sd
, 0x12, 0x00); /* Disable 3D Comb, Frame TBC & 3DNR */
2763 sdp_io_write(sd
, 0x2A, 0x01); /* Memory BIST Initialisation */
2764 sdp_io_write(sd
, 0x7c, 0x19); /* Memory BIST Initialisation */
2765 sdp_io_write(sd
, 0x80, 0x87); /* Memory BIST Initialisation */
2766 sdp_io_write(sd
, 0x81, 0x4a); /* Memory BIST Initialisation */
2767 sdp_io_write(sd
, 0x82, 0x2c); /* Memory BIST Initialisation */
2768 sdp_io_write(sd
, 0x83, 0x0e); /* Memory BIST Initialisation */
2769 sdp_io_write(sd
, 0x84, 0x94); /* Memory BIST Initialisation */
2770 sdp_io_write(sd
, 0x85, 0x62); /* Memory BIST Initialisation */
2771 sdp_io_write(sd
, 0x7d, 0x00); /* Memory BIST Initialisation */
2772 sdp_io_write(sd
, 0x7e, 0x1a); /* Memory BIST Initialisation */
2776 sdp_io_write(sd
, 0xd9, 0xd5); /* Enable BIST Test */
2777 sdp_write(sd
, 0x12, 0x05); /* Enable FRAME TBC & 3D COMB */
2781 for (i
= 0; i
< 10; i
++) {
2782 u8 result
= sdp_io_read(sd
, 0xdb);
2783 if (result
& 0x10) {
2793 v4l2_dbg(1, debug
, sd
,
2794 "Ram Test: completed %d of %d: pass %d, fail %d\n",
2795 complete
, i
, pass
, fail
);
2797 if (!complete
|| fail
)
2802 static void adv7842_rewrite_i2c_addresses(struct v4l2_subdev
*sd
,
2803 struct adv7842_platform_data
*pdata
)
2805 io_write(sd
, 0xf1, pdata
->i2c_sdp
<< 1);
2806 io_write(sd
, 0xf2, pdata
->i2c_sdp_io
<< 1);
2807 io_write(sd
, 0xf3, pdata
->i2c_avlink
<< 1);
2808 io_write(sd
, 0xf4, pdata
->i2c_cec
<< 1);
2809 io_write(sd
, 0xf5, pdata
->i2c_infoframe
<< 1);
2811 io_write(sd
, 0xf8, pdata
->i2c_afe
<< 1);
2812 io_write(sd
, 0xf9, pdata
->i2c_repeater
<< 1);
2813 io_write(sd
, 0xfa, pdata
->i2c_edid
<< 1);
2814 io_write(sd
, 0xfb, pdata
->i2c_hdmi
<< 1);
2816 io_write(sd
, 0xfd, pdata
->i2c_cp
<< 1);
2817 io_write(sd
, 0xfe, pdata
->i2c_vdp
<< 1);
2820 static int adv7842_command_ram_test(struct v4l2_subdev
*sd
)
2822 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
2823 struct adv7842_state
*state
= to_state(sd
);
2824 struct adv7842_platform_data
*pdata
= client
->dev
.platform_data
;
2825 struct v4l2_dv_timings timings
;
2831 if (!pdata
->sd_ram_size
|| !pdata
->sd_ram_ddr
) {
2832 v4l2_info(sd
, "no sdram or no ddr sdram\n");
2838 adv7842_rewrite_i2c_addresses(sd
, pdata
);
2841 ret
= adv7842_ddr_ram_test(sd
);
2845 adv7842_rewrite_i2c_addresses(sd
, pdata
);
2847 /* and re-init chip and state */
2848 adv7842_core_init(sd
);
2852 select_input(sd
, state
->vid_std_select
);
2856 edid_write_vga_segment(sd
);
2857 edid_write_hdmi_segment(sd
, ADV7842_EDID_PORT_A
);
2858 edid_write_hdmi_segment(sd
, ADV7842_EDID_PORT_B
);
2860 timings
= state
->timings
;
2862 memset(&state
->timings
, 0, sizeof(struct v4l2_dv_timings
));
2864 adv7842_s_dv_timings(sd
, &timings
);
2869 static long adv7842_ioctl(struct v4l2_subdev
*sd
, unsigned int cmd
, void *arg
)
2872 case ADV7842_CMD_RAM_TEST
:
2873 return adv7842_command_ram_test(sd
);
2878 /* ----------------------------------------------------------------------- */
2880 static const struct v4l2_ctrl_ops adv7842_ctrl_ops
= {
2881 .s_ctrl
= adv7842_s_ctrl
,
2884 static const struct v4l2_subdev_core_ops adv7842_core_ops
= {
2885 .log_status
= adv7842_log_status
,
2886 .ioctl
= adv7842_ioctl
,
2887 .interrupt_service_routine
= adv7842_isr
,
2888 #ifdef CONFIG_VIDEO_ADV_DEBUG
2889 .g_register
= adv7842_g_register
,
2890 .s_register
= adv7842_s_register
,
2894 static const struct v4l2_subdev_video_ops adv7842_video_ops
= {
2895 .g_std
= adv7842_g_std
,
2896 .s_std
= adv7842_s_std
,
2897 .s_routing
= adv7842_s_routing
,
2898 .querystd
= adv7842_querystd
,
2899 .g_input_status
= adv7842_g_input_status
,
2900 .s_dv_timings
= adv7842_s_dv_timings
,
2901 .g_dv_timings
= adv7842_g_dv_timings
,
2902 .query_dv_timings
= adv7842_query_dv_timings
,
2903 .enum_mbus_fmt
= adv7842_enum_mbus_fmt
,
2904 .g_mbus_fmt
= adv7842_g_mbus_fmt
,
2905 .try_mbus_fmt
= adv7842_g_mbus_fmt
,
2906 .s_mbus_fmt
= adv7842_g_mbus_fmt
,
2909 static const struct v4l2_subdev_pad_ops adv7842_pad_ops
= {
2910 .get_edid
= adv7842_get_edid
,
2911 .set_edid
= adv7842_set_edid
,
2912 .enum_dv_timings
= adv7842_enum_dv_timings
,
2913 .dv_timings_cap
= adv7842_dv_timings_cap
,
2916 static const struct v4l2_subdev_ops adv7842_ops
= {
2917 .core
= &adv7842_core_ops
,
2918 .video
= &adv7842_video_ops
,
2919 .pad
= &adv7842_pad_ops
,
2922 /* -------------------------- custom ctrls ---------------------------------- */
2924 static const struct v4l2_ctrl_config adv7842_ctrl_analog_sampling_phase
= {
2925 .ops
= &adv7842_ctrl_ops
,
2926 .id
= V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE
,
2927 .name
= "Analog Sampling Phase",
2928 .type
= V4L2_CTRL_TYPE_INTEGER
,
2935 static const struct v4l2_ctrl_config adv7842_ctrl_free_run_color_manual
= {
2936 .ops
= &adv7842_ctrl_ops
,
2937 .id
= V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL
,
2938 .name
= "Free Running Color, Manual",
2939 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
2945 static const struct v4l2_ctrl_config adv7842_ctrl_free_run_color
= {
2946 .ops
= &adv7842_ctrl_ops
,
2947 .id
= V4L2_CID_ADV_RX_FREE_RUN_COLOR
,
2948 .name
= "Free Running Color",
2949 .type
= V4L2_CTRL_TYPE_INTEGER
,
2955 static void adv7842_unregister_clients(struct v4l2_subdev
*sd
)
2957 struct adv7842_state
*state
= to_state(sd
);
2958 if (state
->i2c_avlink
)
2959 i2c_unregister_device(state
->i2c_avlink
);
2961 i2c_unregister_device(state
->i2c_cec
);
2962 if (state
->i2c_infoframe
)
2963 i2c_unregister_device(state
->i2c_infoframe
);
2964 if (state
->i2c_sdp_io
)
2965 i2c_unregister_device(state
->i2c_sdp_io
);
2967 i2c_unregister_device(state
->i2c_sdp
);
2969 i2c_unregister_device(state
->i2c_afe
);
2970 if (state
->i2c_repeater
)
2971 i2c_unregister_device(state
->i2c_repeater
);
2972 if (state
->i2c_edid
)
2973 i2c_unregister_device(state
->i2c_edid
);
2974 if (state
->i2c_hdmi
)
2975 i2c_unregister_device(state
->i2c_hdmi
);
2977 i2c_unregister_device(state
->i2c_cp
);
2979 i2c_unregister_device(state
->i2c_vdp
);
2981 state
->i2c_avlink
= NULL
;
2982 state
->i2c_cec
= NULL
;
2983 state
->i2c_infoframe
= NULL
;
2984 state
->i2c_sdp_io
= NULL
;
2985 state
->i2c_sdp
= NULL
;
2986 state
->i2c_afe
= NULL
;
2987 state
->i2c_repeater
= NULL
;
2988 state
->i2c_edid
= NULL
;
2989 state
->i2c_hdmi
= NULL
;
2990 state
->i2c_cp
= NULL
;
2991 state
->i2c_vdp
= NULL
;
2994 static struct i2c_client
*adv7842_dummy_client(struct v4l2_subdev
*sd
, const char *desc
,
2997 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
2998 struct i2c_client
*cp
;
3000 io_write(sd
, io_reg
, addr
<< 1);
3003 v4l2_err(sd
, "no %s i2c addr configured\n", desc
);
3007 cp
= i2c_new_dummy(client
->adapter
, io_read(sd
, io_reg
) >> 1);
3009 v4l2_err(sd
, "register %s on i2c addr 0x%x failed\n", desc
, addr
);
3014 static int adv7842_register_clients(struct v4l2_subdev
*sd
)
3016 struct adv7842_state
*state
= to_state(sd
);
3017 struct adv7842_platform_data
*pdata
= &state
->pdata
;
3019 state
->i2c_avlink
= adv7842_dummy_client(sd
, "avlink", pdata
->i2c_avlink
, 0xf3);
3020 state
->i2c_cec
= adv7842_dummy_client(sd
, "cec", pdata
->i2c_cec
, 0xf4);
3021 state
->i2c_infoframe
= adv7842_dummy_client(sd
, "infoframe", pdata
->i2c_infoframe
, 0xf5);
3022 state
->i2c_sdp_io
= adv7842_dummy_client(sd
, "sdp_io", pdata
->i2c_sdp_io
, 0xf2);
3023 state
->i2c_sdp
= adv7842_dummy_client(sd
, "sdp", pdata
->i2c_sdp
, 0xf1);
3024 state
->i2c_afe
= adv7842_dummy_client(sd
, "afe", pdata
->i2c_afe
, 0xf8);
3025 state
->i2c_repeater
= adv7842_dummy_client(sd
, "repeater", pdata
->i2c_repeater
, 0xf9);
3026 state
->i2c_edid
= adv7842_dummy_client(sd
, "edid", pdata
->i2c_edid
, 0xfa);
3027 state
->i2c_hdmi
= adv7842_dummy_client(sd
, "hdmi", pdata
->i2c_hdmi
, 0xfb);
3028 state
->i2c_cp
= adv7842_dummy_client(sd
, "cp", pdata
->i2c_cp
, 0xfd);
3029 state
->i2c_vdp
= adv7842_dummy_client(sd
, "vdp", pdata
->i2c_vdp
, 0xfe);
3031 if (!state
->i2c_avlink
||
3033 !state
->i2c_infoframe
||
3034 !state
->i2c_sdp_io
||
3037 !state
->i2c_repeater
||
3047 static int adv7842_probe(struct i2c_client
*client
,
3048 const struct i2c_device_id
*id
)
3050 struct adv7842_state
*state
;
3051 static const struct v4l2_dv_timings cea640x480
=
3052 V4L2_DV_BT_CEA_640X480P59_94
;
3053 struct adv7842_platform_data
*pdata
= client
->dev
.platform_data
;
3054 struct v4l2_ctrl_handler
*hdl
;
3055 struct v4l2_subdev
*sd
;
3059 /* Check if the adapter supports the needed features */
3060 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
3063 v4l_dbg(1, debug
, client
, "detecting adv7842 client on address 0x%x\n",
3067 v4l_err(client
, "No platform data!\n");
3071 state
= devm_kzalloc(&client
->dev
, sizeof(struct adv7842_state
), GFP_KERNEL
);
3073 v4l_err(client
, "Could not allocate adv7842_state memory!\n");
3078 state
->pdata
= *pdata
;
3079 state
->timings
= cea640x480
;
3082 v4l2_i2c_subdev_init(sd
, client
, &adv7842_ops
);
3083 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
3084 state
->mode
= pdata
->mode
;
3086 state
->hdmi_port_a
= pdata
->input
== ADV7842_SELECT_HDMI_PORT_A
;
3087 state
->restart_stdi_once
= true;
3089 /* i2c access to adv7842? */
3090 rev
= adv_smbus_read_byte_data_check(client
, 0xea, false) << 8 |
3091 adv_smbus_read_byte_data_check(client
, 0xeb, false);
3092 if (rev
!= 0x2012) {
3093 v4l2_info(sd
, "got rev=0x%04x on first read attempt\n", rev
);
3094 rev
= adv_smbus_read_byte_data_check(client
, 0xea, false) << 8 |
3095 adv_smbus_read_byte_data_check(client
, 0xeb, false);
3097 if (rev
!= 0x2012) {
3098 v4l2_info(sd
, "not an adv7842 on address 0x%x (rev=0x%04x)\n",
3099 client
->addr
<< 1, rev
);
3103 if (pdata
->chip_reset
)
3106 /* control handlers */
3108 v4l2_ctrl_handler_init(hdl
, 6);
3110 /* add in ascending ID order */
3111 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3112 V4L2_CID_BRIGHTNESS
, -128, 127, 1, 0);
3113 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3114 V4L2_CID_CONTRAST
, 0, 255, 1, 128);
3115 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3116 V4L2_CID_SATURATION
, 0, 255, 1, 128);
3117 v4l2_ctrl_new_std(hdl
, &adv7842_ctrl_ops
,
3118 V4L2_CID_HUE
, 0, 128, 1, 0);
3120 /* custom controls */
3121 state
->detect_tx_5v_ctrl
= v4l2_ctrl_new_std(hdl
, NULL
,
3122 V4L2_CID_DV_RX_POWER_PRESENT
, 0, 3, 0, 0);
3123 state
->analog_sampling_phase_ctrl
= v4l2_ctrl_new_custom(hdl
,
3124 &adv7842_ctrl_analog_sampling_phase
, NULL
);
3125 state
->free_run_color_ctrl_manual
= v4l2_ctrl_new_custom(hdl
,
3126 &adv7842_ctrl_free_run_color_manual
, NULL
);
3127 state
->free_run_color_ctrl
= v4l2_ctrl_new_custom(hdl
,
3128 &adv7842_ctrl_free_run_color
, NULL
);
3129 state
->rgb_quantization_range_ctrl
=
3130 v4l2_ctrl_new_std_menu(hdl
, &adv7842_ctrl_ops
,
3131 V4L2_CID_DV_RX_RGB_RANGE
, V4L2_DV_RGB_RANGE_FULL
,
3132 0, V4L2_DV_RGB_RANGE_AUTO
);
3133 sd
->ctrl_handler
= hdl
;
3138 state
->detect_tx_5v_ctrl
->is_private
= true;
3139 state
->rgb_quantization_range_ctrl
->is_private
= true;
3140 state
->analog_sampling_phase_ctrl
->is_private
= true;
3141 state
->free_run_color_ctrl_manual
->is_private
= true;
3142 state
->free_run_color_ctrl
->is_private
= true;
3144 if (adv7842_s_detect_tx_5v_ctrl(sd
)) {
3149 if (adv7842_register_clients(sd
) < 0) {
3151 v4l2_err(sd
, "failed to create all i2c clients\n");
3156 state
->work_queues
= create_singlethread_workqueue(client
->name
);
3157 if (!state
->work_queues
) {
3158 v4l2_err(sd
, "Could not create work queue\n");
3163 INIT_DELAYED_WORK(&state
->delayed_work_enable_hotplug
,
3164 adv7842_delayed_work_enable_hotplug
);
3166 state
->pad
.flags
= MEDIA_PAD_FL_SOURCE
;
3167 err
= media_entity_init(&sd
->entity
, 1, &state
->pad
, 0);
3169 goto err_work_queues
;
3171 err
= adv7842_core_init(sd
);
3175 v4l2_info(sd
, "%s found @ 0x%x (%s)\n", client
->name
,
3176 client
->addr
<< 1, client
->adapter
->name
);
3180 media_entity_cleanup(&sd
->entity
);
3182 cancel_delayed_work(&state
->delayed_work_enable_hotplug
);
3183 destroy_workqueue(state
->work_queues
);
3185 adv7842_unregister_clients(sd
);
3187 v4l2_ctrl_handler_free(hdl
);
3191 /* ----------------------------------------------------------------------- */
3193 static int adv7842_remove(struct i2c_client
*client
)
3195 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
3196 struct adv7842_state
*state
= to_state(sd
);
3198 adv7842_irq_enable(sd
, false);
3200 cancel_delayed_work(&state
->delayed_work_enable_hotplug
);
3201 destroy_workqueue(state
->work_queues
);
3202 v4l2_device_unregister_subdev(sd
);
3203 media_entity_cleanup(&sd
->entity
);
3204 adv7842_unregister_clients(sd
);
3205 v4l2_ctrl_handler_free(sd
->ctrl_handler
);
3209 /* ----------------------------------------------------------------------- */
3211 static struct i2c_device_id adv7842_id
[] = {
3215 MODULE_DEVICE_TABLE(i2c
, adv7842_id
);
3217 /* ----------------------------------------------------------------------- */
3219 static struct i2c_driver adv7842_driver
= {
3221 .owner
= THIS_MODULE
,
3224 .probe
= adv7842_probe
,
3225 .remove
= adv7842_remove
,
3226 .id_table
= adv7842_id
,
3229 module_i2c_driver(adv7842_driver
);