GNU Linux-libre 4.9.333-gnu1
[releases.git] / drivers / media / i2c / ov9650.c
1 /*
2  * Omnivision OV9650/OV9652 CMOS Image Sensor driver
3  *
4  * Copyright (C) 2013, Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
5  *
6  * Register definitions and initial settings based on a driver written
7  * by Vladimir Fonov.
8  * Copyright (c) 2010, Vladimir Fonov
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  */
14 #include <linux/delay.h>
15 #include <linux/gpio.h>
16 #include <linux/i2c.h>
17 #include <linux/kernel.h>
18 #include <linux/media.h>
19 #include <linux/module.h>
20 #include <linux/ratelimit.h>
21 #include <linux/slab.h>
22 #include <linux/string.h>
23 #include <linux/videodev2.h>
24
25 #include <media/media-entity.h>
26 #include <media/v4l2-async.h>
27 #include <media/v4l2-ctrls.h>
28 #include <media/v4l2-device.h>
29 #include <media/v4l2-event.h>
30 #include <media/v4l2-image-sizes.h>
31 #include <media/v4l2-subdev.h>
32 #include <media/v4l2-mediabus.h>
33 #include <media/i2c/ov9650.h>
34
35 static int debug;
36 module_param(debug, int, 0644);
37 MODULE_PARM_DESC(debug, "Debug level (0-2)");
38
39 #define DRIVER_NAME "OV9650"
40
41 /*
42  * OV9650/OV9652 register definitions
43  */
44 #define REG_GAIN                0x00    /* Gain control, AGC[7:0] */
45 #define REG_BLUE                0x01    /* AWB - Blue chanel gain */
46 #define REG_RED                 0x02    /* AWB - Red chanel gain */
47 #define REG_VREF                0x03    /* [7:6] - AGC[9:8], [5:3]/[2:0] */
48 #define  VREF_GAIN_MASK         0xc0    /* - VREF end/start low 3 bits */
49 #define REG_COM1                0x04
50 #define  COM1_CCIR656           0x40
51 #define REG_B_AVE               0x05
52 #define REG_GB_AVE              0x06
53 #define REG_GR_AVE              0x07
54 #define REG_R_AVE               0x08
55 #define REG_COM2                0x09
56 #define REG_PID                 0x0a    /* Product ID MSB */
57 #define REG_VER                 0x0b    /* Product ID LSB */
58 #define REG_COM3                0x0c
59 #define  COM3_SWAP              0x40
60 #define  COM3_VARIOPIXEL1       0x04
61 #define REG_COM4                0x0d    /* Vario Pixels  */
62 #define  COM4_VARIOPIXEL2       0x80
63 #define REG_COM5                0x0e    /* System clock options */
64 #define  COM5_SLAVE_MODE        0x10
65 #define  COM5_SYSTEMCLOCK48MHZ  0x80
66 #define REG_COM6                0x0f    /* HREF & ADBLC options */
67 #define REG_AECH                0x10    /* Exposure value, AEC[9:2] */
68 #define REG_CLKRC               0x11    /* Clock control */
69 #define  CLK_EXT                0x40    /* Use external clock directly */
70 #define  CLK_SCALE              0x3f    /* Mask for internal clock scale */
71 #define REG_COM7                0x12    /* SCCB reset, output format */
72 #define  COM7_RESET             0x80
73 #define  COM7_FMT_MASK          0x38
74 #define  COM7_FMT_VGA           0x40
75 #define  COM7_FMT_CIF           0x20
76 #define  COM7_FMT_QVGA          0x10
77 #define  COM7_FMT_QCIF          0x08
78 #define  COM7_RGB               0x04
79 #define  COM7_YUV               0x00
80 #define  COM7_BAYER             0x01
81 #define  COM7_PBAYER            0x05
82 #define REG_COM8                0x13    /* AGC/AEC options */
83 #define  COM8_FASTAEC           0x80    /* Enable fast AGC/AEC */
84 #define  COM8_AECSTEP           0x40    /* Unlimited AEC step size */
85 #define  COM8_BFILT             0x20    /* Band filter enable */
86 #define  COM8_AGC               0x04    /* Auto gain enable */
87 #define  COM8_AWB               0x02    /* White balance enable */
88 #define  COM8_AEC               0x01    /* Auto exposure enable */
89 #define REG_COM9                0x14    /* Gain ceiling */
90 #define  COM9_GAIN_CEIL_MASK    0x70    /* */
91 #define REG_COM10               0x15    /* PCLK, HREF, HSYNC signals polarity */
92 #define  COM10_HSYNC            0x40    /* HSYNC instead of HREF */
93 #define  COM10_PCLK_HB          0x20    /* Suppress PCLK on horiz blank */
94 #define  COM10_HREF_REV         0x08    /* Reverse HREF */
95 #define  COM10_VS_LEAD          0x04    /* VSYNC on clock leading edge */
96 #define  COM10_VS_NEG           0x02    /* VSYNC negative */
97 #define  COM10_HS_NEG           0x01    /* HSYNC negative */
98 #define REG_HSTART              0x17    /* Horiz start high bits */
99 #define REG_HSTOP               0x18    /* Horiz stop high bits */
100 #define REG_VSTART              0x19    /* Vert start high bits */
101 #define REG_VSTOP               0x1a    /* Vert stop high bits */
102 #define REG_PSHFT               0x1b    /* Pixel delay after HREF */
103 #define REG_MIDH                0x1c    /* Manufacturer ID MSB */
104 #define REG_MIDL                0x1d    /* Manufufacturer ID LSB */
105 #define REG_MVFP                0x1e    /* Image mirror/flip */
106 #define  MVFP_MIRROR            0x20    /* Mirror image */
107 #define  MVFP_FLIP              0x10    /* Vertical flip */
108 #define REG_BOS                 0x20    /* B channel Offset */
109 #define REG_GBOS                0x21    /* Gb channel Offset */
110 #define REG_GROS                0x22    /* Gr channel Offset */
111 #define REG_ROS                 0x23    /* R channel Offset */
112 #define REG_AEW                 0x24    /* AGC upper limit */
113 #define REG_AEB                 0x25    /* AGC lower limit */
114 #define REG_VPT                 0x26    /* AGC/AEC fast mode op region */
115 #define REG_BBIAS               0x27    /* B channel output bias */
116 #define REG_GBBIAS              0x28    /* Gb channel output bias */
117 #define REG_GRCOM               0x29    /* Analog BLC & regulator */
118 #define REG_EXHCH               0x2a    /* Dummy pixel insert MSB */
119 #define REG_EXHCL               0x2b    /* Dummy pixel insert LSB */
120 #define REG_RBIAS               0x2c    /* R channel output bias */
121 #define REG_ADVFL               0x2d    /* LSB of dummy line insert */
122 #define REG_ADVFH               0x2e    /* MSB of dummy line insert */
123 #define REG_YAVE                0x2f    /* Y/G channel average value */
124 #define REG_HSYST               0x30    /* HSYNC rising edge delay LSB*/
125 #define REG_HSYEN               0x31    /* HSYNC falling edge delay LSB*/
126 #define REG_HREF                0x32    /* HREF pieces */
127 #define REG_CHLF                0x33    /* reserved */
128 #define REG_ADC                 0x37    /* reserved */
129 #define REG_ACOM                0x38    /* reserved */
130 #define REG_OFON                0x39    /* Power down register */
131 #define  OFON_PWRDN             0x08    /* Power down bit */
132 #define REG_TSLB                0x3a    /* YUVU format */
133 #define  TSLB_YUYV_MASK         0x0c    /* UYVY or VYUY - see com13 */
134 #define REG_COM11               0x3b    /* Night mode, banding filter enable */
135 #define  COM11_NIGHT            0x80    /* Night mode enable */
136 #define  COM11_NMFR             0x60    /* Two bit NM frame rate */
137 #define  COM11_BANDING          0x01    /* Banding filter */
138 #define  COM11_AEC_REF_MASK     0x18    /* AEC reference area selection */
139 #define REG_COM12               0x3c    /* HREF option, UV average */
140 #define  COM12_HREF             0x80    /* HREF always */
141 #define REG_COM13               0x3d    /* Gamma selection, Color matrix en. */
142 #define  COM13_GAMMA            0x80    /* Gamma enable */
143 #define  COM13_UVSAT            0x40    /* UV saturation auto adjustment */
144 #define  COM13_UVSWAP           0x01    /* V before U - w/TSLB */
145 #define REG_COM14               0x3e    /* Edge enhancement options */
146 #define  COM14_EDGE_EN          0x02
147 #define  COM14_EEF_X2           0x01
148 #define REG_EDGE                0x3f    /* Edge enhancement factor */
149 #define  EDGE_FACTOR_MASK       0x0f
150 #define REG_COM15               0x40    /* Output range, RGB 555/565 */
151 #define  COM15_R10F0            0x00    /* Data range 10 to F0 */
152 #define  COM15_R01FE            0x80    /* 01 to FE */
153 #define  COM15_R00FF            0xc0    /* 00 to FF */
154 #define  COM15_RGB565           0x10    /* RGB565 output */
155 #define  COM15_RGB555           0x30    /* RGB555 output */
156 #define  COM15_SWAPRB           0x04    /* Swap R&B */
157 #define REG_COM16               0x41    /* Color matrix coeff options */
158 #define REG_COM17               0x42    /* Single frame out, banding filter */
159 /* n = 1...9, 0x4f..0x57 */
160 #define REG_MTX(__n)            (0x4f + (__n) - 1)
161 #define REG_MTXS                0x58
162 /* Lens Correction Option 1...5, __n = 0...5 */
163 #define REG_LCC(__n)            (0x62 + (__n) - 1)
164 #define  LCC5_LCC_ENABLE        0x01    /* LCC5, enable lens correction */
165 #define  LCC5_LCC_COLOR         0x04
166 #define REG_MANU                0x67    /* Manual U value */
167 #define REG_MANV                0x68    /* Manual V value */
168 #define REG_HV                  0x69    /* Manual banding filter MSB */
169 #define REG_MBD                 0x6a    /* Manual banding filter value */
170 #define REG_DBLV                0x6b    /* reserved */
171 #define REG_GSP                 0x6c    /* Gamma curve */
172 #define  GSP_LEN                15
173 #define REG_GST                 0x7c    /* Gamma curve */
174 #define  GST_LEN                15
175 #define REG_COM21               0x8b
176 #define REG_COM22               0x8c    /* Edge enhancement, denoising */
177 #define  COM22_WHTPCOR          0x02    /* White pixel correction enable */
178 #define  COM22_WHTPCOROPT       0x01    /* White pixel correction option */
179 #define  COM22_DENOISE          0x10    /* White pixel correction option */
180 #define REG_COM23               0x8d    /* Color bar test, color gain */
181 #define  COM23_TEST_MODE        0x10
182 #define REG_DBLC1               0x8f    /* Digital BLC */
183 #define REG_DBLC_B              0x90    /* Digital BLC B channel offset */
184 #define REG_DBLC_R              0x91    /* Digital BLC R channel offset */
185 #define REG_DM_LNL              0x92    /* Dummy line low 8 bits */
186 #define REG_DM_LNH              0x93    /* Dummy line high 8 bits */
187 #define REG_LCCFB               0x9d    /* Lens Correction B channel */
188 #define REG_LCCFR               0x9e    /* Lens Correction R channel */
189 #define REG_DBLC_GB             0x9f    /* Digital BLC GB chan offset */
190 #define REG_DBLC_GR             0xa0    /* Digital BLC GR chan offset */
191 #define REG_AECHM               0xa1    /* Exposure value - bits AEC[15:10] */
192 #define REG_BD50ST              0xa2    /* Banding filter value for 50Hz */
193 #define REG_BD60ST              0xa3    /* Banding filter value for 60Hz */
194 #define REG_NULL                0xff    /* Array end token */
195
196 #define DEF_CLKRC               0x80
197
198 #define OV965X_ID(_msb, _lsb)   ((_msb) << 8 | (_lsb))
199 #define OV9650_ID               0x9650
200 #define OV9652_ID               0x9652
201
202 struct ov965x_ctrls {
203         struct v4l2_ctrl_handler handler;
204         struct {
205                 struct v4l2_ctrl *auto_exp;
206                 struct v4l2_ctrl *exposure;
207         };
208         struct {
209                 struct v4l2_ctrl *auto_wb;
210                 struct v4l2_ctrl *blue_balance;
211                 struct v4l2_ctrl *red_balance;
212         };
213         struct {
214                 struct v4l2_ctrl *hflip;
215                 struct v4l2_ctrl *vflip;
216         };
217         struct {
218                 struct v4l2_ctrl *auto_gain;
219                 struct v4l2_ctrl *gain;
220         };
221         struct v4l2_ctrl *brightness;
222         struct v4l2_ctrl *saturation;
223         struct v4l2_ctrl *sharpness;
224         struct v4l2_ctrl *light_freq;
225         u8 update;
226 };
227
228 struct ov965x_framesize {
229         u16 width;
230         u16 height;
231         u16 max_exp_lines;
232         const u8 *regs;
233 };
234
235 struct ov965x_interval {
236         struct v4l2_fract interval;
237         /* Maximum resolution for this interval */
238         struct v4l2_frmsize_discrete size;
239         u8 clkrc_div;
240 };
241
242 enum gpio_id {
243         GPIO_PWDN,
244         GPIO_RST,
245         NUM_GPIOS,
246 };
247
248 struct ov965x {
249         struct v4l2_subdev sd;
250         struct media_pad pad;
251         enum v4l2_mbus_type bus_type;
252         int gpios[NUM_GPIOS];
253         /* External master clock frequency */
254         unsigned long mclk_frequency;
255
256         /* Protects the struct fields below */
257         struct mutex lock;
258
259         struct i2c_client *client;
260
261         /* Exposure row interval in us */
262         unsigned int exp_row_interval;
263
264         unsigned short id;
265         const struct ov965x_framesize *frame_size;
266         /* YUYV sequence (pixel format) control register */
267         u8 tslb_reg;
268         struct v4l2_mbus_framefmt format;
269
270         struct ov965x_ctrls ctrls;
271         /* Pointer to frame rate control data structure */
272         const struct ov965x_interval *fiv;
273
274         int streaming;
275         int power;
276
277         u8 apply_frame_fmt;
278 };
279
280 struct i2c_rv {
281         u8 addr;
282         u8 value;
283 };
284
285 static const struct i2c_rv ov965x_init_regs[] = {
286         { REG_COM2, 0x10 },     /* Set soft sleep mode */
287         { REG_COM5, 0x00 },     /* System clock options */
288         { REG_COM2, 0x01 },     /* Output drive, soft sleep mode */
289         { REG_COM10, 0x00 },    /* Slave mode, HREF vs HSYNC, signals negate */
290         { REG_EDGE, 0xa6 },     /* Edge enhancement treshhold and factor */
291         { REG_COM16, 0x02 },    /* Color matrix coeff double option */
292         { REG_COM17, 0x08 },    /* Single frame out, banding filter */
293         { 0x16, 0x06 },
294         { REG_CHLF, 0xc0 },     /* Reserved  */
295         { 0x34, 0xbf },
296         { 0xa8, 0x80 },
297         { 0x96, 0x04 },
298         { 0x8e, 0x00 },
299         { REG_COM12, 0x77 },    /* HREF option, UV average  */
300         { 0x8b, 0x06 },
301         { 0x35, 0x91 },
302         { 0x94, 0x88 },
303         { 0x95, 0x88 },
304         { REG_COM15, 0xc1 },    /* Output range, RGB 555/565 */
305         { REG_GRCOM, 0x2f },    /* Analog BLC & regulator */
306         { REG_COM6, 0x43 },     /* HREF & ADBLC options */
307         { REG_COM8, 0xe5 },     /* AGC/AEC options */
308         { REG_COM13, 0x90 },    /* Gamma selection, colour matrix, UV delay */
309         { REG_HV, 0x80 },       /* Manual banding filter MSB  */
310         { 0x5c, 0x96 },         /* Reserved up to 0xa5 */
311         { 0x5d, 0x96 },
312         { 0x5e, 0x10 },
313         { 0x59, 0xeb },
314         { 0x5a, 0x9c },
315         { 0x5b, 0x55 },
316         { 0x43, 0xf0 },
317         { 0x44, 0x10 },
318         { 0x45, 0x55 },
319         { 0x46, 0x86 },
320         { 0x47, 0x64 },
321         { 0x48, 0x86 },
322         { 0x5f, 0xe0 },
323         { 0x60, 0x8c },
324         { 0x61, 0x20 },
325         { 0xa5, 0xd9 },
326         { 0xa4, 0x74 },         /* reserved */
327         { REG_COM23, 0x02 },    /* Color gain analog/_digital_ */
328         { REG_COM8, 0xe7 },     /* Enable AEC, AWB, AEC */
329         { REG_COM22, 0x23 },    /* Edge enhancement, denoising */
330         { 0xa9, 0xb8 },
331         { 0xaa, 0x92 },
332         { 0xab, 0x0a },
333         { REG_DBLC1, 0xdf },    /* Digital BLC */
334         { REG_DBLC_B, 0x00 },   /* Digital BLC B chan offset */
335         { REG_DBLC_R, 0x00 },   /* Digital BLC R chan offset */
336         { REG_DBLC_GB, 0x00 },  /* Digital BLC GB chan offset */
337         { REG_DBLC_GR, 0x00 },
338         { REG_COM9, 0x3a },     /* Gain ceiling 16x */
339         { REG_NULL, 0 }
340 };
341
342 #define NUM_FMT_REGS 14
343 /*
344  * COM7,  COM3,  COM4, HSTART, HSTOP, HREF, VSTART, VSTOP, VREF,
345  * EXHCH, EXHCL, ADC,  OCOM,   OFON
346  */
347 static const u8 frame_size_reg_addr[NUM_FMT_REGS] = {
348         0x12, 0x0c, 0x0d, 0x17, 0x18, 0x32, 0x19, 0x1a, 0x03,
349         0x2a, 0x2b, 0x37, 0x38, 0x39,
350 };
351
352 static const u8 ov965x_sxga_regs[NUM_FMT_REGS] = {
353         0x00, 0x00, 0x00, 0x1e, 0xbe, 0xbf, 0x01, 0x81, 0x12,
354         0x10, 0x34, 0x81, 0x93, 0x51,
355 };
356
357 static const u8 ov965x_vga_regs[NUM_FMT_REGS] = {
358         0x40, 0x04, 0x80, 0x26, 0xc6, 0xed, 0x01, 0x3d, 0x00,
359         0x10, 0x40, 0x91, 0x12, 0x43,
360 };
361
362 /* Determined empirically. */
363 static const u8 ov965x_qvga_regs[NUM_FMT_REGS] = {
364         0x10, 0x04, 0x80, 0x25, 0xc5, 0xbf, 0x00, 0x80, 0x12,
365         0x10, 0x40, 0x91, 0x12, 0x43,
366 };
367
368 static const struct ov965x_framesize ov965x_framesizes[] = {
369         {
370                 .width          = SXGA_WIDTH,
371                 .height         = SXGA_HEIGHT,
372                 .regs           = ov965x_sxga_regs,
373                 .max_exp_lines  = 1048,
374         }, {
375                 .width          = VGA_WIDTH,
376                 .height         = VGA_HEIGHT,
377                 .regs           = ov965x_vga_regs,
378                 .max_exp_lines  = 498,
379         }, {
380                 .width          = QVGA_WIDTH,
381                 .height         = QVGA_HEIGHT,
382                 .regs           = ov965x_qvga_regs,
383                 .max_exp_lines  = 248,
384         },
385 };
386
387 struct ov965x_pixfmt {
388         u32 code;
389         u32 colorspace;
390         /* REG_TSLB value, only bits [3:2] may be set. */
391         u8 tslb_reg;
392 };
393
394 static const struct ov965x_pixfmt ov965x_formats[] = {
395         { MEDIA_BUS_FMT_YUYV8_2X8, V4L2_COLORSPACE_JPEG, 0x00},
396         { MEDIA_BUS_FMT_YVYU8_2X8, V4L2_COLORSPACE_JPEG, 0x04},
397         { MEDIA_BUS_FMT_UYVY8_2X8, V4L2_COLORSPACE_JPEG, 0x0c},
398         { MEDIA_BUS_FMT_VYUY8_2X8, V4L2_COLORSPACE_JPEG, 0x08},
399 };
400
401 /*
402  * This table specifies possible frame resolution and interval
403  * combinations. Default CLKRC[5:0] divider values are valid
404  * only for 24 MHz external clock frequency.
405  */
406 static struct ov965x_interval ov965x_intervals[] = {
407         {{ 100, 625 }, { SXGA_WIDTH, SXGA_HEIGHT }, 0 },  /* 6.25 fps */
408         {{ 10,  125 }, { VGA_WIDTH, VGA_HEIGHT },   1 },  /* 12.5 fps */
409         {{ 10,  125 }, { QVGA_WIDTH, QVGA_HEIGHT }, 3 },  /* 12.5 fps */
410         {{ 1,   25  }, { VGA_WIDTH, VGA_HEIGHT },   0 },  /* 25 fps */
411         {{ 1,   25  }, { QVGA_WIDTH, QVGA_HEIGHT }, 1 },  /* 25 fps */
412 };
413
414 static inline struct v4l2_subdev *ctrl_to_sd(struct v4l2_ctrl *ctrl)
415 {
416         return &container_of(ctrl->handler, struct ov965x, ctrls.handler)->sd;
417 }
418
419 static inline struct ov965x *to_ov965x(struct v4l2_subdev *sd)
420 {
421         return container_of(sd, struct ov965x, sd);
422 }
423
424 static int ov965x_read(struct i2c_client *client, u8 addr, u8 *val)
425 {
426         u8 buf = addr;
427         struct i2c_msg msg = {
428                 .addr = client->addr,
429                 .flags = 0,
430                 .len = 1,
431                 .buf = &buf
432         };
433         int ret;
434
435         ret = i2c_transfer(client->adapter, &msg, 1);
436         if (ret == 1) {
437                 msg.flags = I2C_M_RD;
438                 ret = i2c_transfer(client->adapter, &msg, 1);
439
440                 if (ret == 1)
441                         *val = buf;
442         }
443
444         v4l2_dbg(2, debug, client, "%s: 0x%02x @ 0x%02x. (%d)\n",
445                  __func__, *val, addr, ret);
446
447         return ret == 1 ? 0 : ret;
448 }
449
450 static int ov965x_write(struct i2c_client *client, u8 addr, u8 val)
451 {
452         u8 buf[2] = { addr, val };
453
454         int ret = i2c_master_send(client, buf, 2);
455
456         v4l2_dbg(2, debug, client, "%s: 0x%02x @ 0x%02X (%d)\n",
457                  __func__, val, addr, ret);
458
459         return ret == 2 ? 0 : ret;
460 }
461
462 static int ov965x_write_array(struct i2c_client *client,
463                               const struct i2c_rv *regs)
464 {
465         int i, ret = 0;
466
467         for (i = 0; ret == 0 && regs[i].addr != REG_NULL; i++)
468                 ret = ov965x_write(client, regs[i].addr, regs[i].value);
469
470         return ret;
471 }
472
473 static int ov965x_set_default_gamma_curve(struct ov965x *ov965x)
474 {
475         static const u8 gamma_curve[] = {
476                 /* Values taken from OV application note. */
477                 0x40, 0x30, 0x4b, 0x60, 0x70, 0x70, 0x70, 0x70,
478                 0x60, 0x60, 0x50, 0x48, 0x3a, 0x2e, 0x28, 0x22,
479                 0x04, 0x07, 0x10, 0x28, 0x36, 0x44, 0x52, 0x60,
480                 0x6c, 0x78, 0x8c, 0x9e, 0xbb, 0xd2, 0xe6
481         };
482         u8 addr = REG_GSP;
483         unsigned int i;
484
485         for (i = 0; i < ARRAY_SIZE(gamma_curve); i++) {
486                 int ret = ov965x_write(ov965x->client, addr, gamma_curve[i]);
487                 if (ret < 0)
488                         return ret;
489                 addr++;
490         }
491
492         return 0;
493 };
494
495 static int ov965x_set_color_matrix(struct ov965x *ov965x)
496 {
497         static const u8 mtx[] = {
498                 /* MTX1..MTX9, MTXS */
499                 0x3a, 0x3d, 0x03, 0x12, 0x26, 0x38, 0x40, 0x40, 0x40, 0x0d
500         };
501         u8 addr = REG_MTX(1);
502         unsigned int i;
503
504         for (i = 0; i < ARRAY_SIZE(mtx); i++) {
505                 int ret = ov965x_write(ov965x->client, addr, mtx[i]);
506                 if (ret < 0)
507                         return ret;
508                 addr++;
509         }
510
511         return 0;
512 }
513
514 static void ov965x_gpio_set(int gpio, int val)
515 {
516         if (gpio_is_valid(gpio))
517                 gpio_set_value(gpio, val);
518 }
519
520 static void __ov965x_set_power(struct ov965x *ov965x, int on)
521 {
522         if (on) {
523                 ov965x_gpio_set(ov965x->gpios[GPIO_PWDN], 0);
524                 ov965x_gpio_set(ov965x->gpios[GPIO_RST], 0);
525                 usleep_range(25000, 26000);
526         } else {
527                 ov965x_gpio_set(ov965x->gpios[GPIO_RST], 1);
528                 ov965x_gpio_set(ov965x->gpios[GPIO_PWDN], 1);
529         }
530
531         ov965x->streaming = 0;
532 }
533
534 static int ov965x_s_power(struct v4l2_subdev *sd, int on)
535 {
536         struct ov965x *ov965x = to_ov965x(sd);
537         struct i2c_client *client = ov965x->client;
538         int ret = 0;
539
540         v4l2_dbg(1, debug, client, "%s: on: %d\n", __func__, on);
541
542         mutex_lock(&ov965x->lock);
543         if (ov965x->power == !on) {
544                 __ov965x_set_power(ov965x, on);
545                 if (on) {
546                         ret = ov965x_write_array(client,
547                                                  ov965x_init_regs);
548                         ov965x->apply_frame_fmt = 1;
549                         ov965x->ctrls.update = 1;
550                 }
551         }
552         if (!ret)
553                 ov965x->power += on ? 1 : -1;
554
555         WARN_ON(ov965x->power < 0);
556         mutex_unlock(&ov965x->lock);
557         return ret;
558 }
559
560 /*
561  * V4L2 controls
562  */
563
564 static void ov965x_update_exposure_ctrl(struct ov965x *ov965x)
565 {
566         struct v4l2_ctrl *ctrl = ov965x->ctrls.exposure;
567         unsigned long fint, trow;
568         int min, max, def;
569         u8 clkrc;
570
571         mutex_lock(&ov965x->lock);
572         if (WARN_ON(!ctrl || !ov965x->frame_size)) {
573                 mutex_unlock(&ov965x->lock);
574                 return;
575         }
576         clkrc = DEF_CLKRC + ov965x->fiv->clkrc_div;
577         /* Calculate internal clock frequency */
578         fint = ov965x->mclk_frequency * ((clkrc >> 7) + 1) /
579                                 ((2 * ((clkrc & 0x3f) + 1)));
580         /* and the row interval (in us). */
581         trow = (2 * 1520 * 1000000UL) / fint;
582         max = ov965x->frame_size->max_exp_lines * trow;
583         ov965x->exp_row_interval = trow;
584         mutex_unlock(&ov965x->lock);
585
586         v4l2_dbg(1, debug, &ov965x->sd, "clkrc: %#x, fi: %lu, tr: %lu, %d\n",
587                  clkrc, fint, trow, max);
588
589         /* Update exposure time range to match current frame format. */
590         min = (trow + 100) / 100;
591         max = (max - 100) / 100;
592         def = min + (max - min) / 2;
593
594         if (v4l2_ctrl_modify_range(ctrl, min, max, 1, def))
595                 v4l2_err(&ov965x->sd, "Exposure ctrl range update failed\n");
596 }
597
598 static int ov965x_set_banding_filter(struct ov965x *ov965x, int value)
599 {
600         unsigned long mbd, light_freq;
601         int ret;
602         u8 reg;
603
604         ret = ov965x_read(ov965x->client, REG_COM8, &reg);
605         if (!ret) {
606                 if (value == V4L2_CID_POWER_LINE_FREQUENCY_DISABLED)
607                         reg &= ~COM8_BFILT;
608                 else
609                         reg |= COM8_BFILT;
610                 ret = ov965x_write(ov965x->client, REG_COM8, reg);
611         }
612         if (value == V4L2_CID_POWER_LINE_FREQUENCY_DISABLED)
613                 return 0;
614         if (WARN_ON(ov965x->fiv == NULL))
615                 return -EINVAL;
616         /* Set minimal exposure time for 50/60 HZ lighting */
617         if (value == V4L2_CID_POWER_LINE_FREQUENCY_50HZ)
618                 light_freq = 50;
619         else
620                 light_freq = 60;
621         mbd = (1000UL * ov965x->fiv->interval.denominator *
622                ov965x->frame_size->max_exp_lines) /
623                ov965x->fiv->interval.numerator;
624         mbd = ((mbd / (light_freq * 2)) + 500) / 1000UL;
625
626         return ov965x_write(ov965x->client, REG_MBD, mbd);
627 }
628
629 static int ov965x_set_white_balance(struct ov965x *ov965x, int awb)
630 {
631         int ret;
632         u8 reg;
633
634         ret = ov965x_read(ov965x->client, REG_COM8, &reg);
635         if (!ret) {
636                 reg = awb ? reg | REG_COM8 : reg & ~REG_COM8;
637                 ret = ov965x_write(ov965x->client, REG_COM8, reg);
638         }
639         if (!ret && !awb) {
640                 ret = ov965x_write(ov965x->client, REG_BLUE,
641                                    ov965x->ctrls.blue_balance->val);
642                 if (ret < 0)
643                         return ret;
644                 ret = ov965x_write(ov965x->client, REG_RED,
645                                    ov965x->ctrls.red_balance->val);
646         }
647         return ret;
648 }
649
650 #define NUM_BR_LEVELS   7
651 #define NUM_BR_REGS     3
652
653 static int ov965x_set_brightness(struct ov965x *ov965x, int val)
654 {
655         static const u8 regs[NUM_BR_LEVELS + 1][NUM_BR_REGS] = {
656                 { REG_AEW, REG_AEB, REG_VPT },
657                 { 0x1c, 0x12, 0x50 }, /* -3 */
658                 { 0x3d, 0x30, 0x71 }, /* -2 */
659                 { 0x50, 0x44, 0x92 }, /* -1 */
660                 { 0x70, 0x64, 0xc3 }, /*  0 */
661                 { 0x90, 0x84, 0xd4 }, /* +1 */
662                 { 0xc4, 0xbf, 0xf9 }, /* +2 */
663                 { 0xd8, 0xd0, 0xfa }, /* +3 */
664         };
665         int i, ret = 0;
666
667         val += (NUM_BR_LEVELS / 2 + 1);
668         if (val > NUM_BR_LEVELS)
669                 return -EINVAL;
670
671         for (i = 0; i < NUM_BR_REGS && !ret; i++)
672                 ret = ov965x_write(ov965x->client, regs[0][i],
673                                    regs[val][i]);
674         return ret;
675 }
676
677 static int ov965x_set_gain(struct ov965x *ov965x, int auto_gain)
678 {
679         struct i2c_client *client = ov965x->client;
680         struct ov965x_ctrls *ctrls = &ov965x->ctrls;
681         int ret = 0;
682         u8 reg;
683         /*
684          * For manual mode we need to disable AGC first, so
685          * gain value in REG_VREF, REG_GAIN is not overwritten.
686          */
687         if (ctrls->auto_gain->is_new) {
688                 ret = ov965x_read(client, REG_COM8, &reg);
689                 if (ret < 0)
690                         return ret;
691                 if (ctrls->auto_gain->val)
692                         reg |= COM8_AGC;
693                 else
694                         reg &= ~COM8_AGC;
695                 ret = ov965x_write(client, REG_COM8, reg);
696                 if (ret < 0)
697                         return ret;
698         }
699
700         if (ctrls->gain->is_new && !auto_gain) {
701                 unsigned int gain = ctrls->gain->val;
702                 unsigned int rgain;
703                 int m;
704                 /*
705                  * Convert gain control value to the sensor's gain
706                  * registers (VREF[7:6], GAIN[7:0]) format.
707                  */
708                 for (m = 6; m >= 0; m--)
709                         if (gain >= (1 << m) * 16)
710                                 break;
711
712                 /* Sanity check: don't adjust the gain with a negative value */
713                 if (m < 0)
714                         return -EINVAL;
715
716                 rgain = (gain - ((1 << m) * 16)) / (1 << m);
717                 rgain |= (((1 << m) - 1) << 4);
718
719                 ret = ov965x_write(client, REG_GAIN, rgain & 0xff);
720                 if (ret < 0)
721                         return ret;
722                 ret = ov965x_read(client, REG_VREF, &reg);
723                 if (ret < 0)
724                         return ret;
725                 reg &= ~VREF_GAIN_MASK;
726                 reg |= (((rgain >> 8) & 0x3) << 6);
727                 ret = ov965x_write(client, REG_VREF, reg);
728                 if (ret < 0)
729                         return ret;
730                 /* Return updated control's value to userspace */
731                 ctrls->gain->val = (1 << m) * (16 + (rgain & 0xf));
732         }
733
734         return ret;
735 }
736
737 static int ov965x_set_sharpness(struct ov965x *ov965x, unsigned int value)
738 {
739         u8 com14, edge;
740         int ret;
741
742         ret = ov965x_read(ov965x->client, REG_COM14, &com14);
743         if (ret < 0)
744                 return ret;
745         ret = ov965x_read(ov965x->client, REG_EDGE, &edge);
746         if (ret < 0)
747                 return ret;
748         com14 = value ? com14 | COM14_EDGE_EN : com14 & ~COM14_EDGE_EN;
749         value--;
750         if (value > 0x0f) {
751                 com14 |= COM14_EEF_X2;
752                 value >>= 1;
753         } else {
754                 com14 &= ~COM14_EEF_X2;
755         }
756         ret = ov965x_write(ov965x->client, REG_COM14, com14);
757         if (ret < 0)
758                 return ret;
759
760         edge &= ~EDGE_FACTOR_MASK;
761         edge |= ((u8)value & 0x0f);
762
763         return ov965x_write(ov965x->client, REG_EDGE, edge);
764 }
765
766 static int ov965x_set_exposure(struct ov965x *ov965x, int exp)
767 {
768         struct i2c_client *client = ov965x->client;
769         struct ov965x_ctrls *ctrls = &ov965x->ctrls;
770         bool auto_exposure = (exp == V4L2_EXPOSURE_AUTO);
771         int ret;
772         u8 reg;
773
774         if (ctrls->auto_exp->is_new) {
775                 ret = ov965x_read(client, REG_COM8, &reg);
776                 if (ret < 0)
777                         return ret;
778                 if (auto_exposure)
779                         reg |= (COM8_AEC | COM8_AGC);
780                 else
781                         reg &= ~(COM8_AEC | COM8_AGC);
782                 ret = ov965x_write(client, REG_COM8, reg);
783                 if (ret < 0)
784                         return ret;
785         }
786
787         if (!auto_exposure && ctrls->exposure->is_new) {
788                 unsigned int exposure = (ctrls->exposure->val * 100)
789                                          / ov965x->exp_row_interval;
790                 /*
791                  * Manual exposure value
792                  * [b15:b0] - AECHM (b15:b10), AECH (b9:b2), COM1 (b1:b0)
793                  */
794                 ret = ov965x_write(client, REG_COM1, exposure & 0x3);
795                 if (!ret)
796                         ret = ov965x_write(client, REG_AECH,
797                                            (exposure >> 2) & 0xff);
798                 if (!ret)
799                         ret = ov965x_write(client, REG_AECHM,
800                                            (exposure >> 10) & 0x3f);
801                 /* Update the value to minimize rounding errors */
802                 ctrls->exposure->val = ((exposure * ov965x->exp_row_interval)
803                                                         + 50) / 100;
804                 if (ret < 0)
805                         return ret;
806         }
807
808         v4l2_ctrl_activate(ov965x->ctrls.brightness, !exp);
809         return 0;
810 }
811
812 static int ov965x_set_flip(struct ov965x *ov965x)
813 {
814         u8 mvfp = 0;
815
816         if (ov965x->ctrls.hflip->val)
817                 mvfp |= MVFP_MIRROR;
818
819         if (ov965x->ctrls.vflip->val)
820                 mvfp |= MVFP_FLIP;
821
822         return ov965x_write(ov965x->client, REG_MVFP, mvfp);
823 }
824
825 #define NUM_SAT_LEVELS  5
826 #define NUM_SAT_REGS    6
827
828 static int ov965x_set_saturation(struct ov965x *ov965x, int val)
829 {
830         static const u8 regs[NUM_SAT_LEVELS][NUM_SAT_REGS] = {
831                 /* MTX(1)...MTX(6) */
832                 { 0x1d, 0x1f, 0x02, 0x09, 0x13, 0x1c }, /* -2 */
833                 { 0x2e, 0x31, 0x02, 0x0e, 0x1e, 0x2d }, /* -1 */
834                 { 0x3a, 0x3d, 0x03, 0x12, 0x26, 0x38 }, /*  0 */
835                 { 0x46, 0x49, 0x04, 0x16, 0x2e, 0x43 }, /* +1 */
836                 { 0x57, 0x5c, 0x05, 0x1b, 0x39, 0x54 }, /* +2 */
837         };
838         u8 addr = REG_MTX(1);
839         int i, ret = 0;
840
841         val += (NUM_SAT_LEVELS / 2);
842         if (val >= NUM_SAT_LEVELS)
843                 return -EINVAL;
844
845         for (i = 0; i < NUM_SAT_REGS && !ret; i++)
846                 ret = ov965x_write(ov965x->client, addr + i, regs[val][i]);
847
848         return ret;
849 }
850
851 static int ov965x_set_test_pattern(struct ov965x *ov965x, int value)
852 {
853         int ret;
854         u8 reg;
855
856         ret = ov965x_read(ov965x->client, REG_COM23, &reg);
857         if (ret < 0)
858                 return ret;
859         reg = value ? reg | COM23_TEST_MODE : reg & ~COM23_TEST_MODE;
860         return ov965x_write(ov965x->client, REG_COM23, reg);
861 }
862
863 static int __g_volatile_ctrl(struct ov965x *ov965x, struct v4l2_ctrl *ctrl)
864 {
865         struct i2c_client *client = ov965x->client;
866         unsigned int exposure, gain, m;
867         u8 reg0, reg1, reg2;
868         int ret;
869
870         if (!ov965x->power)
871                 return 0;
872
873         switch (ctrl->id) {
874         case V4L2_CID_AUTOGAIN:
875                 if (!ctrl->val)
876                         return 0;
877                 ret = ov965x_read(client, REG_GAIN, &reg0);
878                 if (ret < 0)
879                         return ret;
880                 ret = ov965x_read(client, REG_VREF, &reg1);
881                 if (ret < 0)
882                         return ret;
883                 gain = ((reg1 >> 6) << 8) | reg0;
884                 m = 0x01 << fls(gain >> 4);
885                 ov965x->ctrls.gain->val = m * (16 + (gain & 0xf));
886                 break;
887
888         case V4L2_CID_EXPOSURE_AUTO:
889                 if (ctrl->val == V4L2_EXPOSURE_MANUAL)
890                         return 0;
891                 ret = ov965x_read(client, REG_COM1, &reg0);
892                 if (!ret)
893                         ret = ov965x_read(client, REG_AECH, &reg1);
894                 if (!ret)
895                         ret = ov965x_read(client, REG_AECHM, &reg2);
896                 if (ret < 0)
897                         return ret;
898                 exposure = ((reg2 & 0x3f) << 10) | (reg1 << 2) |
899                                                 (reg0 & 0x3);
900                 ov965x->ctrls.exposure->val = ((exposure *
901                                 ov965x->exp_row_interval) + 50) / 100;
902                 break;
903         }
904
905         return 0;
906 }
907
908 static int ov965x_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
909 {
910         struct v4l2_subdev *sd = ctrl_to_sd(ctrl);
911         struct ov965x *ov965x = to_ov965x(sd);
912         int ret;
913
914         v4l2_dbg(1, debug, sd, "g_ctrl: %s\n", ctrl->name);
915
916         mutex_lock(&ov965x->lock);
917         ret = __g_volatile_ctrl(ov965x, ctrl);
918         mutex_unlock(&ov965x->lock);
919         return ret;
920 }
921
922 static int ov965x_s_ctrl(struct v4l2_ctrl *ctrl)
923 {
924         struct v4l2_subdev *sd = ctrl_to_sd(ctrl);
925         struct ov965x *ov965x = to_ov965x(sd);
926         int ret = -EINVAL;
927
928         v4l2_dbg(1, debug, sd, "s_ctrl: %s, value: %d. power: %d\n",
929                  ctrl->name, ctrl->val, ov965x->power);
930
931         mutex_lock(&ov965x->lock);
932         /*
933          * If the device is not powered up now postpone applying control's
934          * value to the hardware, until it is ready to accept commands.
935          */
936         if (ov965x->power == 0) {
937                 mutex_unlock(&ov965x->lock);
938                 return 0;
939         }
940
941         switch (ctrl->id) {
942         case V4L2_CID_AUTO_WHITE_BALANCE:
943                 ret = ov965x_set_white_balance(ov965x, ctrl->val);
944                 break;
945
946         case V4L2_CID_BRIGHTNESS:
947                 ret = ov965x_set_brightness(ov965x, ctrl->val);
948                 break;
949
950         case V4L2_CID_EXPOSURE_AUTO:
951                 ret = ov965x_set_exposure(ov965x, ctrl->val);
952                 break;
953
954         case V4L2_CID_AUTOGAIN:
955                 ret = ov965x_set_gain(ov965x, ctrl->val);
956                 break;
957
958         case V4L2_CID_HFLIP:
959                 ret = ov965x_set_flip(ov965x);
960                 break;
961
962         case V4L2_CID_POWER_LINE_FREQUENCY:
963                 ret = ov965x_set_banding_filter(ov965x, ctrl->val);
964                 break;
965
966         case V4L2_CID_SATURATION:
967                 ret = ov965x_set_saturation(ov965x, ctrl->val);
968                 break;
969
970         case V4L2_CID_SHARPNESS:
971                 ret = ov965x_set_sharpness(ov965x, ctrl->val);
972                 break;
973
974         case V4L2_CID_TEST_PATTERN:
975                 ret = ov965x_set_test_pattern(ov965x, ctrl->val);
976                 break;
977         }
978
979         mutex_unlock(&ov965x->lock);
980         return ret;
981 }
982
983 static const struct v4l2_ctrl_ops ov965x_ctrl_ops = {
984         .g_volatile_ctrl = ov965x_g_volatile_ctrl,
985         .s_ctrl = ov965x_s_ctrl,
986 };
987
988 static const char * const test_pattern_menu[] = {
989         "Disabled",
990         "Color bars",
991         NULL
992 };
993
994 static int ov965x_initialize_controls(struct ov965x *ov965x)
995 {
996         const struct v4l2_ctrl_ops *ops = &ov965x_ctrl_ops;
997         struct ov965x_ctrls *ctrls = &ov965x->ctrls;
998         struct v4l2_ctrl_handler *hdl = &ctrls->handler;
999         int ret;
1000
1001         ret = v4l2_ctrl_handler_init(hdl, 16);
1002         if (ret < 0)
1003                 return ret;
1004
1005         /* Auto/manual white balance */
1006         ctrls->auto_wb = v4l2_ctrl_new_std(hdl, ops,
1007                                 V4L2_CID_AUTO_WHITE_BALANCE,
1008                                 0, 1, 1, 1);
1009         ctrls->blue_balance = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BLUE_BALANCE,
1010                                                 0, 0xff, 1, 0x80);
1011         ctrls->red_balance = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_RED_BALANCE,
1012                                                 0, 0xff, 1, 0x80);
1013         /* Auto/manual exposure */
1014         ctrls->auto_exp = v4l2_ctrl_new_std_menu(hdl, ops,
1015                                 V4L2_CID_EXPOSURE_AUTO,
1016                                 V4L2_EXPOSURE_MANUAL, 0, V4L2_EXPOSURE_AUTO);
1017         /* Exposure time, in 100 us units. min/max is updated dynamically. */
1018         ctrls->exposure = v4l2_ctrl_new_std(hdl, ops,
1019                                 V4L2_CID_EXPOSURE_ABSOLUTE,
1020                                 2, 1500, 1, 500);
1021         /* Auto/manual gain */
1022         ctrls->auto_gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_AUTOGAIN,
1023                                                 0, 1, 1, 1);
1024         ctrls->gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_GAIN,
1025                                                 16, 64 * (16 + 15), 1, 64 * 16);
1026
1027         ctrls->saturation = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_SATURATION,
1028                                                 -2, 2, 1, 0);
1029         ctrls->brightness = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BRIGHTNESS,
1030                                                 -3, 3, 1, 0);
1031         ctrls->sharpness = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_SHARPNESS,
1032                                                 0, 32, 1, 6);
1033
1034         ctrls->hflip = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_HFLIP, 0, 1, 1, 0);
1035         ctrls->vflip = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_VFLIP, 0, 1, 1, 0);
1036
1037         ctrls->light_freq = v4l2_ctrl_new_std_menu(hdl, ops,
1038                                 V4L2_CID_POWER_LINE_FREQUENCY,
1039                                 V4L2_CID_POWER_LINE_FREQUENCY_60HZ, ~0x7,
1040                                 V4L2_CID_POWER_LINE_FREQUENCY_50HZ);
1041
1042         v4l2_ctrl_new_std_menu_items(hdl, ops, V4L2_CID_TEST_PATTERN,
1043                                 ARRAY_SIZE(test_pattern_menu) - 1, 0, 0,
1044                                 test_pattern_menu);
1045         if (hdl->error) {
1046                 ret = hdl->error;
1047                 v4l2_ctrl_handler_free(hdl);
1048                 return ret;
1049         }
1050
1051         ctrls->gain->flags |= V4L2_CTRL_FLAG_VOLATILE;
1052         ctrls->exposure->flags |= V4L2_CTRL_FLAG_VOLATILE;
1053
1054         v4l2_ctrl_auto_cluster(3, &ctrls->auto_wb, 0, false);
1055         v4l2_ctrl_auto_cluster(2, &ctrls->auto_gain, 0, true);
1056         v4l2_ctrl_auto_cluster(2, &ctrls->auto_exp, 1, true);
1057         v4l2_ctrl_cluster(2, &ctrls->hflip);
1058
1059         ov965x->sd.ctrl_handler = hdl;
1060         return 0;
1061 }
1062
1063 /*
1064  * V4L2 subdev video and pad level operations
1065  */
1066 static void ov965x_get_default_format(struct v4l2_mbus_framefmt *mf)
1067 {
1068         mf->width = ov965x_framesizes[0].width;
1069         mf->height = ov965x_framesizes[0].height;
1070         mf->colorspace = ov965x_formats[0].colorspace;
1071         mf->code = ov965x_formats[0].code;
1072         mf->field = V4L2_FIELD_NONE;
1073 }
1074
1075 static int ov965x_enum_mbus_code(struct v4l2_subdev *sd,
1076                                  struct v4l2_subdev_pad_config *cfg,
1077                                  struct v4l2_subdev_mbus_code_enum *code)
1078 {
1079         if (code->index >= ARRAY_SIZE(ov965x_formats))
1080                 return -EINVAL;
1081
1082         code->code = ov965x_formats[code->index].code;
1083         return 0;
1084 }
1085
1086 static int ov965x_enum_frame_sizes(struct v4l2_subdev *sd,
1087                                    struct v4l2_subdev_pad_config *cfg,
1088                                    struct v4l2_subdev_frame_size_enum *fse)
1089 {
1090         int i = ARRAY_SIZE(ov965x_formats);
1091
1092         if (fse->index >= ARRAY_SIZE(ov965x_framesizes))
1093                 return -EINVAL;
1094
1095         while (--i)
1096                 if (fse->code == ov965x_formats[i].code)
1097                         break;
1098
1099         fse->code = ov965x_formats[i].code;
1100
1101         fse->min_width  = ov965x_framesizes[fse->index].width;
1102         fse->max_width  = fse->min_width;
1103         fse->max_height = ov965x_framesizes[fse->index].height;
1104         fse->min_height = fse->max_height;
1105
1106         return 0;
1107 }
1108
1109 static int ov965x_g_frame_interval(struct v4l2_subdev *sd,
1110                                    struct v4l2_subdev_frame_interval *fi)
1111 {
1112         struct ov965x *ov965x = to_ov965x(sd);
1113
1114         mutex_lock(&ov965x->lock);
1115         fi->interval = ov965x->fiv->interval;
1116         mutex_unlock(&ov965x->lock);
1117
1118         return 0;
1119 }
1120
1121 static int __ov965x_set_frame_interval(struct ov965x *ov965x,
1122                                        struct v4l2_subdev_frame_interval *fi)
1123 {
1124         struct v4l2_mbus_framefmt *mbus_fmt = &ov965x->format;
1125         const struct ov965x_interval *fiv = &ov965x_intervals[0];
1126         u64 req_int, err, min_err = ~0ULL;
1127         unsigned int i;
1128
1129
1130         if (fi->interval.denominator == 0)
1131                 return -EINVAL;
1132
1133         req_int = (u64)(fi->interval.numerator * 10000) /
1134                 fi->interval.denominator;
1135
1136         for (i = 0; i < ARRAY_SIZE(ov965x_intervals); i++) {
1137                 const struct ov965x_interval *iv = &ov965x_intervals[i];
1138
1139                 if (mbus_fmt->width != iv->size.width ||
1140                     mbus_fmt->height != iv->size.height)
1141                         continue;
1142                 err = abs((u64)(iv->interval.numerator * 10000) /
1143                             iv->interval.denominator - req_int);
1144                 if (err < min_err) {
1145                         fiv = iv;
1146                         min_err = err;
1147                 }
1148         }
1149         ov965x->fiv = fiv;
1150
1151         v4l2_dbg(1, debug, &ov965x->sd, "Changed frame interval to %u us\n",
1152                  fiv->interval.numerator * 1000000 / fiv->interval.denominator);
1153
1154         return 0;
1155 }
1156
1157 static int ov965x_s_frame_interval(struct v4l2_subdev *sd,
1158                                    struct v4l2_subdev_frame_interval *fi)
1159 {
1160         struct ov965x *ov965x = to_ov965x(sd);
1161         int ret;
1162
1163         v4l2_dbg(1, debug, sd, "Setting %d/%d frame interval\n",
1164                  fi->interval.numerator, fi->interval.denominator);
1165
1166         mutex_lock(&ov965x->lock);
1167         ret = __ov965x_set_frame_interval(ov965x, fi);
1168         ov965x->apply_frame_fmt = 1;
1169         mutex_unlock(&ov965x->lock);
1170         return ret;
1171 }
1172
1173 static int ov965x_get_fmt(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg,
1174                           struct v4l2_subdev_format *fmt)
1175 {
1176         struct ov965x *ov965x = to_ov965x(sd);
1177         struct v4l2_mbus_framefmt *mf;
1178
1179         if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1180                 mf = v4l2_subdev_get_try_format(sd, cfg, 0);
1181                 fmt->format = *mf;
1182                 return 0;
1183         }
1184
1185         mutex_lock(&ov965x->lock);
1186         fmt->format = ov965x->format;
1187         mutex_unlock(&ov965x->lock);
1188
1189         return 0;
1190 }
1191
1192 static void __ov965x_try_frame_size(struct v4l2_mbus_framefmt *mf,
1193                                     const struct ov965x_framesize **size)
1194 {
1195         const struct ov965x_framesize *fsize = &ov965x_framesizes[0],
1196                 *match = NULL;
1197         int i = ARRAY_SIZE(ov965x_framesizes);
1198         unsigned int min_err = UINT_MAX;
1199
1200         while (i--) {
1201                 int err = abs(fsize->width - mf->width)
1202                                 + abs(fsize->height - mf->height);
1203                 if (err < min_err) {
1204                         min_err = err;
1205                         match = fsize;
1206                 }
1207                 fsize++;
1208         }
1209         if (!match)
1210                 match = &ov965x_framesizes[0];
1211         mf->width  = match->width;
1212         mf->height = match->height;
1213         if (size)
1214                 *size = match;
1215 }
1216
1217 static int ov965x_set_fmt(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg,
1218                           struct v4l2_subdev_format *fmt)
1219 {
1220         unsigned int index = ARRAY_SIZE(ov965x_formats);
1221         struct v4l2_mbus_framefmt *mf = &fmt->format;
1222         struct ov965x *ov965x = to_ov965x(sd);
1223         const struct ov965x_framesize *size = NULL;
1224         int ret = 0;
1225
1226         __ov965x_try_frame_size(mf, &size);
1227
1228         while (--index)
1229                 if (ov965x_formats[index].code == mf->code)
1230                         break;
1231
1232         mf->colorspace  = V4L2_COLORSPACE_JPEG;
1233         mf->code        = ov965x_formats[index].code;
1234         mf->field       = V4L2_FIELD_NONE;
1235
1236         mutex_lock(&ov965x->lock);
1237
1238         if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) {
1239                 if (cfg != NULL) {
1240                         mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
1241                         *mf = fmt->format;
1242                 }
1243         } else {
1244                 if (ov965x->streaming) {
1245                         ret = -EBUSY;
1246                 } else {
1247                         ov965x->frame_size = size;
1248                         ov965x->format = fmt->format;
1249                         ov965x->tslb_reg = ov965x_formats[index].tslb_reg;
1250                         ov965x->apply_frame_fmt = 1;
1251                 }
1252         }
1253
1254         if (!ret && fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
1255                 struct v4l2_subdev_frame_interval fiv = {
1256                         .interval = { 0, 1 }
1257                 };
1258                 /* Reset to minimum possible frame interval */
1259                 __ov965x_set_frame_interval(ov965x, &fiv);
1260         }
1261         mutex_unlock(&ov965x->lock);
1262
1263         if (!ret)
1264                 ov965x_update_exposure_ctrl(ov965x);
1265
1266         return ret;
1267 }
1268
1269 static int ov965x_set_frame_size(struct ov965x *ov965x)
1270 {
1271         int i, ret = 0;
1272
1273         for (i = 0; ret == 0 && i < NUM_FMT_REGS; i++)
1274                 ret = ov965x_write(ov965x->client, frame_size_reg_addr[i],
1275                                    ov965x->frame_size->regs[i]);
1276         return ret;
1277 }
1278
1279 static int __ov965x_set_params(struct ov965x *ov965x)
1280 {
1281         struct i2c_client *client = ov965x->client;
1282         struct ov965x_ctrls *ctrls = &ov965x->ctrls;
1283         int ret = 0;
1284         u8 reg;
1285
1286         if (ov965x->apply_frame_fmt) {
1287                 reg = DEF_CLKRC + ov965x->fiv->clkrc_div;
1288                 ret = ov965x_write(client, REG_CLKRC, reg);
1289                 if (ret < 0)
1290                         return ret;
1291                 ret = ov965x_set_frame_size(ov965x);
1292                 if (ret < 0)
1293                         return ret;
1294                 ret = ov965x_read(client, REG_TSLB, &reg);
1295                 if (ret < 0)
1296                         return ret;
1297                 reg &= ~TSLB_YUYV_MASK;
1298                 reg |= ov965x->tslb_reg;
1299                 ret = ov965x_write(client, REG_TSLB, reg);
1300                 if (ret < 0)
1301                         return ret;
1302         }
1303         ret = ov965x_set_default_gamma_curve(ov965x);
1304         if (ret < 0)
1305                 return ret;
1306         ret = ov965x_set_color_matrix(ov965x);
1307         if (ret < 0)
1308                 return ret;
1309         /*
1310          * Select manual banding filter, the filter will
1311          * be enabled further if required.
1312          */
1313         ret = ov965x_read(client, REG_COM11, &reg);
1314         if (!ret)
1315                 reg |= COM11_BANDING;
1316         ret = ov965x_write(client, REG_COM11, reg);
1317         if (ret < 0)
1318                 return ret;
1319         /*
1320          * Banding filter (REG_MBD value) needs to match selected
1321          * resolution and frame rate, so it's always updated here.
1322          */
1323         return ov965x_set_banding_filter(ov965x, ctrls->light_freq->val);
1324 }
1325
1326 static int ov965x_s_stream(struct v4l2_subdev *sd, int on)
1327 {
1328         struct i2c_client *client = v4l2_get_subdevdata(sd);
1329         struct ov965x *ov965x = to_ov965x(sd);
1330         struct ov965x_ctrls *ctrls = &ov965x->ctrls;
1331         int ret = 0;
1332
1333         v4l2_dbg(1, debug, client, "%s: on: %d\n", __func__, on);
1334
1335         mutex_lock(&ov965x->lock);
1336         if (ov965x->streaming == !on) {
1337                 if (on)
1338                         ret = __ov965x_set_params(ov965x);
1339
1340                 if (!ret && ctrls->update) {
1341                         /*
1342                          * ov965x_s_ctrl callback takes the mutex
1343                          * so it needs to be released here.
1344                          */
1345                         mutex_unlock(&ov965x->lock);
1346                         ret = v4l2_ctrl_handler_setup(&ctrls->handler);
1347
1348                         mutex_lock(&ov965x->lock);
1349                         if (!ret)
1350                                 ctrls->update = 0;
1351                 }
1352                 if (!ret)
1353                         ret = ov965x_write(client, REG_COM2,
1354                                            on ? 0x01 : 0x11);
1355         }
1356         if (!ret)
1357                 ov965x->streaming += on ? 1 : -1;
1358
1359         WARN_ON(ov965x->streaming < 0);
1360         mutex_unlock(&ov965x->lock);
1361
1362         return ret;
1363 }
1364
1365 /*
1366  * V4L2 subdev internal operations
1367  */
1368 static int ov965x_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
1369 {
1370         struct v4l2_mbus_framefmt *mf = v4l2_subdev_get_try_format(sd, fh->pad, 0);
1371
1372         ov965x_get_default_format(mf);
1373         return 0;
1374 }
1375
1376 static const struct v4l2_subdev_pad_ops ov965x_pad_ops = {
1377         .enum_mbus_code = ov965x_enum_mbus_code,
1378         .enum_frame_size = ov965x_enum_frame_sizes,
1379         .get_fmt = ov965x_get_fmt,
1380         .set_fmt = ov965x_set_fmt,
1381 };
1382
1383 static const struct v4l2_subdev_video_ops ov965x_video_ops = {
1384         .s_stream = ov965x_s_stream,
1385         .g_frame_interval = ov965x_g_frame_interval,
1386         .s_frame_interval = ov965x_s_frame_interval,
1387
1388 };
1389
1390 static const struct v4l2_subdev_internal_ops ov965x_sd_internal_ops = {
1391         .open = ov965x_open,
1392 };
1393
1394 static const struct v4l2_subdev_core_ops ov965x_core_ops = {
1395         .s_power = ov965x_s_power,
1396         .log_status = v4l2_ctrl_subdev_log_status,
1397         .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
1398         .unsubscribe_event = v4l2_event_subdev_unsubscribe,
1399 };
1400
1401 static const struct v4l2_subdev_ops ov965x_subdev_ops = {
1402         .core = &ov965x_core_ops,
1403         .pad = &ov965x_pad_ops,
1404         .video = &ov965x_video_ops,
1405 };
1406
1407 /*
1408  * Reset and power down GPIOs configuration
1409  */
1410 static int ov965x_configure_gpios(struct ov965x *ov965x,
1411                                   const struct ov9650_platform_data *pdata)
1412 {
1413         int ret, i;
1414
1415         ov965x->gpios[GPIO_PWDN] = pdata->gpio_pwdn;
1416         ov965x->gpios[GPIO_RST]  = pdata->gpio_reset;
1417
1418         for (i = 0; i < ARRAY_SIZE(ov965x->gpios); i++) {
1419                 int gpio = ov965x->gpios[i];
1420
1421                 if (!gpio_is_valid(gpio))
1422                         continue;
1423                 ret = devm_gpio_request_one(&ov965x->client->dev, gpio,
1424                                             GPIOF_OUT_INIT_HIGH, "OV965X");
1425                 if (ret < 0)
1426                         return ret;
1427                 v4l2_dbg(1, debug, &ov965x->sd, "set gpio %d to 1\n", gpio);
1428
1429                 gpio_set_value(gpio, 1);
1430                 gpio_export(gpio, 0);
1431                 ov965x->gpios[i] = gpio;
1432         }
1433
1434         return 0;
1435 }
1436
1437 static int ov965x_detect_sensor(struct v4l2_subdev *sd)
1438 {
1439         struct i2c_client *client = v4l2_get_subdevdata(sd);
1440         struct ov965x *ov965x = to_ov965x(sd);
1441         u8 pid, ver;
1442         int ret;
1443
1444         mutex_lock(&ov965x->lock);
1445         __ov965x_set_power(ov965x, 1);
1446         usleep_range(25000, 26000);
1447
1448         /* Check sensor revision */
1449         ret = ov965x_read(client, REG_PID, &pid);
1450         if (!ret)
1451                 ret = ov965x_read(client, REG_VER, &ver);
1452
1453         __ov965x_set_power(ov965x, 0);
1454
1455         if (!ret) {
1456                 ov965x->id = OV965X_ID(pid, ver);
1457                 if (ov965x->id == OV9650_ID || ov965x->id == OV9652_ID) {
1458                         v4l2_info(sd, "Found OV%04X sensor\n", ov965x->id);
1459                 } else {
1460                         v4l2_err(sd, "Sensor detection failed (%04X, %d)\n",
1461                                  ov965x->id, ret);
1462                         ret = -ENODEV;
1463                 }
1464         }
1465         mutex_unlock(&ov965x->lock);
1466
1467         return ret;
1468 }
1469
1470 static int ov965x_probe(struct i2c_client *client,
1471                         const struct i2c_device_id *id)
1472 {
1473         const struct ov9650_platform_data *pdata = client->dev.platform_data;
1474         struct v4l2_subdev *sd;
1475         struct ov965x *ov965x;
1476         int ret;
1477
1478         if (pdata == NULL) {
1479                 dev_err(&client->dev, "platform data not specified\n");
1480                 return -EINVAL;
1481         }
1482
1483         if (pdata->mclk_frequency == 0) {
1484                 dev_err(&client->dev, "MCLK frequency not specified\n");
1485                 return -EINVAL;
1486         }
1487
1488         ov965x = devm_kzalloc(&client->dev, sizeof(*ov965x), GFP_KERNEL);
1489         if (!ov965x)
1490                 return -ENOMEM;
1491
1492         mutex_init(&ov965x->lock);
1493         ov965x->client = client;
1494         ov965x->mclk_frequency = pdata->mclk_frequency;
1495
1496         sd = &ov965x->sd;
1497         v4l2_i2c_subdev_init(sd, client, &ov965x_subdev_ops);
1498         strlcpy(sd->name, DRIVER_NAME, sizeof(sd->name));
1499
1500         sd->internal_ops = &ov965x_sd_internal_ops;
1501         sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE |
1502                      V4L2_SUBDEV_FL_HAS_EVENTS;
1503
1504         ret = ov965x_configure_gpios(ov965x, pdata);
1505         if (ret < 0)
1506                 return ret;
1507
1508         ov965x->pad.flags = MEDIA_PAD_FL_SOURCE;
1509         sd->entity.function = MEDIA_ENT_F_CAM_SENSOR;
1510         ret = media_entity_pads_init(&sd->entity, 1, &ov965x->pad);
1511         if (ret < 0)
1512                 return ret;
1513
1514         ret = ov965x_initialize_controls(ov965x);
1515         if (ret < 0)
1516                 goto err_me;
1517
1518         ov965x_get_default_format(&ov965x->format);
1519         ov965x->frame_size = &ov965x_framesizes[0];
1520         ov965x->fiv = &ov965x_intervals[0];
1521
1522         ret = ov965x_detect_sensor(sd);
1523         if (ret < 0)
1524                 goto err_ctrls;
1525
1526         /* Update exposure time min/max to match frame format */
1527         ov965x_update_exposure_ctrl(ov965x);
1528
1529         ret = v4l2_async_register_subdev(sd);
1530         if (ret < 0)
1531                 goto err_ctrls;
1532
1533         return 0;
1534 err_ctrls:
1535         v4l2_ctrl_handler_free(sd->ctrl_handler);
1536 err_me:
1537         media_entity_cleanup(&sd->entity);
1538         return ret;
1539 }
1540
1541 static int ov965x_remove(struct i2c_client *client)
1542 {
1543         struct v4l2_subdev *sd = i2c_get_clientdata(client);
1544
1545         v4l2_async_unregister_subdev(sd);
1546         v4l2_ctrl_handler_free(sd->ctrl_handler);
1547         media_entity_cleanup(&sd->entity);
1548
1549         return 0;
1550 }
1551
1552 static const struct i2c_device_id ov965x_id[] = {
1553         { "OV9650", 0 },
1554         { "OV9652", 0 },
1555         { /* sentinel */ }
1556 };
1557 MODULE_DEVICE_TABLE(i2c, ov965x_id);
1558
1559 static struct i2c_driver ov965x_i2c_driver = {
1560         .driver = {
1561                 .name   = DRIVER_NAME,
1562         },
1563         .probe          = ov965x_probe,
1564         .remove         = ov965x_remove,
1565         .id_table       = ov965x_id,
1566 };
1567
1568 module_i2c_driver(ov965x_i2c_driver);
1569
1570 MODULE_AUTHOR("Sylwester Nawrocki <sylvester.nawrocki@gmail.com>");
1571 MODULE_DESCRIPTION("OV9650/OV9652 CMOS Image Sensor driver");
1572 MODULE_LICENSE("GPL");