blob: a2d51e27e48d230bec2562898bedb73279b4a01b [file] [log] [blame]
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -03001/*
2 * ov772x Camera Driver
3 *
4 * Copyright (C) 2008 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 *
7 * Based on ov7670 and soc_camera_platform driver,
8 *
9 * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net>
10 * Copyright (C) 2008 Magnus Damm
11 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 */
17
18#include <linux/init.h>
19#include <linux/module.h>
20#include <linux/i2c.h>
21#include <linux/slab.h>
22#include <linux/delay.h>
23#include <linux/videodev2.h>
24#include <media/v4l2-chip-ident.h>
25#include <media/v4l2-common.h>
26#include <media/soc_camera.h>
27#include <media/ov772x.h>
28
29/*
30 * register offset
31 */
32#define GAIN 0x00 /* AGC - Gain control gain setting */
33#define BLUE 0x01 /* AWB - Blue channel gain setting */
34#define RED 0x02 /* AWB - Red channel gain setting */
35#define GREEN 0x03 /* AWB - Green channel gain setting */
36#define COM1 0x04 /* Common control 1 */
37#define BAVG 0x05 /* U/B Average Level */
38#define GAVG 0x06 /* Y/Gb Average Level */
39#define RAVG 0x07 /* V/R Average Level */
40#define AECH 0x08 /* Exposure Value - AEC MSBs */
41#define COM2 0x09 /* Common control 2 */
42#define PID 0x0A /* Product ID Number MSB */
43#define VER 0x0B /* Product ID Number LSB */
44#define COM3 0x0C /* Common control 3 */
45#define COM4 0x0D /* Common control 4 */
46#define COM5 0x0E /* Common control 5 */
47#define COM6 0x0F /* Common control 6 */
48#define AEC 0x10 /* Exposure Value */
49#define CLKRC 0x11 /* Internal clock */
50#define COM7 0x12 /* Common control 7 */
51#define COM8 0x13 /* Common control 8 */
52#define COM9 0x14 /* Common control 9 */
53#define COM10 0x15 /* Common control 10 */
54#define HSTART 0x17 /* Horizontal sensor size */
55#define HSIZE 0x18 /* Horizontal frame (HREF column) end high 8-bit */
56#define VSTART 0x19 /* Vertical frame (row) start high 8-bit */
57#define VSIZE 0x1A /* Vertical sensor size */
58#define PSHFT 0x1B /* Data format - pixel delay select */
59#define MIDH 0x1C /* Manufacturer ID byte - high */
60#define MIDL 0x1D /* Manufacturer ID byte - low */
61#define LAEC 0x1F /* Fine AEC value */
62#define COM11 0x20 /* Common control 11 */
63#define BDBASE 0x22 /* Banding filter Minimum AEC value */
64#define DBSTEP 0x23 /* Banding filter Maximum Setp */
65#define AEW 0x24 /* AGC/AEC - Stable operating region (upper limit) */
66#define AEB 0x25 /* AGC/AEC - Stable operating region (lower limit) */
67#define VPT 0x26 /* AGC/AEC Fast mode operating region */
68#define HOUTSIZE 0x29 /* Horizontal data output size MSBs */
69#define EXHCH 0x2A /* Dummy pixel insert MSB */
70#define EXHCL 0x2B /* Dummy pixel insert LSB */
71#define VOUTSIZE 0x2C /* Vertical data output size MSBs */
72#define ADVFL 0x2D /* LSB of insert dummy lines in Vertical direction */
73#define ADVFH 0x2E /* MSG of insert dummy lines in Vertical direction */
74#define YAVE 0x2F /* Y/G Channel Average value */
75#define LUMHTH 0x30 /* Histogram AEC/AGC Luminance high level threshold */
76#define LUMLTH 0x31 /* Histogram AEC/AGC Luminance low level threshold */
77#define HREF 0x32 /* Image start and size control */
78#define DM_LNL 0x33 /* Dummy line low 8 bits */
79#define DM_LNH 0x34 /* Dummy line high 8 bits */
80#define ADOFF_B 0x35 /* AD offset compensation value for B channel */
81#define ADOFF_R 0x36 /* AD offset compensation value for R channel */
82#define ADOFF_GB 0x37 /* AD offset compensation value for Gb channel */
83#define ADOFF_GR 0x38 /* AD offset compensation value for Gr channel */
84#define OFF_B 0x39 /* Analog process B channel offset value */
85#define OFF_R 0x3A /* Analog process R channel offset value */
86#define OFF_GB 0x3B /* Analog process Gb channel offset value */
87#define OFF_GR 0x3C /* Analog process Gr channel offset value */
88#define COM12 0x3D /* Common control 12 */
89#define COM13 0x3E /* Common control 13 */
90#define COM14 0x3F /* Common control 14 */
91#define COM15 0x40 /* Common control 15*/
92#define COM16 0x41 /* Common control 16 */
93#define TGT_B 0x42 /* BLC blue channel target value */
94#define TGT_R 0x43 /* BLC red channel target value */
95#define TGT_GB 0x44 /* BLC Gb channel target value */
96#define TGT_GR 0x45 /* BLC Gr channel target value */
97#define LCC0 0x46 /* Lens correction control 0 */
98#define LCC1 0x47 /* Lens correction option 1 - X coordinate */
99#define LCC2 0x48 /* Lens correction option 2 - Y coordinate */
100#define LCC3 0x49 /* Lens correction option 3 */
101#define LCC4 0x4A /* Lens correction option 4 - radius of the circular */
102#define LCC5 0x4B /* Lens correction option 5 */
103#define LCC6 0x4C /* Lens correction option 6 */
104#define FIXGAIN 0x4D /* Analog fix gain amplifer */
105#define AREF0 0x4E /* Sensor reference control */
106#define AREF1 0x4F /* Sensor reference current control */
107#define AREF2 0x50 /* Analog reference control */
108#define AREF3 0x51 /* ADC reference control */
109#define AREF4 0x52 /* ADC reference control */
110#define AREF5 0x53 /* ADC reference control */
111#define AREF6 0x54 /* Analog reference control */
112#define AREF7 0x55 /* Analog reference control */
113#define UFIX 0x60 /* U channel fixed value output */
114#define VFIX 0x61 /* V channel fixed value output */
Kuninori Morimotob3d7b2a2008-12-01 09:44:51 -0300115#define AWBB_BLK 0x62 /* AWB option for advanced AWB */
116#define AWB_CTRL0 0x63 /* AWB control byte 0 */
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300117#define DSP_CTRL1 0x64 /* DSP control byte 1 */
118#define DSP_CTRL2 0x65 /* DSP control byte 2 */
119#define DSP_CTRL3 0x66 /* DSP control byte 3 */
120#define DSP_CTRL4 0x67 /* DSP control byte 4 */
Kuninori Morimotob3d7b2a2008-12-01 09:44:51 -0300121#define AWB_BIAS 0x68 /* AWB BLC level clip */
122#define AWB_CTRL1 0x69 /* AWB control 1 */
123#define AWB_CTRL2 0x6A /* AWB control 2 */
124#define AWB_CTRL3 0x6B /* AWB control 3 */
125#define AWB_CTRL4 0x6C /* AWB control 4 */
126#define AWB_CTRL5 0x6D /* AWB control 5 */
127#define AWB_CTRL6 0x6E /* AWB control 6 */
128#define AWB_CTRL7 0x6F /* AWB control 7 */
129#define AWB_CTRL8 0x70 /* AWB control 8 */
130#define AWB_CTRL9 0x71 /* AWB control 9 */
131#define AWB_CTRL10 0x72 /* AWB control 10 */
132#define AWB_CTRL11 0x73 /* AWB control 11 */
133#define AWB_CTRL12 0x74 /* AWB control 12 */
134#define AWB_CTRL13 0x75 /* AWB control 13 */
135#define AWB_CTRL14 0x76 /* AWB control 14 */
136#define AWB_CTRL15 0x77 /* AWB control 15 */
137#define AWB_CTRL16 0x78 /* AWB control 16 */
138#define AWB_CTRL17 0x79 /* AWB control 17 */
139#define AWB_CTRL18 0x7A /* AWB control 18 */
140#define AWB_CTRL19 0x7B /* AWB control 19 */
141#define AWB_CTRL20 0x7C /* AWB control 20 */
142#define AWB_CTRL21 0x7D /* AWB control 21 */
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300143#define GAM1 0x7E /* Gamma Curve 1st segment input end point */
144#define GAM2 0x7F /* Gamma Curve 2nd segment input end point */
145#define GAM3 0x80 /* Gamma Curve 3rd segment input end point */
146#define GAM4 0x81 /* Gamma Curve 4th segment input end point */
147#define GAM5 0x82 /* Gamma Curve 5th segment input end point */
148#define GAM6 0x83 /* Gamma Curve 6th segment input end point */
149#define GAM7 0x84 /* Gamma Curve 7th segment input end point */
150#define GAM8 0x85 /* Gamma Curve 8th segment input end point */
151#define GAM9 0x86 /* Gamma Curve 9th segment input end point */
152#define GAM10 0x87 /* Gamma Curve 10th segment input end point */
153#define GAM11 0x88 /* Gamma Curve 11th segment input end point */
154#define GAM12 0x89 /* Gamma Curve 12th segment input end point */
155#define GAM13 0x8A /* Gamma Curve 13th segment input end point */
156#define GAM14 0x8B /* Gamma Curve 14th segment input end point */
157#define GAM15 0x8C /* Gamma Curve 15th segment input end point */
158#define SLOP 0x8D /* Gamma curve highest segment slope */
159#define DNSTH 0x8E /* De-noise threshold */
160#define EDGE0 0x8F /* Edge enhancement control 0 */
161#define EDGE1 0x90 /* Edge enhancement control 1 */
162#define DNSOFF 0x91 /* Auto De-noise threshold control */
163#define EDGE2 0x92 /* Edge enhancement strength low point control */
164#define EDGE3 0x93 /* Edge enhancement strength high point control */
165#define MTX1 0x94 /* Matrix coefficient 1 */
166#define MTX2 0x95 /* Matrix coefficient 2 */
167#define MTX3 0x96 /* Matrix coefficient 3 */
168#define MTX4 0x97 /* Matrix coefficient 4 */
169#define MTX5 0x98 /* Matrix coefficient 5 */
170#define MTX6 0x99 /* Matrix coefficient 6 */
171#define MTX_CTRL 0x9A /* Matrix control */
172#define BRIGHT 0x9B /* Brightness control */
173#define CNTRST 0x9C /* Contrast contrast */
174#define CNTRST_CTRL 0x9D /* Contrast contrast center */
175#define UVAD_J0 0x9E /* Auto UV adjust contrast 0 */
176#define UVAD_J1 0x9F /* Auto UV adjust contrast 1 */
177#define SCAL0 0xA0 /* Scaling control 0 */
178#define SCAL1 0xA1 /* Scaling control 1 */
179#define SCAL2 0xA2 /* Scaling control 2 */
180#define FIFODLYM 0xA3 /* FIFO manual mode delay control */
181#define FIFODLYA 0xA4 /* FIFO auto mode delay control */
182#define SDE 0xA6 /* Special digital effect control */
183#define USAT 0xA7 /* U component saturation control */
184#define VSAT 0xA8 /* V component saturation control */
185#define HUE0 0xA9 /* Hue control 0 */
186#define HUE1 0xAA /* Hue control 1 */
187#define SIGN 0xAB /* Sign bit for Hue and contrast */
188#define DSPAUTO 0xAC /* DSP auto function ON/OFF control */
189
190/*
191 * register detail
192 */
193
194/* COM2 */
195#define SOFT_SLEEP_MODE 0x10 /* Soft sleep mode */
196 /* Output drive capability */
197#define OCAP_1x 0x00 /* 1x */
198#define OCAP_2x 0x01 /* 2x */
199#define OCAP_3x 0x02 /* 3x */
200#define OCAP_4x 0x03 /* 4x */
201
202/* COM3 */
203#define SWAP_MASK 0x38
204
205#define VFIMG_ON_OFF 0x80 /* Vertical flip image ON/OFF selection */
206#define HMIMG_ON_OFF 0x40 /* Horizontal mirror image ON/OFF selection */
207#define SWAP_RGB 0x20 /* Swap B/R output sequence in RGB mode */
208#define SWAP_YUV 0x10 /* Swap Y/UV output sequence in YUV mode */
209#define SWAP_ML 0x08 /* Swap output MSB/LSB */
210 /* Tri-state option for output clock */
211#define NOTRI_CLOCK 0x04 /* 0: Tri-state at this period */
212 /* 1: No tri-state at this period */
213 /* Tri-state option for output data */
214#define NOTRI_DATA 0x02 /* 0: Tri-state at this period */
215 /* 1: No tri-state at this period */
216#define SCOLOR_TEST 0x01 /* Sensor color bar test pattern */
217
218/* COM4 */
219 /* PLL frequency control */
220#define PLL_BYPASS 0x00 /* 00: Bypass PLL */
221#define PLL_4x 0x40 /* 01: PLL 4x */
222#define PLL_6x 0x80 /* 10: PLL 6x */
223#define PLL_8x 0xc0 /* 11: PLL 8x */
224 /* AEC evaluate window */
225#define AEC_FULL 0x00 /* 00: Full window */
226#define AEC_1p2 0x10 /* 01: 1/2 window */
227#define AEC_1p4 0x20 /* 10: 1/4 window */
228#define AEC_2p3 0x30 /* 11: Low 2/3 window */
229
230/* COM5 */
231#define AFR_ON_OFF 0x80 /* Auto frame rate control ON/OFF selection */
232#define AFR_SPPED 0x40 /* Auto frame rate control speed slection */
233 /* Auto frame rate max rate control */
234#define AFR_NO_RATE 0x00 /* No reduction of frame rate */
235#define AFR_1p2 0x10 /* Max reduction to 1/2 frame rate */
236#define AFR_1p4 0x20 /* Max reduction to 1/4 frame rate */
237#define AFR_1p8 0x30 /* Max reduction to 1/8 frame rate */
238 /* Auto frame rate active point control */
239#define AF_2x 0x00 /* Add frame when AGC reaches 2x gain */
240#define AF_4x 0x04 /* Add frame when AGC reaches 4x gain */
241#define AF_8x 0x08 /* Add frame when AGC reaches 8x gain */
242#define AF_16x 0x0c /* Add frame when AGC reaches 16x gain */
243 /* AEC max step control */
244#define AEC_NO_LIMIT 0x01 /* 0 : AEC incease step has limit */
245 /* 1 : No limit to AEC increase step */
246
247/* COM7 */
248 /* SCCB Register Reset */
249#define SCCB_RESET 0x80 /* 0 : No change */
250 /* 1 : Resets all registers to default */
251 /* Resolution selection */
252#define SLCT_MASK 0x40 /* Mask of VGA or QVGA */
253#define SLCT_VGA 0x00 /* 0 : VGA */
254#define SLCT_QVGA 0x40 /* 1 : QVGA */
255#define ITU656_ON_OFF 0x20 /* ITU656 protocol ON/OFF selection */
256 /* RGB output format control */
257#define FMT_GBR422 0x00 /* 00 : GBR 4:2:2 */
258#define FMT_RGB565 0x04 /* 01 : RGB 565 */
259#define FMT_RGB555 0x08 /* 10 : RGB 555 */
260#define FMT_RGB444 0x0c /* 11 : RGB 444 */
261 /* Output format control */
262#define OFMT_YUV 0x00 /* 00 : YUV */
263#define OFMT_P_BRAW 0x01 /* 01 : Processed Bayer RAW */
264#define OFMT_RGB 0x02 /* 10 : RGB */
265#define OFMT_BRAW 0x03 /* 11 : Bayer RAW */
266
267/* COM8 */
268#define FAST_ALGO 0x80 /* Enable fast AGC/AEC algorithm */
269 /* AEC Setp size limit */
270#define UNLMT_STEP 0x40 /* 0 : Step size is limited */
271 /* 1 : Unlimited step size */
272#define BNDF_ON_OFF 0x20 /* Banding filter ON/OFF */
273#define AEC_BND 0x10 /* Enable AEC below banding value */
274#define AEC_ON_OFF 0x08 /* Fine AEC ON/OFF control */
275#define AGC_ON 0x04 /* AGC Enable */
276#define AWB_ON 0x02 /* AWB Enable */
277#define AEC_ON 0x01 /* AEC Enable */
278
279/* COM9 */
280#define BASE_AECAGC 0x80 /* Histogram or average based AEC/AGC */
281 /* Automatic gain ceiling - maximum AGC value */
282#define GAIN_2x 0x00 /* 000 : 2x */
283#define GAIN_4x 0x10 /* 001 : 4x */
284#define GAIN_8x 0x20 /* 010 : 8x */
285#define GAIN_16x 0x30 /* 011 : 16x */
286#define GAIN_32x 0x40 /* 100 : 32x */
287#define GAIN_64x 0x50 /* 101 : 64x */
288#define GAIN_128x 0x60 /* 110 : 128x */
289#define DROP_VSYNC 0x04 /* Drop VSYNC output of corrupt frame */
290#define DROP_HREF 0x02 /* Drop HREF output of corrupt frame */
291
292/* COM11 */
293#define SGLF_ON_OFF 0x02 /* Single frame ON/OFF selection */
294#define SGLF_TRIG 0x01 /* Single frame transfer trigger */
295
296/* EXHCH */
297#define VSIZE_LSB 0x04 /* Vertical data output size LSB */
298
299/* DSP_CTRL1 */
300#define FIFO_ON 0x80 /* FIFO enable/disable selection */
301#define UV_ON_OFF 0x40 /* UV adjust function ON/OFF selection */
302#define YUV444_2_422 0x20 /* YUV444 to 422 UV channel option selection */
303#define CLR_MTRX_ON_OFF 0x10 /* Color matrix ON/OFF selection */
304#define INTPLT_ON_OFF 0x08 /* Interpolation ON/OFF selection */
305#define GMM_ON_OFF 0x04 /* Gamma function ON/OFF selection */
306#define AUTO_BLK_ON_OFF 0x02 /* Black defect auto correction ON/OFF */
307#define AUTO_WHT_ON_OFF 0x01 /* White define auto correction ON/OFF */
308
309/* DSP_CTRL3 */
310#define UV_MASK 0x80 /* UV output sequence option */
311#define UV_ON 0x80 /* ON */
312#define UV_OFF 0x00 /* OFF */
313#define CBAR_MASK 0x20 /* DSP Color bar mask */
314#define CBAR_ON 0x20 /* ON */
315#define CBAR_OFF 0x00 /* OFF */
316
317/* HSTART */
318#define HST_VGA 0x23
319#define HST_QVGA 0x3F
320
321/* HSIZE */
322#define HSZ_VGA 0xA0
323#define HSZ_QVGA 0x50
324
325/* VSTART */
326#define VST_VGA 0x07
327#define VST_QVGA 0x03
328
329/* VSIZE */
330#define VSZ_VGA 0xF0
331#define VSZ_QVGA 0x78
332
333/* HOUTSIZE */
334#define HOSZ_VGA 0xA0
335#define HOSZ_QVGA 0x50
336
337/* VOUTSIZE */
338#define VOSZ_VGA 0xF0
339#define VOSZ_QVGA 0x78
340
341/*
342 * bit configure (32 bit)
343 * this is used in struct ov772x_color_format :: option
344 */
345#define OP_UV 0x00000001
346#define OP_SWAP_RGB 0x00000002
347
348/*
349 * struct
350 */
351struct regval_list {
352 unsigned char reg_num;
353 unsigned char value;
354};
355
356struct ov772x_color_format {
357 char *name;
358 __u32 fourcc;
359 const struct regval_list *regs;
360 unsigned int option;
361};
362
363struct ov772x_win_size {
364 char *name;
365 __u32 width;
366 __u32 height;
367 unsigned char com7_bit;
368 const struct regval_list *regs;
369};
370
371struct ov772x_priv {
372 struct ov772x_camera_info *info;
373 struct i2c_client *client;
374 struct soc_camera_device icd;
375 const struct ov772x_color_format *fmt;
376 const struct ov772x_win_size *win;
377};
378
379#define ENDMARKER { 0xff, 0xff }
380
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300381/*
382 * register setting for color format
383 */
384static const struct regval_list ov772x_RGB555_regs[] = {
Kuninori Morimoto2d425132008-12-17 14:05:45 -0300385 { COM3, 0x00 },
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300386 { COM7, FMT_RGB555 | OFMT_RGB },
387 ENDMARKER,
388};
389
390static const struct regval_list ov772x_RGB565_regs[] = {
Kuninori Morimoto2d425132008-12-17 14:05:45 -0300391 { COM3, 0x00 },
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300392 { COM7, FMT_RGB565 | OFMT_RGB },
393 ENDMARKER,
394};
395
396static const struct regval_list ov772x_YYUV_regs[] = {
397 { COM3, SWAP_YUV },
398 { COM7, OFMT_YUV },
399 ENDMARKER,
400};
401
402static const struct regval_list ov772x_UVYY_regs[] = {
Kuninori Morimoto2d425132008-12-17 14:05:45 -0300403 { COM3, 0x00 },
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300404 { COM7, OFMT_YUV },
405 ENDMARKER,
406};
407
408
409/*
410 * register setting for window size
411 */
412static const struct regval_list ov772x_qvga_regs[] = {
413 { HSTART, HST_QVGA },
414 { HSIZE, HSZ_QVGA },
415 { VSTART, VST_QVGA },
416 { VSIZE, VSZ_QVGA },
417 { HOUTSIZE, HOSZ_QVGA },
418 { VOUTSIZE, VOSZ_QVGA },
419 ENDMARKER,
420};
421
422static const struct regval_list ov772x_vga_regs[] = {
423 { HSTART, HST_VGA },
424 { HSIZE, HSZ_VGA },
425 { VSTART, VST_VGA },
426 { VSIZE, VSZ_VGA },
427 { HOUTSIZE, HOSZ_VGA },
428 { VOUTSIZE, VOSZ_VGA },
429 ENDMARKER,
430};
431
432/*
433 * supported format list
434 */
435
436#define SETFOURCC(type) .name = (#type), .fourcc = (V4L2_PIX_FMT_ ## type)
437static const struct soc_camera_data_format ov772x_fmt_lists[] = {
438 {
439 SETFOURCC(YUYV),
440 .depth = 16,
441 .colorspace = V4L2_COLORSPACE_JPEG,
442 },
443 {
444 SETFOURCC(YVYU),
445 .depth = 16,
446 .colorspace = V4L2_COLORSPACE_JPEG,
447 },
448 {
449 SETFOURCC(UYVY),
450 .depth = 16,
451 .colorspace = V4L2_COLORSPACE_JPEG,
452 },
453 {
454 SETFOURCC(RGB555),
455 .depth = 16,
456 .colorspace = V4L2_COLORSPACE_SRGB,
457 },
458 {
459 SETFOURCC(RGB555X),
460 .depth = 16,
461 .colorspace = V4L2_COLORSPACE_SRGB,
462 },
463 {
464 SETFOURCC(RGB565),
465 .depth = 16,
466 .colorspace = V4L2_COLORSPACE_SRGB,
467 },
468 {
469 SETFOURCC(RGB565X),
470 .depth = 16,
471 .colorspace = V4L2_COLORSPACE_SRGB,
472 },
473};
474
475/*
476 * color format list
477 */
478#define T_YUYV 0
479static const struct ov772x_color_format ov772x_cfmts[] = {
480 [T_YUYV] = {
481 SETFOURCC(YUYV),
482 .regs = ov772x_YYUV_regs,
483 },
484 {
485 SETFOURCC(YVYU),
486 .regs = ov772x_YYUV_regs,
487 .option = OP_UV,
488 },
489 {
490 SETFOURCC(UYVY),
491 .regs = ov772x_UVYY_regs,
492 },
493 {
494 SETFOURCC(RGB555),
495 .regs = ov772x_RGB555_regs,
496 .option = OP_SWAP_RGB,
497 },
498 {
499 SETFOURCC(RGB555X),
500 .regs = ov772x_RGB555_regs,
501 },
502 {
503 SETFOURCC(RGB565),
504 .regs = ov772x_RGB565_regs,
505 .option = OP_SWAP_RGB,
506 },
507 {
508 SETFOURCC(RGB565X),
509 .regs = ov772x_RGB565_regs,
510 },
511};
512
513
514/*
515 * window size list
516 */
517#define VGA_WIDTH 640
518#define VGA_HEIGHT 480
519#define QVGA_WIDTH 320
520#define QVGA_HEIGHT 240
521#define MAX_WIDTH VGA_WIDTH
522#define MAX_HEIGHT VGA_HEIGHT
523
524static const struct ov772x_win_size ov772x_win_vga = {
525 .name = "VGA",
526 .width = VGA_WIDTH,
527 .height = VGA_HEIGHT,
528 .com7_bit = SLCT_VGA,
529 .regs = ov772x_vga_regs,
530};
531
532static const struct ov772x_win_size ov772x_win_qvga = {
533 .name = "QVGA",
534 .width = QVGA_WIDTH,
535 .height = QVGA_HEIGHT,
536 .com7_bit = SLCT_QVGA,
537 .regs = ov772x_qvga_regs,
538};
539
540
541/*
542 * general function
543 */
544
545static int ov772x_write_array(struct i2c_client *client,
546 const struct regval_list *vals)
547{
548 while (vals->reg_num != 0xff) {
549 int ret = i2c_smbus_write_byte_data(client,
550 vals->reg_num,
551 vals->value);
552 if (ret < 0)
553 return ret;
554 vals++;
555 }
556 return 0;
557}
558
559static int ov772x_mask_set(struct i2c_client *client,
560 u8 command,
561 u8 mask,
562 u8 set)
563{
564 s32 val = i2c_smbus_read_byte_data(client, command);
565 val &= ~mask;
566 val |= set;
567
568 return i2c_smbus_write_byte_data(client, command, val);
569}
570
571static int ov772x_reset(struct i2c_client *client)
572{
573 int ret = i2c_smbus_write_byte_data(client, COM7, SCCB_RESET);
574 msleep(1);
575 return ret;
576}
577
578/*
579 * soc_camera_ops function
580 */
581
582static int ov772x_init(struct soc_camera_device *icd)
583{
Kuninori Morimotob90c0322008-12-01 09:44:48 -0300584 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
585 int ret = 0;
586
587 if (priv->info->link.power) {
588 ret = priv->info->link.power(&priv->client->dev, 1);
589 if (ret < 0)
590 return ret;
591 }
592
593 if (priv->info->link.reset)
594 ret = priv->info->link.reset(&priv->client->dev);
595
596 return ret;
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300597}
598
599static int ov772x_release(struct soc_camera_device *icd)
600{
Kuninori Morimotob90c0322008-12-01 09:44:48 -0300601 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
602 int ret = 0;
603
604 if (priv->info->link.power)
605 ret = priv->info->link.power(&priv->client->dev, 0);
606
607 return ret;
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300608}
609
610static int ov772x_start_capture(struct soc_camera_device *icd)
611{
612 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
613 int ret;
614
615
616 if (!priv->win)
617 priv->win = &ov772x_win_vga;
618 if (!priv->fmt)
619 priv->fmt = &ov772x_cfmts[T_YUYV];
620
621 /*
622 * reset hardware
623 */
624 ov772x_reset(priv->client);
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300625
626 /*
627 * set color format
628 */
629 ret = ov772x_write_array(priv->client, priv->fmt->regs);
630 if (ret < 0)
631 goto start_end;
632
633 /*
634 * set size format
635 */
636 ret = ov772x_write_array(priv->client, priv->win->regs);
637 if (ret < 0)
638 goto start_end;
639
640 /*
641 * set COM7 bit ( QVGA or VGA )
642 */
643 ret = ov772x_mask_set(priv->client,
644 COM7, SLCT_MASK, priv->win->com7_bit);
645 if (ret < 0)
646 goto start_end;
647
648 /*
649 * set UV setting
650 */
651 if (priv->fmt->option & OP_UV) {
652 ret = ov772x_mask_set(priv->client,
653 DSP_CTRL3, UV_MASK, UV_ON);
654 if (ret < 0)
655 goto start_end;
656 }
657
658 /*
659 * set SWAP setting
660 */
661 if (priv->fmt->option & OP_SWAP_RGB) {
662 ret = ov772x_mask_set(priv->client,
663 COM3, SWAP_MASK, SWAP_RGB);
664 if (ret < 0)
665 goto start_end;
666 }
667
668 dev_info(&icd->dev,
669 "format %s, win %s\n", priv->fmt->name, priv->win->name);
670
671start_end:
672 priv->fmt = NULL;
673 priv->win = NULL;
674
675 return ret;
676}
677
678static int ov772x_stop_capture(struct soc_camera_device *icd)
679{
680 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
681 ov772x_reset(priv->client);
682 return 0;
683}
684
685static int ov772x_set_bus_param(struct soc_camera_device *icd,
686 unsigned long flags)
687{
688 return 0;
689}
690
691static unsigned long ov772x_query_bus_param(struct soc_camera_device *icd)
692{
693 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
694
695 return SOCAM_PCLK_SAMPLE_RISING |
696 SOCAM_HSYNC_ACTIVE_HIGH |
697 SOCAM_VSYNC_ACTIVE_HIGH |
698 SOCAM_MASTER |
699 priv->info->buswidth;
700}
701
702static int ov772x_get_chip_id(struct soc_camera_device *icd,
703 struct v4l2_chip_ident *id)
704{
705 id->ident = V4L2_IDENT_OV772X;
706 id->revision = 0;
707
708 return 0;
709}
710
711#ifdef CONFIG_VIDEO_ADV_DEBUG
712static int ov772x_get_register(struct soc_camera_device *icd,
713 struct v4l2_register *reg)
714{
715 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
716 int ret;
717
718 if (reg->reg > 0xff)
719 return -EINVAL;
720
721 ret = i2c_smbus_read_byte_data(priv->client, reg->reg);
722 if (ret < 0)
723 return ret;
724
725 reg->val = (__u64)ret;
726
727 return 0;
728}
729
730static int ov772x_set_register(struct soc_camera_device *icd,
731 struct v4l2_register *reg)
732{
733 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
734
735 if (reg->reg > 0xff ||
736 reg->val > 0xff)
737 return -EINVAL;
738
739 return i2c_smbus_write_byte_data(priv->client, reg->reg, reg->val);
740}
741#endif
742
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -0300743static int ov772x_set_fmt(struct soc_camera_device *icd,
744 __u32 pixfmt,
745 struct v4l2_rect *rect)
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300746{
747 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
748 int ret = -EINVAL;
749 int i;
750
751 /*
752 * select format
753 */
754 priv->fmt = NULL;
755 for (i = 0; i < ARRAY_SIZE(ov772x_cfmts); i++) {
756 if (pixfmt == ov772x_cfmts[i].fourcc) {
757 priv->fmt = ov772x_cfmts + i;
758 ret = 0;
759 break;
760 }
761 }
762
763 return ret;
764}
765
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -0300766static int ov772x_try_fmt(struct soc_camera_device *icd,
767 struct v4l2_format *f)
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300768{
769 struct v4l2_pix_format *pix = &f->fmt.pix;
770 struct ov772x_priv *priv;
771
772 priv = container_of(icd, struct ov772x_priv, icd);
773
774 /* QVGA */
775 if (pix->width <= ov772x_win_qvga.width ||
776 pix->height <= ov772x_win_qvga.height) {
777 priv->win = &ov772x_win_qvga;
778 pix->width = ov772x_win_qvga.width;
779 pix->height = ov772x_win_qvga.height;
780 }
781
782 /* VGA */
783 else if (pix->width <= ov772x_win_vga.width ||
784 pix->height <= ov772x_win_vga.height) {
785 priv->win = &ov772x_win_vga;
786 pix->width = ov772x_win_vga.width;
787 pix->height = ov772x_win_vga.height;
788 }
789
790 pix->field = V4L2_FIELD_NONE;
791
792 return 0;
793}
794
795static int ov772x_video_probe(struct soc_camera_device *icd)
796{
797 struct ov772x_priv *priv = container_of(icd, struct ov772x_priv, icd);
798 u8 pid, ver;
799
800 /*
801 * We must have a parent by now. And it cannot be a wrong one.
802 * So this entire test is completely redundant.
803 */
804 if (!icd->dev.parent ||
805 to_soc_camera_host(icd->dev.parent)->nr != icd->iface)
806 return -ENODEV;
807
808 /*
809 * ov772x only use 8 or 10 bit bus width
810 */
811 if (SOCAM_DATAWIDTH_10 != priv->info->buswidth &&
812 SOCAM_DATAWIDTH_8 != priv->info->buswidth) {
813 dev_err(&icd->dev, "bus width error\n");
814 return -ENODEV;
815 }
816
817 icd->formats = ov772x_fmt_lists;
818 icd->num_formats = ARRAY_SIZE(ov772x_fmt_lists);
819
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300820 /*
821 * check and show product ID and manufacturer ID
822 */
823 pid = i2c_smbus_read_byte_data(priv->client, PID);
824 ver = i2c_smbus_read_byte_data(priv->client, VER);
825 if (pid != 0x77 ||
826 ver != 0x21) {
Kuninori Morimotob90c0322008-12-01 09:44:48 -0300827 dev_err(&icd->dev,
828 "Product ID error %x:%x\n", pid, ver);
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300829 return -ENODEV;
830 }
831
832 dev_info(&icd->dev,
833 "ov772x Product ID %0x:%0x Manufacturer ID %x:%x\n",
834 pid,
835 ver,
836 i2c_smbus_read_byte_data(priv->client, MIDH),
837 i2c_smbus_read_byte_data(priv->client, MIDL));
838
839
840 return soc_camera_video_start(icd);
841}
842
843static void ov772x_video_remove(struct soc_camera_device *icd)
844{
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300845 soc_camera_video_stop(icd);
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300846}
847
848static struct soc_camera_ops ov772x_ops = {
849 .owner = THIS_MODULE,
850 .probe = ov772x_video_probe,
851 .remove = ov772x_video_remove,
852 .init = ov772x_init,
853 .release = ov772x_release,
854 .start_capture = ov772x_start_capture,
855 .stop_capture = ov772x_stop_capture,
Guennadi Liakhovetskid8fac212008-12-01 09:45:21 -0300856 .set_fmt = ov772x_set_fmt,
857 .try_fmt = ov772x_try_fmt,
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300858 .set_bus_param = ov772x_set_bus_param,
859 .query_bus_param = ov772x_query_bus_param,
860 .get_chip_id = ov772x_get_chip_id,
861#ifdef CONFIG_VIDEO_ADV_DEBUG
862 .get_register = ov772x_get_register,
863 .set_register = ov772x_set_register,
864#endif
865};
866
867/*
868 * i2c_driver function
869 */
870
Hans Verkuilbef216b2008-10-30 10:57:14 -0300871static int ov772x_probe(struct i2c_client *client,
872 const struct i2c_device_id *did)
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300873{
874 struct ov772x_priv *priv;
875 struct ov772x_camera_info *info;
876 struct soc_camera_device *icd;
877 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
878 int ret;
879
880 info = client->dev.platform_data;
881 if (!info)
882 return -EINVAL;
883
884 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
885 dev_err(&adapter->dev,
886 "I2C-Adapter doesn't support "
887 "I2C_FUNC_SMBUS_BYTE_DATA\n");
888 return -EIO;
889 }
890
891 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
892 if (!priv)
893 return -ENOMEM;
894
895 priv->info = info;
896 priv->client = client;
897 i2c_set_clientdata(client, priv);
898
899 icd = &priv->icd;
900 icd->ops = &ov772x_ops;
901 icd->control = &client->dev;
902 icd->width_max = MAX_WIDTH;
903 icd->height_max = MAX_HEIGHT;
904 icd->iface = priv->info->link.bus_id;
905
906 ret = soc_camera_device_register(icd);
907
908 if (ret)
909 kfree(priv);
910
911 return ret;
912}
913
914static int ov772x_remove(struct i2c_client *client)
915{
916 struct ov772x_priv *priv = i2c_get_clientdata(client);
917
918 soc_camera_device_unregister(&priv->icd);
919 kfree(priv);
920 return 0;
921}
922
923static const struct i2c_device_id ov772x_id[] = {
924 {"ov772x", 0},
925 { }
926};
927MODULE_DEVICE_TABLE(i2c, ov772x_id);
928
Kuninori Morimoto08a66ae2008-10-24 15:43:07 -0300929static struct i2c_driver ov772x_i2c_driver = {
930 .driver = {
931 .name = "ov772x",
932 },
933 .probe = ov772x_probe,
934 .remove = ov772x_remove,
935 .id_table = ov772x_id,
936};
937
938/*
939 * module function
940 */
941
942static int __init ov772x_module_init(void)
943{
944 printk(KERN_INFO "ov772x driver\n");
945 return i2c_add_driver(&ov772x_i2c_driver);
946}
947
948static void __exit ov772x_module_exit(void)
949{
950 i2c_del_driver(&ov772x_i2c_driver);
951}
952
953module_init(ov772x_module_init);
954module_exit(ov772x_module_exit);
955
956MODULE_DESCRIPTION("SoC Camera driver for ov772x");
957MODULE_AUTHOR("Kuninori Morimoto");
958MODULE_LICENSE("GPL v2");