1fdc758041d5c980a6841da0ae6fbad393818a55
[pandora-kernel.git] / drivers / media / video / tw9910.c
1 /*
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>
27 #include <media/v4l2-subdev.h>
28 #include <media/soc_camera.h>
29 #include <media/tw9910.h>
30
31 #define GET_ID(val)  ((val & 0xF8) >> 3)
32 #define GET_REV(val) (val & 0x07)
33
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
120 #define HSBEGIN         0x6B
121 #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 */
155 #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 */
159
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                           */
184 #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 */
192
193 /* VBICNTL */
194
195 /* RTSEL : control the real time signal output from the MPOUT pin */
196 #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
210 struct regval_list {
211         unsigned char reg_num;
212         unsigned char value;
213 };
214
215 struct tw9910_scale_ctrl {
216         char           *name;
217         unsigned short  width;
218         unsigned short  height;
219         u16             hscale;
220         u16             vscale;
221 };
222
223 struct tw9910_cropping_ctrl {
224         u16 vdelay;
225         u16 vactive;
226         u16 hdelay;
227         u16 hactive;
228 };
229
230 struct tw9910_hsync_ctrl {
231         u16 start;
232         u16 end;
233 };
234
235 struct tw9910_priv {
236         struct v4l2_subdev                subdev;
237         struct tw9910_video_info       *info;
238         const struct tw9910_scale_ctrl *scale;
239         u32                             revision;
240 };
241
242 static const struct tw9910_scale_ctrl tw9910_ntsc_scales[] = {
243         {
244                 .name   = "NTSC SQ",
245                 .width  = 640,
246                 .height = 480,
247                 .hscale = 0x0100,
248                 .vscale = 0x0100,
249         },
250         {
251                 .name   = "NTSC CCIR601",
252                 .width  = 720,
253                 .height = 480,
254                 .hscale = 0x0100,
255                 .vscale = 0x0100,
256         },
257         {
258                 .name   = "NTSC SQ (CIF)",
259                 .width  = 320,
260                 .height = 240,
261                 .hscale = 0x0200,
262                 .vscale = 0x0200,
263         },
264         {
265                 .name   = "NTSC CCIR601 (CIF)",
266                 .width  = 360,
267                 .height = 240,
268                 .hscale = 0x0200,
269                 .vscale = 0x0200,
270         },
271         {
272                 .name   = "NTSC SQ (QCIF)",
273                 .width  = 160,
274                 .height = 120,
275                 .hscale = 0x0400,
276                 .vscale = 0x0400,
277         },
278         {
279                 .name   = "NTSC CCIR601 (QCIF)",
280                 .width  = 180,
281                 .height = 120,
282                 .hscale = 0x0400,
283                 .vscale = 0x0400,
284         },
285 };
286
287 static const struct tw9910_scale_ctrl tw9910_pal_scales[] = {
288         {
289                 .name   = "PAL SQ",
290                 .width  = 768,
291                 .height = 576,
292                 .hscale = 0x0100,
293                 .vscale = 0x0100,
294         },
295         {
296                 .name   = "PAL CCIR601",
297                 .width  = 720,
298                 .height = 576,
299                 .hscale = 0x0100,
300                 .vscale = 0x0100,
301         },
302         {
303                 .name   = "PAL SQ (CIF)",
304                 .width  = 384,
305                 .height = 288,
306                 .hscale = 0x0200,
307                 .vscale = 0x0200,
308         },
309         {
310                 .name   = "PAL CCIR601 (CIF)",
311                 .width  = 360,
312                 .height = 288,
313                 .hscale = 0x0200,
314                 .vscale = 0x0200,
315         },
316         {
317                 .name   = "PAL SQ (QCIF)",
318                 .width  = 192,
319                 .height = 144,
320                 .hscale = 0x0400,
321                 .vscale = 0x0400,
322         },
323         {
324                 .name   = "PAL CCIR601 (QCIF)",
325                 .width  = 180,
326                 .height = 144,
327                 .hscale = 0x0400,
328                 .vscale = 0x0400,
329         },
330 };
331
332 static const struct tw9910_cropping_ctrl tw9910_cropping_ctrl = {
333         .vdelay  = 0x0012,
334         .vactive = 0x00F0,
335         .hdelay  = 0x0010,
336         .hactive = 0x02D0,
337 };
338
339 static const struct tw9910_hsync_ctrl tw9910_hsync_ctrl = {
340         .start = 0x0260,
341         .end   = 0x0300,
342 };
343
344 /*
345  * general function
346  */
347 static struct tw9910_priv *to_tw9910(const struct i2c_client *client)
348 {
349         return container_of(i2c_get_clientdata(client), struct tw9910_priv,
350                             subdev);
351 }
352
353 static int tw9910_mask_set(struct i2c_client *client, u8 command,
354                            u8 mask, u8 set)
355 {
356         s32 val = i2c_smbus_read_byte_data(client, command);
357         if (val < 0)
358                 return val;
359
360         val &= ~mask;
361         val |= set & mask;
362
363         return i2c_smbus_write_byte_data(client, command, val);
364 }
365
366 static int tw9910_set_scale(struct i2c_client *client,
367                             const struct tw9910_scale_ctrl *scale)
368 {
369         int ret;
370
371         ret = i2c_smbus_write_byte_data(client, SCALE_HI,
372                                         (scale->vscale & 0x0F00) >> 4 |
373                                         (scale->hscale & 0x0F00) >> 8);
374         if (ret < 0)
375                 return ret;
376
377         ret = i2c_smbus_write_byte_data(client, HSCALE_LO,
378                                         scale->hscale & 0x00FF);
379         if (ret < 0)
380                 return ret;
381
382         ret = i2c_smbus_write_byte_data(client, VSCALE_LO,
383                                         scale->vscale & 0x00FF);
384
385         return ret;
386 }
387
388 static int tw9910_set_cropping(struct i2c_client *client,
389                                const struct tw9910_cropping_ctrl *cropping)
390 {
391         int ret;
392
393         ret = i2c_smbus_write_byte_data(client, CROP_HI,
394                                         (cropping->vdelay  & 0x0300) >> 2 |
395                                         (cropping->vactive & 0x0300) >> 4 |
396                                         (cropping->hdelay  & 0x0300) >> 6 |
397                                         (cropping->hactive & 0x0300) >> 8);
398         if (ret < 0)
399                 return ret;
400
401         ret = i2c_smbus_write_byte_data(client, VDELAY_LO,
402                                         cropping->vdelay & 0x00FF);
403         if (ret < 0)
404                 return ret;
405
406         ret = i2c_smbus_write_byte_data(client, VACTIVE_LO,
407                                         cropping->vactive & 0x00FF);
408         if (ret < 0)
409                 return ret;
410
411         ret = i2c_smbus_write_byte_data(client, HDELAY_LO,
412                                         cropping->hdelay & 0x00FF);
413         if (ret < 0)
414                 return ret;
415
416         ret = i2c_smbus_write_byte_data(client, HACTIVE_LO,
417                                         cropping->hactive & 0x00FF);
418
419         return ret;
420 }
421
422 static int tw9910_set_hsync(struct i2c_client *client,
423                             const struct tw9910_hsync_ctrl *hsync)
424 {
425         struct tw9910_priv *priv = to_tw9910(client);
426         int ret;
427
428         /* bit 10 - 3 */
429         ret = i2c_smbus_write_byte_data(client, HSBEGIN,
430                                         (hsync->start & 0x07F8) >> 3);
431         if (ret < 0)
432                 return ret;
433
434         /* bit 10 - 3 */
435         ret = i2c_smbus_write_byte_data(client, HSEND,
436                                         (hsync->end & 0x07F8) >> 3);
437         if (ret < 0)
438                 return ret;
439
440         /* So far only revisions 0 and 1 have been seen */
441         /* bit 2 - 0 */
442         if (1 == priv->revision)
443                 ret = tw9910_mask_set(client, HSLOWCTL, 0x77,
444                                       (hsync->start & 0x0007) << 4 |
445                                       (hsync->end   & 0x0007));
446
447         return ret;
448 }
449
450 static void tw9910_reset(struct i2c_client *client)
451 {
452         tw9910_mask_set(client, ACNTL1, SRESET, SRESET);
453         msleep(1);
454 }
455
456 static int tw9910_power(struct i2c_client *client, int enable)
457 {
458         int ret;
459         u8 acntl1;
460         u8 acntl2;
461
462         if (enable) {
463                 acntl1 = 0;
464                 acntl2 = 0;
465         } else {
466                 acntl1 = CLK_PDN | Y_PDN | C_PDN;
467                 acntl2 = PLL_PDN;
468         }
469
470         ret = tw9910_mask_set(client, ACNTL1, ACNTL1_PDN_MASK, acntl1);
471         if (ret < 0)
472                 return ret;
473
474         return tw9910_mask_set(client, ACNTL2, ACNTL2_PDN_MASK, acntl2);
475 }
476
477 static const struct tw9910_scale_ctrl*
478 tw9910_select_norm(struct soc_camera_device *icd, u32 width, u32 height)
479 {
480         const struct tw9910_scale_ctrl *scale;
481         const struct tw9910_scale_ctrl *ret = NULL;
482         v4l2_std_id norm = icd->vdev->current_norm;
483         __u32 diff = 0xffffffff, tmp;
484         int size, i;
485
486         if (norm & V4L2_STD_NTSC) {
487                 scale = tw9910_ntsc_scales;
488                 size = ARRAY_SIZE(tw9910_ntsc_scales);
489         } else if (norm & V4L2_STD_PAL) {
490                 scale = tw9910_pal_scales;
491                 size = ARRAY_SIZE(tw9910_pal_scales);
492         } else {
493                 return NULL;
494         }
495
496         for (i = 0; i < size; i++) {
497                 tmp = abs(width - scale[i].width) +
498                         abs(height - scale[i].height);
499                 if (tmp < diff) {
500                         diff = tmp;
501                         ret = scale + i;
502                 }
503         }
504
505         return ret;
506 }
507
508 /*
509  * soc_camera_ops function
510  */
511 static int tw9910_s_stream(struct v4l2_subdev *sd, int enable)
512 {
513         struct i2c_client *client = sd->priv;
514         struct tw9910_priv *priv = to_tw9910(client);
515         u8 val;
516         int ret;
517
518         if (!enable) {
519                 switch (priv->revision) {
520                 case 0:
521                         val = OEN_TRI_SEL_ALL_OFF_r0;
522                         break;
523                 case 1:
524                         val = OEN_TRI_SEL_ALL_OFF_r1;
525                         break;
526                 default:
527                         dev_err(&client->dev, "un-supported revision\n");
528                         return -EINVAL;
529                 }
530         } else {
531                 val = OEN_TRI_SEL_ALL_ON;
532
533                 if (!priv->scale) {
534                         dev_err(&client->dev, "norm select error\n");
535                         return -EPERM;
536                 }
537
538                 dev_dbg(&client->dev, "%s %dx%d\n",
539                         priv->scale->name,
540                         priv->scale->width,
541                         priv->scale->height);
542         }
543
544         ret = tw9910_mask_set(client, OPFORM, OEN_TRI_SEL_MASK, val);
545         if (ret < 0)
546                 return ret;
547
548         return tw9910_power(client, enable);
549 }
550
551 static int tw9910_set_bus_param(struct soc_camera_device *icd,
552                                 unsigned long flags)
553 {
554         struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
555         struct i2c_client *client = sd->priv;
556
557         /*
558          * set OUTCTR1
559          */
560         return i2c_smbus_write_byte_data(client, OUTCTR1,
561                                          VSSL_VVALID | HSSL_DVALID);
562 }
563
564 static unsigned long tw9910_query_bus_param(struct soc_camera_device *icd)
565 {
566         struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
567         struct tw9910_priv *priv = to_tw9910(client);
568         struct soc_camera_link *icl = to_soc_camera_link(icd);
569         unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER |
570                 SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH |
571                 SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth;
572
573         return soc_camera_apply_sensor_flags(icl, flags);
574 }
575
576 static int tw9910_s_std(struct v4l2_subdev *sd, v4l2_std_id norm)
577 {
578         int ret = -EINVAL;
579
580         if (norm & (V4L2_STD_NTSC | V4L2_STD_PAL))
581                 ret = 0;
582
583         return ret;
584 }
585
586 static int tw9910_enum_input(struct soc_camera_device *icd,
587                              struct v4l2_input *inp)
588 {
589         inp->type = V4L2_INPUT_TYPE_TUNER;
590         inp->std  = V4L2_STD_UNKNOWN;
591         strcpy(inp->name, "Video");
592
593         return 0;
594 }
595
596 static int tw9910_g_chip_ident(struct v4l2_subdev *sd,
597                                struct v4l2_dbg_chip_ident *id)
598 {
599         struct i2c_client *client = sd->priv;
600         struct tw9910_priv *priv = to_tw9910(client);
601
602         id->ident = V4L2_IDENT_TW9910;
603         id->revision = priv->revision;
604
605         return 0;
606 }
607
608 #ifdef CONFIG_VIDEO_ADV_DEBUG
609 static int tw9910_g_register(struct v4l2_subdev *sd,
610                              struct v4l2_dbg_register *reg)
611 {
612         struct i2c_client *client = sd->priv;
613         int ret;
614
615         if (reg->reg > 0xff)
616                 return -EINVAL;
617
618         ret = i2c_smbus_read_byte_data(client, reg->reg);
619         if (ret < 0)
620                 return ret;
621
622         /*
623          * ret      = int
624          * reg->val = __u64
625          */
626         reg->val = (__u64)ret;
627
628         return 0;
629 }
630
631 static int tw9910_s_register(struct v4l2_subdev *sd,
632                              struct v4l2_dbg_register *reg)
633 {
634         struct i2c_client *client = sd->priv;
635
636         if (reg->reg > 0xff ||
637             reg->val > 0xff)
638                 return -EINVAL;
639
640         return i2c_smbus_write_byte_data(client, reg->reg, reg->val);
641 }
642 #endif
643
644 static int tw9910_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
645 {
646         struct v4l2_rect *rect = &a->c;
647         struct i2c_client *client = sd->priv;
648         struct tw9910_priv *priv = to_tw9910(client);
649         struct soc_camera_device *icd = client->dev.platform_data;
650         int                 ret  = -EINVAL;
651         u8                  val;
652
653         /*
654          * select suitable norm
655          */
656         priv->scale = tw9910_select_norm(icd, rect->width, rect->height);
657         if (!priv->scale)
658                 goto tw9910_set_fmt_error;
659
660         /*
661          * reset hardware
662          */
663         tw9910_reset(client);
664
665         /*
666          * set bus width
667          */
668         val = 0x00;
669         if (SOCAM_DATAWIDTH_16 == priv->info->buswidth)
670                 val = LEN;
671
672         ret = tw9910_mask_set(client, OPFORM, LEN, val);
673         if (ret < 0)
674                 goto tw9910_set_fmt_error;
675
676         /*
677          * select MPOUT behavior
678          */
679         switch (priv->info->mpout) {
680         case TW9910_MPO_VLOSS:
681                 val = RTSEL_VLOSS; break;
682         case TW9910_MPO_HLOCK:
683                 val = RTSEL_HLOCK; break;
684         case TW9910_MPO_SLOCK:
685                 val = RTSEL_SLOCK; break;
686         case TW9910_MPO_VLOCK:
687                 val = RTSEL_VLOCK; break;
688         case TW9910_MPO_MONO:
689                 val = RTSEL_MONO;  break;
690         case TW9910_MPO_DET50:
691                 val = RTSEL_DET50; break;
692         case TW9910_MPO_FIELD:
693                 val = RTSEL_FIELD; break;
694         case TW9910_MPO_RTCO:
695                 val = RTSEL_RTCO;  break;
696         default:
697                 val = 0;
698         }
699
700         ret = tw9910_mask_set(client, VBICNTL, RTSEL_MASK, val);
701         if (ret < 0)
702                 goto tw9910_set_fmt_error;
703
704         /*
705          * set scale
706          */
707         ret = tw9910_set_scale(client, priv->scale);
708         if (ret < 0)
709                 goto tw9910_set_fmt_error;
710
711         /*
712          * set cropping
713          */
714         ret = tw9910_set_cropping(client, &tw9910_cropping_ctrl);
715         if (ret < 0)
716                 goto tw9910_set_fmt_error;
717
718         /*
719          * set hsync
720          */
721         ret = tw9910_set_hsync(client, &tw9910_hsync_ctrl);
722         if (ret < 0)
723                 goto tw9910_set_fmt_error;
724
725         rect->width = priv->scale->width;
726         rect->height = priv->scale->height;
727         rect->left = 0;
728         rect->top = 0;
729
730         return ret;
731
732 tw9910_set_fmt_error:
733
734         tw9910_reset(client);
735         priv->scale = NULL;
736
737         return ret;
738 }
739
740 static int tw9910_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a)
741 {
742         struct i2c_client *client = sd->priv;
743         struct tw9910_priv *priv = to_tw9910(client);
744
745         if (!priv->scale) {
746                 int ret;
747                 struct v4l2_crop crop = {
748                         .c = {
749                                 .left   = 0,
750                                 .top    = 0,
751                                 .width  = 640,
752                                 .height = 480,
753                         },
754                 };
755                 ret = tw9910_s_crop(sd, &crop);
756                 if (ret < 0)
757                         return ret;
758         }
759
760         a->c.left       = 0;
761         a->c.top        = 0;
762         a->c.width      = priv->scale->width;
763         a->c.height     = priv->scale->height;
764         a->type         = V4L2_BUF_TYPE_VIDEO_CAPTURE;
765
766         return 0;
767 }
768
769 static int tw9910_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a)
770 {
771         a->bounds.left                  = 0;
772         a->bounds.top                   = 0;
773         a->bounds.width                 = 768;
774         a->bounds.height                = 576;
775         a->defrect.left                 = 0;
776         a->defrect.top                  = 0;
777         a->defrect.width                = 640;
778         a->defrect.height               = 480;
779         a->type                         = V4L2_BUF_TYPE_VIDEO_CAPTURE;
780         a->pixelaspect.numerator        = 1;
781         a->pixelaspect.denominator      = 1;
782
783         return 0;
784 }
785
786 static int tw9910_g_fmt(struct v4l2_subdev *sd,
787                         struct v4l2_mbus_framefmt *mf)
788 {
789         struct i2c_client *client = sd->priv;
790         struct tw9910_priv *priv = to_tw9910(client);
791
792         if (!priv->scale) {
793                 int ret;
794                 struct v4l2_crop crop = {
795                         .c = {
796                                 .left   = 0,
797                                 .top    = 0,
798                                 .width  = 640,
799                                 .height = 480,
800                         },
801                 };
802                 ret = tw9910_s_crop(sd, &crop);
803                 if (ret < 0)
804                         return ret;
805         }
806
807         mf->width       = priv->scale->width;
808         mf->height      = priv->scale->height;
809         mf->code        = V4L2_MBUS_FMT_YVYU8_2X8_BE;
810         mf->colorspace  = V4L2_COLORSPACE_JPEG;
811         mf->field       = V4L2_FIELD_INTERLACED_BT;
812
813         return 0;
814 }
815
816 static int tw9910_s_fmt(struct v4l2_subdev *sd,
817                         struct v4l2_mbus_framefmt *mf)
818 {
819         struct i2c_client *client = sd->priv;
820         struct tw9910_priv *priv = to_tw9910(client);
821         /* See tw9910_s_crop() - no proper cropping support */
822         struct v4l2_crop a = {
823                 .c = {
824                         .left   = 0,
825                         .top    = 0,
826                         .width  = mf->width,
827                         .height = mf->height,
828                 },
829         };
830         int ret;
831
832         WARN_ON(mf->field != V4L2_FIELD_ANY &&
833                 mf->field != V4L2_FIELD_INTERLACED_BT);
834
835         /*
836          * check color format
837          */
838         if (mf->code != V4L2_MBUS_FMT_YVYU8_2X8_BE)
839                 return -EINVAL;
840
841         mf->colorspace = V4L2_COLORSPACE_JPEG;
842
843         ret = tw9910_s_crop(sd, &a);
844         if (!ret) {
845                 mf->width       = priv->scale->width;
846                 mf->height      = priv->scale->height;
847         }
848         return ret;
849 }
850
851 static int tw9910_try_fmt(struct v4l2_subdev *sd,
852                           struct v4l2_mbus_framefmt *mf)
853 {
854         struct i2c_client *client = sd->priv;
855         struct soc_camera_device *icd = client->dev.platform_data;
856         const struct tw9910_scale_ctrl *scale;
857
858         if (V4L2_FIELD_ANY == mf->field) {
859                 mf->field = V4L2_FIELD_INTERLACED_BT;
860         } else if (V4L2_FIELD_INTERLACED_BT != mf->field) {
861                 dev_err(&client->dev, "Field type %d invalid.\n", mf->field);
862                 return -EINVAL;
863         }
864
865         mf->code = V4L2_MBUS_FMT_YVYU8_2X8_BE;
866         mf->colorspace = V4L2_COLORSPACE_JPEG;
867
868         /*
869          * select suitable norm
870          */
871         scale = tw9910_select_norm(icd, mf->width, mf->height);
872         if (!scale)
873                 return -EINVAL;
874
875         mf->width       = scale->width;
876         mf->height      = scale->height;
877
878         return 0;
879 }
880
881 static int tw9910_video_probe(struct soc_camera_device *icd,
882                               struct i2c_client *client)
883 {
884         struct tw9910_priv *priv = to_tw9910(client);
885         s32 id;
886
887         /*
888          * We must have a parent by now. And it cannot be a wrong one.
889          * So this entire test is completely redundant.
890          */
891         if (!icd->dev.parent ||
892             to_soc_camera_host(icd->dev.parent)->nr != icd->iface)
893                 return -ENODEV;
894
895         /*
896          * tw9910 only use 8 or 16 bit bus width
897          */
898         if (SOCAM_DATAWIDTH_16 != priv->info->buswidth &&
899             SOCAM_DATAWIDTH_8  != priv->info->buswidth) {
900                 dev_err(&client->dev, "bus width error\n");
901                 return -ENODEV;
902         }
903
904         /*
905          * check and show Product ID
906          * So far only revisions 0 and 1 have been seen
907          */
908         id = i2c_smbus_read_byte_data(client, ID);
909         priv->revision = GET_REV(id);
910         id = GET_ID(id);
911
912         if (0x0B != id ||
913             0x01 < priv->revision) {
914                 dev_err(&client->dev,
915                         "Product ID error %x:%x\n",
916                         id, priv->revision);
917                 return -ENODEV;
918         }
919
920         dev_info(&client->dev,
921                  "tw9910 Product ID %0x:%0x\n", id, priv->revision);
922
923         icd->vdev->tvnorms      = V4L2_STD_NTSC | V4L2_STD_PAL;
924         icd->vdev->current_norm = V4L2_STD_NTSC;
925
926         return 0;
927 }
928
929 static struct soc_camera_ops tw9910_ops = {
930         .set_bus_param          = tw9910_set_bus_param,
931         .query_bus_param        = tw9910_query_bus_param,
932         .enum_input             = tw9910_enum_input,
933 };
934
935 static struct v4l2_subdev_core_ops tw9910_subdev_core_ops = {
936         .g_chip_ident   = tw9910_g_chip_ident,
937         .s_std          = tw9910_s_std,
938 #ifdef CONFIG_VIDEO_ADV_DEBUG
939         .g_register     = tw9910_g_register,
940         .s_register     = tw9910_s_register,
941 #endif
942 };
943
944 static int tw9910_enum_fmt(struct v4l2_subdev *sd, int index,
945                            enum v4l2_mbus_pixelcode *code)
946 {
947         if (index)
948                 return -EINVAL;
949
950         *code = V4L2_MBUS_FMT_YVYU8_2X8_BE;
951         return 0;
952 }
953
954 static struct v4l2_subdev_video_ops tw9910_subdev_video_ops = {
955         .s_stream       = tw9910_s_stream,
956         .g_mbus_fmt     = tw9910_g_fmt,
957         .s_mbus_fmt     = tw9910_s_fmt,
958         .try_mbus_fmt   = tw9910_try_fmt,
959         .cropcap        = tw9910_cropcap,
960         .g_crop         = tw9910_g_crop,
961         .s_crop         = tw9910_s_crop,
962         .enum_mbus_fmt  = tw9910_enum_fmt,
963 };
964
965 static struct v4l2_subdev_ops tw9910_subdev_ops = {
966         .core   = &tw9910_subdev_core_ops,
967         .video  = &tw9910_subdev_video_ops,
968 };
969
970 /*
971  * i2c_driver function
972  */
973
974 static int tw9910_probe(struct i2c_client *client,
975                         const struct i2c_device_id *did)
976
977 {
978         struct tw9910_priv             *priv;
979         struct tw9910_video_info       *info;
980         struct soc_camera_device       *icd = client->dev.platform_data;
981         struct i2c_adapter             *adapter =
982                 to_i2c_adapter(client->dev.parent);
983         struct soc_camera_link         *icl;
984         int                             ret;
985
986         if (!icd) {
987                 dev_err(&client->dev, "TW9910: missing soc-camera data!\n");
988                 return -EINVAL;
989         }
990
991         icl = to_soc_camera_link(icd);
992         if (!icl || !icl->priv)
993                 return -EINVAL;
994
995         info = icl->priv;
996
997         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
998                 dev_err(&client->dev,
999                         "I2C-Adapter doesn't support "
1000                         "I2C_FUNC_SMBUS_BYTE_DATA\n");
1001                 return -EIO;
1002         }
1003
1004         priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1005         if (!priv)
1006                 return -ENOMEM;
1007
1008         priv->info   = info;
1009
1010         v4l2_i2c_subdev_init(&priv->subdev, client, &tw9910_subdev_ops);
1011
1012         icd->ops     = &tw9910_ops;
1013         icd->iface   = icl->bus_id;
1014
1015         ret = tw9910_video_probe(icd, client);
1016         if (ret) {
1017                 icd->ops = NULL;
1018                 i2c_set_clientdata(client, NULL);
1019                 kfree(priv);
1020         }
1021
1022         return ret;
1023 }
1024
1025 static int tw9910_remove(struct i2c_client *client)
1026 {
1027         struct tw9910_priv *priv = to_tw9910(client);
1028         struct soc_camera_device *icd = client->dev.platform_data;
1029
1030         icd->ops = NULL;
1031         i2c_set_clientdata(client, NULL);
1032         kfree(priv);
1033         return 0;
1034 }
1035
1036 static const struct i2c_device_id tw9910_id[] = {
1037         { "tw9910", 0 },
1038         { }
1039 };
1040 MODULE_DEVICE_TABLE(i2c, tw9910_id);
1041
1042 static struct i2c_driver tw9910_i2c_driver = {
1043         .driver = {
1044                 .name = "tw9910",
1045         },
1046         .probe    = tw9910_probe,
1047         .remove   = tw9910_remove,
1048         .id_table = tw9910_id,
1049 };
1050
1051 /*
1052  * module function
1053  */
1054 static int __init tw9910_module_init(void)
1055 {
1056         return i2c_add_driver(&tw9910_i2c_driver);
1057 }
1058
1059 static void __exit tw9910_module_exit(void)
1060 {
1061         i2c_del_driver(&tw9910_i2c_driver);
1062 }
1063
1064 module_init(tw9910_module_init);
1065 module_exit(tw9910_module_exit);
1066
1067 MODULE_DESCRIPTION("SoC Camera driver for tw9910");
1068 MODULE_AUTHOR("Kuninori Morimoto");
1069 MODULE_LICENSE("GPL v2");