blob: 686512eefed85c93ad986db407a383ce47c5d56a [file] [log] [blame]
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001/*
2 * tw9910 Video Driver
3 *
4 * Copyright (C) 2008 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 *
7 * Based on ov772x driver,
8 *
9 * Copyright (C) 2008 Kuninori Morimoto <morimoto.kuninori@renesas.com>
10 * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net>
11 * Copyright (C) 2008 Magnus Damm
12 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
19#include <linux/init.h>
20#include <linux/module.h>
21#include <linux/i2c.h>
22#include <linux/slab.h>
23#include <linux/kernel.h>
24#include <linux/delay.h>
25#include <linux/videodev2.h>
26#include <media/v4l2-chip-ident.h>
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -030027#include <media/v4l2-subdev.h>
Kuninori Morimotoed922a82008-12-29 06:04:06 -030028#include <media/soc_camera.h>
29#include <media/tw9910.h>
30
31#define GET_ID(val) ((val & 0xF8) >> 3)
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -030032#define GET_REV(val) (val & 0x07)
Kuninori Morimotoed922a82008-12-29 06:04:06 -030033
34/*
35 * register offset
36 */
37#define ID 0x00 /* Product ID Code Register */
38#define STATUS1 0x01 /* Chip Status Register I */
39#define INFORM 0x02 /* Input Format */
40#define OPFORM 0x03 /* Output Format Control Register */
41#define DLYCTR 0x04 /* Hysteresis and HSYNC Delay Control */
42#define OUTCTR1 0x05 /* Output Control I */
43#define ACNTL1 0x06 /* Analog Control Register 1 */
44#define CROP_HI 0x07 /* Cropping Register, High */
45#define VDELAY_LO 0x08 /* Vertical Delay Register, Low */
46#define VACTIVE_LO 0x09 /* Vertical Active Register, Low */
47#define HDELAY_LO 0x0A /* Horizontal Delay Register, Low */
48#define HACTIVE_LO 0x0B /* Horizontal Active Register, Low */
49#define CNTRL1 0x0C /* Control Register I */
50#define VSCALE_LO 0x0D /* Vertical Scaling Register, Low */
51#define SCALE_HI 0x0E /* Scaling Register, High */
52#define HSCALE_LO 0x0F /* Horizontal Scaling Register, Low */
53#define BRIGHT 0x10 /* BRIGHTNESS Control Register */
54#define CONTRAST 0x11 /* CONTRAST Control Register */
55#define SHARPNESS 0x12 /* SHARPNESS Control Register I */
56#define SAT_U 0x13 /* Chroma (U) Gain Register */
57#define SAT_V 0x14 /* Chroma (V) Gain Register */
58#define HUE 0x15 /* Hue Control Register */
59#define CORING1 0x17
60#define CORING2 0x18 /* Coring and IF compensation */
61#define VBICNTL 0x19 /* VBI Control Register */
62#define ACNTL2 0x1A /* Analog Control 2 */
63#define OUTCTR2 0x1B /* Output Control 2 */
64#define SDT 0x1C /* Standard Selection */
65#define SDTR 0x1D /* Standard Recognition */
66#define TEST 0x1F /* Test Control Register */
67#define CLMPG 0x20 /* Clamping Gain */
68#define IAGC 0x21 /* Individual AGC Gain */
69#define AGCGAIN 0x22 /* AGC Gain */
70#define PEAKWT 0x23 /* White Peak Threshold */
71#define CLMPL 0x24 /* Clamp level */
72#define SYNCT 0x25 /* Sync Amplitude */
73#define MISSCNT 0x26 /* Sync Miss Count Register */
74#define PCLAMP 0x27 /* Clamp Position Register */
75#define VCNTL1 0x28 /* Vertical Control I */
76#define VCNTL2 0x29 /* Vertical Control II */
77#define CKILL 0x2A /* Color Killer Level Control */
78#define COMB 0x2B /* Comb Filter Control */
79#define LDLY 0x2C /* Luma Delay and H Filter Control */
80#define MISC1 0x2D /* Miscellaneous Control I */
81#define LOOP 0x2E /* LOOP Control Register */
82#define MISC2 0x2F /* Miscellaneous Control II */
83#define MVSN 0x30 /* Macrovision Detection */
84#define STATUS2 0x31 /* Chip STATUS II */
85#define HFREF 0x32 /* H monitor */
86#define CLMD 0x33 /* CLAMP MODE */
87#define IDCNTL 0x34 /* ID Detection Control */
88#define CLCNTL1 0x35 /* Clamp Control I */
89#define ANAPLLCTL 0x4C
90#define VBIMIN 0x4D
91#define HSLOWCTL 0x4E
92#define WSS3 0x4F
93#define FILLDATA 0x50
94#define SDID 0x51
95#define DID 0x52
96#define WSS1 0x53
97#define WSS2 0x54
98#define VVBI 0x55
99#define LCTL6 0x56
100#define LCTL7 0x57
101#define LCTL8 0x58
102#define LCTL9 0x59
103#define LCTL10 0x5A
104#define LCTL11 0x5B
105#define LCTL12 0x5C
106#define LCTL13 0x5D
107#define LCTL14 0x5E
108#define LCTL15 0x5F
109#define LCTL16 0x60
110#define LCTL17 0x61
111#define LCTL18 0x62
112#define LCTL19 0x63
113#define LCTL20 0x64
114#define LCTL21 0x65
115#define LCTL22 0x66
116#define LCTL23 0x67
117#define LCTL24 0x68
118#define LCTL25 0x69
119#define LCTL26 0x6A
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300120#define HSBEGIN 0x6B
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300121#define HSEND 0x6C
122#define OVSDLY 0x6D
123#define OVSEND 0x6E
124#define VBIDELAY 0x6F
125
126/*
127 * register detail
128 */
129
130/* INFORM */
131#define FC27_ON 0x40 /* 1 : Input crystal clock frequency is 27MHz */
132#define FC27_FF 0x00 /* 0 : Square pixel mode. */
133 /* Must use 24.54MHz for 60Hz field rate */
134 /* source or 29.5MHz for 50Hz field rate */
135#define IFSEL_S 0x10 /* 01 : S-video decoding */
136#define IFSEL_C 0x00 /* 00 : Composite video decoding */
137 /* Y input video selection */
138#define YSEL_M0 0x00 /* 00 : Mux0 selected */
139#define YSEL_M1 0x04 /* 01 : Mux1 selected */
140#define YSEL_M2 0x08 /* 10 : Mux2 selected */
141#define YSEL_M3 0x10 /* 11 : Mux3 selected */
142
143/* OPFORM */
144#define MODE 0x80 /* 0 : CCIR601 compatible YCrCb 4:2:2 format */
145 /* 1 : ITU-R-656 compatible data sequence format */
146#define LEN 0x40 /* 0 : 8-bit YCrCb 4:2:2 output format */
147 /* 1 : 16-bit YCrCb 4:2:2 output format.*/
148#define LLCMODE 0x20 /* 1 : LLC output mode. */
149 /* 0 : free-run output mode */
150#define AINC 0x10 /* Serial interface auto-indexing control */
151 /* 0 : auto-increment */
152 /* 1 : non-auto */
153#define VSCTL 0x08 /* 1 : Vertical out ctrl by DVALID */
154 /* 0 : Vertical out ctrl by HACTIVE and DVALID */
Kuninori Morimoto06f292e2009-12-11 11:34:50 -0300155#define OEN_TRI_SEL_MASK 0x07
156#define OEN_TRI_SEL_ALL_ON 0x00 /* Enable output for Rev0/Rev1 */
157#define OEN_TRI_SEL_ALL_OFF_r0 0x06 /* All tri-stated for Rev0 */
158#define OEN_TRI_SEL_ALL_OFF_r1 0x07 /* All tri-stated for Rev1 */
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300159
160/* OUTCTR1 */
161#define VSP_LO 0x00 /* 0 : VS pin output polarity is active low */
162#define VSP_HI 0x80 /* 1 : VS pin output polarity is active high. */
163 /* VS pin output control */
164#define VSSL_VSYNC 0x00 /* 0 : VSYNC */
165#define VSSL_VACT 0x10 /* 1 : VACT */
166#define VSSL_FIELD 0x20 /* 2 : FIELD */
167#define VSSL_VVALID 0x30 /* 3 : VVALID */
168#define VSSL_ZERO 0x70 /* 7 : 0 */
169#define HSP_LOW 0x00 /* 0 : HS pin output polarity is active low */
170#define HSP_HI 0x08 /* 1 : HS pin output polarity is active high.*/
171 /* HS pin output control */
172#define HSSL_HACT 0x00 /* 0 : HACT */
173#define HSSL_HSYNC 0x01 /* 1 : HSYNC */
174#define HSSL_DVALID 0x02 /* 2 : DVALID */
175#define HSSL_HLOCK 0x03 /* 3 : HLOCK */
176#define HSSL_ASYNCW 0x04 /* 4 : ASYNCW */
177#define HSSL_ZERO 0x07 /* 7 : 0 */
178
179/* ACNTL1 */
180#define SRESET 0x80 /* resets the device to its default state
181 * but all register content remain unchanged.
182 * This bit is self-resetting.
183 */
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300184#define ACNTL1_PDN_MASK 0x0e
185#define CLK_PDN 0x08 /* system clock power down */
186#define Y_PDN 0x04 /* Luma ADC power down */
187#define C_PDN 0x02 /* Chroma ADC power down */
188
189/* ACNTL2 */
190#define ACNTL2_PDN_MASK 0x40
191#define PLL_PDN 0x40 /* PLL power down */
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300192
193/* VBICNTL */
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300194
195/* RTSEL : control the real time signal output from the MPOUT pin */
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300196#define RTSEL_MASK 0x07
197#define RTSEL_VLOSS 0x00 /* 0000 = Video loss */
198#define RTSEL_HLOCK 0x01 /* 0001 = H-lock */
199#define RTSEL_SLOCK 0x02 /* 0010 = S-lock */
200#define RTSEL_VLOCK 0x03 /* 0011 = V-lock */
201#define RTSEL_MONO 0x04 /* 0100 = MONO */
202#define RTSEL_DET50 0x05 /* 0101 = DET50 */
203#define RTSEL_FIELD 0x06 /* 0110 = FIELD */
204#define RTSEL_RTCO 0x07 /* 0111 = RTCO ( Real Time Control ) */
205
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300206/* HSYNC start and end are constant for now */
207#define HSYNC_START 0x0260
208#define HSYNC_END 0x0300
209
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300210/*
211 * structure
212 */
213
214struct regval_list {
215 unsigned char reg_num;
216 unsigned char value;
217};
218
219struct tw9910_scale_ctrl {
220 char *name;
221 unsigned short width;
222 unsigned short height;
223 u16 hscale;
224 u16 vscale;
225};
226
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300227struct tw9910_priv {
Guennadi Liakhovetski906b1012010-02-04 11:24:00 +0100228 struct v4l2_subdev subdev;
229 struct tw9910_video_info *info;
230 const struct tw9910_scale_ctrl *scale;
231 u32 revision;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300232};
233
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300234static const struct tw9910_scale_ctrl tw9910_ntsc_scales[] = {
235 {
236 .name = "NTSC SQ",
237 .width = 640,
238 .height = 480,
239 .hscale = 0x0100,
240 .vscale = 0x0100,
241 },
242 {
243 .name = "NTSC CCIR601",
244 .width = 720,
245 .height = 480,
246 .hscale = 0x0100,
247 .vscale = 0x0100,
248 },
249 {
250 .name = "NTSC SQ (CIF)",
251 .width = 320,
252 .height = 240,
253 .hscale = 0x0200,
254 .vscale = 0x0200,
255 },
256 {
257 .name = "NTSC CCIR601 (CIF)",
258 .width = 360,
259 .height = 240,
260 .hscale = 0x0200,
261 .vscale = 0x0200,
262 },
263 {
264 .name = "NTSC SQ (QCIF)",
265 .width = 160,
266 .height = 120,
267 .hscale = 0x0400,
268 .vscale = 0x0400,
269 },
270 {
271 .name = "NTSC CCIR601 (QCIF)",
272 .width = 180,
273 .height = 120,
274 .hscale = 0x0400,
275 .vscale = 0x0400,
276 },
277};
278
279static const struct tw9910_scale_ctrl tw9910_pal_scales[] = {
280 {
281 .name = "PAL SQ",
282 .width = 768,
283 .height = 576,
284 .hscale = 0x0100,
285 .vscale = 0x0100,
286 },
287 {
288 .name = "PAL CCIR601",
289 .width = 720,
290 .height = 576,
291 .hscale = 0x0100,
292 .vscale = 0x0100,
293 },
294 {
295 .name = "PAL SQ (CIF)",
296 .width = 384,
297 .height = 288,
298 .hscale = 0x0200,
299 .vscale = 0x0200,
300 },
301 {
302 .name = "PAL CCIR601 (CIF)",
303 .width = 360,
304 .height = 288,
305 .hscale = 0x0200,
306 .vscale = 0x0200,
307 },
308 {
309 .name = "PAL SQ (QCIF)",
310 .width = 192,
311 .height = 144,
312 .hscale = 0x0400,
313 .vscale = 0x0400,
314 },
315 {
316 .name = "PAL CCIR601 (QCIF)",
317 .width = 180,
318 .height = 144,
319 .hscale = 0x0400,
320 .vscale = 0x0400,
321 },
322};
323
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300324/*
325 * general function
326 */
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300327static struct tw9910_priv *to_tw9910(const struct i2c_client *client)
328{
Guennadi Liakhovetski96c75392009-08-25 11:53:23 -0300329 return container_of(i2c_get_clientdata(client), struct tw9910_priv,
330 subdev);
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300331}
332
Kuninori Morimoto20797082009-12-11 11:34:51 -0300333static int tw9910_mask_set(struct i2c_client *client, u8 command,
334 u8 mask, u8 set)
335{
336 s32 val = i2c_smbus_read_byte_data(client, command);
337 if (val < 0)
338 return val;
339
340 val &= ~mask;
341 val |= set & mask;
342
343 return i2c_smbus_write_byte_data(client, command, val);
344}
345
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300346static int tw9910_set_scale(struct i2c_client *client,
347 const struct tw9910_scale_ctrl *scale)
348{
349 int ret;
350
351 ret = i2c_smbus_write_byte_data(client, SCALE_HI,
352 (scale->vscale & 0x0F00) >> 4 |
353 (scale->hscale & 0x0F00) >> 8);
354 if (ret < 0)
355 return ret;
356
357 ret = i2c_smbus_write_byte_data(client, HSCALE_LO,
358 scale->hscale & 0x00FF);
359 if (ret < 0)
360 return ret;
361
362 ret = i2c_smbus_write_byte_data(client, VSCALE_LO,
363 scale->vscale & 0x00FF);
364
365 return ret;
366}
367
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300368static int tw9910_set_hsync(struct i2c_client *client)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300369{
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300370 struct tw9910_priv *priv = to_tw9910(client);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300371 int ret;
372
373 /* bit 10 - 3 */
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300374 ret = i2c_smbus_write_byte_data(client, HSBEGIN,
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300375 (HSYNC_START & 0x07F8) >> 3);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300376 if (ret < 0)
377 return ret;
378
379 /* bit 10 - 3 */
380 ret = i2c_smbus_write_byte_data(client, HSEND,
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300381 (HSYNC_END & 0x07F8) >> 3);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300382 if (ret < 0)
383 return ret;
384
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300385 /* So far only revisions 0 and 1 have been seen */
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300386 /* bit 2 - 0 */
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300387 if (1 == priv->revision)
388 ret = tw9910_mask_set(client, HSLOWCTL, 0x77,
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300389 (HSYNC_START & 0x0007) << 4 |
390 (HSYNC_END & 0x0007));
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300391
392 return ret;
393}
394
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300395static void tw9910_reset(struct i2c_client *client)
396{
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300397 tw9910_mask_set(client, ACNTL1, SRESET, SRESET);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300398 msleep(1);
399}
400
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300401static int tw9910_power(struct i2c_client *client, int enable)
402{
403 int ret;
404 u8 acntl1;
405 u8 acntl2;
406
407 if (enable) {
408 acntl1 = 0;
409 acntl2 = 0;
410 } else {
411 acntl1 = CLK_PDN | Y_PDN | C_PDN;
412 acntl2 = PLL_PDN;
413 }
414
415 ret = tw9910_mask_set(client, ACNTL1, ACNTL1_PDN_MASK, acntl1);
416 if (ret < 0)
417 return ret;
418
419 return tw9910_mask_set(client, ACNTL2, ACNTL2_PDN_MASK, acntl2);
420}
421
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300422static const struct tw9910_scale_ctrl *tw9910_select_norm(struct soc_camera_device *icd,
423 u32 width, u32 height)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300424{
425 const struct tw9910_scale_ctrl *scale;
426 const struct tw9910_scale_ctrl *ret = NULL;
427 v4l2_std_id norm = icd->vdev->current_norm;
428 __u32 diff = 0xffffffff, tmp;
429 int size, i;
430
431 if (norm & V4L2_STD_NTSC) {
432 scale = tw9910_ntsc_scales;
433 size = ARRAY_SIZE(tw9910_ntsc_scales);
434 } else if (norm & V4L2_STD_PAL) {
435 scale = tw9910_pal_scales;
436 size = ARRAY_SIZE(tw9910_pal_scales);
437 } else {
438 return NULL;
439 }
440
441 for (i = 0; i < size; i++) {
442 tmp = abs(width - scale[i].width) +
443 abs(height - scale[i].height);
444 if (tmp < diff) {
445 diff = tmp;
446 ret = scale + i;
447 }
448 }
449
450 return ret;
451}
452
453/*
454 * soc_camera_ops function
455 */
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300456static int tw9910_s_stream(struct v4l2_subdev *sd, int enable)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300457{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300458 struct i2c_client *client = v4l2_get_subdevdata(sd);
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300459 struct tw9910_priv *priv = to_tw9910(client);
Kuninori Morimoto06f292e2009-12-11 11:34:50 -0300460 u8 val;
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300461 int ret;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300462
Kuninori Morimoto06f292e2009-12-11 11:34:50 -0300463 if (!enable) {
464 switch (priv->revision) {
465 case 0:
466 val = OEN_TRI_SEL_ALL_OFF_r0;
467 break;
468 case 1:
469 val = OEN_TRI_SEL_ALL_OFF_r1;
470 break;
471 default:
472 dev_err(&client->dev, "un-supported revision\n");
473 return -EINVAL;
474 }
475 } else {
476 val = OEN_TRI_SEL_ALL_ON;
477
478 if (!priv->scale) {
479 dev_err(&client->dev, "norm select error\n");
480 return -EPERM;
481 }
482
483 dev_dbg(&client->dev, "%s %dx%d\n",
484 priv->scale->name,
485 priv->scale->width,
486 priv->scale->height);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300487 }
488
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300489 ret = tw9910_mask_set(client, OPFORM, OEN_TRI_SEL_MASK, val);
490 if (ret < 0)
491 return ret;
492
493 return tw9910_power(client, enable);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300494}
495
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300496static int tw9910_set_bus_param(struct soc_camera_device *icd,
497 unsigned long flags)
498{
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300499 struct soc_camera_link *icl = to_soc_camera_link(icd);
Kuninori Morimoto398994c2009-12-11 11:53:54 -0300500 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300501 struct i2c_client *client = v4l2_get_subdevdata(sd);
Kuninori Morimoto70da92e2009-12-11 11:53:55 -0300502 u8 val = VSSL_VVALID | HSSL_DVALID;
Kuninori Morimoto398994c2009-12-11 11:53:54 -0300503
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300504 flags = soc_camera_apply_sensor_flags(icl, flags);
505
Kuninori Morimoto398994c2009-12-11 11:53:54 -0300506 /*
507 * set OUTCTR1
Kuninori Morimoto70da92e2009-12-11 11:53:55 -0300508 *
509 * We use VVALID and DVALID signals to control VSYNC and HSYNC
510 * outputs, in this mode their polarity is inverted.
Kuninori Morimoto398994c2009-12-11 11:53:54 -0300511 */
Kuninori Morimoto70da92e2009-12-11 11:53:55 -0300512 if (flags & SOCAM_HSYNC_ACTIVE_LOW)
513 val |= HSP_HI;
514
515 if (flags & SOCAM_VSYNC_ACTIVE_LOW)
516 val |= VSP_HI;
517
518 return i2c_smbus_write_byte_data(client, OUTCTR1, val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300519}
520
521static unsigned long tw9910_query_bus_param(struct soc_camera_device *icd)
522{
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300523 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300524 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300525 struct soc_camera_link *icl = to_soc_camera_link(icd);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300526 unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER |
527 SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH |
Kuninori Morimoto70da92e2009-12-11 11:53:55 -0300528 SOCAM_VSYNC_ACTIVE_LOW | SOCAM_HSYNC_ACTIVE_LOW |
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300529 SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth;
530
531 return soc_camera_apply_sensor_flags(icl, flags);
532}
533
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300534static int tw9910_s_std(struct v4l2_subdev *sd, v4l2_std_id norm)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300535{
536 int ret = -EINVAL;
537
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300538 if (norm & (V4L2_STD_NTSC | V4L2_STD_PAL))
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300539 ret = 0;
540
541 return ret;
542}
543
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300544static int tw9910_g_chip_ident(struct v4l2_subdev *sd,
545 struct v4l2_dbg_chip_ident *id)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300546{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300547 struct i2c_client *client = v4l2_get_subdevdata(sd);
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300548 struct tw9910_priv *priv = to_tw9910(client);
549
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300550 id->ident = V4L2_IDENT_TW9910;
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300551 id->revision = priv->revision;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300552
553 return 0;
554}
555
556#ifdef CONFIG_VIDEO_ADV_DEBUG
557static int tw9910_g_register(struct v4l2_subdev *sd,
558 struct v4l2_dbg_register *reg)
559{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300560 struct i2c_client *client = v4l2_get_subdevdata(sd);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300561 int ret;
562
563 if (reg->reg > 0xff)
564 return -EINVAL;
565
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300566 ret = i2c_smbus_read_byte_data(client, reg->reg);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300567 if (ret < 0)
568 return ret;
569
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300570 /*
571 * ret = int
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300572 * reg->val = __u64
573 */
574 reg->val = (__u64)ret;
575
576 return 0;
577}
578
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300579static int tw9910_s_register(struct v4l2_subdev *sd,
580 struct v4l2_dbg_register *reg)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300581{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300582 struct i2c_client *client = v4l2_get_subdevdata(sd);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300583
584 if (reg->reg > 0xff ||
585 reg->val > 0xff)
586 return -EINVAL;
587
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300588 return i2c_smbus_write_byte_data(client, reg->reg, reg->val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300589}
590#endif
591
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300592static int tw9910_set_frame(struct v4l2_subdev *sd, u32 *width, u32 *height)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300593{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300594 struct i2c_client *client = v4l2_get_subdevdata(sd);
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300595 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300596 struct soc_camera_device *icd = client->dev.platform_data;
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300597 int ret = -EINVAL;
598 u8 val;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300599
600 /*
601 * select suitable norm
602 */
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300603 priv->scale = tw9910_select_norm(icd, *width, *height);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300604 if (!priv->scale)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300605 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300606
607 /*
608 * reset hardware
609 */
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300610 tw9910_reset(client);
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300611
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300612 /*
613 * set bus width
614 */
615 val = 0x00;
616 if (SOCAM_DATAWIDTH_16 == priv->info->buswidth)
617 val = LEN;
618
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300619 ret = tw9910_mask_set(client, OPFORM, LEN, val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300620 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300621 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300622
623 /*
624 * select MPOUT behavior
625 */
626 switch (priv->info->mpout) {
627 case TW9910_MPO_VLOSS:
628 val = RTSEL_VLOSS; break;
629 case TW9910_MPO_HLOCK:
630 val = RTSEL_HLOCK; break;
631 case TW9910_MPO_SLOCK:
632 val = RTSEL_SLOCK; break;
633 case TW9910_MPO_VLOCK:
634 val = RTSEL_VLOCK; break;
635 case TW9910_MPO_MONO:
636 val = RTSEL_MONO; break;
637 case TW9910_MPO_DET50:
638 val = RTSEL_DET50; break;
639 case TW9910_MPO_FIELD:
640 val = RTSEL_FIELD; break;
641 case TW9910_MPO_RTCO:
642 val = RTSEL_RTCO; break;
643 default:
644 val = 0;
645 }
646
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300647 ret = tw9910_mask_set(client, VBICNTL, RTSEL_MASK, val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300648 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300649 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300650
651 /*
652 * set scale
653 */
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300654 ret = tw9910_set_scale(client, priv->scale);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300655 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300656 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300657
658 /*
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300659 * set hsync
660 */
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300661 ret = tw9910_set_hsync(client);
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300662 if (ret < 0)
663 goto tw9910_set_fmt_error;
664
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300665 *width = priv->scale->width;
666 *height = priv->scale->height;
Guennadi Liakhovetski123ab622009-08-25 11:46:52 -0300667
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300668 return ret;
669
670tw9910_set_fmt_error:
671
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300672 tw9910_reset(client);
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300673 priv->scale = NULL;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300674
675 return ret;
676}
677
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300678static int tw9910_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
679{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300680 struct i2c_client *client = v4l2_get_subdevdata(sd);
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300681 struct soc_camera_device *icd = client->dev.platform_data;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300682
683 a->c.left = 0;
684 a->c.top = 0;
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300685 if (icd->vdev->current_norm & V4L2_STD_NTSC) {
686 a->c.width = 640;
687 a->c.height = 480;
688 } else {
689 a->c.width = 768;
690 a->c.height = 576;
691 }
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300692 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
693
694 return 0;
695}
696
697static int tw9910_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
698{
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300699 struct i2c_client *client = v4l2_get_subdevdata(sd);
700 struct soc_camera_device *icd = client->dev.platform_data;
701
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300702 a->bounds.left = 0;
703 a->bounds.top = 0;
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300704 if (icd->vdev->current_norm & V4L2_STD_NTSC) {
705 a->bounds.width = 640;
706 a->bounds.height = 480;
707 } else {
708 a->bounds.width = 768;
709 a->bounds.height = 576;
710 }
711 a->defrect = a->bounds;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300712 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
713 a->pixelaspect.numerator = 1;
714 a->pixelaspect.denominator = 1;
715
716 return 0;
717}
718
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300719static int tw9910_g_fmt(struct v4l2_subdev *sd,
720 struct v4l2_mbus_framefmt *mf)
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300721{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300722 struct i2c_client *client = v4l2_get_subdevdata(sd);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300723 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300724
725 if (!priv->scale) {
726 int ret;
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300727 u32 width = 640, height = 480;
728 ret = tw9910_set_frame(sd, &width, &height);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300729 if (ret < 0)
730 return ret;
731 }
732
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300733 mf->width = priv->scale->width;
734 mf->height = priv->scale->height;
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300735 mf->code = V4L2_MBUS_FMT_UYVY8_2X8;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300736 mf->colorspace = V4L2_COLORSPACE_JPEG;
Kuninori Morimoto34cae302009-12-11 11:53:53 -0300737 mf->field = V4L2_FIELD_INTERLACED_BT;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300738
739 return 0;
740}
741
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300742static int tw9910_s_fmt(struct v4l2_subdev *sd,
743 struct v4l2_mbus_framefmt *mf)
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300744{
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300745 u32 width = mf->width, height = mf->height;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300746 int ret;
747
748 WARN_ON(mf->field != V4L2_FIELD_ANY &&
Kuninori Morimoto34cae302009-12-11 11:53:53 -0300749 mf->field != V4L2_FIELD_INTERLACED_BT);
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300750
751 /*
752 * check color format
753 */
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300754 if (mf->code != V4L2_MBUS_FMT_UYVY8_2X8)
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300755 return -EINVAL;
756
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300757 mf->colorspace = V4L2_COLORSPACE_JPEG;
758
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300759 ret = tw9910_set_frame(sd, &width, &height);
Guennadi Liakhovetski123ab622009-08-25 11:46:52 -0300760 if (!ret) {
Guennadi Liakhovetski2ad90b72011-07-28 09:49:37 -0300761 mf->width = width;
762 mf->height = height;
Guennadi Liakhovetski123ab622009-08-25 11:46:52 -0300763 }
764 return ret;
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300765}
766
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300767static int tw9910_try_fmt(struct v4l2_subdev *sd,
768 struct v4l2_mbus_framefmt *mf)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300769{
Laurent Pinchartc4ce6d12010-07-30 17:24:54 -0300770 struct i2c_client *client = v4l2_get_subdevdata(sd);
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300771 struct soc_camera_device *icd = client->dev.platform_data;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300772 const struct tw9910_scale_ctrl *scale;
773
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300774 if (V4L2_FIELD_ANY == mf->field) {
Kuninori Morimoto34cae302009-12-11 11:53:53 -0300775 mf->field = V4L2_FIELD_INTERLACED_BT;
776 } else if (V4L2_FIELD_INTERLACED_BT != mf->field) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300777 dev_err(&client->dev, "Field type %d invalid.\n", mf->field);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300778 return -EINVAL;
779 }
780
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300781 mf->code = V4L2_MBUS_FMT_UYVY8_2X8;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300782 mf->colorspace = V4L2_COLORSPACE_JPEG;
783
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300784 /*
785 * select suitable norm
786 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300787 scale = tw9910_select_norm(icd, mf->width, mf->height);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300788 if (!scale)
789 return -EINVAL;
790
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300791 mf->width = scale->width;
792 mf->height = scale->height;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300793
794 return 0;
795}
796
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300797static int tw9910_video_probe(struct soc_camera_device *icd,
798 struct i2c_client *client)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300799{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300800 struct tw9910_priv *priv = to_tw9910(client);
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300801 s32 id;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300802
Guennadi Liakhovetski7dfff952011-07-15 20:03:38 -0300803 /* We must have a parent by now. And it cannot be a wrong one. */
804 BUG_ON(!icd->parent ||
805 to_soc_camera_host(icd->parent)->nr != icd->iface);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300806
807 /*
808 * tw9910 only use 8 or 16 bit bus width
809 */
810 if (SOCAM_DATAWIDTH_16 != priv->info->buswidth &&
811 SOCAM_DATAWIDTH_8 != priv->info->buswidth) {
Guennadi Liakhovetski85f8be62009-08-25 11:47:00 -0300812 dev_err(&client->dev, "bus width error\n");
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300813 return -ENODEV;
814 }
815
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300816 /*
817 * check and show Product ID
Kuninori Morimoto4a4bc5e2009-12-11 11:06:00 -0300818 * So far only revisions 0 and 1 have been seen
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300819 */
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300820 id = i2c_smbus_read_byte_data(client, ID);
821 priv->revision = GET_REV(id);
822 id = GET_ID(id);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300823
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300824 if (0x0B != id ||
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300825 0x01 < priv->revision) {
Guennadi Liakhovetski85f8be62009-08-25 11:47:00 -0300826 dev_err(&client->dev,
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300827 "Product ID error %x:%x\n",
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300828 id, priv->revision);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300829 return -ENODEV;
830 }
831
Guennadi Liakhovetski85f8be62009-08-25 11:47:00 -0300832 dev_info(&client->dev,
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300833 "tw9910 Product ID %0x:%0x\n", id, priv->revision);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300834
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300835 icd->vdev->tvnorms = V4L2_STD_NTSC | V4L2_STD_PAL;
836 icd->vdev->current_norm = V4L2_STD_NTSC;
837
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300838 return 0;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300839}
840
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300841static struct soc_camera_ops tw9910_ops = {
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300842 .set_bus_param = tw9910_set_bus_param,
843 .query_bus_param = tw9910_query_bus_param,
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300844};
845
846static struct v4l2_subdev_core_ops tw9910_subdev_core_ops = {
847 .g_chip_ident = tw9910_g_chip_ident,
848 .s_std = tw9910_s_std,
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300849#ifdef CONFIG_VIDEO_ADV_DEBUG
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300850 .g_register = tw9910_g_register,
851 .s_register = tw9910_s_register,
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300852#endif
853};
854
Hans Verkuil3805f202010-05-08 17:55:00 -0300855static int tw9910_enum_fmt(struct v4l2_subdev *sd, unsigned int index,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300856 enum v4l2_mbus_pixelcode *code)
857{
858 if (index)
859 return -EINVAL;
860
Guennadi Liakhovetskiace6e972010-07-22 16:52:51 -0300861 *code = V4L2_MBUS_FMT_UYVY8_2X8;
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300862 return 0;
863}
864
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300865static struct v4l2_subdev_video_ops tw9910_subdev_video_ops = {
866 .s_stream = tw9910_s_stream,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300867 .g_mbus_fmt = tw9910_g_fmt,
868 .s_mbus_fmt = tw9910_s_fmt,
869 .try_mbus_fmt = tw9910_try_fmt,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300870 .cropcap = tw9910_cropcap,
871 .g_crop = tw9910_g_crop,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300872 .enum_mbus_fmt = tw9910_enum_fmt,
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300873};
874
875static struct v4l2_subdev_ops tw9910_subdev_ops = {
876 .core = &tw9910_subdev_core_ops,
877 .video = &tw9910_subdev_video_ops,
878};
879
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300880/*
881 * i2c_driver function
882 */
883
884static int tw9910_probe(struct i2c_client *client,
885 const struct i2c_device_id *did)
886
887{
888 struct tw9910_priv *priv;
889 struct tw9910_video_info *info;
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300890 struct soc_camera_device *icd = client->dev.platform_data;
891 struct i2c_adapter *adapter =
892 to_i2c_adapter(client->dev.parent);
893 struct soc_camera_link *icl;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300894 int ret;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300895
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300896 if (!icd) {
897 dev_err(&client->dev, "TW9910: missing soc-camera data!\n");
898 return -EINVAL;
899 }
900
901 icl = to_soc_camera_link(icd);
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300902 if (!icl || !icl->priv)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300903 return -EINVAL;
904
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300905 info = icl->priv;
Guennadi Liakhovetski0a861e92009-05-12 15:13:32 +0000906
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300907 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300908 dev_err(&client->dev,
909 "I2C-Adapter doesn't support "
910 "I2C_FUNC_SMBUS_BYTE_DATA\n");
911 return -EIO;
912 }
913
914 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
915 if (!priv)
916 return -ENOMEM;
917
918 priv->info = info;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300919
920 v4l2_i2c_subdev_init(&priv->subdev, client, &tw9910_subdev_ops);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300921
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300922 icd->ops = &tw9910_ops;
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -0300923 icd->iface = icl->bus_id;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300924
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300925 ret = tw9910_video_probe(icd, client);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300926 if (ret) {
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300927 icd->ops = NULL;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300928 kfree(priv);
929 }
930
931 return ret;
932}
933
934static int tw9910_remove(struct i2c_client *client)
935{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300936 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300937 struct soc_camera_device *icd = client->dev.platform_data;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300938
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300939 icd->ops = NULL;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300940 kfree(priv);
941 return 0;
942}
943
944static const struct i2c_device_id tw9910_id[] = {
945 { "tw9910", 0 },
946 { }
947};
948MODULE_DEVICE_TABLE(i2c, tw9910_id);
949
950static struct i2c_driver tw9910_i2c_driver = {
951 .driver = {
952 .name = "tw9910",
953 },
954 .probe = tw9910_probe,
955 .remove = tw9910_remove,
956 .id_table = tw9910_id,
957};
958
959/*
960 * module function
961 */
962static int __init tw9910_module_init(void)
963{
964 return i2c_add_driver(&tw9910_i2c_driver);
965}
966
967static void __exit tw9910_module_exit(void)
968{
969 i2c_del_driver(&tw9910_i2c_driver);
970}
971
972module_init(tw9910_module_init);
973module_exit(tw9910_module_exit);
974
975MODULE_DESCRIPTION("SoC Camera driver for tw9910");
976MODULE_AUTHOR("Kuninori Morimoto");
977MODULE_LICENSE("GPL v2");