blob: 5e7672abe8158eac921cc329630a81e003602131 [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
206/*
207 * structure
208 */
209
210struct regval_list {
211 unsigned char reg_num;
212 unsigned char value;
213};
214
215struct tw9910_scale_ctrl {
216 char *name;
217 unsigned short width;
218 unsigned short height;
219 u16 hscale;
220 u16 vscale;
221};
222
223struct tw9910_cropping_ctrl {
224 u16 vdelay;
225 u16 vactive;
226 u16 hdelay;
227 u16 hactive;
228};
229
230struct tw9910_hsync_ctrl {
231 u16 start;
232 u16 end;
233};
234
235struct tw9910_priv {
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300236 struct v4l2_subdev subdev;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300237 struct tw9910_video_info *info;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300238 const struct tw9910_scale_ctrl *scale;
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300239 u32 revision;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300240};
241
242/*
243 * register settings
244 */
245
246#define ENDMARKER { 0xff, 0xff }
247
248static const struct regval_list tw9910_default_regs[] =
249{
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300250 { OUTCTR1, VSP_LO | VSSL_VVALID | HSP_HI | HSSL_HSYNC },
251 ENDMARKER,
252};
253
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300254static const struct tw9910_scale_ctrl tw9910_ntsc_scales[] = {
255 {
256 .name = "NTSC SQ",
257 .width = 640,
258 .height = 480,
259 .hscale = 0x0100,
260 .vscale = 0x0100,
261 },
262 {
263 .name = "NTSC CCIR601",
264 .width = 720,
265 .height = 480,
266 .hscale = 0x0100,
267 .vscale = 0x0100,
268 },
269 {
270 .name = "NTSC SQ (CIF)",
271 .width = 320,
272 .height = 240,
273 .hscale = 0x0200,
274 .vscale = 0x0200,
275 },
276 {
277 .name = "NTSC CCIR601 (CIF)",
278 .width = 360,
279 .height = 240,
280 .hscale = 0x0200,
281 .vscale = 0x0200,
282 },
283 {
284 .name = "NTSC SQ (QCIF)",
285 .width = 160,
286 .height = 120,
287 .hscale = 0x0400,
288 .vscale = 0x0400,
289 },
290 {
291 .name = "NTSC CCIR601 (QCIF)",
292 .width = 180,
293 .height = 120,
294 .hscale = 0x0400,
295 .vscale = 0x0400,
296 },
297};
298
299static const struct tw9910_scale_ctrl tw9910_pal_scales[] = {
300 {
301 .name = "PAL SQ",
302 .width = 768,
303 .height = 576,
304 .hscale = 0x0100,
305 .vscale = 0x0100,
306 },
307 {
308 .name = "PAL CCIR601",
309 .width = 720,
310 .height = 576,
311 .hscale = 0x0100,
312 .vscale = 0x0100,
313 },
314 {
315 .name = "PAL SQ (CIF)",
316 .width = 384,
317 .height = 288,
318 .hscale = 0x0200,
319 .vscale = 0x0200,
320 },
321 {
322 .name = "PAL CCIR601 (CIF)",
323 .width = 360,
324 .height = 288,
325 .hscale = 0x0200,
326 .vscale = 0x0200,
327 },
328 {
329 .name = "PAL SQ (QCIF)",
330 .width = 192,
331 .height = 144,
332 .hscale = 0x0400,
333 .vscale = 0x0400,
334 },
335 {
336 .name = "PAL CCIR601 (QCIF)",
337 .width = 180,
338 .height = 144,
339 .hscale = 0x0400,
340 .vscale = 0x0400,
341 },
342};
343
344static const struct tw9910_cropping_ctrl tw9910_cropping_ctrl = {
345 .vdelay = 0x0012,
346 .vactive = 0x00F0,
347 .hdelay = 0x0010,
348 .hactive = 0x02D0,
349};
350
351static const struct tw9910_hsync_ctrl tw9910_hsync_ctrl = {
352 .start = 0x0260,
353 .end = 0x0300,
354};
355
356/*
357 * general function
358 */
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300359static struct tw9910_priv *to_tw9910(const struct i2c_client *client)
360{
Guennadi Liakhovetski96c75392009-08-25 11:53:23 -0300361 return container_of(i2c_get_clientdata(client), struct tw9910_priv,
362 subdev);
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300363}
364
Kuninori Morimoto20797082009-12-11 11:34:51 -0300365static int tw9910_mask_set(struct i2c_client *client, u8 command,
366 u8 mask, u8 set)
367{
368 s32 val = i2c_smbus_read_byte_data(client, command);
369 if (val < 0)
370 return val;
371
372 val &= ~mask;
373 val |= set & mask;
374
375 return i2c_smbus_write_byte_data(client, command, val);
376}
377
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300378static int tw9910_set_scale(struct i2c_client *client,
379 const struct tw9910_scale_ctrl *scale)
380{
381 int ret;
382
383 ret = i2c_smbus_write_byte_data(client, SCALE_HI,
384 (scale->vscale & 0x0F00) >> 4 |
385 (scale->hscale & 0x0F00) >> 8);
386 if (ret < 0)
387 return ret;
388
389 ret = i2c_smbus_write_byte_data(client, HSCALE_LO,
390 scale->hscale & 0x00FF);
391 if (ret < 0)
392 return ret;
393
394 ret = i2c_smbus_write_byte_data(client, VSCALE_LO,
395 scale->vscale & 0x00FF);
396
397 return ret;
398}
399
400static int tw9910_set_cropping(struct i2c_client *client,
401 const struct tw9910_cropping_ctrl *cropping)
402{
403 int ret;
404
405 ret = i2c_smbus_write_byte_data(client, CROP_HI,
406 (cropping->vdelay & 0x0300) >> 2 |
407 (cropping->vactive & 0x0300) >> 4 |
408 (cropping->hdelay & 0x0300) >> 6 |
409 (cropping->hactive & 0x0300) >> 8);
410 if (ret < 0)
411 return ret;
412
413 ret = i2c_smbus_write_byte_data(client, VDELAY_LO,
414 cropping->vdelay & 0x00FF);
415 if (ret < 0)
416 return ret;
417
418 ret = i2c_smbus_write_byte_data(client, VACTIVE_LO,
419 cropping->vactive & 0x00FF);
420 if (ret < 0)
421 return ret;
422
423 ret = i2c_smbus_write_byte_data(client, HDELAY_LO,
424 cropping->hdelay & 0x00FF);
425 if (ret < 0)
426 return ret;
427
428 ret = i2c_smbus_write_byte_data(client, HACTIVE_LO,
429 cropping->hactive & 0x00FF);
430
431 return ret;
432}
433
434static int tw9910_set_hsync(struct i2c_client *client,
435 const struct tw9910_hsync_ctrl *hsync)
436{
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300437 struct tw9910_priv *priv = to_tw9910(client);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300438 int ret;
439
440 /* bit 10 - 3 */
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300441 ret = i2c_smbus_write_byte_data(client, HSBEGIN,
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300442 (hsync->start & 0x07F8) >> 3);
443 if (ret < 0)
444 return ret;
445
446 /* bit 10 - 3 */
447 ret = i2c_smbus_write_byte_data(client, HSEND,
448 (hsync->end & 0x07F8) >> 3);
449 if (ret < 0)
450 return ret;
451
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300452 /* So far only revisions 0 and 1 have been seen */
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300453 /* bit 2 - 0 */
Kuninori Morimotofaa58262009-12-11 11:34:51 -0300454 if (1 == priv->revision)
455 ret = tw9910_mask_set(client, HSLOWCTL, 0x77,
456 (hsync->start & 0x0007) << 4 |
457 (hsync->end & 0x0007));
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300458
459 return ret;
460}
461
462static int tw9910_write_array(struct i2c_client *client,
463 const struct regval_list *vals)
464{
465 while (vals->reg_num != 0xff) {
466 int ret = i2c_smbus_write_byte_data(client,
467 vals->reg_num,
468 vals->value);
469 if (ret < 0)
470 return ret;
471 vals++;
472 }
473 return 0;
474}
475
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300476static void tw9910_reset(struct i2c_client *client)
477{
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300478 tw9910_mask_set(client, ACNTL1, SRESET, SRESET);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300479 msleep(1);
480}
481
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300482static int tw9910_power(struct i2c_client *client, int enable)
483{
484 int ret;
485 u8 acntl1;
486 u8 acntl2;
487
488 if (enable) {
489 acntl1 = 0;
490 acntl2 = 0;
491 } else {
492 acntl1 = CLK_PDN | Y_PDN | C_PDN;
493 acntl2 = PLL_PDN;
494 }
495
496 ret = tw9910_mask_set(client, ACNTL1, ACNTL1_PDN_MASK, acntl1);
497 if (ret < 0)
498 return ret;
499
500 return tw9910_mask_set(client, ACNTL2, ACNTL2_PDN_MASK, acntl2);
501}
502
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300503static const struct tw9910_scale_ctrl*
504tw9910_select_norm(struct soc_camera_device *icd, u32 width, u32 height)
505{
506 const struct tw9910_scale_ctrl *scale;
507 const struct tw9910_scale_ctrl *ret = NULL;
508 v4l2_std_id norm = icd->vdev->current_norm;
509 __u32 diff = 0xffffffff, tmp;
510 int size, i;
511
512 if (norm & V4L2_STD_NTSC) {
513 scale = tw9910_ntsc_scales;
514 size = ARRAY_SIZE(tw9910_ntsc_scales);
515 } else if (norm & V4L2_STD_PAL) {
516 scale = tw9910_pal_scales;
517 size = ARRAY_SIZE(tw9910_pal_scales);
518 } else {
519 return NULL;
520 }
521
522 for (i = 0; i < size; i++) {
523 tmp = abs(width - scale[i].width) +
524 abs(height - scale[i].height);
525 if (tmp < diff) {
526 diff = tmp;
527 ret = scale + i;
528 }
529 }
530
531 return ret;
532}
533
534/*
535 * soc_camera_ops function
536 */
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300537static int tw9910_s_stream(struct v4l2_subdev *sd, int enable)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300538{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300539 struct i2c_client *client = sd->priv;
540 struct tw9910_priv *priv = to_tw9910(client);
Kuninori Morimoto06f292e2009-12-11 11:34:50 -0300541 u8 val;
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300542 int ret;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300543
Kuninori Morimoto06f292e2009-12-11 11:34:50 -0300544 if (!enable) {
545 switch (priv->revision) {
546 case 0:
547 val = OEN_TRI_SEL_ALL_OFF_r0;
548 break;
549 case 1:
550 val = OEN_TRI_SEL_ALL_OFF_r1;
551 break;
552 default:
553 dev_err(&client->dev, "un-supported revision\n");
554 return -EINVAL;
555 }
556 } else {
557 val = OEN_TRI_SEL_ALL_ON;
558
559 if (!priv->scale) {
560 dev_err(&client->dev, "norm select error\n");
561 return -EPERM;
562 }
563
564 dev_dbg(&client->dev, "%s %dx%d\n",
565 priv->scale->name,
566 priv->scale->width,
567 priv->scale->height);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300568 }
569
Kuninori Morimoto607e5ad2009-12-11 11:34:50 -0300570 ret = tw9910_mask_set(client, OPFORM, OEN_TRI_SEL_MASK, val);
571 if (ret < 0)
572 return ret;
573
574 return tw9910_power(client, enable);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300575}
576
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300577static int tw9910_set_bus_param(struct soc_camera_device *icd,
578 unsigned long flags)
579{
580 return 0;
581}
582
583static unsigned long tw9910_query_bus_param(struct soc_camera_device *icd)
584{
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300585 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300586 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300587 struct soc_camera_link *icl = to_soc_camera_link(icd);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300588 unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER |
589 SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH |
590 SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth;
591
592 return soc_camera_apply_sensor_flags(icl, flags);
593}
594
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300595static int tw9910_s_std(struct v4l2_subdev *sd, v4l2_std_id norm)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300596{
597 int ret = -EINVAL;
598
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300599 if (norm & (V4L2_STD_NTSC | V4L2_STD_PAL))
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300600 ret = 0;
601
602 return ret;
603}
604
605static int tw9910_enum_input(struct soc_camera_device *icd,
606 struct v4l2_input *inp)
607{
608 inp->type = V4L2_INPUT_TYPE_TUNER;
609 inp->std = V4L2_STD_UNKNOWN;
610 strcpy(inp->name, "Video");
611
612 return 0;
613}
614
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300615static int tw9910_g_chip_ident(struct v4l2_subdev *sd,
616 struct v4l2_dbg_chip_ident *id)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300617{
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300618 struct i2c_client *client = sd->priv;
619 struct tw9910_priv *priv = to_tw9910(client);
620
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300621 id->ident = V4L2_IDENT_TW9910;
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300622 id->revision = priv->revision;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300623
624 return 0;
625}
626
627#ifdef CONFIG_VIDEO_ADV_DEBUG
628static int tw9910_g_register(struct v4l2_subdev *sd,
629 struct v4l2_dbg_register *reg)
630{
631 struct i2c_client *client = sd->priv;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300632 int ret;
633
634 if (reg->reg > 0xff)
635 return -EINVAL;
636
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300637 ret = i2c_smbus_read_byte_data(client, reg->reg);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300638 if (ret < 0)
639 return ret;
640
Guennadi Liakhovetski5d28d522009-12-11 11:15:05 -0300641 /*
642 * ret = int
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300643 * reg->val = __u64
644 */
645 reg->val = (__u64)ret;
646
647 return 0;
648}
649
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300650static int tw9910_s_register(struct v4l2_subdev *sd,
651 struct v4l2_dbg_register *reg)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300652{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300653 struct i2c_client *client = sd->priv;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300654
655 if (reg->reg > 0xff ||
656 reg->val > 0xff)
657 return -EINVAL;
658
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300659 return i2c_smbus_write_byte_data(client, reg->reg, reg->val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300660}
661#endif
662
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300663static int tw9910_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300664{
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300665 struct v4l2_rect *rect = &a->c;
666 struct i2c_client *client = sd->priv;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300667 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300668 struct soc_camera_device *icd = client->dev.platform_data;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300669 int ret = -EINVAL;
670 u8 val;
671
672 /*
673 * select suitable norm
674 */
675 priv->scale = tw9910_select_norm(icd, rect->width, rect->height);
676 if (!priv->scale)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300677 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300678
679 /*
680 * reset hardware
681 */
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300682 tw9910_reset(client);
683 ret = tw9910_write_array(client, tw9910_default_regs);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300684 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300685 goto tw9910_set_fmt_error;
686
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300687 /*
688 * set bus width
689 */
690 val = 0x00;
691 if (SOCAM_DATAWIDTH_16 == priv->info->buswidth)
692 val = LEN;
693
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300694 ret = tw9910_mask_set(client, OPFORM, LEN, val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300695 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300696 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300697
698 /*
699 * select MPOUT behavior
700 */
701 switch (priv->info->mpout) {
702 case TW9910_MPO_VLOSS:
703 val = RTSEL_VLOSS; break;
704 case TW9910_MPO_HLOCK:
705 val = RTSEL_HLOCK; break;
706 case TW9910_MPO_SLOCK:
707 val = RTSEL_SLOCK; break;
708 case TW9910_MPO_VLOCK:
709 val = RTSEL_VLOCK; break;
710 case TW9910_MPO_MONO:
711 val = RTSEL_MONO; break;
712 case TW9910_MPO_DET50:
713 val = RTSEL_DET50; break;
714 case TW9910_MPO_FIELD:
715 val = RTSEL_FIELD; break;
716 case TW9910_MPO_RTCO:
717 val = RTSEL_RTCO; break;
718 default:
719 val = 0;
720 }
721
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300722 ret = tw9910_mask_set(client, VBICNTL, RTSEL_MASK, val);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300723 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300724 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300725
726 /*
727 * set scale
728 */
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300729 ret = tw9910_set_scale(client, priv->scale);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300730 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300731 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300732
733 /*
734 * set cropping
735 */
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300736 ret = tw9910_set_cropping(client, &tw9910_cropping_ctrl);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300737 if (ret < 0)
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300738 goto tw9910_set_fmt_error;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300739
740 /*
741 * set hsync
742 */
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300743 ret = tw9910_set_hsync(client, &tw9910_hsync_ctrl);
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300744 if (ret < 0)
745 goto tw9910_set_fmt_error;
746
Guennadi Liakhovetski123ab622009-08-25 11:46:52 -0300747 rect->width = priv->scale->width;
748 rect->height = priv->scale->height;
749 rect->left = 0;
750 rect->top = 0;
751
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300752 return ret;
753
754tw9910_set_fmt_error:
755
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300756 tw9910_reset(client);
Kuninori Morimoto6d756112008-12-29 06:04:16 -0300757 priv->scale = NULL;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300758
759 return ret;
760}
761
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300762static int tw9910_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
763{
764 struct i2c_client *client = sd->priv;
765 struct tw9910_priv *priv = to_tw9910(client);
766
767 if (!priv->scale) {
768 int ret;
769 struct v4l2_crop crop = {
770 .c = {
771 .left = 0,
772 .top = 0,
773 .width = 640,
774 .height = 480,
775 },
776 };
777 ret = tw9910_s_crop(sd, &crop);
778 if (ret < 0)
779 return ret;
780 }
781
782 a->c.left = 0;
783 a->c.top = 0;
784 a->c.width = priv->scale->width;
785 a->c.height = priv->scale->height;
786 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
787
788 return 0;
789}
790
791static int tw9910_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
792{
793 a->bounds.left = 0;
794 a->bounds.top = 0;
795 a->bounds.width = 768;
796 a->bounds.height = 576;
797 a->defrect.left = 0;
798 a->defrect.top = 0;
799 a->defrect.width = 640;
800 a->defrect.height = 480;
801 a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
802 a->pixelaspect.numerator = 1;
803 a->pixelaspect.denominator = 1;
804
805 return 0;
806}
807
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300808static int tw9910_g_fmt(struct v4l2_subdev *sd,
809 struct v4l2_mbus_framefmt *mf)
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300810{
811 struct i2c_client *client = sd->priv;
812 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300813
814 if (!priv->scale) {
815 int ret;
816 struct v4l2_crop crop = {
817 .c = {
818 .left = 0,
819 .top = 0,
820 .width = 640,
821 .height = 480,
822 },
823 };
824 ret = tw9910_s_crop(sd, &crop);
825 if (ret < 0)
826 return ret;
827 }
828
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300829 mf->width = priv->scale->width;
830 mf->height = priv->scale->height;
831 mf->code = V4L2_MBUS_FMT_YVYU8_2X8_BE;
832 mf->colorspace = V4L2_COLORSPACE_JPEG;
Kuninori Morimoto34cae302009-12-11 11:53:53 -0300833 mf->field = V4L2_FIELD_INTERLACED_BT;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300834
835 return 0;
836}
837
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300838static int tw9910_s_fmt(struct v4l2_subdev *sd,
839 struct v4l2_mbus_framefmt *mf)
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300840{
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300841 struct i2c_client *client = sd->priv;
842 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300843 /* See tw9910_s_crop() - no proper cropping support */
844 struct v4l2_crop a = {
845 .c = {
846 .left = 0,
847 .top = 0,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300848 .width = mf->width,
849 .height = mf->height,
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300850 },
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300851 };
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300852 int ret;
853
854 WARN_ON(mf->field != V4L2_FIELD_ANY &&
Kuninori Morimoto34cae302009-12-11 11:53:53 -0300855 mf->field != V4L2_FIELD_INTERLACED_BT);
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300856
857 /*
858 * check color format
859 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300860 if (mf->code != V4L2_MBUS_FMT_YVYU8_2X8_BE)
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300861 return -EINVAL;
862
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300863 mf->colorspace = V4L2_COLORSPACE_JPEG;
864
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300865 ret = tw9910_s_crop(sd, &a);
Guennadi Liakhovetski123ab622009-08-25 11:46:52 -0300866 if (!ret) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300867 mf->width = priv->scale->width;
868 mf->height = priv->scale->height;
Guennadi Liakhovetski123ab622009-08-25 11:46:52 -0300869 }
870 return ret;
Guennadi Liakhovetski09e231b2009-03-13 06:08:20 -0300871}
872
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300873static int tw9910_try_fmt(struct v4l2_subdev *sd,
874 struct v4l2_mbus_framefmt *mf)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300875{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300876 struct i2c_client *client = sd->priv;
877 struct soc_camera_device *icd = client->dev.platform_data;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300878 const struct tw9910_scale_ctrl *scale;
879
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300880 if (V4L2_FIELD_ANY == mf->field) {
Kuninori Morimoto34cae302009-12-11 11:53:53 -0300881 mf->field = V4L2_FIELD_INTERLACED_BT;
882 } else if (V4L2_FIELD_INTERLACED_BT != mf->field) {
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300883 dev_err(&client->dev, "Field type %d invalid.\n", mf->field);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300884 return -EINVAL;
885 }
886
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300887 mf->code = V4L2_MBUS_FMT_YVYU8_2X8_BE;
888 mf->colorspace = V4L2_COLORSPACE_JPEG;
889
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300890 /*
891 * select suitable norm
892 */
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300893 scale = tw9910_select_norm(icd, mf->width, mf->height);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300894 if (!scale)
895 return -EINVAL;
896
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300897 mf->width = scale->width;
898 mf->height = scale->height;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300899
900 return 0;
901}
902
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300903static int tw9910_video_probe(struct soc_camera_device *icd,
904 struct i2c_client *client)
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300905{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300906 struct tw9910_priv *priv = to_tw9910(client);
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300907 s32 id;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300908
909 /*
910 * We must have a parent by now. And it cannot be a wrong one.
911 * So this entire test is completely redundant.
912 */
913 if (!icd->dev.parent ||
914 to_soc_camera_host(icd->dev.parent)->nr != icd->iface)
915 return -ENODEV;
916
917 /*
918 * tw9910 only use 8 or 16 bit bus width
919 */
920 if (SOCAM_DATAWIDTH_16 != priv->info->buswidth &&
921 SOCAM_DATAWIDTH_8 != priv->info->buswidth) {
Guennadi Liakhovetski85f8be62009-08-25 11:47:00 -0300922 dev_err(&client->dev, "bus width error\n");
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300923 return -ENODEV;
924 }
925
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300926 /*
927 * check and show Product ID
Kuninori Morimoto4a4bc5e2009-12-11 11:06:00 -0300928 * So far only revisions 0 and 1 have been seen
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300929 */
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300930 id = i2c_smbus_read_byte_data(client, ID);
931 priv->revision = GET_REV(id);
932 id = GET_ID(id);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -0300933
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300934 if (0x0B != id ||
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300935 0x01 < priv->revision) {
Guennadi Liakhovetski85f8be62009-08-25 11:47:00 -0300936 dev_err(&client->dev,
Kuninori Morimoto6d74e5f2009-12-11 11:34:50 -0300937 "Product ID error %x:%x\n",
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300938 id, priv->revision);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300939 return -ENODEV;
940 }
941
Guennadi Liakhovetski85f8be62009-08-25 11:47:00 -0300942 dev_info(&client->dev,
Kuninori Morimoto88a67c52009-12-11 11:34:50 -0300943 "tw9910 Product ID %0x:%0x\n", id, priv->revision);
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300944
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300945 icd->vdev->tvnorms = V4L2_STD_NTSC | V4L2_STD_PAL;
946 icd->vdev->current_norm = V4L2_STD_NTSC;
947
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300948 return 0;
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300949}
950
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300951static struct soc_camera_ops tw9910_ops = {
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300952 .set_bus_param = tw9910_set_bus_param,
953 .query_bus_param = tw9910_query_bus_param,
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300954 .enum_input = tw9910_enum_input,
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300955};
956
957static struct v4l2_subdev_core_ops tw9910_subdev_core_ops = {
958 .g_chip_ident = tw9910_g_chip_ident,
959 .s_std = tw9910_s_std,
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300960#ifdef CONFIG_VIDEO_ADV_DEBUG
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300961 .g_register = tw9910_g_register,
962 .s_register = tw9910_s_register,
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300963#endif
964};
965
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300966static int tw9910_enum_fmt(struct v4l2_subdev *sd, int index,
967 enum v4l2_mbus_pixelcode *code)
968{
969 if (index)
970 return -EINVAL;
971
972 *code = V4L2_MBUS_FMT_YVYU8_2X8_BE;
973 return 0;
974}
975
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300976static struct v4l2_subdev_video_ops tw9910_subdev_video_ops = {
977 .s_stream = tw9910_s_stream,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300978 .g_mbus_fmt = tw9910_g_fmt,
979 .s_mbus_fmt = tw9910_s_fmt,
980 .try_mbus_fmt = tw9910_try_fmt,
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -0300981 .cropcap = tw9910_cropcap,
982 .g_crop = tw9910_g_crop,
Guennadi Liakhovetski08590b92009-08-25 11:46:54 -0300983 .s_crop = tw9910_s_crop,
Guennadi Liakhovetski760697b2009-12-11 11:46:49 -0300984 .enum_mbus_fmt = tw9910_enum_fmt,
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -0300985};
986
987static struct v4l2_subdev_ops tw9910_subdev_ops = {
988 .core = &tw9910_subdev_core_ops,
989 .video = &tw9910_subdev_video_ops,
990};
991
Kuninori Morimotoed922a82008-12-29 06:04:06 -0300992/*
993 * i2c_driver function
994 */
995
996static int tw9910_probe(struct i2c_client *client,
997 const struct i2c_device_id *did)
998
999{
1000 struct tw9910_priv *priv;
1001 struct tw9910_video_info *info;
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001002 struct soc_camera_device *icd = client->dev.platform_data;
1003 struct i2c_adapter *adapter =
1004 to_i2c_adapter(client->dev.parent);
1005 struct soc_camera_link *icl;
Guennadi Liakhovetski6a6c8782009-08-25 11:50:46 -03001006 int ret;
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001007
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001008 if (!icd) {
1009 dev_err(&client->dev, "TW9910: missing soc-camera data!\n");
1010 return -EINVAL;
1011 }
1012
1013 icl = to_soc_camera_link(icd);
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -03001014 if (!icl || !icl->priv)
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001015 return -EINVAL;
1016
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -03001017 info = icl->priv;
Guennadi Liakhovetski0a861e92009-05-12 15:13:32 +00001018
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001019 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001020 dev_err(&client->dev,
1021 "I2C-Adapter doesn't support "
1022 "I2C_FUNC_SMBUS_BYTE_DATA\n");
1023 return -EIO;
1024 }
1025
1026 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1027 if (!priv)
1028 return -ENOMEM;
1029
1030 priv->info = info;
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001031
1032 v4l2_i2c_subdev_init(&priv->subdev, client, &tw9910_subdev_ops);
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001033
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001034 icd->ops = &tw9910_ops;
Guennadi Liakhovetski0f448292009-12-11 11:31:35 -03001035 icd->iface = icl->bus_id;
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001036
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001037 ret = tw9910_video_probe(icd, client);
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001038 if (ret) {
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001039 icd->ops = NULL;
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001040 i2c_set_clientdata(client, NULL);
1041 kfree(priv);
1042 }
1043
1044 return ret;
1045}
1046
1047static int tw9910_remove(struct i2c_client *client)
1048{
Guennadi Liakhovetski979ea1d2009-08-25 11:43:33 -03001049 struct tw9910_priv *priv = to_tw9910(client);
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001050 struct soc_camera_device *icd = client->dev.platform_data;
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001051
Guennadi Liakhovetski40e2e092009-08-25 11:28:22 -03001052 icd->ops = NULL;
Kuninori Morimotoed922a82008-12-29 06:04:06 -03001053 i2c_set_clientdata(client, NULL);
1054 kfree(priv);
1055 return 0;
1056}
1057
1058static const struct i2c_device_id tw9910_id[] = {
1059 { "tw9910", 0 },
1060 { }
1061};
1062MODULE_DEVICE_TABLE(i2c, tw9910_id);
1063
1064static struct i2c_driver tw9910_i2c_driver = {
1065 .driver = {
1066 .name = "tw9910",
1067 },
1068 .probe = tw9910_probe,
1069 .remove = tw9910_remove,
1070 .id_table = tw9910_id,
1071};
1072
1073/*
1074 * module function
1075 */
1076static int __init tw9910_module_init(void)
1077{
1078 return i2c_add_driver(&tw9910_i2c_driver);
1079}
1080
1081static void __exit tw9910_module_exit(void)
1082{
1083 i2c_del_driver(&tw9910_i2c_driver);
1084}
1085
1086module_init(tw9910_module_init);
1087module_exit(tw9910_module_exit);
1088
1089MODULE_DESCRIPTION("SoC Camera driver for tw9910");
1090MODULE_AUTHOR("Kuninori Morimoto");
1091MODULE_LICENSE("GPL v2");