2 * Analog Devices AD9389B/AD9889B video encoder driver
4 * Copyright 2012 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
21 * References (c = chapter, p = page):
22 * REF_01 - Analog Devices, Programming Guide, AD9889B/AD9389B,
23 * HDMI Transitter, Rev. A, October 2010
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/slab.h>
29 #include <linux/i2c.h>
30 #include <linux/delay.h>
31 #include <linux/videodev2.h>
32 #include <linux/workqueue.h>
33 #include <linux/v4l2-dv-timings.h>
34 #include <media/v4l2-device.h>
35 #include <media/v4l2-common.h>
36 #include <media/v4l2-ctrls.h>
37 #include <media/ad9389b.h>
40 module_param(debug
, int, 0644);
41 MODULE_PARM_DESC(debug
, "debug level (0-2)");
43 MODULE_DESCRIPTION("Analog Devices AD9389B/AD9889B video encoder driver");
44 MODULE_AUTHOR("Hans Verkuil <hans.verkuil@cisco.com>");
45 MODULE_AUTHOR("Martin Bugge <marbugge@cisco.com>");
46 MODULE_LICENSE("GPL");
48 #define MASK_AD9389B_EDID_RDY_INT 0x04
49 #define MASK_AD9389B_MSEN_INT 0x40
50 #define MASK_AD9389B_HPD_INT 0x80
52 #define MASK_AD9389B_HPD_DETECT 0x40
53 #define MASK_AD9389B_MSEN_DETECT 0x20
54 #define MASK_AD9389B_EDID_RDY 0x10
56 #define EDID_MAX_RETRIES (8)
57 #define EDID_DELAY 250
58 #define EDID_MAX_SEGM 8
61 **********************************************************************
63 * Arrays with configuration parameters for the AD9389B
65 **********************************************************************
68 struct i2c_reg_value
{
73 struct ad9389b_state_edid
{
74 /* total number of blocks */
76 /* Number of segments read */
78 u8 data
[EDID_MAX_SEGM
* 256];
79 /* Number of EDID read retries left */
80 unsigned read_retries
;
83 struct ad9389b_state
{
84 struct ad9389b_platform_data pdata
;
85 struct v4l2_subdev sd
;
87 struct v4l2_ctrl_handler hdl
;
89 /* Is the ad9389b powered on? */
91 /* Did we receive hotplug and rx-sense signals? */
93 /* timings from s_dv_timings */
94 struct v4l2_dv_timings dv_timings
;
96 struct v4l2_ctrl
*hdmi_mode_ctrl
;
97 struct v4l2_ctrl
*hotplug_ctrl
;
98 struct v4l2_ctrl
*rx_sense_ctrl
;
99 struct v4l2_ctrl
*have_edid0_ctrl
;
100 struct v4l2_ctrl
*rgb_quantization_range_ctrl
;
101 struct i2c_client
*edid_i2c_client
;
102 struct ad9389b_state_edid edid
;
103 /* Running counter of the number of detected EDIDs (for debugging) */
104 unsigned edid_detect_counter
;
105 struct workqueue_struct
*work_queue
;
106 struct delayed_work edid_handler
; /* work entry */
109 static void ad9389b_check_monitor_present_status(struct v4l2_subdev
*sd
);
110 static bool ad9389b_check_edid_status(struct v4l2_subdev
*sd
);
111 static void ad9389b_setup(struct v4l2_subdev
*sd
);
112 static int ad9389b_s_i2s_clock_freq(struct v4l2_subdev
*sd
, u32 freq
);
113 static int ad9389b_s_clock_freq(struct v4l2_subdev
*sd
, u32 freq
);
115 static inline struct ad9389b_state
*get_ad9389b_state(struct v4l2_subdev
*sd
)
117 return container_of(sd
, struct ad9389b_state
, sd
);
120 static inline struct v4l2_subdev
*to_sd(struct v4l2_ctrl
*ctrl
)
122 return &container_of(ctrl
->handler
, struct ad9389b_state
, hdl
)->sd
;
125 /* ------------------------ I2C ----------------------------------------------- */
127 static int ad9389b_rd(struct v4l2_subdev
*sd
, u8 reg
)
129 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
131 return i2c_smbus_read_byte_data(client
, reg
);
134 static int ad9389b_wr(struct v4l2_subdev
*sd
, u8 reg
, u8 val
)
136 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
140 for (i
= 0; i
< 3; i
++) {
141 ret
= i2c_smbus_write_byte_data(client
, reg
, val
);
145 v4l2_err(sd
, "I2C Write Problem\n");
149 /* To set specific bits in the register, a clear-mask is given (to be AND-ed),
150 and then the value-mask (to be OR-ed). */
151 static inline void ad9389b_wr_and_or(struct v4l2_subdev
*sd
, u8 reg
,
152 u8 clr_mask
, u8 val_mask
)
154 ad9389b_wr(sd
, reg
, (ad9389b_rd(sd
, reg
) & clr_mask
) | val_mask
);
157 static void ad9389b_edid_rd(struct v4l2_subdev
*sd
, u16 len
, u8
*buf
)
159 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
162 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
164 for (i
= 0; i
< len
; i
++)
165 buf
[i
] = i2c_smbus_read_byte_data(state
->edid_i2c_client
, i
);
168 static inline bool ad9389b_have_hotplug(struct v4l2_subdev
*sd
)
170 return ad9389b_rd(sd
, 0x42) & MASK_AD9389B_HPD_DETECT
;
173 static inline bool ad9389b_have_rx_sense(struct v4l2_subdev
*sd
)
175 return ad9389b_rd(sd
, 0x42) & MASK_AD9389B_MSEN_DETECT
;
178 static void ad9389b_csc_conversion_mode(struct v4l2_subdev
*sd
, u8 mode
)
180 ad9389b_wr_and_or(sd
, 0x17, 0xe7, (mode
& 0x3)<<3);
181 ad9389b_wr_and_or(sd
, 0x18, 0x9f, (mode
& 0x3)<<5);
184 static void ad9389b_csc_coeff(struct v4l2_subdev
*sd
,
185 u16 A1
, u16 A2
, u16 A3
, u16 A4
,
186 u16 B1
, u16 B2
, u16 B3
, u16 B4
,
187 u16 C1
, u16 C2
, u16 C3
, u16 C4
)
190 ad9389b_wr_and_or(sd
, 0x18, 0xe0, A1
>>8);
191 ad9389b_wr(sd
, 0x19, A1
);
192 ad9389b_wr_and_or(sd
, 0x1A, 0xe0, A2
>>8);
193 ad9389b_wr(sd
, 0x1B, A2
);
194 ad9389b_wr_and_or(sd
, 0x1c, 0xe0, A3
>>8);
195 ad9389b_wr(sd
, 0x1d, A3
);
196 ad9389b_wr_and_or(sd
, 0x1e, 0xe0, A4
>>8);
197 ad9389b_wr(sd
, 0x1f, A4
);
200 ad9389b_wr_and_or(sd
, 0x20, 0xe0, B1
>>8);
201 ad9389b_wr(sd
, 0x21, B1
);
202 ad9389b_wr_and_or(sd
, 0x22, 0xe0, B2
>>8);
203 ad9389b_wr(sd
, 0x23, B2
);
204 ad9389b_wr_and_or(sd
, 0x24, 0xe0, B3
>>8);
205 ad9389b_wr(sd
, 0x25, B3
);
206 ad9389b_wr_and_or(sd
, 0x26, 0xe0, B4
>>8);
207 ad9389b_wr(sd
, 0x27, B4
);
210 ad9389b_wr_and_or(sd
, 0x28, 0xe0, C1
>>8);
211 ad9389b_wr(sd
, 0x29, C1
);
212 ad9389b_wr_and_or(sd
, 0x2A, 0xe0, C2
>>8);
213 ad9389b_wr(sd
, 0x2B, C2
);
214 ad9389b_wr_and_or(sd
, 0x2C, 0xe0, C3
>>8);
215 ad9389b_wr(sd
, 0x2D, C3
);
216 ad9389b_wr_and_or(sd
, 0x2E, 0xe0, C4
>>8);
217 ad9389b_wr(sd
, 0x2F, C4
);
220 static void ad9389b_csc_rgb_full2limit(struct v4l2_subdev
*sd
, bool enable
)
225 ad9389b_csc_conversion_mode(sd
, csc_mode
);
226 ad9389b_csc_coeff(sd
,
229 0, 0, 4096-564, 256);
231 ad9389b_wr_and_or(sd
, 0x3b, 0xfe, 0x1);
232 /* AVI infoframe: Limited range RGB (16-235) */
233 ad9389b_wr_and_or(sd
, 0xcd, 0xf9, 0x02);
236 ad9389b_wr_and_or(sd
, 0x3b, 0xfe, 0x0);
237 /* AVI infoframe: Full range RGB (0-255) */
238 ad9389b_wr_and_or(sd
, 0xcd, 0xf9, 0x04);
242 static void ad9389b_set_IT_content_AVI_InfoFrame(struct v4l2_subdev
*sd
)
244 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
246 if (state
->dv_timings
.bt
.standards
& V4L2_DV_BT_STD_CEA861
) {
247 /* CEA format, not IT */
248 ad9389b_wr_and_or(sd
, 0xcd, 0xbf, 0x00);
251 ad9389b_wr_and_or(sd
, 0xcd, 0xbf, 0x40);
255 static int ad9389b_set_rgb_quantization_mode(struct v4l2_subdev
*sd
, struct v4l2_ctrl
*ctrl
)
257 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
260 case V4L2_DV_RGB_RANGE_AUTO
:
262 if (state
->dv_timings
.bt
.standards
& V4L2_DV_BT_STD_CEA861
) {
263 /* cea format, RGB limited range (16-235) */
264 ad9389b_csc_rgb_full2limit(sd
, true);
266 /* not cea format, RGB full range (0-255) */
267 ad9389b_csc_rgb_full2limit(sd
, false);
270 case V4L2_DV_RGB_RANGE_LIMITED
:
271 /* RGB limited range (16-235) */
272 ad9389b_csc_rgb_full2limit(sd
, true);
274 case V4L2_DV_RGB_RANGE_FULL
:
275 /* RGB full range (0-255) */
276 ad9389b_csc_rgb_full2limit(sd
, false);
284 static void ad9389b_set_manual_pll_gear(struct v4l2_subdev
*sd
, u32 pixelclock
)
288 /* Workaround for TMDS PLL problem
289 * The TMDS PLL in AD9389b change gear when the chip is heated above a
290 * certain temperature. The output is disabled when the PLL change gear
291 * so the monitor has to lock on the signal again. A workaround for
292 * this is to use the manual PLL gears. This is a solution from Analog
293 * Devices that is not documented in the datasheets.
294 * 0x98 [7] = enable manual gearing. 0x98 [6:4] = gear
296 * The pixel frequency ranges are based on readout of the gear the
297 * automatic gearing selects for different pixel clocks
298 * (read from 0x9e [3:1]).
301 if (pixelclock
> 140000000)
302 gear
= 0xc0; /* 4th gear */
303 else if (pixelclock
> 117000000)
304 gear
= 0xb0; /* 3rd gear */
305 else if (pixelclock
> 87000000)
306 gear
= 0xa0; /* 2nd gear */
307 else if (pixelclock
> 60000000)
308 gear
= 0x90; /* 1st gear */
310 gear
= 0x80; /* 0th gear */
312 ad9389b_wr_and_or(sd
, 0x98, 0x0f, gear
);
315 /* ------------------------------ CTRL OPS ------------------------------ */
317 static int ad9389b_s_ctrl(struct v4l2_ctrl
*ctrl
)
319 struct v4l2_subdev
*sd
= to_sd(ctrl
);
320 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
322 v4l2_dbg(1, debug
, sd
,
323 "%s: ctrl id: %d, ctrl->val %d\n", __func__
, ctrl
->id
, ctrl
->val
);
325 if (state
->hdmi_mode_ctrl
== ctrl
) {
326 /* Set HDMI or DVI-D */
327 ad9389b_wr_and_or(sd
, 0xaf, 0xfd,
328 ctrl
->val
== V4L2_DV_TX_MODE_HDMI
? 0x02 : 0x00);
331 if (state
->rgb_quantization_range_ctrl
== ctrl
)
332 return ad9389b_set_rgb_quantization_mode(sd
, ctrl
);
336 static const struct v4l2_ctrl_ops ad9389b_ctrl_ops
= {
337 .s_ctrl
= ad9389b_s_ctrl
,
340 /* ---------------------------- CORE OPS ------------------------------------------- */
342 #ifdef CONFIG_VIDEO_ADV_DEBUG
343 static int ad9389b_g_register(struct v4l2_subdev
*sd
, struct v4l2_dbg_register
*reg
)
345 reg
->val
= ad9389b_rd(sd
, reg
->reg
& 0xff);
350 static int ad9389b_s_register(struct v4l2_subdev
*sd
, const struct v4l2_dbg_register
*reg
)
352 ad9389b_wr(sd
, reg
->reg
& 0xff, reg
->val
& 0xff);
357 static int ad9389b_log_status(struct v4l2_subdev
*sd
)
359 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
360 struct ad9389b_state_edid
*edid
= &state
->edid
;
362 static const char * const states
[] = {
368 "initializing HDCP repeater",
369 "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"
371 static const char * const errors
[] = {
378 "max repeater cascade exceeded",
381 "9", "A", "B", "C", "D", "E", "F"
386 v4l2_info(sd
, "chip revision %d\n", state
->chip_revision
);
387 v4l2_info(sd
, "power %s\n", state
->power_on
? "on" : "off");
388 v4l2_info(sd
, "%s hotplug, %s Rx Sense, %s EDID (%d block(s))\n",
389 (ad9389b_rd(sd
, 0x42) & MASK_AD9389B_HPD_DETECT
) ?
391 (ad9389b_rd(sd
, 0x42) & MASK_AD9389B_MSEN_DETECT
) ?
393 edid
->segments
? "found" : "no", edid
->blocks
);
394 if (state
->have_monitor
) {
395 v4l2_info(sd
, "%s output %s\n",
396 (ad9389b_rd(sd
, 0xaf) & 0x02) ?
398 (ad9389b_rd(sd
, 0xa1) & 0x3c) ?
399 "disabled" : "enabled");
401 v4l2_info(sd
, "ad9389b: %s\n", (ad9389b_rd(sd
, 0xb8) & 0x40) ?
402 "encrypted" : "no encryption");
403 v4l2_info(sd
, "state: %s, error: %s, detect count: %u, msk/irq: %02x/%02x\n",
404 states
[ad9389b_rd(sd
, 0xc8) & 0xf],
405 errors
[ad9389b_rd(sd
, 0xc8) >> 4],
406 state
->edid_detect_counter
,
407 ad9389b_rd(sd
, 0x94), ad9389b_rd(sd
, 0x96));
408 manual_gear
= ad9389b_rd(sd
, 0x98) & 0x80;
409 v4l2_info(sd
, "ad9389b: RGB quantization: %s range\n",
410 ad9389b_rd(sd
, 0x3b) & 0x01 ? "limited" : "full");
411 v4l2_info(sd
, "ad9389b: %s gear %d\n",
412 manual_gear
? "manual" : "automatic",
413 manual_gear
? ((ad9389b_rd(sd
, 0x98) & 0x70) >> 4) :
414 ((ad9389b_rd(sd
, 0x9e) & 0x0e) >> 1));
415 if (state
->have_monitor
) {
416 if (ad9389b_rd(sd
, 0xaf) & 0x02) {
418 u8 manual_cts
= ad9389b_rd(sd
, 0x0a) & 0x80;
419 u32 N
= (ad9389b_rd(sd
, 0x01) & 0xf) << 16 |
420 ad9389b_rd(sd
, 0x02) << 8 |
421 ad9389b_rd(sd
, 0x03);
422 u8 vic_detect
= ad9389b_rd(sd
, 0x3e) >> 2;
423 u8 vic_sent
= ad9389b_rd(sd
, 0x3d) & 0x3f;
427 CTS
= (ad9389b_rd(sd
, 0x07) & 0xf) << 16 |
428 ad9389b_rd(sd
, 0x08) << 8 |
429 ad9389b_rd(sd
, 0x09);
431 CTS
= (ad9389b_rd(sd
, 0x04) & 0xf) << 16 |
432 ad9389b_rd(sd
, 0x05) << 8 |
433 ad9389b_rd(sd
, 0x06);
434 N
= (ad9389b_rd(sd
, 0x01) & 0xf) << 16 |
435 ad9389b_rd(sd
, 0x02) << 8 |
436 ad9389b_rd(sd
, 0x03);
438 v4l2_info(sd
, "ad9389b: CTS %s mode: N %d, CTS %d\n",
439 manual_cts
? "manual" : "automatic", N
, CTS
);
441 v4l2_info(sd
, "ad9389b: VIC: detected %d, sent %d\n",
442 vic_detect
, vic_sent
);
445 if (state
->dv_timings
.type
== V4L2_DV_BT_656_1120
) {
446 struct v4l2_bt_timings
*bt
= bt
= &state
->dv_timings
.bt
;
447 u32 frame_width
= bt
->width
+ bt
->hfrontporch
+
448 bt
->hsync
+ bt
->hbackporch
;
449 u32 frame_height
= bt
->height
+ bt
->vfrontporch
+
450 bt
->vsync
+ bt
->vbackporch
;
451 u32 frame_size
= frame_width
* frame_height
;
453 v4l2_info(sd
, "timings: %ux%u%s%u (%ux%u). Pix freq. = %u Hz. Polarities = 0x%x\n",
454 bt
->width
, bt
->height
, bt
->interlaced
? "i" : "p",
455 frame_size
> 0 ? (unsigned)bt
->pixelclock
/ frame_size
: 0,
456 frame_width
, frame_height
,
457 (unsigned)bt
->pixelclock
, bt
->polarities
);
459 v4l2_info(sd
, "no timings set\n");
464 /* Power up/down ad9389b */
465 static int ad9389b_s_power(struct v4l2_subdev
*sd
, int on
)
467 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
468 struct ad9389b_platform_data
*pdata
= &state
->pdata
;
469 const int retries
= 20;
472 v4l2_dbg(1, debug
, sd
, "%s: power %s\n", __func__
, on
? "on" : "off");
474 state
->power_on
= on
;
478 ad9389b_wr_and_or(sd
, 0x41, 0xbf, 0x40);
483 /* The ad9389b does not always come up immediately.
484 Retry multiple times. */
485 for (i
= 0; i
< retries
; i
++) {
486 ad9389b_wr_and_or(sd
, 0x41, 0xbf, 0x0);
487 if ((ad9389b_rd(sd
, 0x41) & 0x40) == 0)
489 ad9389b_wr_and_or(sd
, 0x41, 0xbf, 0x40);
493 v4l2_dbg(1, debug
, sd
, "failed to powerup the ad9389b\n");
494 ad9389b_s_power(sd
, 0);
498 v4l2_dbg(1, debug
, sd
,
499 "needed %d retries to powerup the ad9389b\n", i
);
501 /* Select chip: AD9389B */
502 ad9389b_wr_and_or(sd
, 0xba, 0xef, 0x10);
504 /* Reserved registers that must be set according to REF_01 p. 11*/
505 ad9389b_wr_and_or(sd
, 0x98, 0xf0, 0x07);
506 ad9389b_wr(sd
, 0x9c, 0x38);
507 ad9389b_wr_and_or(sd
, 0x9d, 0xfc, 0x01);
509 /* Differential output drive strength */
510 if (pdata
->diff_data_drive_strength
> 0)
511 ad9389b_wr(sd
, 0xa2, pdata
->diff_data_drive_strength
);
513 ad9389b_wr(sd
, 0xa2, 0x87);
515 if (pdata
->diff_clk_drive_strength
> 0)
516 ad9389b_wr(sd
, 0xa3, pdata
->diff_clk_drive_strength
);
518 ad9389b_wr(sd
, 0xa3, 0x87);
520 ad9389b_wr(sd
, 0x0a, 0x01);
521 ad9389b_wr(sd
, 0xbb, 0xff);
523 /* Set number of attempts to read the EDID */
524 ad9389b_wr(sd
, 0xc9, 0xf);
528 /* Enable interrupts */
529 static void ad9389b_set_isr(struct v4l2_subdev
*sd
, bool enable
)
531 u8 irqs
= MASK_AD9389B_HPD_INT
| MASK_AD9389B_MSEN_INT
;
535 /* The datasheet says that the EDID ready interrupt should be
536 disabled if there is no hotplug. */
539 else if (ad9389b_have_hotplug(sd
))
540 irqs
|= MASK_AD9389B_EDID_RDY_INT
;
543 * This i2c write can fail (approx. 1 in 1000 writes). But it
544 * is essential that this register is correct, so retry it
547 * Note that the i2c write does not report an error, but the readback
548 * clearly shows the wrong value.
551 ad9389b_wr(sd
, 0x94, irqs
);
552 irqs_rd
= ad9389b_rd(sd
, 0x94);
553 } while (retries
-- && irqs_rd
!= irqs
);
556 v4l2_err(sd
, "Could not set interrupts: hw failure?\n");
559 /* Interrupt handler */
560 static int ad9389b_isr(struct v4l2_subdev
*sd
, u32 status
, bool *handled
)
564 /* disable interrupts to prevent a race condition */
565 ad9389b_set_isr(sd
, false);
566 irq_status
= ad9389b_rd(sd
, 0x96);
567 /* clear detected interrupts */
568 ad9389b_wr(sd
, 0x96, irq_status
);
570 if (irq_status
& (MASK_AD9389B_HPD_INT
| MASK_AD9389B_MSEN_INT
))
571 ad9389b_check_monitor_present_status(sd
);
572 if (irq_status
& MASK_AD9389B_EDID_RDY_INT
)
573 ad9389b_check_edid_status(sd
);
575 /* enable interrupts */
576 ad9389b_set_isr(sd
, true);
581 static const struct v4l2_subdev_core_ops ad9389b_core_ops
= {
582 .log_status
= ad9389b_log_status
,
583 #ifdef CONFIG_VIDEO_ADV_DEBUG
584 .g_register
= ad9389b_g_register
,
585 .s_register
= ad9389b_s_register
,
587 .s_power
= ad9389b_s_power
,
588 .interrupt_service_routine
= ad9389b_isr
,
591 /* ------------------------------ PAD OPS ------------------------------ */
593 static int ad9389b_get_edid(struct v4l2_subdev
*sd
, struct v4l2_subdev_edid
*edid
)
595 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
599 if (edid
->blocks
== 0 || edid
->blocks
> 256)
603 if (!state
->edid
.segments
) {
604 v4l2_dbg(1, debug
, sd
, "EDID segment 0 not found\n");
607 if (edid
->start_block
>= state
->edid
.segments
* 2)
609 if (edid
->blocks
+ edid
->start_block
>= state
->edid
.segments
* 2)
610 edid
->blocks
= state
->edid
.segments
* 2 - edid
->start_block
;
611 memcpy(edid
->edid
, &state
->edid
.data
[edid
->start_block
* 128],
616 static const struct v4l2_subdev_pad_ops ad9389b_pad_ops
= {
617 .get_edid
= ad9389b_get_edid
,
620 /* ------------------------------ VIDEO OPS ------------------------------ */
622 /* Enable/disable ad9389b output */
623 static int ad9389b_s_stream(struct v4l2_subdev
*sd
, int enable
)
625 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
627 v4l2_dbg(1, debug
, sd
, "%s: %sable\n", __func__
, (enable
? "en" : "dis"));
629 ad9389b_wr_and_or(sd
, 0xa1, ~0x3c, (enable
? 0 : 0x3c));
631 ad9389b_check_monitor_present_status(sd
);
633 ad9389b_s_power(sd
, 0);
634 state
->have_monitor
= false;
639 static const struct v4l2_dv_timings ad9389b_timings
[] = {
640 V4L2_DV_BT_CEA_720X480P59_94
,
641 V4L2_DV_BT_CEA_720X576P50
,
642 V4L2_DV_BT_CEA_1280X720P24
,
643 V4L2_DV_BT_CEA_1280X720P25
,
644 V4L2_DV_BT_CEA_1280X720P30
,
645 V4L2_DV_BT_CEA_1280X720P50
,
646 V4L2_DV_BT_CEA_1280X720P60
,
647 V4L2_DV_BT_CEA_1920X1080P24
,
648 V4L2_DV_BT_CEA_1920X1080P25
,
649 V4L2_DV_BT_CEA_1920X1080P30
,
650 V4L2_DV_BT_CEA_1920X1080P50
,
651 V4L2_DV_BT_CEA_1920X1080P60
,
653 V4L2_DV_BT_DMT_640X350P85
,
654 V4L2_DV_BT_DMT_640X400P85
,
655 V4L2_DV_BT_DMT_720X400P85
,
656 V4L2_DV_BT_DMT_640X480P60
,
657 V4L2_DV_BT_DMT_640X480P72
,
658 V4L2_DV_BT_DMT_640X480P75
,
659 V4L2_DV_BT_DMT_640X480P85
,
660 V4L2_DV_BT_DMT_800X600P56
,
661 V4L2_DV_BT_DMT_800X600P60
,
662 V4L2_DV_BT_DMT_800X600P72
,
663 V4L2_DV_BT_DMT_800X600P75
,
664 V4L2_DV_BT_DMT_800X600P85
,
665 V4L2_DV_BT_DMT_848X480P60
,
666 V4L2_DV_BT_DMT_1024X768P60
,
667 V4L2_DV_BT_DMT_1024X768P70
,
668 V4L2_DV_BT_DMT_1024X768P75
,
669 V4L2_DV_BT_DMT_1024X768P85
,
670 V4L2_DV_BT_DMT_1152X864P75
,
671 V4L2_DV_BT_DMT_1280X768P60_RB
,
672 V4L2_DV_BT_DMT_1280X768P60
,
673 V4L2_DV_BT_DMT_1280X768P75
,
674 V4L2_DV_BT_DMT_1280X768P85
,
675 V4L2_DV_BT_DMT_1280X800P60_RB
,
676 V4L2_DV_BT_DMT_1280X800P60
,
677 V4L2_DV_BT_DMT_1280X800P75
,
678 V4L2_DV_BT_DMT_1280X800P85
,
679 V4L2_DV_BT_DMT_1280X960P60
,
680 V4L2_DV_BT_DMT_1280X960P85
,
681 V4L2_DV_BT_DMT_1280X1024P60
,
682 V4L2_DV_BT_DMT_1280X1024P75
,
683 V4L2_DV_BT_DMT_1280X1024P85
,
684 V4L2_DV_BT_DMT_1360X768P60
,
685 V4L2_DV_BT_DMT_1400X1050P60_RB
,
686 V4L2_DV_BT_DMT_1400X1050P60
,
687 V4L2_DV_BT_DMT_1400X1050P75
,
688 V4L2_DV_BT_DMT_1400X1050P85
,
689 V4L2_DV_BT_DMT_1440X900P60_RB
,
690 V4L2_DV_BT_DMT_1440X900P60
,
691 V4L2_DV_BT_DMT_1600X1200P60
,
692 V4L2_DV_BT_DMT_1680X1050P60_RB
,
693 V4L2_DV_BT_DMT_1680X1050P60
,
694 V4L2_DV_BT_DMT_1792X1344P60
,
695 V4L2_DV_BT_DMT_1856X1392P60
,
696 V4L2_DV_BT_DMT_1920X1200P60_RB
,
697 V4L2_DV_BT_DMT_1366X768P60
,
698 V4L2_DV_BT_DMT_1920X1080P60
,
702 static int ad9389b_s_dv_timings(struct v4l2_subdev
*sd
,
703 struct v4l2_dv_timings
*timings
)
705 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
708 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
710 /* quick sanity check */
711 if (timings
->type
!= V4L2_DV_BT_656_1120
)
714 if (timings
->bt
.interlaced
)
716 if (timings
->bt
.pixelclock
< 27000000 ||
717 timings
->bt
.pixelclock
> 170000000)
720 /* Fill the optional fields .standards and .flags in struct v4l2_dv_timings
721 if the format is listed in ad9389b_timings[] */
722 for (i
= 0; ad9389b_timings
[i
].bt
.width
; i
++) {
723 if (v4l_match_dv_timings(timings
, &ad9389b_timings
[i
], 0)) {
724 *timings
= ad9389b_timings
[i
];
729 timings
->bt
.flags
&= ~V4L2_DV_FL_REDUCED_FPS
;
732 state
->dv_timings
= *timings
;
734 /* update quantization range based on new dv_timings */
735 ad9389b_set_rgb_quantization_mode(sd
, state
->rgb_quantization_range_ctrl
);
737 /* update PLL gear based on new dv_timings */
738 if (state
->pdata
.tmds_pll_gear
== AD9389B_TMDS_PLL_GEAR_SEMI_AUTOMATIC
)
739 ad9389b_set_manual_pll_gear(sd
, (u32
)timings
->bt
.pixelclock
);
741 /* update AVI infoframe */
742 ad9389b_set_IT_content_AVI_InfoFrame(sd
);
747 static int ad9389b_g_dv_timings(struct v4l2_subdev
*sd
,
748 struct v4l2_dv_timings
*timings
)
750 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
752 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
757 *timings
= state
->dv_timings
;
762 static int ad9389b_enum_dv_timings(struct v4l2_subdev
*sd
,
763 struct v4l2_enum_dv_timings
*timings
)
765 if (timings
->index
>= ARRAY_SIZE(ad9389b_timings
))
768 memset(timings
->reserved
, 0, sizeof(timings
->reserved
));
769 timings
->timings
= ad9389b_timings
[timings
->index
];
773 static int ad9389b_dv_timings_cap(struct v4l2_subdev
*sd
,
774 struct v4l2_dv_timings_cap
*cap
)
776 cap
->type
= V4L2_DV_BT_656_1120
;
777 cap
->bt
.max_width
= 1920;
778 cap
->bt
.max_height
= 1200;
779 cap
->bt
.min_pixelclock
= 27000000;
780 cap
->bt
.max_pixelclock
= 170000000;
781 cap
->bt
.standards
= V4L2_DV_BT_STD_CEA861
| V4L2_DV_BT_STD_DMT
|
782 V4L2_DV_BT_STD_GTF
| V4L2_DV_BT_STD_CVT
;
783 cap
->bt
.capabilities
= V4L2_DV_BT_CAP_PROGRESSIVE
|
784 V4L2_DV_BT_CAP_REDUCED_BLANKING
| V4L2_DV_BT_CAP_CUSTOM
;
788 static const struct v4l2_subdev_video_ops ad9389b_video_ops
= {
789 .s_stream
= ad9389b_s_stream
,
790 .s_dv_timings
= ad9389b_s_dv_timings
,
791 .g_dv_timings
= ad9389b_g_dv_timings
,
792 .enum_dv_timings
= ad9389b_enum_dv_timings
,
793 .dv_timings_cap
= ad9389b_dv_timings_cap
,
796 static int ad9389b_s_audio_stream(struct v4l2_subdev
*sd
, int enable
)
798 v4l2_dbg(1, debug
, sd
, "%s: %sable\n", __func__
, (enable
? "en" : "dis"));
801 ad9389b_wr_and_or(sd
, 0x45, 0x3f, 0x80);
803 ad9389b_wr_and_or(sd
, 0x45, 0x3f, 0x40);
808 static int ad9389b_s_clock_freq(struct v4l2_subdev
*sd
, u32 freq
)
813 case 32000: N
= 4096; break;
814 case 44100: N
= 6272; break;
815 case 48000: N
= 6144; break;
816 case 88200: N
= 12544; break;
817 case 96000: N
= 12288; break;
818 case 176400: N
= 25088; break;
819 case 192000: N
= 24576; break;
824 /* Set N (used with CTS to regenerate the audio clock) */
825 ad9389b_wr(sd
, 0x01, (N
>> 16) & 0xf);
826 ad9389b_wr(sd
, 0x02, (N
>> 8) & 0xff);
827 ad9389b_wr(sd
, 0x03, N
& 0xff);
832 static int ad9389b_s_i2s_clock_freq(struct v4l2_subdev
*sd
, u32 freq
)
837 case 32000: i2s_sf
= 0x30; break;
838 case 44100: i2s_sf
= 0x00; break;
839 case 48000: i2s_sf
= 0x20; break;
840 case 88200: i2s_sf
= 0x80; break;
841 case 96000: i2s_sf
= 0xa0; break;
842 case 176400: i2s_sf
= 0xc0; break;
843 case 192000: i2s_sf
= 0xe0; break;
848 /* Set sampling frequency for I2S audio to 48 kHz */
849 ad9389b_wr_and_or(sd
, 0x15, 0xf, i2s_sf
);
854 static int ad9389b_s_routing(struct v4l2_subdev
*sd
, u32 input
, u32 output
, u32 config
)
856 /* TODO based on input/output/config */
857 /* TODO See datasheet "Programmers guide" p. 39-40 */
859 /* Only 2 channels in use for application */
860 ad9389b_wr_and_or(sd
, 0x50, 0x1f, 0x20);
861 /* Speaker mapping */
862 ad9389b_wr(sd
, 0x51, 0x00);
864 /* TODO Where should this be placed? */
865 /* 16 bit audio word length */
866 ad9389b_wr_and_or(sd
, 0x14, 0xf0, 0x02);
871 static const struct v4l2_subdev_audio_ops ad9389b_audio_ops
= {
872 .s_stream
= ad9389b_s_audio_stream
,
873 .s_clock_freq
= ad9389b_s_clock_freq
,
874 .s_i2s_clock_freq
= ad9389b_s_i2s_clock_freq
,
875 .s_routing
= ad9389b_s_routing
,
878 /* --------------------- SUBDEV OPS --------------------------------------- */
880 static const struct v4l2_subdev_ops ad9389b_ops
= {
881 .core
= &ad9389b_core_ops
,
882 .video
= &ad9389b_video_ops
,
883 .audio
= &ad9389b_audio_ops
,
884 .pad
= &ad9389b_pad_ops
,
887 /* ----------------------------------------------------------------------- */
888 static void ad9389b_dbg_dump_edid(int lvl
, int debug
, struct v4l2_subdev
*sd
,
889 int segment
, u8
*buf
)
896 v4l2_dbg(lvl
, debug
, sd
, "edid segment %d\n", segment
);
897 for (i
= 0; i
< 256; i
+= 16) {
902 v4l2_dbg(lvl
, debug
, sd
, "\n");
903 for (j
= i
; j
< i
+ 16; j
++) {
904 sprintf(bp
, "0x%02x, ", buf
[j
]);
908 v4l2_dbg(lvl
, debug
, sd
, "%s\n", b
);
912 static void ad9389b_edid_handler(struct work_struct
*work
)
914 struct delayed_work
*dwork
= to_delayed_work(work
);
915 struct ad9389b_state
*state
= container_of(dwork
,
916 struct ad9389b_state
, edid_handler
);
917 struct v4l2_subdev
*sd
= &state
->sd
;
918 struct ad9389b_edid_detect ed
;
920 v4l2_dbg(1, debug
, sd
, "%s:\n", __func__
);
922 if (ad9389b_check_edid_status(sd
)) {
923 /* Return if we received the EDID. */
927 if (ad9389b_have_hotplug(sd
)) {
928 /* We must retry reading the EDID several times, it is possible
929 * that initially the EDID couldn't be read due to i2c errors
930 * (DVI connectors are particularly prone to this problem). */
931 if (state
->edid
.read_retries
) {
932 state
->edid
.read_retries
--;
933 /* EDID read failed, trigger a retry */
934 ad9389b_wr(sd
, 0xc9, 0xf);
935 queue_delayed_work(state
->work_queue
,
936 &state
->edid_handler
, EDID_DELAY
);
941 /* We failed to read the EDID, so send an event for this. */
943 ed
.segment
= ad9389b_rd(sd
, 0xc4);
944 v4l2_subdev_notify(sd
, AD9389B_EDID_DETECT
, (void *)&ed
);
945 v4l2_dbg(1, debug
, sd
, "%s: no edid found\n", __func__
);
948 static void ad9389b_audio_setup(struct v4l2_subdev
*sd
)
950 v4l2_dbg(1, debug
, sd
, "%s\n", __func__
);
952 ad9389b_s_i2s_clock_freq(sd
, 48000);
953 ad9389b_s_clock_freq(sd
, 48000);
954 ad9389b_s_routing(sd
, 0, 0, 0);
957 /* Initial setup of AD9389b */
959 /* Configure hdmi transmitter. */
960 static void ad9389b_setup(struct v4l2_subdev
*sd
)
962 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
964 v4l2_dbg(1, debug
, sd
, "%s\n", __func__
);
966 /* Input format: RGB 4:4:4 */
967 ad9389b_wr_and_or(sd
, 0x15, 0xf1, 0x0);
968 /* Output format: RGB 4:4:4 */
969 ad9389b_wr_and_or(sd
, 0x16, 0x3f, 0x0);
970 /* CSC fixed point: +/-2, 1st order interpolation 4:2:2 -> 4:4:4 up
971 conversion, Aspect ratio: 16:9 */
972 ad9389b_wr_and_or(sd
, 0x17, 0xe1, 0x0e);
973 /* Disable pixel repetition and CSC */
974 ad9389b_wr_and_or(sd
, 0x3b, 0x9e, 0x0);
975 /* Output format: RGB 4:4:4, Active Format Information is valid. */
976 ad9389b_wr_and_or(sd
, 0x45, 0xc7, 0x08);
978 ad9389b_wr_and_or(sd
, 0x46, 0x3f, 0x80);
979 /* Setup video format */
980 ad9389b_wr(sd
, 0x3c, 0x0);
981 /* Active format aspect ratio: same as picure. */
982 ad9389b_wr(sd
, 0x47, 0x80);
984 ad9389b_wr_and_or(sd
, 0xaf, 0xef, 0x0);
985 /* Positive clk edge capture for input video clock */
986 ad9389b_wr_and_or(sd
, 0xba, 0x1f, 0x60);
988 ad9389b_audio_setup(sd
);
990 v4l2_ctrl_handler_setup(&state
->hdl
);
992 ad9389b_set_IT_content_AVI_InfoFrame(sd
);
995 static void ad9389b_notify_monitor_detect(struct v4l2_subdev
*sd
)
997 struct ad9389b_monitor_detect mdt
;
998 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
1000 mdt
.present
= state
->have_monitor
;
1001 v4l2_subdev_notify(sd
, AD9389B_MONITOR_DETECT
, (void *)&mdt
);
1004 static void ad9389b_check_monitor_present_status(struct v4l2_subdev
*sd
)
1006 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
1007 /* read hotplug and rx-sense state */
1008 u8 status
= ad9389b_rd(sd
, 0x42);
1010 v4l2_dbg(1, debug
, sd
, "%s: status: 0x%x%s%s\n",
1013 status
& MASK_AD9389B_HPD_DETECT
? ", hotplug" : "",
1014 status
& MASK_AD9389B_MSEN_DETECT
? ", rx-sense" : "");
1016 if ((status
& MASK_AD9389B_HPD_DETECT
) &&
1017 ((status
& MASK_AD9389B_MSEN_DETECT
) || state
->edid
.segments
)) {
1018 v4l2_dbg(1, debug
, sd
,
1019 "%s: hotplug and (rx-sense or edid)\n", __func__
);
1020 if (!state
->have_monitor
) {
1021 v4l2_dbg(1, debug
, sd
, "%s: monitor detected\n", __func__
);
1022 state
->have_monitor
= true;
1023 ad9389b_set_isr(sd
, true);
1024 if (!ad9389b_s_power(sd
, true)) {
1025 v4l2_dbg(1, debug
, sd
,
1026 "%s: monitor detected, powerup failed\n", __func__
);
1030 ad9389b_notify_monitor_detect(sd
);
1031 state
->edid
.read_retries
= EDID_MAX_RETRIES
;
1032 queue_delayed_work(state
->work_queue
,
1033 &state
->edid_handler
, EDID_DELAY
);
1035 } else if (status
& MASK_AD9389B_HPD_DETECT
) {
1036 v4l2_dbg(1, debug
, sd
, "%s: hotplug detected\n", __func__
);
1037 state
->edid
.read_retries
= EDID_MAX_RETRIES
;
1038 queue_delayed_work(state
->work_queue
,
1039 &state
->edid_handler
, EDID_DELAY
);
1040 } else if (!(status
& MASK_AD9389B_HPD_DETECT
)) {
1041 v4l2_dbg(1, debug
, sd
, "%s: hotplug not detected\n", __func__
);
1042 if (state
->have_monitor
) {
1043 v4l2_dbg(1, debug
, sd
, "%s: monitor not detected\n", __func__
);
1044 state
->have_monitor
= false;
1045 ad9389b_notify_monitor_detect(sd
);
1047 ad9389b_s_power(sd
, false);
1048 memset(&state
->edid
, 0, sizeof(struct ad9389b_state_edid
));
1051 /* update read only ctrls */
1052 v4l2_ctrl_s_ctrl(state
->hotplug_ctrl
, ad9389b_have_hotplug(sd
) ? 0x1 : 0x0);
1053 v4l2_ctrl_s_ctrl(state
->rx_sense_ctrl
, ad9389b_have_rx_sense(sd
) ? 0x1 : 0x0);
1054 v4l2_ctrl_s_ctrl(state
->have_edid0_ctrl
, state
->edid
.segments
? 0x1 : 0x0);
1057 static bool edid_block_verify_crc(u8
*edid_block
)
1062 for (i
= 0; i
< 127; i
++)
1063 sum
+= *(edid_block
+ i
);
1064 return ((255 - sum
+ 1) == edid_block
[127]);
1067 static bool edid_segment_verify_crc(struct v4l2_subdev
*sd
, u32 segment
)
1069 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
1070 u32 blocks
= state
->edid
.blocks
;
1071 u8
*data
= state
->edid
.data
;
1073 if (edid_block_verify_crc(&data
[segment
* 256])) {
1074 if ((segment
+ 1) * 2 <= blocks
)
1075 return edid_block_verify_crc(&data
[segment
* 256 + 128]);
1081 static bool ad9389b_check_edid_status(struct v4l2_subdev
*sd
)
1083 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
1084 struct ad9389b_edid_detect ed
;
1086 u8 edidRdy
= ad9389b_rd(sd
, 0xc5);
1088 v4l2_dbg(1, debug
, sd
, "%s: edid ready (retries: %d)\n",
1089 __func__
, EDID_MAX_RETRIES
- state
->edid
.read_retries
);
1091 if (!(edidRdy
& MASK_AD9389B_EDID_RDY
))
1094 segment
= ad9389b_rd(sd
, 0xc4);
1095 if (segment
>= EDID_MAX_SEGM
) {
1096 v4l2_err(sd
, "edid segment number too big\n");
1099 v4l2_dbg(1, debug
, sd
, "%s: got segment %d\n", __func__
, segment
);
1100 ad9389b_edid_rd(sd
, 256, &state
->edid
.data
[segment
* 256]);
1101 ad9389b_dbg_dump_edid(2, debug
, sd
, segment
,
1102 &state
->edid
.data
[segment
* 256]);
1104 state
->edid
.blocks
= state
->edid
.data
[0x7e] + 1;
1105 v4l2_dbg(1, debug
, sd
, "%s: %d blocks in total\n",
1106 __func__
, state
->edid
.blocks
);
1108 if (!edid_segment_verify_crc(sd
, segment
)) {
1109 /* edid crc error, force reread of edid segment */
1110 ad9389b_s_power(sd
, false);
1111 ad9389b_s_power(sd
, true);
1114 /* one more segment read ok */
1115 state
->edid
.segments
= segment
+ 1;
1116 if (((state
->edid
.data
[0x7e] >> 1) + 1) > state
->edid
.segments
) {
1117 /* Request next EDID segment */
1118 v4l2_dbg(1, debug
, sd
, "%s: request segment %d\n",
1119 __func__
, state
->edid
.segments
);
1120 ad9389b_wr(sd
, 0xc9, 0xf);
1121 ad9389b_wr(sd
, 0xc4, state
->edid
.segments
);
1122 state
->edid
.read_retries
= EDID_MAX_RETRIES
;
1123 queue_delayed_work(state
->work_queue
,
1124 &state
->edid_handler
, EDID_DELAY
);
1128 /* report when we have all segments but report only for segment 0 */
1131 v4l2_subdev_notify(sd
, AD9389B_EDID_DETECT
, (void *)&ed
);
1132 state
->edid_detect_counter
++;
1133 v4l2_ctrl_s_ctrl(state
->have_edid0_ctrl
, state
->edid
.segments
? 0x1 : 0x0);
1137 /* ----------------------------------------------------------------------- */
1139 static void ad9389b_init_setup(struct v4l2_subdev
*sd
)
1141 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
1142 struct ad9389b_state_edid
*edid
= &state
->edid
;
1144 v4l2_dbg(1, debug
, sd
, "%s\n", __func__
);
1146 /* clear all interrupts */
1147 ad9389b_wr(sd
, 0x96, 0xff);
1149 memset(edid
, 0, sizeof(struct ad9389b_state_edid
));
1150 state
->have_monitor
= false;
1151 ad9389b_set_isr(sd
, false);
1154 static int ad9389b_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
1156 const struct v4l2_dv_timings dv1080p60
= V4L2_DV_BT_CEA_1920X1080P60
;
1157 struct ad9389b_state
*state
;
1158 struct ad9389b_platform_data
*pdata
= client
->dev
.platform_data
;
1159 struct v4l2_ctrl_handler
*hdl
;
1160 struct v4l2_subdev
*sd
;
1163 /* Check if the adapter supports the needed features */
1164 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
1167 v4l_dbg(1, debug
, client
, "detecting ad9389b client on address 0x%x\n",
1170 state
= devm_kzalloc(&client
->dev
, sizeof(*state
), GFP_KERNEL
);
1175 if (pdata
== NULL
) {
1176 v4l_err(client
, "No platform data!\n");
1179 memcpy(&state
->pdata
, pdata
, sizeof(state
->pdata
));
1182 v4l2_i2c_subdev_init(sd
, client
, &ad9389b_ops
);
1183 sd
->flags
|= V4L2_SUBDEV_FL_HAS_DEVNODE
;
1186 v4l2_ctrl_handler_init(hdl
, 5);
1188 /* private controls */
1190 state
->hdmi_mode_ctrl
= v4l2_ctrl_new_std_menu(hdl
, &ad9389b_ctrl_ops
,
1191 V4L2_CID_DV_TX_MODE
, V4L2_DV_TX_MODE_HDMI
,
1192 0, V4L2_DV_TX_MODE_DVI_D
);
1193 state
->hdmi_mode_ctrl
->is_private
= true;
1194 state
->hotplug_ctrl
= v4l2_ctrl_new_std(hdl
, NULL
,
1195 V4L2_CID_DV_TX_HOTPLUG
, 0, 1, 0, 0);
1196 state
->hotplug_ctrl
->is_private
= true;
1197 state
->rx_sense_ctrl
= v4l2_ctrl_new_std(hdl
, NULL
,
1198 V4L2_CID_DV_TX_RXSENSE
, 0, 1, 0, 0);
1199 state
->rx_sense_ctrl
->is_private
= true;
1200 state
->have_edid0_ctrl
= v4l2_ctrl_new_std(hdl
, NULL
,
1201 V4L2_CID_DV_TX_EDID_PRESENT
, 0, 1, 0, 0);
1202 state
->have_edid0_ctrl
->is_private
= true;
1203 state
->rgb_quantization_range_ctrl
=
1204 v4l2_ctrl_new_std_menu(hdl
, &ad9389b_ctrl_ops
,
1205 V4L2_CID_DV_TX_RGB_RANGE
, V4L2_DV_RGB_RANGE_FULL
,
1206 0, V4L2_DV_RGB_RANGE_AUTO
);
1207 state
->rgb_quantization_range_ctrl
->is_private
= true;
1208 sd
->ctrl_handler
= hdl
;
1215 state
->pad
.flags
= MEDIA_PAD_FL_SINK
;
1216 err
= media_entity_init(&sd
->entity
, 1, &state
->pad
, 0);
1220 state
->chip_revision
= ad9389b_rd(sd
, 0x0);
1221 if (state
->chip_revision
!= 2) {
1222 v4l2_err(sd
, "chip_revision %d != 2\n", state
->chip_revision
);
1226 v4l2_dbg(1, debug
, sd
, "reg 0x41 0x%x, chip version (reg 0x00) 0x%x\n",
1227 ad9389b_rd(sd
, 0x41), state
->chip_revision
);
1229 state
->edid_i2c_client
= i2c_new_dummy(client
->adapter
, (0x7e>>1));
1230 if (state
->edid_i2c_client
== NULL
) {
1231 v4l2_err(sd
, "failed to register edid i2c client\n");
1236 state
->work_queue
= create_singlethread_workqueue(sd
->name
);
1237 if (state
->work_queue
== NULL
) {
1238 v4l2_err(sd
, "could not create workqueue\n");
1243 INIT_DELAYED_WORK(&state
->edid_handler
, ad9389b_edid_handler
);
1244 state
->dv_timings
= dv1080p60
;
1246 ad9389b_init_setup(sd
);
1247 ad9389b_set_isr(sd
, true);
1249 v4l2_info(sd
, "%s found @ 0x%x (%s)\n", client
->name
,
1250 client
->addr
<< 1, client
->adapter
->name
);
1254 i2c_unregister_device(state
->edid_i2c_client
);
1256 media_entity_cleanup(&sd
->entity
);
1258 v4l2_ctrl_handler_free(&state
->hdl
);
1262 /* ----------------------------------------------------------------------- */
1264 static int ad9389b_remove(struct i2c_client
*client
)
1266 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
1267 struct ad9389b_state
*state
= get_ad9389b_state(sd
);
1269 state
->chip_revision
= -1;
1271 v4l2_dbg(1, debug
, sd
, "%s removed @ 0x%x (%s)\n", client
->name
,
1272 client
->addr
<< 1, client
->adapter
->name
);
1274 ad9389b_s_stream(sd
, false);
1275 ad9389b_s_audio_stream(sd
, false);
1276 ad9389b_init_setup(sd
);
1277 cancel_delayed_work(&state
->edid_handler
);
1278 i2c_unregister_device(state
->edid_i2c_client
);
1279 destroy_workqueue(state
->work_queue
);
1280 v4l2_device_unregister_subdev(sd
);
1281 media_entity_cleanup(&sd
->entity
);
1282 v4l2_ctrl_handler_free(sd
->ctrl_handler
);
1286 /* ----------------------------------------------------------------------- */
1288 static struct i2c_device_id ad9389b_id
[] = {
1293 MODULE_DEVICE_TABLE(i2c
, ad9389b_id
);
1295 static struct i2c_driver ad9389b_driver
= {
1297 .owner
= THIS_MODULE
,
1300 .probe
= ad9389b_probe
,
1301 .remove
= ad9389b_remove
,
1302 .id_table
= ad9389b_id
,
1305 module_i2c_driver(ad9389b_driver
);