blob: 34fcdf3c52e0c5807dd9516bd19eb22a60c33719 [file] [log] [blame]
Hans Verkuil54450f52012-07-18 05:45:16 -03001/*
2 * adv7604 - Analog Devices ADV7604 video decoder driver
3 *
4 * Copyright 2012 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
5 *
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.
9 *
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
17 * SOFTWARE.
18 *
19 */
20
21/*
22 * References (c = chapter, p = page):
23 * REF_01 - Analog devices, ADV7604, Register Settings Recommendations,
24 * Revision 2.5, June 2010
25 * REF_02 - Analog devices, Register map documentation, Documentation of
26 * the register maps, Software manual, Rev. F, June 2010
27 * REF_03 - Analog devices, ADV7604, Hardware Manual, Rev. F, August 2010
28 */
29
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/slab.h>
34#include <linux/i2c.h>
35#include <linux/delay.h>
36#include <linux/videodev2.h>
37#include <linux/workqueue.h>
38#include <linux/v4l2-dv-timings.h>
39#include <media/v4l2-device.h>
40#include <media/v4l2-ctrls.h>
Hans Verkuil25764152013-07-29 08:40:56 -030041#include <media/v4l2-dv-timings.h>
Hans Verkuil54450f52012-07-18 05:45:16 -030042#include <media/adv7604.h>
43
44static int debug;
45module_param(debug, int, 0644);
46MODULE_PARM_DESC(debug, "debug level (0-2)");
47
48MODULE_DESCRIPTION("Analog Devices ADV7604 video decoder driver");
49MODULE_AUTHOR("Hans Verkuil <hans.verkuil@cisco.com>");
50MODULE_AUTHOR("Mats Randgaard <mats.randgaard@cisco.com>");
51MODULE_LICENSE("GPL");
52
53/* ADV7604 system clock frequency */
54#define ADV7604_fsc (28636360)
55
Hans Verkuil6b0d5d32012-10-16 06:40:45 -030056#define DIGITAL_INPUT (state->mode == ADV7604_MODE_HDMI)
Hans Verkuil54450f52012-07-18 05:45:16 -030057
58/*
59 **********************************************************************
60 *
61 * Arrays with configuration parameters for the ADV7604
62 *
63 **********************************************************************
64 */
65struct adv7604_state {
66 struct adv7604_platform_data pdata;
67 struct v4l2_subdev sd;
68 struct media_pad pad;
69 struct v4l2_ctrl_handler hdl;
Hans Verkuil6b0d5d32012-10-16 06:40:45 -030070 enum adv7604_mode mode;
Hans Verkuil54450f52012-07-18 05:45:16 -030071 struct v4l2_dv_timings timings;
72 u8 edid[256];
73 unsigned edid_blocks;
74 struct v4l2_fract aspect_ratio;
75 u32 rgb_quantization_range;
76 struct workqueue_struct *work_queues;
77 struct delayed_work delayed_work_enable_hotplug;
78 bool connector_hdmi;
Hans Verkuilcf9afb12012-10-16 10:12:55 -030079 bool restart_stdi_once;
Mats Randgaard25a64ac2013-08-14 07:58:45 -030080 u32 prev_input_status;
Hans Verkuil54450f52012-07-18 05:45:16 -030081
82 /* i2c clients */
83 struct i2c_client *i2c_avlink;
84 struct i2c_client *i2c_cec;
85 struct i2c_client *i2c_infoframe;
86 struct i2c_client *i2c_esdp;
87 struct i2c_client *i2c_dpp;
88 struct i2c_client *i2c_afe;
89 struct i2c_client *i2c_repeater;
90 struct i2c_client *i2c_edid;
91 struct i2c_client *i2c_hdmi;
92 struct i2c_client *i2c_test;
93 struct i2c_client *i2c_cp;
94 struct i2c_client *i2c_vdp;
95
96 /* controls */
97 struct v4l2_ctrl *detect_tx_5v_ctrl;
98 struct v4l2_ctrl *analog_sampling_phase_ctrl;
99 struct v4l2_ctrl *free_run_color_manual_ctrl;
100 struct v4l2_ctrl *free_run_color_ctrl;
101 struct v4l2_ctrl *rgb_quantization_range_ctrl;
102};
103
104/* Supported CEA and DMT timings */
105static const struct v4l2_dv_timings adv7604_timings[] = {
106 V4L2_DV_BT_CEA_720X480P59_94,
107 V4L2_DV_BT_CEA_720X576P50,
108 V4L2_DV_BT_CEA_1280X720P24,
109 V4L2_DV_BT_CEA_1280X720P25,
Hans Verkuil54450f52012-07-18 05:45:16 -0300110 V4L2_DV_BT_CEA_1280X720P50,
111 V4L2_DV_BT_CEA_1280X720P60,
112 V4L2_DV_BT_CEA_1920X1080P24,
113 V4L2_DV_BT_CEA_1920X1080P25,
114 V4L2_DV_BT_CEA_1920X1080P30,
115 V4L2_DV_BT_CEA_1920X1080P50,
116 V4L2_DV_BT_CEA_1920X1080P60,
117
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300118 /* sorted by DMT ID */
Hans Verkuil54450f52012-07-18 05:45:16 -0300119 V4L2_DV_BT_DMT_640X350P85,
120 V4L2_DV_BT_DMT_640X400P85,
121 V4L2_DV_BT_DMT_720X400P85,
122 V4L2_DV_BT_DMT_640X480P60,
123 V4L2_DV_BT_DMT_640X480P72,
124 V4L2_DV_BT_DMT_640X480P75,
125 V4L2_DV_BT_DMT_640X480P85,
126 V4L2_DV_BT_DMT_800X600P56,
127 V4L2_DV_BT_DMT_800X600P60,
128 V4L2_DV_BT_DMT_800X600P72,
129 V4L2_DV_BT_DMT_800X600P75,
130 V4L2_DV_BT_DMT_800X600P85,
131 V4L2_DV_BT_DMT_848X480P60,
132 V4L2_DV_BT_DMT_1024X768P60,
133 V4L2_DV_BT_DMT_1024X768P70,
134 V4L2_DV_BT_DMT_1024X768P75,
135 V4L2_DV_BT_DMT_1024X768P85,
136 V4L2_DV_BT_DMT_1152X864P75,
137 V4L2_DV_BT_DMT_1280X768P60_RB,
138 V4L2_DV_BT_DMT_1280X768P60,
139 V4L2_DV_BT_DMT_1280X768P75,
140 V4L2_DV_BT_DMT_1280X768P85,
141 V4L2_DV_BT_DMT_1280X800P60_RB,
142 V4L2_DV_BT_DMT_1280X800P60,
143 V4L2_DV_BT_DMT_1280X800P75,
144 V4L2_DV_BT_DMT_1280X800P85,
145 V4L2_DV_BT_DMT_1280X960P60,
146 V4L2_DV_BT_DMT_1280X960P85,
147 V4L2_DV_BT_DMT_1280X1024P60,
148 V4L2_DV_BT_DMT_1280X1024P75,
149 V4L2_DV_BT_DMT_1280X1024P85,
150 V4L2_DV_BT_DMT_1360X768P60,
151 V4L2_DV_BT_DMT_1400X1050P60_RB,
152 V4L2_DV_BT_DMT_1400X1050P60,
153 V4L2_DV_BT_DMT_1400X1050P75,
154 V4L2_DV_BT_DMT_1400X1050P85,
155 V4L2_DV_BT_DMT_1440X900P60_RB,
156 V4L2_DV_BT_DMT_1440X900P60,
157 V4L2_DV_BT_DMT_1600X1200P60,
158 V4L2_DV_BT_DMT_1680X1050P60_RB,
159 V4L2_DV_BT_DMT_1680X1050P60,
160 V4L2_DV_BT_DMT_1792X1344P60,
161 V4L2_DV_BT_DMT_1856X1392P60,
162 V4L2_DV_BT_DMT_1920X1200P60_RB,
163 V4L2_DV_BT_DMT_1366X768P60,
164 V4L2_DV_BT_DMT_1920X1080P60,
165 { },
166};
167
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300168struct adv7604_video_standards {
169 struct v4l2_dv_timings timings;
170 u8 vid_std;
171 u8 v_freq;
172};
173
174/* sorted by number of lines */
175static const struct adv7604_video_standards adv7604_prim_mode_comp[] = {
176 /* { V4L2_DV_BT_CEA_720X480P59_94, 0x0a, 0x00 }, TODO flickering */
177 { V4L2_DV_BT_CEA_720X576P50, 0x0b, 0x00 },
178 { V4L2_DV_BT_CEA_1280X720P50, 0x19, 0x01 },
179 { V4L2_DV_BT_CEA_1280X720P60, 0x19, 0x00 },
180 { V4L2_DV_BT_CEA_1920X1080P24, 0x1e, 0x04 },
181 { V4L2_DV_BT_CEA_1920X1080P25, 0x1e, 0x03 },
182 { V4L2_DV_BT_CEA_1920X1080P30, 0x1e, 0x02 },
183 { V4L2_DV_BT_CEA_1920X1080P50, 0x1e, 0x01 },
184 { V4L2_DV_BT_CEA_1920X1080P60, 0x1e, 0x00 },
185 /* TODO add 1920x1080P60_RB (CVT timing) */
186 { },
187};
188
189/* sorted by number of lines */
190static const struct adv7604_video_standards adv7604_prim_mode_gr[] = {
191 { V4L2_DV_BT_DMT_640X480P60, 0x08, 0x00 },
192 { V4L2_DV_BT_DMT_640X480P72, 0x09, 0x00 },
193 { V4L2_DV_BT_DMT_640X480P75, 0x0a, 0x00 },
194 { V4L2_DV_BT_DMT_640X480P85, 0x0b, 0x00 },
195 { V4L2_DV_BT_DMT_800X600P56, 0x00, 0x00 },
196 { V4L2_DV_BT_DMT_800X600P60, 0x01, 0x00 },
197 { V4L2_DV_BT_DMT_800X600P72, 0x02, 0x00 },
198 { V4L2_DV_BT_DMT_800X600P75, 0x03, 0x00 },
199 { V4L2_DV_BT_DMT_800X600P85, 0x04, 0x00 },
200 { V4L2_DV_BT_DMT_1024X768P60, 0x0c, 0x00 },
201 { V4L2_DV_BT_DMT_1024X768P70, 0x0d, 0x00 },
202 { V4L2_DV_BT_DMT_1024X768P75, 0x0e, 0x00 },
203 { V4L2_DV_BT_DMT_1024X768P85, 0x0f, 0x00 },
204 { V4L2_DV_BT_DMT_1280X1024P60, 0x05, 0x00 },
205 { V4L2_DV_BT_DMT_1280X1024P75, 0x06, 0x00 },
206 { V4L2_DV_BT_DMT_1360X768P60, 0x12, 0x00 },
207 { V4L2_DV_BT_DMT_1366X768P60, 0x13, 0x00 },
208 { V4L2_DV_BT_DMT_1400X1050P60, 0x14, 0x00 },
209 { V4L2_DV_BT_DMT_1400X1050P75, 0x15, 0x00 },
210 { V4L2_DV_BT_DMT_1600X1200P60, 0x16, 0x00 }, /* TODO not tested */
211 /* TODO add 1600X1200P60_RB (not a DMT timing) */
212 { V4L2_DV_BT_DMT_1680X1050P60, 0x18, 0x00 },
213 { V4L2_DV_BT_DMT_1920X1200P60_RB, 0x19, 0x00 }, /* TODO not tested */
214 { },
215};
216
217/* sorted by number of lines */
218static const struct adv7604_video_standards adv7604_prim_mode_hdmi_comp[] = {
219 { V4L2_DV_BT_CEA_720X480P59_94, 0x0a, 0x00 },
220 { V4L2_DV_BT_CEA_720X576P50, 0x0b, 0x00 },
221 { V4L2_DV_BT_CEA_1280X720P50, 0x13, 0x01 },
222 { V4L2_DV_BT_CEA_1280X720P60, 0x13, 0x00 },
223 { V4L2_DV_BT_CEA_1920X1080P24, 0x1e, 0x04 },
224 { V4L2_DV_BT_CEA_1920X1080P25, 0x1e, 0x03 },
225 { V4L2_DV_BT_CEA_1920X1080P30, 0x1e, 0x02 },
226 { V4L2_DV_BT_CEA_1920X1080P50, 0x1e, 0x01 },
227 { V4L2_DV_BT_CEA_1920X1080P60, 0x1e, 0x00 },
228 { },
229};
230
231/* sorted by number of lines */
232static const struct adv7604_video_standards adv7604_prim_mode_hdmi_gr[] = {
233 { V4L2_DV_BT_DMT_640X480P60, 0x08, 0x00 },
234 { V4L2_DV_BT_DMT_640X480P72, 0x09, 0x00 },
235 { V4L2_DV_BT_DMT_640X480P75, 0x0a, 0x00 },
236 { V4L2_DV_BT_DMT_640X480P85, 0x0b, 0x00 },
237 { V4L2_DV_BT_DMT_800X600P56, 0x00, 0x00 },
238 { V4L2_DV_BT_DMT_800X600P60, 0x01, 0x00 },
239 { V4L2_DV_BT_DMT_800X600P72, 0x02, 0x00 },
240 { V4L2_DV_BT_DMT_800X600P75, 0x03, 0x00 },
241 { V4L2_DV_BT_DMT_800X600P85, 0x04, 0x00 },
242 { V4L2_DV_BT_DMT_1024X768P60, 0x0c, 0x00 },
243 { V4L2_DV_BT_DMT_1024X768P70, 0x0d, 0x00 },
244 { V4L2_DV_BT_DMT_1024X768P75, 0x0e, 0x00 },
245 { V4L2_DV_BT_DMT_1024X768P85, 0x0f, 0x00 },
246 { V4L2_DV_BT_DMT_1280X1024P60, 0x05, 0x00 },
247 { V4L2_DV_BT_DMT_1280X1024P75, 0x06, 0x00 },
248 { },
249};
250
Hans Verkuil54450f52012-07-18 05:45:16 -0300251/* ----------------------------------------------------------------------- */
252
253static inline struct adv7604_state *to_state(struct v4l2_subdev *sd)
254{
255 return container_of(sd, struct adv7604_state, sd);
256}
257
258static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
259{
260 return &container_of(ctrl->handler, struct adv7604_state, hdl)->sd;
261}
262
263static inline unsigned hblanking(const struct v4l2_bt_timings *t)
264{
Hans Verkuileacf8f92013-07-29 08:40:59 -0300265 return V4L2_DV_BT_BLANKING_WIDTH(t);
Hans Verkuil54450f52012-07-18 05:45:16 -0300266}
267
268static inline unsigned htotal(const struct v4l2_bt_timings *t)
269{
Hans Verkuileacf8f92013-07-29 08:40:59 -0300270 return V4L2_DV_BT_FRAME_WIDTH(t);
Hans Verkuil54450f52012-07-18 05:45:16 -0300271}
272
273static inline unsigned vblanking(const struct v4l2_bt_timings *t)
274{
Hans Verkuileacf8f92013-07-29 08:40:59 -0300275 return V4L2_DV_BT_BLANKING_HEIGHT(t);
Hans Verkuil54450f52012-07-18 05:45:16 -0300276}
277
278static inline unsigned vtotal(const struct v4l2_bt_timings *t)
279{
Hans Verkuileacf8f92013-07-29 08:40:59 -0300280 return V4L2_DV_BT_FRAME_HEIGHT(t);
Hans Verkuil54450f52012-07-18 05:45:16 -0300281}
282
283/* ----------------------------------------------------------------------- */
284
285static s32 adv_smbus_read_byte_data_check(struct i2c_client *client,
286 u8 command, bool check)
287{
288 union i2c_smbus_data data;
289
290 if (!i2c_smbus_xfer(client->adapter, client->addr, client->flags,
291 I2C_SMBUS_READ, command,
292 I2C_SMBUS_BYTE_DATA, &data))
293 return data.byte;
294 if (check)
295 v4l_err(client, "error reading %02x, %02x\n",
296 client->addr, command);
297 return -EIO;
298}
299
300static s32 adv_smbus_read_byte_data(struct i2c_client *client, u8 command)
301{
302 return adv_smbus_read_byte_data_check(client, command, true);
303}
304
305static s32 adv_smbus_write_byte_data(struct i2c_client *client,
306 u8 command, u8 value)
307{
308 union i2c_smbus_data data;
309 int err;
310 int i;
311
312 data.byte = value;
313 for (i = 0; i < 3; i++) {
314 err = i2c_smbus_xfer(client->adapter, client->addr,
315 client->flags,
316 I2C_SMBUS_WRITE, command,
317 I2C_SMBUS_BYTE_DATA, &data);
318 if (!err)
319 break;
320 }
321 if (err < 0)
322 v4l_err(client, "error writing %02x, %02x, %02x\n",
323 client->addr, command, value);
324 return err;
325}
326
327static s32 adv_smbus_write_i2c_block_data(struct i2c_client *client,
328 u8 command, unsigned length, const u8 *values)
329{
330 union i2c_smbus_data data;
331
332 if (length > I2C_SMBUS_BLOCK_MAX)
333 length = I2C_SMBUS_BLOCK_MAX;
334 data.block[0] = length;
335 memcpy(data.block + 1, values, length);
336 return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
337 I2C_SMBUS_WRITE, command,
338 I2C_SMBUS_I2C_BLOCK_DATA, &data);
339}
340
341/* ----------------------------------------------------------------------- */
342
343static inline int io_read(struct v4l2_subdev *sd, u8 reg)
344{
345 struct i2c_client *client = v4l2_get_subdevdata(sd);
346
347 return adv_smbus_read_byte_data(client, reg);
348}
349
350static inline int io_write(struct v4l2_subdev *sd, u8 reg, u8 val)
351{
352 struct i2c_client *client = v4l2_get_subdevdata(sd);
353
354 return adv_smbus_write_byte_data(client, reg, val);
355}
356
357static inline int io_write_and_or(struct v4l2_subdev *sd, u8 reg, u8 mask, u8 val)
358{
359 return io_write(sd, reg, (io_read(sd, reg) & mask) | val);
360}
361
362static inline int avlink_read(struct v4l2_subdev *sd, u8 reg)
363{
364 struct adv7604_state *state = to_state(sd);
365
366 return adv_smbus_read_byte_data(state->i2c_avlink, reg);
367}
368
369static inline int avlink_write(struct v4l2_subdev *sd, u8 reg, u8 val)
370{
371 struct adv7604_state *state = to_state(sd);
372
373 return adv_smbus_write_byte_data(state->i2c_avlink, reg, val);
374}
375
376static inline int cec_read(struct v4l2_subdev *sd, u8 reg)
377{
378 struct adv7604_state *state = to_state(sd);
379
380 return adv_smbus_read_byte_data(state->i2c_cec, reg);
381}
382
383static inline int cec_write(struct v4l2_subdev *sd, u8 reg, u8 val)
384{
385 struct adv7604_state *state = to_state(sd);
386
387 return adv_smbus_write_byte_data(state->i2c_cec, reg, val);
388}
389
390static inline int cec_write_and_or(struct v4l2_subdev *sd, u8 reg, u8 mask, u8 val)
391{
392 return cec_write(sd, reg, (cec_read(sd, reg) & mask) | val);
393}
394
395static inline int infoframe_read(struct v4l2_subdev *sd, u8 reg)
396{
397 struct adv7604_state *state = to_state(sd);
398
399 return adv_smbus_read_byte_data(state->i2c_infoframe, reg);
400}
401
402static inline int infoframe_write(struct v4l2_subdev *sd, u8 reg, u8 val)
403{
404 struct adv7604_state *state = to_state(sd);
405
406 return adv_smbus_write_byte_data(state->i2c_infoframe, reg, val);
407}
408
409static inline int esdp_read(struct v4l2_subdev *sd, u8 reg)
410{
411 struct adv7604_state *state = to_state(sd);
412
413 return adv_smbus_read_byte_data(state->i2c_esdp, reg);
414}
415
416static inline int esdp_write(struct v4l2_subdev *sd, u8 reg, u8 val)
417{
418 struct adv7604_state *state = to_state(sd);
419
420 return adv_smbus_write_byte_data(state->i2c_esdp, reg, val);
421}
422
423static inline int dpp_read(struct v4l2_subdev *sd, u8 reg)
424{
425 struct adv7604_state *state = to_state(sd);
426
427 return adv_smbus_read_byte_data(state->i2c_dpp, reg);
428}
429
430static inline int dpp_write(struct v4l2_subdev *sd, u8 reg, u8 val)
431{
432 struct adv7604_state *state = to_state(sd);
433
434 return adv_smbus_write_byte_data(state->i2c_dpp, reg, val);
435}
436
437static inline int afe_read(struct v4l2_subdev *sd, u8 reg)
438{
439 struct adv7604_state *state = to_state(sd);
440
441 return adv_smbus_read_byte_data(state->i2c_afe, reg);
442}
443
444static inline int afe_write(struct v4l2_subdev *sd, u8 reg, u8 val)
445{
446 struct adv7604_state *state = to_state(sd);
447
448 return adv_smbus_write_byte_data(state->i2c_afe, reg, val);
449}
450
451static inline int rep_read(struct v4l2_subdev *sd, u8 reg)
452{
453 struct adv7604_state *state = to_state(sd);
454
455 return adv_smbus_read_byte_data(state->i2c_repeater, reg);
456}
457
458static inline int rep_write(struct v4l2_subdev *sd, u8 reg, u8 val)
459{
460 struct adv7604_state *state = to_state(sd);
461
462 return adv_smbus_write_byte_data(state->i2c_repeater, reg, val);
463}
464
465static inline int rep_write_and_or(struct v4l2_subdev *sd, u8 reg, u8 mask, u8 val)
466{
467 return rep_write(sd, reg, (rep_read(sd, reg) & mask) | val);
468}
469
470static inline int edid_read(struct v4l2_subdev *sd, u8 reg)
471{
472 struct adv7604_state *state = to_state(sd);
473
474 return adv_smbus_read_byte_data(state->i2c_edid, reg);
475}
476
477static inline int edid_write(struct v4l2_subdev *sd, u8 reg, u8 val)
478{
479 struct adv7604_state *state = to_state(sd);
480
481 return adv_smbus_write_byte_data(state->i2c_edid, reg, val);
482}
483
484static inline int edid_read_block(struct v4l2_subdev *sd, unsigned len, u8 *val)
485{
486 struct adv7604_state *state = to_state(sd);
487 struct i2c_client *client = state->i2c_edid;
488 u8 msgbuf0[1] = { 0 };
489 u8 msgbuf1[256];
Shubhrajyoti D09f29672012-10-25 01:02:36 -0300490 struct i2c_msg msg[2] = {
491 {
492 .addr = client->addr,
493 .len = 1,
494 .buf = msgbuf0
495 },
496 {
497 .addr = client->addr,
498 .flags = I2C_M_RD,
499 .len = len,
500 .buf = msgbuf1
501 },
502 };
Hans Verkuil54450f52012-07-18 05:45:16 -0300503
504 if (i2c_transfer(client->adapter, msg, 2) < 0)
505 return -EIO;
506 memcpy(val, msgbuf1, len);
507 return 0;
508}
509
510static void adv7604_delayed_work_enable_hotplug(struct work_struct *work)
511{
512 struct delayed_work *dwork = to_delayed_work(work);
513 struct adv7604_state *state = container_of(dwork, struct adv7604_state,
514 delayed_work_enable_hotplug);
515 struct v4l2_subdev *sd = &state->sd;
516
517 v4l2_dbg(2, debug, sd, "%s: enable hotplug\n", __func__);
518
519 v4l2_subdev_notify(sd, ADV7604_HOTPLUG, (void *)1);
520}
521
522static inline int edid_write_block(struct v4l2_subdev *sd,
523 unsigned len, const u8 *val)
524{
525 struct i2c_client *client = v4l2_get_subdevdata(sd);
526 struct adv7604_state *state = to_state(sd);
527 int err = 0;
528 int i;
529
530 v4l2_dbg(2, debug, sd, "%s: write EDID block (%d byte)\n", __func__, len);
531
532 v4l2_subdev_notify(sd, ADV7604_HOTPLUG, (void *)0);
533
534 /* Disables I2C access to internal EDID ram from DDC port */
535 rep_write_and_or(sd, 0x77, 0xf0, 0x0);
536
537 for (i = 0; !err && i < len; i += I2C_SMBUS_BLOCK_MAX)
538 err = adv_smbus_write_i2c_block_data(state->i2c_edid, i,
539 I2C_SMBUS_BLOCK_MAX, val + i);
540 if (err)
541 return err;
542
543 /* adv7604 calculates the checksums and enables I2C access to internal
544 EDID ram from DDC port. */
545 rep_write_and_or(sd, 0x77, 0xf0, 0x1);
546
547 for (i = 0; i < 1000; i++) {
548 if (rep_read(sd, 0x7d) & 1)
549 break;
550 mdelay(1);
551 }
552 if (i == 1000) {
553 v4l_err(client, "error enabling edid\n");
554 return -EIO;
555 }
556
557 /* enable hotplug after 100 ms */
558 queue_delayed_work(state->work_queues,
559 &state->delayed_work_enable_hotplug, HZ / 10);
560 return 0;
561}
562
563static inline int hdmi_read(struct v4l2_subdev *sd, u8 reg)
564{
565 struct adv7604_state *state = to_state(sd);
566
567 return adv_smbus_read_byte_data(state->i2c_hdmi, reg);
568}
569
570static inline int hdmi_write(struct v4l2_subdev *sd, u8 reg, u8 val)
571{
572 struct adv7604_state *state = to_state(sd);
573
574 return adv_smbus_write_byte_data(state->i2c_hdmi, reg, val);
575}
576
577static inline int test_read(struct v4l2_subdev *sd, u8 reg)
578{
579 struct adv7604_state *state = to_state(sd);
580
581 return adv_smbus_read_byte_data(state->i2c_test, reg);
582}
583
584static inline int test_write(struct v4l2_subdev *sd, u8 reg, u8 val)
585{
586 struct adv7604_state *state = to_state(sd);
587
588 return adv_smbus_write_byte_data(state->i2c_test, reg, val);
589}
590
591static inline int cp_read(struct v4l2_subdev *sd, u8 reg)
592{
593 struct adv7604_state *state = to_state(sd);
594
595 return adv_smbus_read_byte_data(state->i2c_cp, reg);
596}
597
598static inline int cp_write(struct v4l2_subdev *sd, u8 reg, u8 val)
599{
600 struct adv7604_state *state = to_state(sd);
601
602 return adv_smbus_write_byte_data(state->i2c_cp, reg, val);
603}
604
605static inline int cp_write_and_or(struct v4l2_subdev *sd, u8 reg, u8 mask, u8 val)
606{
607 return cp_write(sd, reg, (cp_read(sd, reg) & mask) | val);
608}
609
610static inline int vdp_read(struct v4l2_subdev *sd, u8 reg)
611{
612 struct adv7604_state *state = to_state(sd);
613
614 return adv_smbus_read_byte_data(state->i2c_vdp, reg);
615}
616
617static inline int vdp_write(struct v4l2_subdev *sd, u8 reg, u8 val)
618{
619 struct adv7604_state *state = to_state(sd);
620
621 return adv_smbus_write_byte_data(state->i2c_vdp, reg, val);
622}
623
624/* ----------------------------------------------------------------------- */
625
626#ifdef CONFIG_VIDEO_ADV_DEBUG
627static void adv7604_inv_register(struct v4l2_subdev *sd)
628{
629 v4l2_info(sd, "0x000-0x0ff: IO Map\n");
630 v4l2_info(sd, "0x100-0x1ff: AVLink Map\n");
631 v4l2_info(sd, "0x200-0x2ff: CEC Map\n");
632 v4l2_info(sd, "0x300-0x3ff: InfoFrame Map\n");
633 v4l2_info(sd, "0x400-0x4ff: ESDP Map\n");
634 v4l2_info(sd, "0x500-0x5ff: DPP Map\n");
635 v4l2_info(sd, "0x600-0x6ff: AFE Map\n");
636 v4l2_info(sd, "0x700-0x7ff: Repeater Map\n");
637 v4l2_info(sd, "0x800-0x8ff: EDID Map\n");
638 v4l2_info(sd, "0x900-0x9ff: HDMI Map\n");
639 v4l2_info(sd, "0xa00-0xaff: Test Map\n");
640 v4l2_info(sd, "0xb00-0xbff: CP Map\n");
641 v4l2_info(sd, "0xc00-0xcff: VDP Map\n");
642}
643
644static int adv7604_g_register(struct v4l2_subdev *sd,
645 struct v4l2_dbg_register *reg)
646{
Hans Verkuil54450f52012-07-18 05:45:16 -0300647 reg->size = 1;
648 switch (reg->reg >> 8) {
649 case 0:
650 reg->val = io_read(sd, reg->reg & 0xff);
651 break;
652 case 1:
653 reg->val = avlink_read(sd, reg->reg & 0xff);
654 break;
655 case 2:
656 reg->val = cec_read(sd, reg->reg & 0xff);
657 break;
658 case 3:
659 reg->val = infoframe_read(sd, reg->reg & 0xff);
660 break;
661 case 4:
662 reg->val = esdp_read(sd, reg->reg & 0xff);
663 break;
664 case 5:
665 reg->val = dpp_read(sd, reg->reg & 0xff);
666 break;
667 case 6:
668 reg->val = afe_read(sd, reg->reg & 0xff);
669 break;
670 case 7:
671 reg->val = rep_read(sd, reg->reg & 0xff);
672 break;
673 case 8:
674 reg->val = edid_read(sd, reg->reg & 0xff);
675 break;
676 case 9:
677 reg->val = hdmi_read(sd, reg->reg & 0xff);
678 break;
679 case 0xa:
680 reg->val = test_read(sd, reg->reg & 0xff);
681 break;
682 case 0xb:
683 reg->val = cp_read(sd, reg->reg & 0xff);
684 break;
685 case 0xc:
686 reg->val = vdp_read(sd, reg->reg & 0xff);
687 break;
688 default:
689 v4l2_info(sd, "Register %03llx not supported\n", reg->reg);
690 adv7604_inv_register(sd);
691 break;
692 }
693 return 0;
694}
695
696static int adv7604_s_register(struct v4l2_subdev *sd,
Hans Verkuil977ba3b2013-03-24 08:28:46 -0300697 const struct v4l2_dbg_register *reg)
Hans Verkuil54450f52012-07-18 05:45:16 -0300698{
Hans Verkuil54450f52012-07-18 05:45:16 -0300699 switch (reg->reg >> 8) {
700 case 0:
701 io_write(sd, reg->reg & 0xff, reg->val & 0xff);
702 break;
703 case 1:
704 avlink_write(sd, reg->reg & 0xff, reg->val & 0xff);
705 break;
706 case 2:
707 cec_write(sd, reg->reg & 0xff, reg->val & 0xff);
708 break;
709 case 3:
710 infoframe_write(sd, reg->reg & 0xff, reg->val & 0xff);
711 break;
712 case 4:
713 esdp_write(sd, reg->reg & 0xff, reg->val & 0xff);
714 break;
715 case 5:
716 dpp_write(sd, reg->reg & 0xff, reg->val & 0xff);
717 break;
718 case 6:
719 afe_write(sd, reg->reg & 0xff, reg->val & 0xff);
720 break;
721 case 7:
722 rep_write(sd, reg->reg & 0xff, reg->val & 0xff);
723 break;
724 case 8:
725 edid_write(sd, reg->reg & 0xff, reg->val & 0xff);
726 break;
727 case 9:
728 hdmi_write(sd, reg->reg & 0xff, reg->val & 0xff);
729 break;
730 case 0xa:
731 test_write(sd, reg->reg & 0xff, reg->val & 0xff);
732 break;
733 case 0xb:
734 cp_write(sd, reg->reg & 0xff, reg->val & 0xff);
735 break;
736 case 0xc:
737 vdp_write(sd, reg->reg & 0xff, reg->val & 0xff);
738 break;
739 default:
740 v4l2_info(sd, "Register %03llx not supported\n", reg->reg);
741 adv7604_inv_register(sd);
742 break;
743 }
744 return 0;
745}
746#endif
747
748static int adv7604_s_detect_tx_5v_ctrl(struct v4l2_subdev *sd)
749{
750 struct adv7604_state *state = to_state(sd);
751
752 /* port A only */
753 return v4l2_ctrl_s_ctrl(state->detect_tx_5v_ctrl,
754 ((io_read(sd, 0x6f) & 0x10) >> 4));
755}
756
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300757static int find_and_set_predefined_video_timings(struct v4l2_subdev *sd,
758 u8 prim_mode,
759 const struct adv7604_video_standards *predef_vid_timings,
760 const struct v4l2_dv_timings *timings)
Hans Verkuil54450f52012-07-18 05:45:16 -0300761{
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300762 struct adv7604_state *state = to_state(sd);
763 int i;
764
765 for (i = 0; predef_vid_timings[i].timings.bt.width; i++) {
766 if (!v4l_match_dv_timings(timings, &predef_vid_timings[i].timings,
767 DIGITAL_INPUT ? 250000 : 1000000))
768 continue;
769 io_write(sd, 0x00, predef_vid_timings[i].vid_std); /* video std */
770 io_write(sd, 0x01, (predef_vid_timings[i].v_freq << 4) +
771 prim_mode); /* v_freq and prim mode */
772 return 0;
773 }
774
775 return -1;
776}
777
778static int configure_predefined_video_timings(struct v4l2_subdev *sd,
779 struct v4l2_dv_timings *timings)
780{
781 struct adv7604_state *state = to_state(sd);
782 int err;
783
784 v4l2_dbg(1, debug, sd, "%s", __func__);
785
786 /* reset to default values */
787 io_write(sd, 0x16, 0x43);
788 io_write(sd, 0x17, 0x5a);
789 /* disable embedded syncs for auto graphics mode */
790 cp_write_and_or(sd, 0x81, 0xef, 0x00);
791 cp_write(sd, 0x8f, 0x00);
792 cp_write(sd, 0x90, 0x00);
793 cp_write(sd, 0xa2, 0x00);
794 cp_write(sd, 0xa3, 0x00);
795 cp_write(sd, 0xa4, 0x00);
796 cp_write(sd, 0xa5, 0x00);
797 cp_write(sd, 0xa6, 0x00);
798 cp_write(sd, 0xa7, 0x00);
799 cp_write(sd, 0xab, 0x00);
800 cp_write(sd, 0xac, 0x00);
801
802 switch (state->mode) {
803 case ADV7604_MODE_COMP:
804 case ADV7604_MODE_GR:
805 err = find_and_set_predefined_video_timings(sd,
806 0x01, adv7604_prim_mode_comp, timings);
807 if (err)
808 err = find_and_set_predefined_video_timings(sd,
809 0x02, adv7604_prim_mode_gr, timings);
810 break;
811 case ADV7604_MODE_HDMI:
812 err = find_and_set_predefined_video_timings(sd,
813 0x05, adv7604_prim_mode_hdmi_comp, timings);
814 if (err)
815 err = find_and_set_predefined_video_timings(sd,
816 0x06, adv7604_prim_mode_hdmi_gr, timings);
817 break;
818 default:
819 v4l2_dbg(2, debug, sd, "%s: Unknown mode %d\n",
820 __func__, state->mode);
821 err = -1;
822 break;
823 }
824
825
826 return err;
827}
828
829static void configure_custom_video_timings(struct v4l2_subdev *sd,
830 const struct v4l2_bt_timings *bt)
831{
832 struct adv7604_state *state = to_state(sd);
Hans Verkuil54450f52012-07-18 05:45:16 -0300833 struct i2c_client *client = v4l2_get_subdevdata(sd);
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300834 u32 width = htotal(bt);
835 u32 height = vtotal(bt);
836 u16 cp_start_sav = bt->hsync + bt->hbackporch - 4;
837 u16 cp_start_eav = width - bt->hfrontporch;
838 u16 cp_start_vbi = height - bt->vfrontporch;
839 u16 cp_end_vbi = bt->vsync + bt->vbackporch;
840 u16 ch1_fr_ll = (((u32)bt->pixelclock / 100) > 0) ?
841 ((width * (ADV7604_fsc / 100)) / ((u32)bt->pixelclock / 100)) : 0;
842 const u8 pll[2] = {
843 0xc0 | ((width >> 8) & 0x1f),
844 width & 0xff
845 };
Hans Verkuil54450f52012-07-18 05:45:16 -0300846
847 v4l2_dbg(2, debug, sd, "%s\n", __func__);
848
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300849 switch (state->mode) {
850 case ADV7604_MODE_COMP:
851 case ADV7604_MODE_GR:
852 /* auto graphics */
853 io_write(sd, 0x00, 0x07); /* video std */
854 io_write(sd, 0x01, 0x02); /* prim mode */
855 /* enable embedded syncs for auto graphics mode */
856 cp_write_and_or(sd, 0x81, 0xef, 0x10);
Hans Verkuil54450f52012-07-18 05:45:16 -0300857
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300858 /* Should only be set in auto-graphics mode [REF_02, p. 91-92] */
Hans Verkuil54450f52012-07-18 05:45:16 -0300859 /* setup PLL_DIV_MAN_EN and PLL_DIV_RATIO */
860 /* IO-map reg. 0x16 and 0x17 should be written in sequence */
861 if (adv_smbus_write_i2c_block_data(client, 0x16, 2, pll)) {
862 v4l2_err(sd, "writing to reg 0x16 and 0x17 failed\n");
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300863 break;
Hans Verkuil54450f52012-07-18 05:45:16 -0300864 }
865
866 /* active video - horizontal timing */
Hans Verkuil54450f52012-07-18 05:45:16 -0300867 cp_write(sd, 0xa2, (cp_start_sav >> 4) & 0xff);
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300868 cp_write(sd, 0xa3, ((cp_start_sav & 0x0f) << 4) |
869 ((cp_start_eav >> 8) & 0x0f));
Hans Verkuil54450f52012-07-18 05:45:16 -0300870 cp_write(sd, 0xa4, cp_start_eav & 0xff);
871
872 /* active video - vertical timing */
Hans Verkuil54450f52012-07-18 05:45:16 -0300873 cp_write(sd, 0xa5, (cp_start_vbi >> 4) & 0xff);
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300874 cp_write(sd, 0xa6, ((cp_start_vbi & 0xf) << 4) |
875 ((cp_end_vbi >> 8) & 0xf));
Hans Verkuil54450f52012-07-18 05:45:16 -0300876 cp_write(sd, 0xa7, cp_end_vbi & 0xff);
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300877 break;
878 case ADV7604_MODE_HDMI:
879 /* set default prim_mode/vid_std for HDMI
880 accoring to [REF_03, c. 4.2] */
881 io_write(sd, 0x00, 0x02); /* video std */
882 io_write(sd, 0x01, 0x06); /* prim mode */
883 break;
884 default:
885 v4l2_dbg(2, debug, sd, "%s: Unknown mode %d\n",
886 __func__, state->mode);
887 break;
Hans Verkuil54450f52012-07-18 05:45:16 -0300888 }
Hans Verkuil54450f52012-07-18 05:45:16 -0300889
Hans Verkuilccbd5bc2012-10-16 10:02:05 -0300890 cp_write(sd, 0x8f, (ch1_fr_ll >> 8) & 0x7);
891 cp_write(sd, 0x90, ch1_fr_ll & 0xff);
892 cp_write(sd, 0xab, (height >> 4) & 0xff);
893 cp_write(sd, 0xac, (height & 0x0f) << 4);
894}
Hans Verkuil54450f52012-07-18 05:45:16 -0300895
896static void set_rgb_quantization_range(struct v4l2_subdev *sd)
897{
898 struct adv7604_state *state = to_state(sd);
899
900 switch (state->rgb_quantization_range) {
901 case V4L2_DV_RGB_RANGE_AUTO:
902 /* automatic */
Hans Verkuil6b0d5d32012-10-16 06:40:45 -0300903 if (DIGITAL_INPUT && !(hdmi_read(sd, 0x05) & 0x80)) {
Hans Verkuil54450f52012-07-18 05:45:16 -0300904 /* receiving DVI-D signal */
905
906 /* ADV7604 selects RGB limited range regardless of
907 input format (CE/IT) in automatic mode */
908 if (state->timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
909 /* RGB limited range (16-235) */
910 io_write_and_or(sd, 0x02, 0x0f, 0x00);
911
912 } else {
913 /* RGB full range (0-255) */
914 io_write_and_or(sd, 0x02, 0x0f, 0x10);
915 }
Hans Verkuil6b0d5d32012-10-16 06:40:45 -0300916 } else {
917 /* receiving HDMI or analog signal, set automode */
918 io_write_and_or(sd, 0x02, 0x0f, 0xf0);
Hans Verkuil54450f52012-07-18 05:45:16 -0300919 }
920 break;
921 case V4L2_DV_RGB_RANGE_LIMITED:
922 /* RGB limited range (16-235) */
923 io_write_and_or(sd, 0x02, 0x0f, 0x00);
924 break;
925 case V4L2_DV_RGB_RANGE_FULL:
926 /* RGB full range (0-255) */
927 io_write_and_or(sd, 0x02, 0x0f, 0x10);
928 break;
929 }
930}
931
932
933static int adv7604_s_ctrl(struct v4l2_ctrl *ctrl)
934{
935 struct v4l2_subdev *sd = to_sd(ctrl);
936 struct adv7604_state *state = to_state(sd);
937
938 switch (ctrl->id) {
939 case V4L2_CID_BRIGHTNESS:
940 cp_write(sd, 0x3c, ctrl->val);
941 return 0;
942 case V4L2_CID_CONTRAST:
943 cp_write(sd, 0x3a, ctrl->val);
944 return 0;
945 case V4L2_CID_SATURATION:
946 cp_write(sd, 0x3b, ctrl->val);
947 return 0;
948 case V4L2_CID_HUE:
949 cp_write(sd, 0x3d, ctrl->val);
950 return 0;
951 case V4L2_CID_DV_RX_RGB_RANGE:
952 state->rgb_quantization_range = ctrl->val;
953 set_rgb_quantization_range(sd);
954 return 0;
955 case V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE:
956 /* Set the analog sampling phase. This is needed to find the
957 best sampling phase for analog video: an application or
958 driver has to try a number of phases and analyze the picture
959 quality before settling on the best performing phase. */
960 afe_write(sd, 0xc8, ctrl->val);
961 return 0;
962 case V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL:
963 /* Use the default blue color for free running mode,
964 or supply your own. */
965 cp_write_and_or(sd, 0xbf, ~0x04, (ctrl->val << 2));
966 return 0;
967 case V4L2_CID_ADV_RX_FREE_RUN_COLOR:
968 cp_write(sd, 0xc0, (ctrl->val & 0xff0000) >> 16);
969 cp_write(sd, 0xc1, (ctrl->val & 0x00ff00) >> 8);
970 cp_write(sd, 0xc2, (u8)(ctrl->val & 0x0000ff));
971 return 0;
972 }
973 return -EINVAL;
974}
975
Hans Verkuil54450f52012-07-18 05:45:16 -0300976/* ----------------------------------------------------------------------- */
977
978static inline bool no_power(struct v4l2_subdev *sd)
979{
980 /* Entire chip or CP powered off */
981 return io_read(sd, 0x0c) & 0x24;
982}
983
984static inline bool no_signal_tmds(struct v4l2_subdev *sd)
985{
986 /* TODO port B, C and D */
987 return !(io_read(sd, 0x6a) & 0x10);
988}
989
990static inline bool no_lock_tmds(struct v4l2_subdev *sd)
991{
992 return (io_read(sd, 0x6a) & 0xe0) != 0xe0;
993}
994
Martin Buggebb88f322013-08-14 08:52:46 -0300995static inline bool is_hdmi(struct v4l2_subdev *sd)
996{
997 return hdmi_read(sd, 0x05) & 0x80;
998}
999
Hans Verkuil54450f52012-07-18 05:45:16 -03001000static inline bool no_lock_sspd(struct v4l2_subdev *sd)
1001{
1002 /* TODO channel 2 */
1003 return ((cp_read(sd, 0xb5) & 0xd0) != 0xd0);
1004}
1005
1006static inline bool no_lock_stdi(struct v4l2_subdev *sd)
1007{
1008 /* TODO channel 2 */
1009 return !(cp_read(sd, 0xb1) & 0x80);
1010}
1011
1012static inline bool no_signal(struct v4l2_subdev *sd)
1013{
1014 struct adv7604_state *state = to_state(sd);
1015 bool ret;
1016
1017 ret = no_power(sd);
1018
1019 ret |= no_lock_stdi(sd);
1020 ret |= no_lock_sspd(sd);
1021
1022 if (DIGITAL_INPUT) {
1023 ret |= no_lock_tmds(sd);
1024 ret |= no_signal_tmds(sd);
1025 }
1026
1027 return ret;
1028}
1029
1030static inline bool no_lock_cp(struct v4l2_subdev *sd)
1031{
1032 /* CP has detected a non standard number of lines on the incoming
1033 video compared to what it is configured to receive by s_dv_timings */
1034 return io_read(sd, 0x12) & 0x01;
1035}
1036
1037static int adv7604_g_input_status(struct v4l2_subdev *sd, u32 *status)
1038{
1039 struct adv7604_state *state = to_state(sd);
1040
1041 *status = 0;
1042 *status |= no_power(sd) ? V4L2_IN_ST_NO_POWER : 0;
1043 *status |= no_signal(sd) ? V4L2_IN_ST_NO_SIGNAL : 0;
1044 if (no_lock_cp(sd))
1045 *status |= DIGITAL_INPUT ? V4L2_IN_ST_NO_SYNC : V4L2_IN_ST_NO_H_LOCK;
1046
1047 v4l2_dbg(1, debug, sd, "%s: status = 0x%x\n", __func__, *status);
1048
1049 return 0;
1050}
1051
1052/* ----------------------------------------------------------------------- */
1053
1054static void adv7604_print_timings(struct v4l2_subdev *sd,
1055 struct v4l2_dv_timings *timings, const char *txt, bool detailed)
1056{
1057 struct v4l2_bt_timings *bt = &timings->bt;
1058 u32 htot, vtot;
1059
1060 if (timings->type != V4L2_DV_BT_656_1120)
1061 return;
1062
1063 htot = htotal(bt);
1064 vtot = vtotal(bt);
1065
1066 v4l2_info(sd, "%s %dx%d%s%d (%dx%d)",
1067 txt, bt->width, bt->height, bt->interlaced ? "i" : "p",
1068 (htot * vtot) > 0 ? ((u32)bt->pixelclock /
1069 (htot * vtot)) : 0,
1070 htot, vtot);
1071
1072 if (detailed) {
1073 v4l2_info(sd, " horizontal: fp = %d, %ssync = %d, bp = %d\n",
1074 bt->hfrontporch,
1075 (bt->polarities & V4L2_DV_HSYNC_POS_POL) ? "+" : "-",
1076 bt->hsync, bt->hbackporch);
1077 v4l2_info(sd, " vertical: fp = %d, %ssync = %d, bp = %d\n",
1078 bt->vfrontporch,
1079 (bt->polarities & V4L2_DV_VSYNC_POS_POL) ? "+" : "-",
1080 bt->vsync, bt->vbackporch);
1081 v4l2_info(sd, " pixelclock: %lld, flags: 0x%x, standards: 0x%x\n",
1082 bt->pixelclock, bt->flags, bt->standards);
1083 }
1084}
1085
1086struct stdi_readback {
1087 u16 bl, lcf, lcvs;
1088 u8 hs_pol, vs_pol;
1089 bool interlaced;
1090};
1091
1092static int stdi2dv_timings(struct v4l2_subdev *sd,
1093 struct stdi_readback *stdi,
1094 struct v4l2_dv_timings *timings)
1095{
1096 struct adv7604_state *state = to_state(sd);
1097 u32 hfreq = (ADV7604_fsc * 8) / stdi->bl;
1098 u32 pix_clk;
1099 int i;
1100
1101 for (i = 0; adv7604_timings[i].bt.height; i++) {
1102 if (vtotal(&adv7604_timings[i].bt) != stdi->lcf + 1)
1103 continue;
1104 if (adv7604_timings[i].bt.vsync != stdi->lcvs)
1105 continue;
1106
1107 pix_clk = hfreq * htotal(&adv7604_timings[i].bt);
1108
1109 if ((pix_clk < adv7604_timings[i].bt.pixelclock + 1000000) &&
1110 (pix_clk > adv7604_timings[i].bt.pixelclock - 1000000)) {
1111 *timings = adv7604_timings[i];
1112 return 0;
1113 }
1114 }
1115
1116 if (v4l2_detect_cvt(stdi->lcf + 1, hfreq, stdi->lcvs,
1117 (stdi->hs_pol == '+' ? V4L2_DV_HSYNC_POS_POL : 0) |
1118 (stdi->vs_pol == '+' ? V4L2_DV_VSYNC_POS_POL : 0),
1119 timings))
1120 return 0;
1121 if (v4l2_detect_gtf(stdi->lcf + 1, hfreq, stdi->lcvs,
1122 (stdi->hs_pol == '+' ? V4L2_DV_HSYNC_POS_POL : 0) |
1123 (stdi->vs_pol == '+' ? V4L2_DV_VSYNC_POS_POL : 0),
1124 state->aspect_ratio, timings))
1125 return 0;
1126
Hans Verkuilccbd5bc2012-10-16 10:02:05 -03001127 v4l2_dbg(2, debug, sd,
1128 "%s: No format candidate found for lcvs = %d, lcf=%d, bl = %d, %chsync, %cvsync\n",
1129 __func__, stdi->lcvs, stdi->lcf, stdi->bl,
1130 stdi->hs_pol, stdi->vs_pol);
Hans Verkuil54450f52012-07-18 05:45:16 -03001131 return -1;
1132}
1133
1134static int read_stdi(struct v4l2_subdev *sd, struct stdi_readback *stdi)
1135{
1136 if (no_lock_stdi(sd) || no_lock_sspd(sd)) {
1137 v4l2_dbg(2, debug, sd, "%s: STDI and/or SSPD not locked\n", __func__);
1138 return -1;
1139 }
1140
1141 /* read STDI */
1142 stdi->bl = ((cp_read(sd, 0xb1) & 0x3f) << 8) | cp_read(sd, 0xb2);
1143 stdi->lcf = ((cp_read(sd, 0xb3) & 0x7) << 8) | cp_read(sd, 0xb4);
1144 stdi->lcvs = cp_read(sd, 0xb3) >> 3;
1145 stdi->interlaced = io_read(sd, 0x12) & 0x10;
1146
1147 /* read SSPD */
1148 if ((cp_read(sd, 0xb5) & 0x03) == 0x01) {
1149 stdi->hs_pol = ((cp_read(sd, 0xb5) & 0x10) ?
1150 ((cp_read(sd, 0xb5) & 0x08) ? '+' : '-') : 'x');
1151 stdi->vs_pol = ((cp_read(sd, 0xb5) & 0x40) ?
1152 ((cp_read(sd, 0xb5) & 0x20) ? '+' : '-') : 'x');
1153 } else {
1154 stdi->hs_pol = 'x';
1155 stdi->vs_pol = 'x';
1156 }
1157
1158 if (no_lock_stdi(sd) || no_lock_sspd(sd)) {
1159 v4l2_dbg(2, debug, sd,
1160 "%s: signal lost during readout of STDI/SSPD\n", __func__);
1161 return -1;
1162 }
1163
1164 if (stdi->lcf < 239 || stdi->bl < 8 || stdi->bl == 0x3fff) {
1165 v4l2_dbg(2, debug, sd, "%s: invalid signal\n", __func__);
1166 memset(stdi, 0, sizeof(struct stdi_readback));
1167 return -1;
1168 }
1169
1170 v4l2_dbg(2, debug, sd,
1171 "%s: lcf (frame height - 1) = %d, bl = %d, lcvs (vsync) = %d, %chsync, %cvsync, %s\n",
1172 __func__, stdi->lcf, stdi->bl, stdi->lcvs,
1173 stdi->hs_pol, stdi->vs_pol,
1174 stdi->interlaced ? "interlaced" : "progressive");
1175
1176 return 0;
1177}
1178
1179static int adv7604_enum_dv_timings(struct v4l2_subdev *sd,
1180 struct v4l2_enum_dv_timings *timings)
1181{
1182 if (timings->index >= ARRAY_SIZE(adv7604_timings) - 1)
1183 return -EINVAL;
1184 memset(timings->reserved, 0, sizeof(timings->reserved));
1185 timings->timings = adv7604_timings[timings->index];
1186 return 0;
1187}
1188
1189static int adv7604_dv_timings_cap(struct v4l2_subdev *sd,
1190 struct v4l2_dv_timings_cap *cap)
1191{
1192 struct adv7604_state *state = to_state(sd);
1193
1194 cap->type = V4L2_DV_BT_656_1120;
1195 cap->bt.max_width = 1920;
1196 cap->bt.max_height = 1200;
1197 cap->bt.min_pixelclock = 27000000;
1198 if (DIGITAL_INPUT)
1199 cap->bt.max_pixelclock = 225000000;
1200 else
1201 cap->bt.max_pixelclock = 170000000;
1202 cap->bt.standards = V4L2_DV_BT_STD_CEA861 | V4L2_DV_BT_STD_DMT |
1203 V4L2_DV_BT_STD_GTF | V4L2_DV_BT_STD_CVT;
1204 cap->bt.capabilities = V4L2_DV_BT_CAP_PROGRESSIVE |
1205 V4L2_DV_BT_CAP_REDUCED_BLANKING | V4L2_DV_BT_CAP_CUSTOM;
1206 return 0;
1207}
1208
1209/* Fill the optional fields .standards and .flags in struct v4l2_dv_timings
1210 if the format is listed in adv7604_timings[] */
1211static void adv7604_fill_optional_dv_timings_fields(struct v4l2_subdev *sd,
1212 struct v4l2_dv_timings *timings)
1213{
1214 struct adv7604_state *state = to_state(sd);
1215 int i;
1216
1217 for (i = 0; adv7604_timings[i].bt.width; i++) {
1218 if (v4l_match_dv_timings(timings, &adv7604_timings[i],
1219 DIGITAL_INPUT ? 250000 : 1000000)) {
1220 *timings = adv7604_timings[i];
1221 break;
1222 }
1223 }
1224}
1225
1226static int adv7604_query_dv_timings(struct v4l2_subdev *sd,
1227 struct v4l2_dv_timings *timings)
1228{
1229 struct adv7604_state *state = to_state(sd);
1230 struct v4l2_bt_timings *bt = &timings->bt;
1231 struct stdi_readback stdi;
1232
1233 if (!timings)
1234 return -EINVAL;
1235
1236 memset(timings, 0, sizeof(struct v4l2_dv_timings));
1237
1238 if (no_signal(sd)) {
1239 v4l2_dbg(1, debug, sd, "%s: no valid signal\n", __func__);
1240 return -ENOLINK;
1241 }
1242
1243 /* read STDI */
1244 if (read_stdi(sd, &stdi)) {
1245 v4l2_dbg(1, debug, sd, "%s: STDI/SSPD not locked\n", __func__);
1246 return -ENOLINK;
1247 }
1248 bt->interlaced = stdi.interlaced ?
1249 V4L2_DV_INTERLACED : V4L2_DV_PROGRESSIVE;
1250
1251 if (DIGITAL_INPUT) {
Martin Buggebb88f322013-08-14 08:52:46 -03001252 uint32_t freq;
1253
Hans Verkuil54450f52012-07-18 05:45:16 -03001254 timings->type = V4L2_DV_BT_656_1120;
1255
1256 bt->width = (hdmi_read(sd, 0x07) & 0x0f) * 256 + hdmi_read(sd, 0x08);
1257 bt->height = (hdmi_read(sd, 0x09) & 0x0f) * 256 + hdmi_read(sd, 0x0a);
Martin Buggebb88f322013-08-14 08:52:46 -03001258 freq = (hdmi_read(sd, 0x06) * 1000000) +
Hans Verkuil54450f52012-07-18 05:45:16 -03001259 ((hdmi_read(sd, 0x3b) & 0x30) >> 4) * 250000;
Martin Buggebb88f322013-08-14 08:52:46 -03001260 if (is_hdmi(sd)) {
1261 /* adjust for deep color mode */
1262 unsigned bits_per_channel = ((hdmi_read(sd, 0x0b) & 0x60) >> 4) + 8;
1263
1264 freq = freq * 8 / bits_per_channel;
1265 }
1266 bt->pixelclock = freq;
Hans Verkuil54450f52012-07-18 05:45:16 -03001267 bt->hfrontporch = (hdmi_read(sd, 0x20) & 0x03) * 256 +
1268 hdmi_read(sd, 0x21);
1269 bt->hsync = (hdmi_read(sd, 0x22) & 0x03) * 256 +
1270 hdmi_read(sd, 0x23);
1271 bt->hbackporch = (hdmi_read(sd, 0x24) & 0x03) * 256 +
1272 hdmi_read(sd, 0x25);
1273 bt->vfrontporch = ((hdmi_read(sd, 0x2a) & 0x1f) * 256 +
1274 hdmi_read(sd, 0x2b)) / 2;
1275 bt->vsync = ((hdmi_read(sd, 0x2e) & 0x1f) * 256 +
1276 hdmi_read(sd, 0x2f)) / 2;
1277 bt->vbackporch = ((hdmi_read(sd, 0x32) & 0x1f) * 256 +
1278 hdmi_read(sd, 0x33)) / 2;
1279 bt->polarities = ((hdmi_read(sd, 0x05) & 0x10) ? V4L2_DV_VSYNC_POS_POL : 0) |
1280 ((hdmi_read(sd, 0x05) & 0x20) ? V4L2_DV_HSYNC_POS_POL : 0);
1281 if (bt->interlaced == V4L2_DV_INTERLACED) {
1282 bt->height += (hdmi_read(sd, 0x0b) & 0x0f) * 256 +
1283 hdmi_read(sd, 0x0c);
1284 bt->il_vfrontporch = ((hdmi_read(sd, 0x2c) & 0x1f) * 256 +
1285 hdmi_read(sd, 0x2d)) / 2;
1286 bt->il_vsync = ((hdmi_read(sd, 0x30) & 0x1f) * 256 +
1287 hdmi_read(sd, 0x31)) / 2;
1288 bt->vbackporch = ((hdmi_read(sd, 0x34) & 0x1f) * 256 +
1289 hdmi_read(sd, 0x35)) / 2;
1290 }
1291 adv7604_fill_optional_dv_timings_fields(sd, timings);
1292 } else {
1293 /* find format
Hans Verkuil80939642012-10-16 05:46:21 -03001294 * Since LCVS values are inaccurate [REF_03, p. 275-276],
Hans Verkuil54450f52012-07-18 05:45:16 -03001295 * stdi2dv_timings() is called with lcvs +-1 if the first attempt fails.
1296 */
1297 if (!stdi2dv_timings(sd, &stdi, timings))
1298 goto found;
1299 stdi.lcvs += 1;
1300 v4l2_dbg(1, debug, sd, "%s: lcvs + 1 = %d\n", __func__, stdi.lcvs);
1301 if (!stdi2dv_timings(sd, &stdi, timings))
1302 goto found;
1303 stdi.lcvs -= 2;
1304 v4l2_dbg(1, debug, sd, "%s: lcvs - 1 = %d\n", __func__, stdi.lcvs);
1305 if (stdi2dv_timings(sd, &stdi, timings)) {
Hans Verkuilcf9afb12012-10-16 10:12:55 -03001306 /*
1307 * The STDI block may measure wrong values, especially
1308 * for lcvs and lcf. If the driver can not find any
1309 * valid timing, the STDI block is restarted to measure
1310 * the video timings again. The function will return an
1311 * error, but the restart of STDI will generate a new
1312 * STDI interrupt and the format detection process will
1313 * restart.
1314 */
1315 if (state->restart_stdi_once) {
1316 v4l2_dbg(1, debug, sd, "%s: restart STDI\n", __func__);
1317 /* TODO restart STDI for Sync Channel 2 */
1318 /* enter one-shot mode */
1319 cp_write_and_or(sd, 0x86, 0xf9, 0x00);
1320 /* trigger STDI restart */
1321 cp_write_and_or(sd, 0x86, 0xf9, 0x04);
1322 /* reset to continuous mode */
1323 cp_write_and_or(sd, 0x86, 0xf9, 0x02);
1324 state->restart_stdi_once = false;
1325 return -ENOLINK;
1326 }
Hans Verkuil54450f52012-07-18 05:45:16 -03001327 v4l2_dbg(1, debug, sd, "%s: format not supported\n", __func__);
1328 return -ERANGE;
1329 }
Hans Verkuilcf9afb12012-10-16 10:12:55 -03001330 state->restart_stdi_once = true;
Hans Verkuil54450f52012-07-18 05:45:16 -03001331 }
1332found:
1333
1334 if (no_signal(sd)) {
1335 v4l2_dbg(1, debug, sd, "%s: signal lost during readout\n", __func__);
1336 memset(timings, 0, sizeof(struct v4l2_dv_timings));
1337 return -ENOLINK;
1338 }
1339
1340 if ((!DIGITAL_INPUT && bt->pixelclock > 170000000) ||
1341 (DIGITAL_INPUT && bt->pixelclock > 225000000)) {
1342 v4l2_dbg(1, debug, sd, "%s: pixelclock out of range %d\n",
1343 __func__, (u32)bt->pixelclock);
1344 return -ERANGE;
1345 }
1346
1347 if (debug > 1)
1348 adv7604_print_timings(sd, timings,
1349 "adv7604_query_dv_timings:", true);
1350
1351 return 0;
1352}
1353
1354static int adv7604_s_dv_timings(struct v4l2_subdev *sd,
1355 struct v4l2_dv_timings *timings)
1356{
1357 struct adv7604_state *state = to_state(sd);
1358 struct v4l2_bt_timings *bt;
Hans Verkuilccbd5bc2012-10-16 10:02:05 -03001359 int err;
Hans Verkuil54450f52012-07-18 05:45:16 -03001360
1361 if (!timings)
1362 return -EINVAL;
1363
1364 bt = &timings->bt;
1365
1366 if ((!DIGITAL_INPUT && bt->pixelclock > 170000000) ||
1367 (DIGITAL_INPUT && bt->pixelclock > 225000000)) {
1368 v4l2_dbg(1, debug, sd, "%s: pixelclock out of range %d\n",
1369 __func__, (u32)bt->pixelclock);
1370 return -ERANGE;
1371 }
Hans Verkuilccbd5bc2012-10-16 10:02:05 -03001372
Hans Verkuil54450f52012-07-18 05:45:16 -03001373 adv7604_fill_optional_dv_timings_fields(sd, timings);
1374
1375 state->timings = *timings;
1376
Hans Verkuilccbd5bc2012-10-16 10:02:05 -03001377 cp_write(sd, 0x91, bt->interlaced ? 0x50 : 0x10);
1378
1379 /* Use prim_mode and vid_std when available */
1380 err = configure_predefined_video_timings(sd, timings);
1381 if (err) {
1382 /* custom settings when the video format
1383 does not have prim_mode/vid_std */
1384 configure_custom_video_timings(sd, bt);
1385 }
Hans Verkuil54450f52012-07-18 05:45:16 -03001386
1387 set_rgb_quantization_range(sd);
1388
1389
1390 if (debug > 1)
1391 adv7604_print_timings(sd, timings,
1392 "adv7604_s_dv_timings:", true);
1393 return 0;
1394}
1395
1396static int adv7604_g_dv_timings(struct v4l2_subdev *sd,
1397 struct v4l2_dv_timings *timings)
1398{
1399 struct adv7604_state *state = to_state(sd);
1400
1401 *timings = state->timings;
1402 return 0;
1403}
1404
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001405static void enable_input(struct v4l2_subdev *sd)
Hans Verkuil54450f52012-07-18 05:45:16 -03001406{
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001407 struct adv7604_state *state = to_state(sd);
1408
1409 switch (state->mode) {
1410 case ADV7604_MODE_COMP:
1411 case ADV7604_MODE_GR:
Hans Verkuil54450f52012-07-18 05:45:16 -03001412 /* enable */
1413 io_write(sd, 0x15, 0xb0); /* Disable Tristate of Pins (no audio) */
1414 break;
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001415 case ADV7604_MODE_HDMI:
Hans Verkuil54450f52012-07-18 05:45:16 -03001416 /* enable */
1417 hdmi_write(sd, 0x1a, 0x0a); /* Unmute audio */
1418 hdmi_write(sd, 0x01, 0x00); /* Enable HDMI clock terminators */
1419 io_write(sd, 0x15, 0xa0); /* Disable Tristate of Pins */
1420 break;
1421 default:
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001422 v4l2_dbg(2, debug, sd, "%s: Unknown mode %d\n",
1423 __func__, state->mode);
Hans Verkuil54450f52012-07-18 05:45:16 -03001424 break;
1425 }
1426}
1427
1428static void disable_input(struct v4l2_subdev *sd)
1429{
1430 /* disable */
1431 io_write(sd, 0x15, 0xbe); /* Tristate all outputs from video core */
1432 hdmi_write(sd, 0x1a, 0x1a); /* Mute audio */
1433 hdmi_write(sd, 0x01, 0x78); /* Disable HDMI clock terminators */
1434}
1435
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001436static void select_input(struct v4l2_subdev *sd)
Hans Verkuil54450f52012-07-18 05:45:16 -03001437{
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001438 struct adv7604_state *state = to_state(sd);
Hans Verkuil54450f52012-07-18 05:45:16 -03001439
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001440 switch (state->mode) {
1441 case ADV7604_MODE_COMP:
1442 case ADV7604_MODE_GR:
Hans Verkuil54450f52012-07-18 05:45:16 -03001443 /* reset ADI recommended settings for HDMI: */
1444 /* "ADV7604 Register Settings Recommendations (rev. 2.5, June 2010)" p. 4. */
1445 hdmi_write(sd, 0x0d, 0x04); /* HDMI filter optimization */
1446 hdmi_write(sd, 0x3d, 0x00); /* DDC bus active pull-up control */
1447 hdmi_write(sd, 0x3e, 0x74); /* TMDS PLL optimization */
1448 hdmi_write(sd, 0x4e, 0x3b); /* TMDS PLL optimization */
1449 hdmi_write(sd, 0x57, 0x74); /* TMDS PLL optimization */
1450 hdmi_write(sd, 0x58, 0x63); /* TMDS PLL optimization */
1451 hdmi_write(sd, 0x8d, 0x18); /* equaliser */
1452 hdmi_write(sd, 0x8e, 0x34); /* equaliser */
1453 hdmi_write(sd, 0x93, 0x88); /* equaliser */
1454 hdmi_write(sd, 0x94, 0x2e); /* equaliser */
1455 hdmi_write(sd, 0x96, 0x00); /* enable automatic EQ changing */
1456
1457 afe_write(sd, 0x00, 0x08); /* power up ADC */
1458 afe_write(sd, 0x01, 0x06); /* power up Analog Front End */
1459 afe_write(sd, 0xc8, 0x00); /* phase control */
1460
1461 /* set ADI recommended settings for digitizer */
1462 /* "ADV7604 Register Settings Recommendations (rev. 2.5, June 2010)" p. 17. */
1463 afe_write(sd, 0x12, 0x7b); /* ADC noise shaping filter controls */
1464 afe_write(sd, 0x0c, 0x1f); /* CP core gain controls */
1465 cp_write(sd, 0x3e, 0x04); /* CP core pre-gain control */
1466 cp_write(sd, 0xc3, 0x39); /* CP coast control. Graphics mode */
1467 cp_write(sd, 0x40, 0x5c); /* CP core pre-gain control. Graphics mode */
1468 break;
1469
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001470 case ADV7604_MODE_HDMI:
Hans Verkuil54450f52012-07-18 05:45:16 -03001471 /* set ADI recommended settings for HDMI: */
1472 /* "ADV7604 Register Settings Recommendations (rev. 2.5, June 2010)" p. 4. */
1473 hdmi_write(sd, 0x0d, 0x84); /* HDMI filter optimization */
1474 hdmi_write(sd, 0x3d, 0x10); /* DDC bus active pull-up control */
1475 hdmi_write(sd, 0x3e, 0x39); /* TMDS PLL optimization */
1476 hdmi_write(sd, 0x4e, 0x3b); /* TMDS PLL optimization */
1477 hdmi_write(sd, 0x57, 0xb6); /* TMDS PLL optimization */
1478 hdmi_write(sd, 0x58, 0x03); /* TMDS PLL optimization */
1479 hdmi_write(sd, 0x8d, 0x18); /* equaliser */
1480 hdmi_write(sd, 0x8e, 0x34); /* equaliser */
1481 hdmi_write(sd, 0x93, 0x8b); /* equaliser */
1482 hdmi_write(sd, 0x94, 0x2d); /* equaliser */
1483 hdmi_write(sd, 0x96, 0x01); /* enable automatic EQ changing */
1484
1485 afe_write(sd, 0x00, 0xff); /* power down ADC */
1486 afe_write(sd, 0x01, 0xfe); /* power down Analog Front End */
1487 afe_write(sd, 0xc8, 0x40); /* phase control */
1488
1489 /* reset ADI recommended settings for digitizer */
1490 /* "ADV7604 Register Settings Recommendations (rev. 2.5, June 2010)" p. 17. */
1491 afe_write(sd, 0x12, 0xfb); /* ADC noise shaping filter controls */
1492 afe_write(sd, 0x0c, 0x0d); /* CP core gain controls */
1493 cp_write(sd, 0x3e, 0x00); /* CP core pre-gain control */
1494 cp_write(sd, 0xc3, 0x39); /* CP coast control. Graphics mode */
1495 cp_write(sd, 0x40, 0x80); /* CP core pre-gain control. Graphics mode */
1496
1497 break;
1498 default:
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001499 v4l2_dbg(2, debug, sd, "%s: Unknown mode %d\n",
1500 __func__, state->mode);
Hans Verkuil54450f52012-07-18 05:45:16 -03001501 break;
1502 }
1503}
1504
1505static int adv7604_s_routing(struct v4l2_subdev *sd,
1506 u32 input, u32 output, u32 config)
1507{
1508 struct adv7604_state *state = to_state(sd);
1509
1510 v4l2_dbg(2, debug, sd, "%s: input %d", __func__, input);
1511
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001512 state->mode = input;
Hans Verkuil54450f52012-07-18 05:45:16 -03001513
1514 disable_input(sd);
1515
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001516 select_input(sd);
Hans Verkuil54450f52012-07-18 05:45:16 -03001517
Hans Verkuil6b0d5d32012-10-16 06:40:45 -03001518 enable_input(sd);
Hans Verkuil54450f52012-07-18 05:45:16 -03001519
1520 return 0;
1521}
1522
1523static int adv7604_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned int index,
1524 enum v4l2_mbus_pixelcode *code)
1525{
1526 if (index)
1527 return -EINVAL;
1528 /* Good enough for now */
1529 *code = V4L2_MBUS_FMT_FIXED;
1530 return 0;
1531}
1532
1533static int adv7604_g_mbus_fmt(struct v4l2_subdev *sd,
1534 struct v4l2_mbus_framefmt *fmt)
1535{
1536 struct adv7604_state *state = to_state(sd);
1537
1538 fmt->width = state->timings.bt.width;
1539 fmt->height = state->timings.bt.height;
1540 fmt->code = V4L2_MBUS_FMT_FIXED;
1541 fmt->field = V4L2_FIELD_NONE;
1542 if (state->timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
1543 fmt->colorspace = (state->timings.bt.height <= 576) ?
1544 V4L2_COLORSPACE_SMPTE170M : V4L2_COLORSPACE_REC709;
1545 }
1546 return 0;
1547}
1548
1549static int adv7604_isr(struct v4l2_subdev *sd, u32 status, bool *handled)
1550{
1551 struct adv7604_state *state = to_state(sd);
1552 u8 fmt_change, fmt_change_digital, tx_5v;
Mats Randgaard25a64ac2013-08-14 07:58:45 -03001553 u32 input_status;
Hans Verkuil54450f52012-07-18 05:45:16 -03001554
1555 /* format change */
1556 fmt_change = io_read(sd, 0x43) & 0x98;
1557 if (fmt_change)
1558 io_write(sd, 0x44, fmt_change);
1559 fmt_change_digital = DIGITAL_INPUT ? (io_read(sd, 0x6b) & 0xc0) : 0;
1560 if (fmt_change_digital)
1561 io_write(sd, 0x6c, fmt_change_digital);
1562 if (fmt_change || fmt_change_digital) {
1563 v4l2_dbg(1, debug, sd,
Mats Randgaard25a64ac2013-08-14 07:58:45 -03001564 "%s: fmt_change = 0x%x, fmt_change_digital = 0x%x\n",
Hans Verkuil54450f52012-07-18 05:45:16 -03001565 __func__, fmt_change, fmt_change_digital);
Mats Randgaard25a64ac2013-08-14 07:58:45 -03001566
1567 adv7604_g_input_status(sd, &input_status);
1568 if (input_status != state->prev_input_status) {
1569 v4l2_dbg(1, debug, sd,
1570 "%s: input_status = 0x%x, prev_input_status = 0x%x\n",
1571 __func__, input_status, state->prev_input_status);
1572 state->prev_input_status = input_status;
1573 v4l2_subdev_notify(sd, ADV7604_FMT_CHANGE, NULL);
1574 }
1575
Hans Verkuil54450f52012-07-18 05:45:16 -03001576 if (handled)
1577 *handled = true;
1578 }
1579 /* tx 5v detect */
1580 tx_5v = io_read(sd, 0x70) & 0x10;
1581 if (tx_5v) {
1582 v4l2_dbg(1, debug, sd, "%s: tx_5v: 0x%x\n", __func__, tx_5v);
1583 io_write(sd, 0x71, tx_5v);
1584 adv7604_s_detect_tx_5v_ctrl(sd);
1585 if (handled)
1586 *handled = true;
1587 }
1588 return 0;
1589}
1590
1591static int adv7604_get_edid(struct v4l2_subdev *sd, struct v4l2_subdev_edid *edid)
1592{
1593 struct adv7604_state *state = to_state(sd);
1594
1595 if (edid->pad != 0)
1596 return -EINVAL;
1597 if (edid->blocks == 0)
1598 return -EINVAL;
1599 if (edid->start_block >= state->edid_blocks)
1600 return -EINVAL;
1601 if (edid->start_block + edid->blocks > state->edid_blocks)
1602 edid->blocks = state->edid_blocks - edid->start_block;
1603 if (!edid->edid)
1604 return -EINVAL;
1605 memcpy(edid->edid + edid->start_block * 128,
1606 state->edid + edid->start_block * 128,
1607 edid->blocks * 128);
1608 return 0;
1609}
1610
1611static int adv7604_set_edid(struct v4l2_subdev *sd, struct v4l2_subdev_edid *edid)
1612{
1613 struct adv7604_state *state = to_state(sd);
1614 int err;
1615
1616 if (edid->pad != 0)
1617 return -EINVAL;
1618 if (edid->start_block != 0)
1619 return -EINVAL;
1620 if (edid->blocks == 0) {
1621 /* Pull down the hotplug pin */
1622 v4l2_subdev_notify(sd, ADV7604_HOTPLUG, (void *)0);
1623 /* Disables I2C access to internal EDID ram from DDC port */
1624 rep_write_and_or(sd, 0x77, 0xf0, 0x0);
1625 state->edid_blocks = 0;
1626 /* Fall back to a 16:9 aspect ratio */
1627 state->aspect_ratio.numerator = 16;
1628 state->aspect_ratio.denominator = 9;
1629 return 0;
1630 }
1631 if (edid->blocks > 2)
1632 return -E2BIG;
1633 if (!edid->edid)
1634 return -EINVAL;
1635 memcpy(state->edid, edid->edid, 128 * edid->blocks);
1636 state->edid_blocks = edid->blocks;
1637 state->aspect_ratio = v4l2_calc_aspect_ratio(edid->edid[0x15],
1638 edid->edid[0x16]);
1639 err = edid_write_block(sd, 128 * edid->blocks, state->edid);
1640 if (err < 0)
1641 v4l2_err(sd, "error %d writing edid\n", err);
1642 return err;
1643}
1644
1645/*********** avi info frame CEA-861-E **************/
1646
1647static void print_avi_infoframe(struct v4l2_subdev *sd)
1648{
1649 int i;
1650 u8 buf[14];
1651 u8 avi_len;
1652 u8 avi_ver;
1653
Martin Buggebb88f322013-08-14 08:52:46 -03001654 if (!is_hdmi(sd)) {
Hans Verkuil54450f52012-07-18 05:45:16 -03001655 v4l2_info(sd, "receive DVI-D signal (AVI infoframe not supported)\n");
1656 return;
1657 }
1658 if (!(io_read(sd, 0x60) & 0x01)) {
1659 v4l2_info(sd, "AVI infoframe not received\n");
1660 return;
1661 }
1662
1663 if (io_read(sd, 0x83) & 0x01) {
1664 v4l2_info(sd, "AVI infoframe checksum error has occurred earlier\n");
1665 io_write(sd, 0x85, 0x01); /* clear AVI_INF_CKS_ERR_RAW */
1666 if (io_read(sd, 0x83) & 0x01) {
1667 v4l2_info(sd, "AVI infoframe checksum error still present\n");
1668 io_write(sd, 0x85, 0x01); /* clear AVI_INF_CKS_ERR_RAW */
1669 }
1670 }
1671
1672 avi_len = infoframe_read(sd, 0xe2);
1673 avi_ver = infoframe_read(sd, 0xe1);
1674 v4l2_info(sd, "AVI infoframe version %d (%d byte)\n",
1675 avi_ver, avi_len);
1676
1677 if (avi_ver != 0x02)
1678 return;
1679
1680 for (i = 0; i < 14; i++)
1681 buf[i] = infoframe_read(sd, i);
1682
1683 v4l2_info(sd,
1684 "\t%02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
1685 buf[0], buf[1], buf[2], buf[3], buf[4], buf[5], buf[6], buf[7],
1686 buf[8], buf[9], buf[10], buf[11], buf[12], buf[13]);
1687}
1688
1689static int adv7604_log_status(struct v4l2_subdev *sd)
1690{
1691 struct adv7604_state *state = to_state(sd);
1692 struct v4l2_dv_timings timings;
1693 struct stdi_readback stdi;
1694 u8 reg_io_0x02 = io_read(sd, 0x02);
1695
1696 char *csc_coeff_sel_rb[16] = {
1697 "bypassed", "YPbPr601 -> RGB", "reserved", "YPbPr709 -> RGB",
1698 "reserved", "RGB -> YPbPr601", "reserved", "RGB -> YPbPr709",
1699 "reserved", "YPbPr709 -> YPbPr601", "YPbPr601 -> YPbPr709",
1700 "reserved", "reserved", "reserved", "reserved", "manual"
1701 };
1702 char *input_color_space_txt[16] = {
1703 "RGB limited range (16-235)", "RGB full range (0-255)",
1704 "YCbCr Bt.601 (16-235)", "YCbCr Bt.709 (16-235)",
1705 "XvYCC Bt.601", "XvYCC Bt.709",
1706 "YCbCr Bt.601 (0-255)", "YCbCr Bt.709 (0-255)",
1707 "invalid", "invalid", "invalid", "invalid", "invalid",
1708 "invalid", "invalid", "automatic"
1709 };
1710 char *rgb_quantization_range_txt[] = {
1711 "Automatic",
1712 "RGB limited range (16-235)",
1713 "RGB full range (0-255)",
1714 };
Martin Buggebb88f322013-08-14 08:52:46 -03001715 char *deep_color_mode_txt[4] = {
1716 "8-bits per channel",
1717 "10-bits per channel",
1718 "12-bits per channel",
1719 "16-bits per channel (not supported)"
1720 };
Hans Verkuil54450f52012-07-18 05:45:16 -03001721
1722 v4l2_info(sd, "-----Chip status-----\n");
1723 v4l2_info(sd, "Chip power: %s\n", no_power(sd) ? "off" : "on");
1724 v4l2_info(sd, "Connector type: %s\n", state->connector_hdmi ?
1725 "HDMI" : (DIGITAL_INPUT ? "DVI-D" : "DVI-A"));
1726 v4l2_info(sd, "EDID: %s\n", ((rep_read(sd, 0x7d) & 0x01) &&
1727 (rep_read(sd, 0x77) & 0x01)) ? "enabled" : "disabled ");
1728 v4l2_info(sd, "CEC: %s\n", !!(cec_read(sd, 0x2a) & 0x01) ?
1729 "enabled" : "disabled");
1730
1731 v4l2_info(sd, "-----Signal status-----\n");
1732 v4l2_info(sd, "Cable detected (+5V power): %s\n",
1733 (io_read(sd, 0x6f) & 0x10) ? "true" : "false");
1734 v4l2_info(sd, "TMDS signal detected: %s\n",
1735 no_signal_tmds(sd) ? "false" : "true");
1736 v4l2_info(sd, "TMDS signal locked: %s\n",
1737 no_lock_tmds(sd) ? "false" : "true");
1738 v4l2_info(sd, "SSPD locked: %s\n", no_lock_sspd(sd) ? "false" : "true");
1739 v4l2_info(sd, "STDI locked: %s\n", no_lock_stdi(sd) ? "false" : "true");
1740 v4l2_info(sd, "CP locked: %s\n", no_lock_cp(sd) ? "false" : "true");
1741 v4l2_info(sd, "CP free run: %s\n",
1742 (!!(cp_read(sd, 0xff) & 0x10) ? "on" : "off"));
Hans Verkuilccbd5bc2012-10-16 10:02:05 -03001743 v4l2_info(sd, "Prim-mode = 0x%x, video std = 0x%x, v_freq = 0x%x\n",
1744 io_read(sd, 0x01) & 0x0f, io_read(sd, 0x00) & 0x3f,
1745 (io_read(sd, 0x01) & 0x70) >> 4);
Hans Verkuil54450f52012-07-18 05:45:16 -03001746
1747 v4l2_info(sd, "-----Video Timings-----\n");
1748 if (read_stdi(sd, &stdi))
1749 v4l2_info(sd, "STDI: not locked\n");
1750 else
1751 v4l2_info(sd, "STDI: lcf (frame height - 1) = %d, bl = %d, lcvs (vsync) = %d, %s, %chsync, %cvsync\n",
1752 stdi.lcf, stdi.bl, stdi.lcvs,
1753 stdi.interlaced ? "interlaced" : "progressive",
1754 stdi.hs_pol, stdi.vs_pol);
1755 if (adv7604_query_dv_timings(sd, &timings))
1756 v4l2_info(sd, "No video detected\n");
1757 else
1758 adv7604_print_timings(sd, &timings, "Detected format:", true);
1759 adv7604_print_timings(sd, &state->timings, "Configured format:", true);
1760
Mats Randgaard76eb2d32013-08-14 08:56:57 -03001761 if (no_signal(sd))
1762 return 0;
1763
Hans Verkuil54450f52012-07-18 05:45:16 -03001764 v4l2_info(sd, "-----Color space-----\n");
1765 v4l2_info(sd, "RGB quantization range ctrl: %s\n",
1766 rgb_quantization_range_txt[state->rgb_quantization_range]);
1767 v4l2_info(sd, "Input color space: %s\n",
1768 input_color_space_txt[reg_io_0x02 >> 4]);
1769 v4l2_info(sd, "Output color space: %s %s, saturator %s\n",
1770 (reg_io_0x02 & 0x02) ? "RGB" : "YCbCr",
1771 (reg_io_0x02 & 0x04) ? "(16-235)" : "(0-255)",
1772 ((reg_io_0x02 & 0x04) ^ (reg_io_0x02 & 0x01)) ?
Mats Randgaard76eb2d32013-08-14 08:56:57 -03001773 "enabled" : "disabled");
Hans Verkuil54450f52012-07-18 05:45:16 -03001774 v4l2_info(sd, "Color space conversion: %s\n",
1775 csc_coeff_sel_rb[cp_read(sd, 0xfc) >> 4]);
1776
Mats Randgaard76eb2d32013-08-14 08:56:57 -03001777 if (!DIGITAL_INPUT)
1778 return 0;
1779
1780 v4l2_info(sd, "-----%s status-----\n", is_hdmi(sd) ? "HDMI" : "DVI-D");
1781 v4l2_info(sd, "HDCP encrypted content: %s\n", (hdmi_read(sd, 0x05) & 0x40) ? "true" : "false");
1782 v4l2_info(sd, "HDCP keys read: %s%s\n",
1783 (hdmi_read(sd, 0x04) & 0x20) ? "yes" : "no",
1784 (hdmi_read(sd, 0x04) & 0x10) ? "ERROR" : "");
1785 if (!is_hdmi(sd)) {
1786 bool audio_pll_locked = hdmi_read(sd, 0x04) & 0x01;
1787 bool audio_sample_packet_detect = hdmi_read(sd, 0x18) & 0x01;
1788 bool audio_mute = io_read(sd, 0x65) & 0x40;
1789
1790 v4l2_info(sd, "Audio: pll %s, samples %s, %s\n",
1791 audio_pll_locked ? "locked" : "not locked",
1792 audio_sample_packet_detect ? "detected" : "not detected",
1793 audio_mute ? "muted" : "enabled");
1794 if (audio_pll_locked && audio_sample_packet_detect) {
1795 v4l2_info(sd, "Audio format: %s\n",
1796 (hdmi_read(sd, 0x07) & 0x20) ? "multi-channel" : "stereo");
1797 }
1798 v4l2_info(sd, "Audio CTS: %u\n", (hdmi_read(sd, 0x5b) << 12) +
1799 (hdmi_read(sd, 0x5c) << 8) +
1800 (hdmi_read(sd, 0x5d) & 0xf0));
1801 v4l2_info(sd, "Audio N: %u\n", ((hdmi_read(sd, 0x5d) & 0x0f) << 16) +
1802 (hdmi_read(sd, 0x5e) << 8) +
1803 hdmi_read(sd, 0x5f));
1804 v4l2_info(sd, "AV Mute: %s\n", (hdmi_read(sd, 0x04) & 0x40) ? "on" : "off");
1805
1806 v4l2_info(sd, "Deep color mode: %s\n", deep_color_mode_txt[(hdmi_read(sd, 0x0b) & 0x60) >> 5]);
1807
Hans Verkuil54450f52012-07-18 05:45:16 -03001808 print_avi_infoframe(sd);
1809 }
1810
1811 return 0;
1812}
1813
1814/* ----------------------------------------------------------------------- */
1815
1816static const struct v4l2_ctrl_ops adv7604_ctrl_ops = {
1817 .s_ctrl = adv7604_s_ctrl,
1818};
1819
1820static const struct v4l2_subdev_core_ops adv7604_core_ops = {
1821 .log_status = adv7604_log_status,
1822 .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
1823 .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
1824 .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
1825 .g_ctrl = v4l2_subdev_g_ctrl,
1826 .s_ctrl = v4l2_subdev_s_ctrl,
1827 .queryctrl = v4l2_subdev_queryctrl,
1828 .querymenu = v4l2_subdev_querymenu,
Hans Verkuil54450f52012-07-18 05:45:16 -03001829 .interrupt_service_routine = adv7604_isr,
1830#ifdef CONFIG_VIDEO_ADV_DEBUG
1831 .g_register = adv7604_g_register,
1832 .s_register = adv7604_s_register,
1833#endif
1834};
1835
1836static const struct v4l2_subdev_video_ops adv7604_video_ops = {
1837 .s_routing = adv7604_s_routing,
1838 .g_input_status = adv7604_g_input_status,
1839 .s_dv_timings = adv7604_s_dv_timings,
1840 .g_dv_timings = adv7604_g_dv_timings,
1841 .query_dv_timings = adv7604_query_dv_timings,
1842 .enum_dv_timings = adv7604_enum_dv_timings,
1843 .dv_timings_cap = adv7604_dv_timings_cap,
1844 .enum_mbus_fmt = adv7604_enum_mbus_fmt,
1845 .g_mbus_fmt = adv7604_g_mbus_fmt,
1846 .try_mbus_fmt = adv7604_g_mbus_fmt,
1847 .s_mbus_fmt = adv7604_g_mbus_fmt,
1848};
1849
1850static const struct v4l2_subdev_pad_ops adv7604_pad_ops = {
1851 .get_edid = adv7604_get_edid,
1852 .set_edid = adv7604_set_edid,
1853};
1854
1855static const struct v4l2_subdev_ops adv7604_ops = {
1856 .core = &adv7604_core_ops,
1857 .video = &adv7604_video_ops,
1858 .pad = &adv7604_pad_ops,
1859};
1860
1861/* -------------------------- custom ctrls ---------------------------------- */
1862
1863static const struct v4l2_ctrl_config adv7604_ctrl_analog_sampling_phase = {
1864 .ops = &adv7604_ctrl_ops,
1865 .id = V4L2_CID_ADV_RX_ANALOG_SAMPLING_PHASE,
1866 .name = "Analog Sampling Phase",
1867 .type = V4L2_CTRL_TYPE_INTEGER,
1868 .min = 0,
1869 .max = 0x1f,
1870 .step = 1,
1871 .def = 0,
1872};
1873
1874static const struct v4l2_ctrl_config adv7604_ctrl_free_run_color_manual = {
1875 .ops = &adv7604_ctrl_ops,
1876 .id = V4L2_CID_ADV_RX_FREE_RUN_COLOR_MANUAL,
1877 .name = "Free Running Color, Manual",
1878 .type = V4L2_CTRL_TYPE_BOOLEAN,
1879 .min = false,
1880 .max = true,
1881 .step = 1,
1882 .def = false,
1883};
1884
1885static const struct v4l2_ctrl_config adv7604_ctrl_free_run_color = {
1886 .ops = &adv7604_ctrl_ops,
1887 .id = V4L2_CID_ADV_RX_FREE_RUN_COLOR,
1888 .name = "Free Running Color",
1889 .type = V4L2_CTRL_TYPE_INTEGER,
1890 .min = 0x0,
1891 .max = 0xffffff,
1892 .step = 0x1,
1893 .def = 0x0,
1894};
1895
1896/* ----------------------------------------------------------------------- */
1897
1898static int adv7604_core_init(struct v4l2_subdev *sd)
1899{
1900 struct adv7604_state *state = to_state(sd);
1901 struct adv7604_platform_data *pdata = &state->pdata;
1902
1903 hdmi_write(sd, 0x48,
1904 (pdata->disable_pwrdnb ? 0x80 : 0) |
1905 (pdata->disable_cable_det_rst ? 0x40 : 0));
1906
1907 disable_input(sd);
1908
1909 /* power */
1910 io_write(sd, 0x0c, 0x42); /* Power up part and power down VDP */
1911 io_write(sd, 0x0b, 0x44); /* Power down ESDP block */
1912 cp_write(sd, 0xcf, 0x01); /* Power down macrovision */
1913
1914 /* video format */
1915 io_write_and_or(sd, 0x02, 0xf0,
1916 pdata->alt_gamma << 3 |
1917 pdata->op_656_range << 2 |
1918 pdata->rgb_out << 1 |
1919 pdata->alt_data_sat << 0);
1920 io_write(sd, 0x03, pdata->op_format_sel);
1921 io_write_and_or(sd, 0x04, 0x1f, pdata->op_ch_sel << 5);
1922 io_write_and_or(sd, 0x05, 0xf0, pdata->blank_data << 3 |
1923 pdata->insert_av_codes << 2 |
1924 pdata->replicate_av_codes << 1 |
1925 pdata->invert_cbcr << 0);
1926
1927 /* TODO from platform data */
1928 cp_write(sd, 0x69, 0x30); /* Enable CP CSC */
1929 io_write(sd, 0x06, 0xa6); /* positive VS and HS */
1930 io_write(sd, 0x14, 0x7f); /* Drive strength adjusted to max */
1931 cp_write(sd, 0xba, (pdata->hdmi_free_run_mode << 1) | 0x01); /* HDMI free run */
1932 cp_write(sd, 0xf3, 0xdc); /* Low threshold to enter/exit free run mode */
1933 cp_write(sd, 0xf9, 0x23); /* STDI ch. 1 - LCVS change threshold -
Hans Verkuil80939642012-10-16 05:46:21 -03001934 ADI recommended setting [REF_01, c. 2.3.3] */
Hans Verkuil54450f52012-07-18 05:45:16 -03001935 cp_write(sd, 0x45, 0x23); /* STDI ch. 2 - LCVS change threshold -
Hans Verkuil80939642012-10-16 05:46:21 -03001936 ADI recommended setting [REF_01, c. 2.3.3] */
Hans Verkuil54450f52012-07-18 05:45:16 -03001937 cp_write(sd, 0xc9, 0x2d); /* use prim_mode and vid_std as free run resolution
1938 for digital formats */
1939
1940 /* TODO from platform data */
1941 afe_write(sd, 0xb5, 0x01); /* Setting MCLK to 256Fs */
1942
1943 afe_write(sd, 0x02, pdata->ain_sel); /* Select analog input muxing mode */
1944 io_write_and_or(sd, 0x30, ~(1 << 4), pdata->output_bus_lsb_to_msb << 4);
1945
Hans Verkuil54450f52012-07-18 05:45:16 -03001946 /* interrupts */
1947 io_write(sd, 0x40, 0xc2); /* Configure INT1 */
1948 io_write(sd, 0x41, 0xd7); /* STDI irq for any change, disable INT2 */
1949 io_write(sd, 0x46, 0x98); /* Enable SSPD, STDI and CP unlocked interrupts */
1950 io_write(sd, 0x6e, 0xc0); /* Enable V_LOCKED and DE_REGEN_LCK interrupts */
1951 io_write(sd, 0x73, 0x10); /* Enable CABLE_DET_A_ST (+5v) interrupt */
1952
1953 return v4l2_ctrl_handler_setup(sd->ctrl_handler);
1954}
1955
1956static void adv7604_unregister_clients(struct adv7604_state *state)
1957{
1958 if (state->i2c_avlink)
1959 i2c_unregister_device(state->i2c_avlink);
1960 if (state->i2c_cec)
1961 i2c_unregister_device(state->i2c_cec);
1962 if (state->i2c_infoframe)
1963 i2c_unregister_device(state->i2c_infoframe);
1964 if (state->i2c_esdp)
1965 i2c_unregister_device(state->i2c_esdp);
1966 if (state->i2c_dpp)
1967 i2c_unregister_device(state->i2c_dpp);
1968 if (state->i2c_afe)
1969 i2c_unregister_device(state->i2c_afe);
1970 if (state->i2c_repeater)
1971 i2c_unregister_device(state->i2c_repeater);
1972 if (state->i2c_edid)
1973 i2c_unregister_device(state->i2c_edid);
1974 if (state->i2c_hdmi)
1975 i2c_unregister_device(state->i2c_hdmi);
1976 if (state->i2c_test)
1977 i2c_unregister_device(state->i2c_test);
1978 if (state->i2c_cp)
1979 i2c_unregister_device(state->i2c_cp);
1980 if (state->i2c_vdp)
1981 i2c_unregister_device(state->i2c_vdp);
1982}
1983
1984static struct i2c_client *adv7604_dummy_client(struct v4l2_subdev *sd,
1985 u8 addr, u8 io_reg)
1986{
1987 struct i2c_client *client = v4l2_get_subdevdata(sd);
1988
1989 if (addr)
1990 io_write(sd, io_reg, addr << 1);
1991 return i2c_new_dummy(client->adapter, io_read(sd, io_reg) >> 1);
1992}
1993
1994static int adv7604_probe(struct i2c_client *client,
1995 const struct i2c_device_id *id)
1996{
1997 struct adv7604_state *state;
1998 struct adv7604_platform_data *pdata = client->dev.platform_data;
1999 struct v4l2_ctrl_handler *hdl;
2000 struct v4l2_subdev *sd;
2001 int err;
2002
2003 /* Check if the adapter supports the needed features */
2004 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
2005 return -EIO;
2006 v4l_dbg(1, debug, client, "detecting adv7604 client on address 0x%x\n",
2007 client->addr << 1);
2008
Laurent Pinchartc02b2112013-05-02 08:29:43 -03002009 state = devm_kzalloc(&client->dev, sizeof(*state), GFP_KERNEL);
Hans Verkuil54450f52012-07-18 05:45:16 -03002010 if (!state) {
2011 v4l_err(client, "Could not allocate adv7604_state memory!\n");
2012 return -ENOMEM;
2013 }
2014
Mats Randgaard25a64ac2013-08-14 07:58:45 -03002015 /* initialize variables */
2016 state->restart_stdi_once = true;
2017 state->prev_input_status = ~0;
2018
Hans Verkuil54450f52012-07-18 05:45:16 -03002019 /* platform data */
2020 if (!pdata) {
2021 v4l_err(client, "No platform data!\n");
Laurent Pinchartc02b2112013-05-02 08:29:43 -03002022 return -ENODEV;
Hans Verkuil54450f52012-07-18 05:45:16 -03002023 }
2024 memcpy(&state->pdata, pdata, sizeof(state->pdata));
2025
2026 sd = &state->sd;
2027 v4l2_i2c_subdev_init(sd, client, &adv7604_ops);
2028 sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
2029 state->connector_hdmi = pdata->connector_hdmi;
2030
2031 /* i2c access to adv7604? */
2032 if (adv_smbus_read_byte_data_check(client, 0xfb, false) != 0x68) {
2033 v4l2_info(sd, "not an adv7604 on address 0x%x\n",
2034 client->addr << 1);
Laurent Pinchartc02b2112013-05-02 08:29:43 -03002035 return -ENODEV;
Hans Verkuil54450f52012-07-18 05:45:16 -03002036 }
2037
2038 /* control handlers */
2039 hdl = &state->hdl;
2040 v4l2_ctrl_handler_init(hdl, 9);
2041
2042 v4l2_ctrl_new_std(hdl, &adv7604_ctrl_ops,
2043 V4L2_CID_BRIGHTNESS, -128, 127, 1, 0);
2044 v4l2_ctrl_new_std(hdl, &adv7604_ctrl_ops,
2045 V4L2_CID_CONTRAST, 0, 255, 1, 128);
2046 v4l2_ctrl_new_std(hdl, &adv7604_ctrl_ops,
2047 V4L2_CID_SATURATION, 0, 255, 1, 128);
2048 v4l2_ctrl_new_std(hdl, &adv7604_ctrl_ops,
2049 V4L2_CID_HUE, 0, 128, 1, 0);
2050
2051 /* private controls */
2052 state->detect_tx_5v_ctrl = v4l2_ctrl_new_std(hdl, NULL,
2053 V4L2_CID_DV_RX_POWER_PRESENT, 0, 1, 0, 0);
2054 state->detect_tx_5v_ctrl->is_private = true;
2055 state->rgb_quantization_range_ctrl =
2056 v4l2_ctrl_new_std_menu(hdl, &adv7604_ctrl_ops,
2057 V4L2_CID_DV_RX_RGB_RANGE, V4L2_DV_RGB_RANGE_FULL,
2058 0, V4L2_DV_RGB_RANGE_AUTO);
2059 state->rgb_quantization_range_ctrl->is_private = true;
2060
2061 /* custom controls */
2062 state->analog_sampling_phase_ctrl =
2063 v4l2_ctrl_new_custom(hdl, &adv7604_ctrl_analog_sampling_phase, NULL);
2064 state->analog_sampling_phase_ctrl->is_private = true;
2065 state->free_run_color_manual_ctrl =
2066 v4l2_ctrl_new_custom(hdl, &adv7604_ctrl_free_run_color_manual, NULL);
2067 state->free_run_color_manual_ctrl->is_private = true;
2068 state->free_run_color_ctrl =
2069 v4l2_ctrl_new_custom(hdl, &adv7604_ctrl_free_run_color, NULL);
2070 state->free_run_color_ctrl->is_private = true;
2071
2072 sd->ctrl_handler = hdl;
2073 if (hdl->error) {
2074 err = hdl->error;
2075 goto err_hdl;
2076 }
2077 if (adv7604_s_detect_tx_5v_ctrl(sd)) {
2078 err = -ENODEV;
2079 goto err_hdl;
2080 }
2081
2082 state->i2c_avlink = adv7604_dummy_client(sd, pdata->i2c_avlink, 0xf3);
2083 state->i2c_cec = adv7604_dummy_client(sd, pdata->i2c_cec, 0xf4);
2084 state->i2c_infoframe = adv7604_dummy_client(sd, pdata->i2c_infoframe, 0xf5);
2085 state->i2c_esdp = adv7604_dummy_client(sd, pdata->i2c_esdp, 0xf6);
2086 state->i2c_dpp = adv7604_dummy_client(sd, pdata->i2c_dpp, 0xf7);
2087 state->i2c_afe = adv7604_dummy_client(sd, pdata->i2c_afe, 0xf8);
2088 state->i2c_repeater = adv7604_dummy_client(sd, pdata->i2c_repeater, 0xf9);
2089 state->i2c_edid = adv7604_dummy_client(sd, pdata->i2c_edid, 0xfa);
2090 state->i2c_hdmi = adv7604_dummy_client(sd, pdata->i2c_hdmi, 0xfb);
2091 state->i2c_test = adv7604_dummy_client(sd, pdata->i2c_test, 0xfc);
2092 state->i2c_cp = adv7604_dummy_client(sd, pdata->i2c_cp, 0xfd);
2093 state->i2c_vdp = adv7604_dummy_client(sd, pdata->i2c_vdp, 0xfe);
2094 if (!state->i2c_avlink || !state->i2c_cec || !state->i2c_infoframe ||
2095 !state->i2c_esdp || !state->i2c_dpp || !state->i2c_afe ||
2096 !state->i2c_repeater || !state->i2c_edid || !state->i2c_hdmi ||
2097 !state->i2c_test || !state->i2c_cp || !state->i2c_vdp) {
2098 err = -ENOMEM;
2099 v4l2_err(sd, "failed to create all i2c clients\n");
2100 goto err_i2c;
2101 }
Hans Verkuil54450f52012-07-18 05:45:16 -03002102
2103 /* work queues */
2104 state->work_queues = create_singlethread_workqueue(client->name);
2105 if (!state->work_queues) {
2106 v4l2_err(sd, "Could not create work queue\n");
2107 err = -ENOMEM;
2108 goto err_i2c;
2109 }
2110
2111 INIT_DELAYED_WORK(&state->delayed_work_enable_hotplug,
2112 adv7604_delayed_work_enable_hotplug);
2113
2114 state->pad.flags = MEDIA_PAD_FL_SOURCE;
2115 err = media_entity_init(&sd->entity, 1, &state->pad, 0);
2116 if (err)
2117 goto err_work_queues;
2118
2119 err = adv7604_core_init(sd);
2120 if (err)
2121 goto err_entity;
2122 v4l2_info(sd, "%s found @ 0x%x (%s)\n", client->name,
2123 client->addr << 1, client->adapter->name);
2124 return 0;
2125
2126err_entity:
2127 media_entity_cleanup(&sd->entity);
2128err_work_queues:
2129 cancel_delayed_work(&state->delayed_work_enable_hotplug);
2130 destroy_workqueue(state->work_queues);
2131err_i2c:
2132 adv7604_unregister_clients(state);
2133err_hdl:
2134 v4l2_ctrl_handler_free(hdl);
Hans Verkuil54450f52012-07-18 05:45:16 -03002135 return err;
2136}
2137
2138/* ----------------------------------------------------------------------- */
2139
2140static int adv7604_remove(struct i2c_client *client)
2141{
2142 struct v4l2_subdev *sd = i2c_get_clientdata(client);
2143 struct adv7604_state *state = to_state(sd);
2144
2145 cancel_delayed_work(&state->delayed_work_enable_hotplug);
2146 destroy_workqueue(state->work_queues);
2147 v4l2_device_unregister_subdev(sd);
2148 media_entity_cleanup(&sd->entity);
2149 adv7604_unregister_clients(to_state(sd));
2150 v4l2_ctrl_handler_free(sd->ctrl_handler);
Hans Verkuil54450f52012-07-18 05:45:16 -03002151 return 0;
2152}
2153
2154/* ----------------------------------------------------------------------- */
2155
2156static struct i2c_device_id adv7604_id[] = {
2157 { "adv7604", 0 },
2158 { }
2159};
2160MODULE_DEVICE_TABLE(i2c, adv7604_id);
2161
2162static struct i2c_driver adv7604_driver = {
2163 .driver = {
2164 .owner = THIS_MODULE,
2165 .name = "adv7604",
2166 },
2167 .probe = adv7604_probe,
2168 .remove = adv7604_remove,
2169 .id_table = adv7604_id,
2170};
2171
2172module_i2c_driver(adv7604_driver);