diff options
author | Janusz Krzysztofik <jkrzyszt@tis.icnet.pl> | 2010-10-05 10:52:45 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-21 05:55:38 -0400 |
commit | 2f6e2404799ad610317157b73169c109788da0b0 (patch) | |
tree | 576f417079dc40fe25be7916bda6402a7213f952 /drivers/media/video/ov6650.c | |
parent | bdc621fcedf031426551caed4e7517603690fad1 (diff) |
[media] SoC Camera: add driver for OV6650 sensor
This patch provides a V4L2 SoC Camera driver for OV6650 camera sensor, found
on OMAP1 SoC based Amstrad Delta videophone.
Since I have no experience with camera sensors, and the sensor documentation I
was able to find was not very comprehensive, I left most settings at their
default (reset) values, except for:
- those required for proper mediabus parameters and picture geometry and
format setup,
- those used by controls.
Resulting picture quality may be far from perfect, but better than nothing.
In order to be able to get / set the sensor frame rate from userspace, I
decided to provide two not yet SoC camera supported operations, g_parm and
s_parm. These can be used after applying patch 4/6 from this series,
"SoC Camera: add support for g_parm / s_parm operations".
Created and tested against linux-2.6.36-rc5 on Amstrad Delta.
Signed-off-by: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/ov6650.c')
-rw-r--r-- | drivers/media/video/ov6650.c | 1225 |
1 files changed, 1225 insertions, 0 deletions
diff --git a/drivers/media/video/ov6650.c b/drivers/media/video/ov6650.c new file mode 100644 index 000000000000..b7cfeab0948c --- /dev/null +++ b/drivers/media/video/ov6650.c | |||
@@ -0,0 +1,1225 @@ | |||
1 | /* | ||
2 | * V4L2 SoC Camera driver for OmniVision OV6650 Camera Sensor | ||
3 | * | ||
4 | * Copyright (C) 2010 Janusz Krzysztofik <jkrzyszt@tis.icnet.pl> | ||
5 | * | ||
6 | * Based on OmniVision OV96xx Camera Driver | ||
7 | * Copyright (C) 2009 Marek Vasut <marek.vasut@gmail.com> | ||
8 | * | ||
9 | * Based on ov772x camera driver: | ||
10 | * Copyright (C) 2008 Renesas Solutions Corp. | ||
11 | * Kuninori Morimoto <morimoto.kuninori@renesas.com> | ||
12 | * | ||
13 | * Based on ov7670 and soc_camera_platform driver, | ||
14 | * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net> | ||
15 | * Copyright (C) 2008 Magnus Damm | ||
16 | * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de> | ||
17 | * | ||
18 | * Hardware specific bits initialy based on former work by Matt Callow | ||
19 | * drivers/media/video/omap/sensor_ov6650.c | ||
20 | * Copyright (C) 2006 Matt Callow | ||
21 | * | ||
22 | * This program is free software; you can redistribute it and/or modify | ||
23 | * it under the terms of the GNU General Public License version 2 as | ||
24 | * published by the Free Software Foundation. | ||
25 | */ | ||
26 | |||
27 | #include <linux/bitops.h> | ||
28 | #include <linux/delay.h> | ||
29 | #include <linux/i2c.h> | ||
30 | #include <linux/slab.h> | ||
31 | |||
32 | #include <media/soc_camera.h> | ||
33 | #include <media/v4l2-chip-ident.h> | ||
34 | |||
35 | |||
36 | /* Register definitions */ | ||
37 | #define REG_GAIN 0x00 /* range 00 - 3F */ | ||
38 | #define REG_BLUE 0x01 | ||
39 | #define REG_RED 0x02 | ||
40 | #define REG_SAT 0x03 /* [7:4] saturation [0:3] reserved */ | ||
41 | #define REG_HUE 0x04 /* [7:6] rsrvd [5] hue en [4:0] hue */ | ||
42 | |||
43 | #define REG_BRT 0x06 | ||
44 | |||
45 | #define REG_PIDH 0x0a | ||
46 | #define REG_PIDL 0x0b | ||
47 | |||
48 | #define REG_AECH 0x10 | ||
49 | #define REG_CLKRC 0x11 /* Data Format and Internal Clock */ | ||
50 | /* [7:6] Input system clock (MHz)*/ | ||
51 | /* 00=8, 01=12, 10=16, 11=24 */ | ||
52 | /* [5:0]: Internal Clock Pre-Scaler */ | ||
53 | #define REG_COMA 0x12 /* [7] Reset */ | ||
54 | #define REG_COMB 0x13 | ||
55 | #define REG_COMC 0x14 | ||
56 | #define REG_COMD 0x15 | ||
57 | #define REG_COML 0x16 | ||
58 | #define REG_HSTRT 0x17 | ||
59 | #define REG_HSTOP 0x18 | ||
60 | #define REG_VSTRT 0x19 | ||
61 | #define REG_VSTOP 0x1a | ||
62 | #define REG_PSHFT 0x1b | ||
63 | #define REG_MIDH 0x1c | ||
64 | #define REG_MIDL 0x1d | ||
65 | #define REG_HSYNS 0x1e | ||
66 | #define REG_HSYNE 0x1f | ||
67 | #define REG_COME 0x20 | ||
68 | #define REG_YOFF 0x21 | ||
69 | #define REG_UOFF 0x22 | ||
70 | #define REG_VOFF 0x23 | ||
71 | #define REG_AEW 0x24 | ||
72 | #define REG_AEB 0x25 | ||
73 | #define REG_COMF 0x26 | ||
74 | #define REG_COMG 0x27 | ||
75 | #define REG_COMH 0x28 | ||
76 | #define REG_COMI 0x29 | ||
77 | |||
78 | #define REG_FRARL 0x2b | ||
79 | #define REG_COMJ 0x2c | ||
80 | #define REG_COMK 0x2d | ||
81 | #define REG_AVGY 0x2e | ||
82 | #define REG_REF0 0x2f | ||
83 | #define REG_REF1 0x30 | ||
84 | #define REG_REF2 0x31 | ||
85 | #define REG_FRAJH 0x32 | ||
86 | #define REG_FRAJL 0x33 | ||
87 | #define REG_FACT 0x34 | ||
88 | #define REG_L1AEC 0x35 | ||
89 | #define REG_AVGU 0x36 | ||
90 | #define REG_AVGV 0x37 | ||
91 | |||
92 | #define REG_SPCB 0x60 | ||
93 | #define REG_SPCC 0x61 | ||
94 | #define REG_GAM1 0x62 | ||
95 | #define REG_GAM2 0x63 | ||
96 | #define REG_GAM3 0x64 | ||
97 | #define REG_SPCD 0x65 | ||
98 | |||
99 | #define REG_SPCE 0x68 | ||
100 | #define REG_ADCL 0x69 | ||
101 | |||
102 | #define REG_RMCO 0x6c | ||
103 | #define REG_GMCO 0x6d | ||
104 | #define REG_BMCO 0x6e | ||
105 | |||
106 | |||
107 | /* Register bits, values, etc. */ | ||
108 | #define OV6650_PIDH 0x66 /* high byte of product ID number */ | ||
109 | #define OV6650_PIDL 0x50 /* low byte of product ID number */ | ||
110 | #define OV6650_MIDH 0x7F /* high byte of mfg ID */ | ||
111 | #define OV6650_MIDL 0xA2 /* low byte of mfg ID */ | ||
112 | |||
113 | #define DEF_GAIN 0x00 | ||
114 | #define DEF_BLUE 0x80 | ||
115 | #define DEF_RED 0x80 | ||
116 | |||
117 | #define SAT_SHIFT 4 | ||
118 | #define SAT_MASK (0xf << SAT_SHIFT) | ||
119 | #define SET_SAT(x) (((x) << SAT_SHIFT) & SAT_MASK) | ||
120 | |||
121 | #define HUE_EN BIT(5) | ||
122 | #define HUE_MASK 0x1f | ||
123 | #define DEF_HUE 0x10 | ||
124 | #define SET_HUE(x) (HUE_EN | ((x) & HUE_MASK)) | ||
125 | |||
126 | #define DEF_AECH 0x4D | ||
127 | |||
128 | #define CLKRC_6MHz 0x00 | ||
129 | #define CLKRC_12MHz 0x40 | ||
130 | #define CLKRC_16MHz 0x80 | ||
131 | #define CLKRC_24MHz 0xc0 | ||
132 | #define CLKRC_DIV_MASK 0x3f | ||
133 | #define GET_CLKRC_DIV(x) (((x) & CLKRC_DIV_MASK) + 1) | ||
134 | |||
135 | #define COMA_RESET BIT(7) | ||
136 | #define COMA_QCIF BIT(5) | ||
137 | #define COMA_RAW_RGB BIT(4) | ||
138 | #define COMA_RGB BIT(3) | ||
139 | #define COMA_BW BIT(2) | ||
140 | #define COMA_WORD_SWAP BIT(1) | ||
141 | #define COMA_BYTE_SWAP BIT(0) | ||
142 | #define DEF_COMA 0x00 | ||
143 | |||
144 | #define COMB_FLIP_V BIT(7) | ||
145 | #define COMB_FLIP_H BIT(5) | ||
146 | #define COMB_BAND_FILTER BIT(4) | ||
147 | #define COMB_AWB BIT(2) | ||
148 | #define COMB_AGC BIT(1) | ||
149 | #define COMB_AEC BIT(0) | ||
150 | #define DEF_COMB 0x5f | ||
151 | |||
152 | #define COML_ONE_CHANNEL BIT(7) | ||
153 | |||
154 | #define DEF_HSTRT 0x24 | ||
155 | #define DEF_HSTOP 0xd4 | ||
156 | #define DEF_VSTRT 0x04 | ||
157 | #define DEF_VSTOP 0x94 | ||
158 | |||
159 | #define COMF_HREF_LOW BIT(4) | ||
160 | |||
161 | #define COMJ_PCLK_RISING BIT(4) | ||
162 | #define COMJ_VSYNC_HIGH BIT(0) | ||
163 | |||
164 | /* supported resolutions */ | ||
165 | #define W_QCIF (DEF_HSTOP - DEF_HSTRT) | ||
166 | #define W_CIF (W_QCIF << 1) | ||
167 | #define H_QCIF (DEF_VSTOP - DEF_VSTRT) | ||
168 | #define H_CIF (H_QCIF << 1) | ||
169 | |||
170 | #define FRAME_RATE_MAX 30 | ||
171 | |||
172 | |||
173 | struct ov6650_reg { | ||
174 | u8 reg; | ||
175 | u8 val; | ||
176 | }; | ||
177 | |||
178 | struct ov6650 { | ||
179 | struct v4l2_subdev subdev; | ||
180 | |||
181 | int gain; | ||
182 | int blue; | ||
183 | int red; | ||
184 | int saturation; | ||
185 | int hue; | ||
186 | int brightness; | ||
187 | int exposure; | ||
188 | int gamma; | ||
189 | int aec; | ||
190 | bool vflip; | ||
191 | bool hflip; | ||
192 | bool awb; | ||
193 | bool agc; | ||
194 | bool half_scale; /* scale down output by 2 */ | ||
195 | struct v4l2_rect rect; /* sensor cropping window */ | ||
196 | unsigned long pclk_limit; /* from host */ | ||
197 | unsigned long pclk_max; /* from resolution and format */ | ||
198 | struct v4l2_fract tpf; /* as requested with s_parm */ | ||
199 | enum v4l2_mbus_pixelcode code; | ||
200 | enum v4l2_colorspace colorspace; | ||
201 | }; | ||
202 | |||
203 | |||
204 | static enum v4l2_mbus_pixelcode ov6650_codes[] = { | ||
205 | V4L2_MBUS_FMT_YUYV8_2X8, | ||
206 | V4L2_MBUS_FMT_UYVY8_2X8, | ||
207 | V4L2_MBUS_FMT_YVYU8_2X8, | ||
208 | V4L2_MBUS_FMT_VYUY8_2X8, | ||
209 | V4L2_MBUS_FMT_SBGGR8_1X8, | ||
210 | V4L2_MBUS_FMT_GREY8_1X8, | ||
211 | }; | ||
212 | |||
213 | static const struct v4l2_queryctrl ov6650_controls[] = { | ||
214 | { | ||
215 | .id = V4L2_CID_AUTOGAIN, | ||
216 | .type = V4L2_CTRL_TYPE_BOOLEAN, | ||
217 | .name = "AGC", | ||
218 | .minimum = 0, | ||
219 | .maximum = 1, | ||
220 | .step = 1, | ||
221 | .default_value = 1, | ||
222 | }, | ||
223 | { | ||
224 | .id = V4L2_CID_GAIN, | ||
225 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
226 | .name = "Gain", | ||
227 | .minimum = 0, | ||
228 | .maximum = 0x3f, | ||
229 | .step = 1, | ||
230 | .default_value = DEF_GAIN, | ||
231 | }, | ||
232 | { | ||
233 | .id = V4L2_CID_AUTO_WHITE_BALANCE, | ||
234 | .type = V4L2_CTRL_TYPE_BOOLEAN, | ||
235 | .name = "AWB", | ||
236 | .minimum = 0, | ||
237 | .maximum = 1, | ||
238 | .step = 1, | ||
239 | .default_value = 1, | ||
240 | }, | ||
241 | { | ||
242 | .id = V4L2_CID_BLUE_BALANCE, | ||
243 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
244 | .name = "Blue", | ||
245 | .minimum = 0, | ||
246 | .maximum = 0xff, | ||
247 | .step = 1, | ||
248 | .default_value = DEF_BLUE, | ||
249 | }, | ||
250 | { | ||
251 | .id = V4L2_CID_RED_BALANCE, | ||
252 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
253 | .name = "Red", | ||
254 | .minimum = 0, | ||
255 | .maximum = 0xff, | ||
256 | .step = 1, | ||
257 | .default_value = DEF_RED, | ||
258 | }, | ||
259 | { | ||
260 | .id = V4L2_CID_SATURATION, | ||
261 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
262 | .name = "Saturation", | ||
263 | .minimum = 0, | ||
264 | .maximum = 0xf, | ||
265 | .step = 1, | ||
266 | .default_value = 0x8, | ||
267 | }, | ||
268 | { | ||
269 | .id = V4L2_CID_HUE, | ||
270 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
271 | .name = "Hue", | ||
272 | .minimum = 0, | ||
273 | .maximum = HUE_MASK, | ||
274 | .step = 1, | ||
275 | .default_value = DEF_HUE, | ||
276 | }, | ||
277 | { | ||
278 | .id = V4L2_CID_BRIGHTNESS, | ||
279 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
280 | .name = "Brightness", | ||
281 | .minimum = 0, | ||
282 | .maximum = 0xff, | ||
283 | .step = 1, | ||
284 | .default_value = 0x80, | ||
285 | }, | ||
286 | { | ||
287 | .id = V4L2_CID_EXPOSURE_AUTO, | ||
288 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
289 | .name = "AEC", | ||
290 | .minimum = 0, | ||
291 | .maximum = 3, | ||
292 | .step = 1, | ||
293 | .default_value = 0, | ||
294 | }, | ||
295 | { | ||
296 | .id = V4L2_CID_EXPOSURE, | ||
297 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
298 | .name = "Exposure", | ||
299 | .minimum = 0, | ||
300 | .maximum = 0xff, | ||
301 | .step = 1, | ||
302 | .default_value = DEF_AECH, | ||
303 | }, | ||
304 | { | ||
305 | .id = V4L2_CID_GAMMA, | ||
306 | .type = V4L2_CTRL_TYPE_INTEGER, | ||
307 | .name = "Gamma", | ||
308 | .minimum = 0, | ||
309 | .maximum = 0xff, | ||
310 | .step = 1, | ||
311 | .default_value = 0x12, | ||
312 | }, | ||
313 | { | ||
314 | .id = V4L2_CID_VFLIP, | ||
315 | .type = V4L2_CTRL_TYPE_BOOLEAN, | ||
316 | .name = "Flip Vertically", | ||
317 | .minimum = 0, | ||
318 | .maximum = 1, | ||
319 | .step = 1, | ||
320 | .default_value = 0, | ||
321 | }, | ||
322 | { | ||
323 | .id = V4L2_CID_HFLIP, | ||
324 | .type = V4L2_CTRL_TYPE_BOOLEAN, | ||
325 | .name = "Flip Horizontally", | ||
326 | .minimum = 0, | ||
327 | .maximum = 1, | ||
328 | .step = 1, | ||
329 | .default_value = 0, | ||
330 | }, | ||
331 | }; | ||
332 | |||
333 | /* read a register */ | ||
334 | static int ov6650_reg_read(struct i2c_client *client, u8 reg, u8 *val) | ||
335 | { | ||
336 | int ret; | ||
337 | u8 data = reg; | ||
338 | struct i2c_msg msg = { | ||
339 | .addr = client->addr, | ||
340 | .flags = 0, | ||
341 | .len = 1, | ||
342 | .buf = &data, | ||
343 | }; | ||
344 | |||
345 | ret = i2c_transfer(client->adapter, &msg, 1); | ||
346 | if (ret < 0) | ||
347 | goto err; | ||
348 | |||
349 | msg.flags = I2C_M_RD; | ||
350 | ret = i2c_transfer(client->adapter, &msg, 1); | ||
351 | if (ret < 0) | ||
352 | goto err; | ||
353 | |||
354 | *val = data; | ||
355 | return 0; | ||
356 | |||
357 | err: | ||
358 | dev_err(&client->dev, "Failed reading register 0x%02x!\n", reg); | ||
359 | return ret; | ||
360 | } | ||
361 | |||
362 | /* write a register */ | ||
363 | static int ov6650_reg_write(struct i2c_client *client, u8 reg, u8 val) | ||
364 | { | ||
365 | int ret; | ||
366 | unsigned char data[2] = { reg, val }; | ||
367 | struct i2c_msg msg = { | ||
368 | .addr = client->addr, | ||
369 | .flags = 0, | ||
370 | .len = 2, | ||
371 | .buf = data, | ||
372 | }; | ||
373 | |||
374 | ret = i2c_transfer(client->adapter, &msg, 1); | ||
375 | udelay(100); | ||
376 | |||
377 | if (ret < 0) { | ||
378 | dev_err(&client->dev, "Failed writing register 0x%02x!\n", reg); | ||
379 | return ret; | ||
380 | } | ||
381 | return 0; | ||
382 | } | ||
383 | |||
384 | |||
385 | /* Read a register, alter its bits, write it back */ | ||
386 | static int ov6650_reg_rmw(struct i2c_client *client, u8 reg, u8 set, u8 mask) | ||
387 | { | ||
388 | u8 val; | ||
389 | int ret; | ||
390 | |||
391 | ret = ov6650_reg_read(client, reg, &val); | ||
392 | if (ret) { | ||
393 | dev_err(&client->dev, | ||
394 | "[Read]-Modify-Write of register 0x%02x failed!\n", | ||
395 | reg); | ||
396 | return ret; | ||
397 | } | ||
398 | |||
399 | val &= ~mask; | ||
400 | val |= set; | ||
401 | |||
402 | ret = ov6650_reg_write(client, reg, val); | ||
403 | if (ret) | ||
404 | dev_err(&client->dev, | ||
405 | "Read-Modify-[Write] of register 0x%02x failed!\n", | ||
406 | reg); | ||
407 | |||
408 | return ret; | ||
409 | } | ||
410 | |||
411 | static struct ov6650 *to_ov6650(const struct i2c_client *client) | ||
412 | { | ||
413 | return container_of(i2c_get_clientdata(client), struct ov6650, subdev); | ||
414 | } | ||
415 | |||
416 | /* Start/Stop streaming from the device */ | ||
417 | static int ov6650_s_stream(struct v4l2_subdev *sd, int enable) | ||
418 | { | ||
419 | return 0; | ||
420 | } | ||
421 | |||
422 | /* Alter bus settings on camera side */ | ||
423 | static int ov6650_set_bus_param(struct soc_camera_device *icd, | ||
424 | unsigned long flags) | ||
425 | { | ||
426 | struct soc_camera_link *icl = to_soc_camera_link(icd); | ||
427 | struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd)); | ||
428 | int ret; | ||
429 | |||
430 | flags = soc_camera_apply_sensor_flags(icl, flags); | ||
431 | |||
432 | if (flags & SOCAM_PCLK_SAMPLE_RISING) | ||
433 | ret = ov6650_reg_rmw(client, REG_COMJ, COMJ_PCLK_RISING, 0); | ||
434 | else | ||
435 | ret = ov6650_reg_rmw(client, REG_COMJ, 0, COMJ_PCLK_RISING); | ||
436 | if (ret) | ||
437 | return ret; | ||
438 | |||
439 | if (flags & SOCAM_HSYNC_ACTIVE_LOW) | ||
440 | ret = ov6650_reg_rmw(client, REG_COMF, COMF_HREF_LOW, 0); | ||
441 | else | ||
442 | ret = ov6650_reg_rmw(client, REG_COMF, 0, COMF_HREF_LOW); | ||
443 | if (ret) | ||
444 | return ret; | ||
445 | |||
446 | if (flags & SOCAM_VSYNC_ACTIVE_HIGH) | ||
447 | ret = ov6650_reg_rmw(client, REG_COMJ, COMJ_VSYNC_HIGH, 0); | ||
448 | else | ||
449 | ret = ov6650_reg_rmw(client, REG_COMJ, 0, COMJ_VSYNC_HIGH); | ||
450 | |||
451 | return ret; | ||
452 | } | ||
453 | |||
454 | /* Request bus settings on camera side */ | ||
455 | static unsigned long ov6650_query_bus_param(struct soc_camera_device *icd) | ||
456 | { | ||
457 | struct soc_camera_link *icl = to_soc_camera_link(icd); | ||
458 | |||
459 | unsigned long flags = SOCAM_MASTER | | ||
460 | SOCAM_PCLK_SAMPLE_RISING | SOCAM_PCLK_SAMPLE_FALLING | | ||
461 | SOCAM_HSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_LOW | | ||
462 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_VSYNC_ACTIVE_LOW | | ||
463 | SOCAM_DATA_ACTIVE_HIGH | SOCAM_DATAWIDTH_8; | ||
464 | |||
465 | return soc_camera_apply_sensor_flags(icl, flags); | ||
466 | } | ||
467 | |||
468 | /* Get status of additional camera capabilities */ | ||
469 | static int ov6650_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) | ||
470 | { | ||
471 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
472 | struct ov6650 *priv = to_ov6650(client); | ||
473 | uint8_t reg; | ||
474 | int ret = 0; | ||
475 | |||
476 | switch (ctrl->id) { | ||
477 | case V4L2_CID_AUTOGAIN: | ||
478 | ctrl->value = priv->agc; | ||
479 | break; | ||
480 | case V4L2_CID_GAIN: | ||
481 | if (priv->agc) { | ||
482 | ret = ov6650_reg_read(client, REG_GAIN, ®); | ||
483 | ctrl->value = reg; | ||
484 | } else { | ||
485 | ctrl->value = priv->gain; | ||
486 | } | ||
487 | break; | ||
488 | case V4L2_CID_AUTO_WHITE_BALANCE: | ||
489 | ctrl->value = priv->awb; | ||
490 | break; | ||
491 | case V4L2_CID_BLUE_BALANCE: | ||
492 | if (priv->awb) { | ||
493 | ret = ov6650_reg_read(client, REG_BLUE, ®); | ||
494 | ctrl->value = reg; | ||
495 | } else { | ||
496 | ctrl->value = priv->blue; | ||
497 | } | ||
498 | break; | ||
499 | case V4L2_CID_RED_BALANCE: | ||
500 | if (priv->awb) { | ||
501 | ret = ov6650_reg_read(client, REG_RED, ®); | ||
502 | ctrl->value = reg; | ||
503 | } else { | ||
504 | ctrl->value = priv->red; | ||
505 | } | ||
506 | break; | ||
507 | case V4L2_CID_SATURATION: | ||
508 | ctrl->value = priv->saturation; | ||
509 | break; | ||
510 | case V4L2_CID_HUE: | ||
511 | ctrl->value = priv->hue; | ||
512 | break; | ||
513 | case V4L2_CID_BRIGHTNESS: | ||
514 | ctrl->value = priv->brightness; | ||
515 | break; | ||
516 | case V4L2_CID_EXPOSURE_AUTO: | ||
517 | ctrl->value = priv->aec; | ||
518 | break; | ||
519 | case V4L2_CID_EXPOSURE: | ||
520 | if (priv->aec) { | ||
521 | ret = ov6650_reg_read(client, REG_AECH, ®); | ||
522 | ctrl->value = reg; | ||
523 | } else { | ||
524 | ctrl->value = priv->exposure; | ||
525 | } | ||
526 | break; | ||
527 | case V4L2_CID_GAMMA: | ||
528 | ctrl->value = priv->gamma; | ||
529 | break; | ||
530 | case V4L2_CID_VFLIP: | ||
531 | ctrl->value = priv->vflip; | ||
532 | break; | ||
533 | case V4L2_CID_HFLIP: | ||
534 | ctrl->value = priv->hflip; | ||
535 | break; | ||
536 | } | ||
537 | return ret; | ||
538 | } | ||
539 | |||
540 | /* Set status of additional camera capabilities */ | ||
541 | static int ov6650_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) | ||
542 | { | ||
543 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
544 | struct ov6650 *priv = to_ov6650(client); | ||
545 | int ret = 0; | ||
546 | |||
547 | switch (ctrl->id) { | ||
548 | case V4L2_CID_AUTOGAIN: | ||
549 | ret = ov6650_reg_rmw(client, REG_COMB, | ||
550 | ctrl->value ? COMB_AGC : 0, COMB_AGC); | ||
551 | if (!ret) | ||
552 | priv->agc = ctrl->value; | ||
553 | break; | ||
554 | case V4L2_CID_GAIN: | ||
555 | ret = ov6650_reg_write(client, REG_GAIN, ctrl->value); | ||
556 | if (!ret) | ||
557 | priv->gain = ctrl->value; | ||
558 | break; | ||
559 | case V4L2_CID_AUTO_WHITE_BALANCE: | ||
560 | ret = ov6650_reg_rmw(client, REG_COMB, | ||
561 | ctrl->value ? COMB_AWB : 0, COMB_AWB); | ||
562 | if (!ret) | ||
563 | priv->awb = ctrl->value; | ||
564 | break; | ||
565 | case V4L2_CID_BLUE_BALANCE: | ||
566 | ret = ov6650_reg_write(client, REG_BLUE, ctrl->value); | ||
567 | if (!ret) | ||
568 | priv->blue = ctrl->value; | ||
569 | break; | ||
570 | case V4L2_CID_RED_BALANCE: | ||
571 | ret = ov6650_reg_write(client, REG_RED, ctrl->value); | ||
572 | if (!ret) | ||
573 | priv->red = ctrl->value; | ||
574 | break; | ||
575 | case V4L2_CID_SATURATION: | ||
576 | ret = ov6650_reg_rmw(client, REG_SAT, SET_SAT(ctrl->value), | ||
577 | SAT_MASK); | ||
578 | if (!ret) | ||
579 | priv->saturation = ctrl->value; | ||
580 | break; | ||
581 | case V4L2_CID_HUE: | ||
582 | ret = ov6650_reg_rmw(client, REG_HUE, SET_HUE(ctrl->value), | ||
583 | HUE_MASK); | ||
584 | if (!ret) | ||
585 | priv->hue = ctrl->value; | ||
586 | break; | ||
587 | case V4L2_CID_BRIGHTNESS: | ||
588 | ret = ov6650_reg_write(client, REG_BRT, ctrl->value); | ||
589 | if (!ret) | ||
590 | priv->brightness = ctrl->value; | ||
591 | break; | ||
592 | case V4L2_CID_EXPOSURE_AUTO: | ||
593 | switch (ctrl->value) { | ||
594 | case V4L2_EXPOSURE_AUTO: | ||
595 | ret = ov6650_reg_rmw(client, REG_COMB, COMB_AEC, 0); | ||
596 | break; | ||
597 | default: | ||
598 | ret = ov6650_reg_rmw(client, REG_COMB, 0, COMB_AEC); | ||
599 | break; | ||
600 | } | ||
601 | if (!ret) | ||
602 | priv->aec = ctrl->value; | ||
603 | break; | ||
604 | case V4L2_CID_EXPOSURE: | ||
605 | ret = ov6650_reg_write(client, REG_AECH, ctrl->value); | ||
606 | if (!ret) | ||
607 | priv->exposure = ctrl->value; | ||
608 | break; | ||
609 | case V4L2_CID_GAMMA: | ||
610 | ret = ov6650_reg_write(client, REG_GAM1, ctrl->value); | ||
611 | if (!ret) | ||
612 | priv->gamma = ctrl->value; | ||
613 | break; | ||
614 | case V4L2_CID_VFLIP: | ||
615 | ret = ov6650_reg_rmw(client, REG_COMB, | ||
616 | ctrl->value ? COMB_FLIP_V : 0, COMB_FLIP_V); | ||
617 | if (!ret) | ||
618 | priv->vflip = ctrl->value; | ||
619 | break; | ||
620 | case V4L2_CID_HFLIP: | ||
621 | ret = ov6650_reg_rmw(client, REG_COMB, | ||
622 | ctrl->value ? COMB_FLIP_H : 0, COMB_FLIP_H); | ||
623 | if (!ret) | ||
624 | priv->hflip = ctrl->value; | ||
625 | break; | ||
626 | } | ||
627 | |||
628 | return ret; | ||
629 | } | ||
630 | |||
631 | /* Get chip identification */ | ||
632 | static int ov6650_g_chip_ident(struct v4l2_subdev *sd, | ||
633 | struct v4l2_dbg_chip_ident *id) | ||
634 | { | ||
635 | id->ident = V4L2_IDENT_OV6650; | ||
636 | id->revision = 0; | ||
637 | |||
638 | return 0; | ||
639 | } | ||
640 | |||
641 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
642 | static int ov6650_get_register(struct v4l2_subdev *sd, | ||
643 | struct v4l2_dbg_register *reg) | ||
644 | { | ||
645 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
646 | int ret; | ||
647 | u8 val; | ||
648 | |||
649 | if (reg->reg & ~0xff) | ||
650 | return -EINVAL; | ||
651 | |||
652 | reg->size = 1; | ||
653 | |||
654 | ret = ov6650_reg_read(client, reg->reg, &val); | ||
655 | if (!ret) | ||
656 | reg->val = (__u64)val; | ||
657 | |||
658 | return ret; | ||
659 | } | ||
660 | |||
661 | static int ov6650_set_register(struct v4l2_subdev *sd, | ||
662 | struct v4l2_dbg_register *reg) | ||
663 | { | ||
664 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
665 | |||
666 | if (reg->reg & ~0xff || reg->val & ~0xff) | ||
667 | return -EINVAL; | ||
668 | |||
669 | return ov6650_reg_write(client, reg->reg, reg->val); | ||
670 | } | ||
671 | #endif | ||
672 | |||
673 | static int ov6650_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a) | ||
674 | { | ||
675 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
676 | struct ov6650 *priv = to_ov6650(client); | ||
677 | |||
678 | a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; | ||
679 | a->c = priv->rect; | ||
680 | |||
681 | return 0; | ||
682 | } | ||
683 | |||
684 | static int ov6650_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a) | ||
685 | { | ||
686 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
687 | struct ov6650 *priv = to_ov6650(client); | ||
688 | struct v4l2_rect *rect = &a->c; | ||
689 | int ret; | ||
690 | |||
691 | if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) | ||
692 | return -EINVAL; | ||
693 | |||
694 | rect->left = ALIGN(rect->left, 2); | ||
695 | rect->width = ALIGN(rect->width, 2); | ||
696 | rect->top = ALIGN(rect->top, 2); | ||
697 | rect->height = ALIGN(rect->height, 2); | ||
698 | soc_camera_limit_side(&rect->left, &rect->width, | ||
699 | DEF_HSTRT << 1, 2, W_CIF); | ||
700 | soc_camera_limit_side(&rect->top, &rect->height, | ||
701 | DEF_VSTRT << 1, 2, H_CIF); | ||
702 | |||
703 | ret = ov6650_reg_write(client, REG_HSTRT, rect->left >> 1); | ||
704 | if (!ret) { | ||
705 | priv->rect.left = rect->left; | ||
706 | ret = ov6650_reg_write(client, REG_HSTOP, | ||
707 | (rect->left + rect->width) >> 1); | ||
708 | } | ||
709 | if (!ret) { | ||
710 | priv->rect.width = rect->width; | ||
711 | ret = ov6650_reg_write(client, REG_VSTRT, rect->top >> 1); | ||
712 | } | ||
713 | if (!ret) { | ||
714 | priv->rect.top = rect->top; | ||
715 | ret = ov6650_reg_write(client, REG_VSTOP, | ||
716 | (rect->top + rect->height) >> 1); | ||
717 | } | ||
718 | if (!ret) | ||
719 | priv->rect.height = rect->height; | ||
720 | |||
721 | return ret; | ||
722 | } | ||
723 | |||
724 | static int ov6650_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a) | ||
725 | { | ||
726 | if (a->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) | ||
727 | return -EINVAL; | ||
728 | |||
729 | a->bounds.left = DEF_HSTRT << 1; | ||
730 | a->bounds.top = DEF_VSTRT << 1; | ||
731 | a->bounds.width = W_CIF; | ||
732 | a->bounds.height = H_CIF; | ||
733 | a->defrect = a->bounds; | ||
734 | a->pixelaspect.numerator = 1; | ||
735 | a->pixelaspect.denominator = 1; | ||
736 | |||
737 | return 0; | ||
738 | } | ||
739 | |||
740 | static int ov6650_g_fmt(struct v4l2_subdev *sd, | ||
741 | struct v4l2_mbus_framefmt *mf) | ||
742 | { | ||
743 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
744 | struct ov6650 *priv = to_ov6650(client); | ||
745 | |||
746 | mf->width = priv->rect.width >> priv->half_scale; | ||
747 | mf->height = priv->rect.height >> priv->half_scale; | ||
748 | mf->code = priv->code; | ||
749 | mf->colorspace = priv->colorspace; | ||
750 | mf->field = V4L2_FIELD_NONE; | ||
751 | |||
752 | return 0; | ||
753 | } | ||
754 | |||
755 | static bool is_unscaled_ok(int width, int height, struct v4l2_rect *rect) | ||
756 | { | ||
757 | return (width > rect->width >> 1 || height > rect->height >> 1); | ||
758 | } | ||
759 | |||
760 | static u8 to_clkrc(struct v4l2_fract *timeperframe, | ||
761 | unsigned long pclk_limit, unsigned long pclk_max) | ||
762 | { | ||
763 | unsigned long pclk; | ||
764 | |||
765 | if (timeperframe->numerator && timeperframe->denominator) | ||
766 | pclk = pclk_max * timeperframe->denominator / | ||
767 | (FRAME_RATE_MAX * timeperframe->numerator); | ||
768 | else | ||
769 | pclk = pclk_max; | ||
770 | |||
771 | if (pclk_limit && pclk_limit < pclk) | ||
772 | pclk = pclk_limit; | ||
773 | |||
774 | return (pclk_max - 1) / pclk; | ||
775 | } | ||
776 | |||
777 | /* set the format we will capture in */ | ||
778 | static int ov6650_s_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) | ||
779 | { | ||
780 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
781 | struct soc_camera_device *icd = client->dev.platform_data; | ||
782 | struct soc_camera_sense *sense = icd->sense; | ||
783 | struct ov6650 *priv = to_ov6650(client); | ||
784 | bool half_scale = !is_unscaled_ok(mf->width, mf->height, &priv->rect); | ||
785 | struct v4l2_crop a = { | ||
786 | .type = V4L2_BUF_TYPE_VIDEO_CAPTURE, | ||
787 | .c = { | ||
788 | .left = priv->rect.left + (priv->rect.width >> 1) - | ||
789 | (mf->width >> (1 - half_scale)), | ||
790 | .top = priv->rect.top + (priv->rect.height >> 1) - | ||
791 | (mf->height >> (1 - half_scale)), | ||
792 | .width = mf->width << half_scale, | ||
793 | .height = mf->height << half_scale, | ||
794 | }, | ||
795 | }; | ||
796 | enum v4l2_mbus_pixelcode code = mf->code; | ||
797 | unsigned long mclk, pclk; | ||
798 | u8 coma_set = 0, coma_mask = 0, coml_set, coml_mask, clkrc; | ||
799 | int ret; | ||
800 | |||
801 | /* select color matrix configuration for given color encoding */ | ||
802 | switch (code) { | ||
803 | case V4L2_MBUS_FMT_GREY8_1X8: | ||
804 | dev_dbg(&client->dev, "pixel format GREY8_1X8\n"); | ||
805 | coma_mask |= COMA_RGB | COMA_WORD_SWAP | COMA_BYTE_SWAP; | ||
806 | coma_set |= COMA_BW; | ||
807 | break; | ||
808 | case V4L2_MBUS_FMT_YUYV8_2X8: | ||
809 | dev_dbg(&client->dev, "pixel format YUYV8_2X8_LE\n"); | ||
810 | coma_mask |= COMA_RGB | COMA_BW | COMA_BYTE_SWAP; | ||
811 | coma_set |= COMA_WORD_SWAP; | ||
812 | break; | ||
813 | case V4L2_MBUS_FMT_YVYU8_2X8: | ||
814 | dev_dbg(&client->dev, "pixel format YVYU8_2X8_LE (untested)\n"); | ||
815 | coma_mask |= COMA_RGB | COMA_BW | COMA_WORD_SWAP | | ||
816 | COMA_BYTE_SWAP; | ||
817 | break; | ||
818 | case V4L2_MBUS_FMT_UYVY8_2X8: | ||
819 | dev_dbg(&client->dev, "pixel format YUYV8_2X8_BE\n"); | ||
820 | if (half_scale) { | ||
821 | coma_mask |= COMA_RGB | COMA_BW | COMA_WORD_SWAP; | ||
822 | coma_set |= COMA_BYTE_SWAP; | ||
823 | } else { | ||
824 | coma_mask |= COMA_RGB | COMA_BW; | ||
825 | coma_set |= COMA_BYTE_SWAP | COMA_WORD_SWAP; | ||
826 | } | ||
827 | break; | ||
828 | case V4L2_MBUS_FMT_VYUY8_2X8: | ||
829 | dev_dbg(&client->dev, "pixel format YVYU8_2X8_BE (untested)\n"); | ||
830 | if (half_scale) { | ||
831 | coma_mask |= COMA_RGB | COMA_BW; | ||
832 | coma_set |= COMA_BYTE_SWAP | COMA_WORD_SWAP; | ||
833 | } else { | ||
834 | coma_mask |= COMA_RGB | COMA_BW | COMA_WORD_SWAP; | ||
835 | coma_set |= COMA_BYTE_SWAP; | ||
836 | } | ||
837 | break; | ||
838 | case V4L2_MBUS_FMT_SBGGR8_1X8: | ||
839 | dev_dbg(&client->dev, "pixel format SBGGR8_1X8 (untested)\n"); | ||
840 | coma_mask |= COMA_BW | COMA_BYTE_SWAP | COMA_WORD_SWAP; | ||
841 | coma_set |= COMA_RAW_RGB | COMA_RGB; | ||
842 | break; | ||
843 | case 0: | ||
844 | break; | ||
845 | default: | ||
846 | dev_err(&client->dev, "Pixel format not handled: 0x%x\n", code); | ||
847 | return -EINVAL; | ||
848 | } | ||
849 | priv->code = code; | ||
850 | |||
851 | if (code == V4L2_MBUS_FMT_GREY8_1X8 || | ||
852 | code == V4L2_MBUS_FMT_SBGGR8_1X8) { | ||
853 | coml_mask = COML_ONE_CHANNEL; | ||
854 | coml_set = 0; | ||
855 | priv->pclk_max = 4000000; | ||
856 | } else { | ||
857 | coml_mask = 0; | ||
858 | coml_set = COML_ONE_CHANNEL; | ||
859 | priv->pclk_max = 8000000; | ||
860 | } | ||
861 | |||
862 | if (code == V4L2_MBUS_FMT_SBGGR8_1X8) | ||
863 | priv->colorspace = V4L2_COLORSPACE_SRGB; | ||
864 | else if (code != 0) | ||
865 | priv->colorspace = V4L2_COLORSPACE_JPEG; | ||
866 | |||
867 | if (half_scale) { | ||
868 | dev_dbg(&client->dev, "max resolution: QCIF\n"); | ||
869 | coma_set |= COMA_QCIF; | ||
870 | priv->pclk_max /= 2; | ||
871 | } else { | ||
872 | dev_dbg(&client->dev, "max resolution: CIF\n"); | ||
873 | coma_mask |= COMA_QCIF; | ||
874 | } | ||
875 | priv->half_scale = half_scale; | ||
876 | |||
877 | if (sense) { | ||
878 | if (sense->master_clock == 8000000) { | ||
879 | dev_dbg(&client->dev, "8MHz input clock\n"); | ||
880 | clkrc = CLKRC_6MHz; | ||
881 | } else if (sense->master_clock == 12000000) { | ||
882 | dev_dbg(&client->dev, "12MHz input clock\n"); | ||
883 | clkrc = CLKRC_12MHz; | ||
884 | } else if (sense->master_clock == 16000000) { | ||
885 | dev_dbg(&client->dev, "16MHz input clock\n"); | ||
886 | clkrc = CLKRC_16MHz; | ||
887 | } else if (sense->master_clock == 24000000) { | ||
888 | dev_dbg(&client->dev, "24MHz input clock\n"); | ||
889 | clkrc = CLKRC_24MHz; | ||
890 | } else { | ||
891 | dev_err(&client->dev, | ||
892 | "unspported input clock, check platform data\n"); | ||
893 | return -EINVAL; | ||
894 | } | ||
895 | mclk = sense->master_clock; | ||
896 | priv->pclk_limit = sense->pixel_clock_max; | ||
897 | } else { | ||
898 | clkrc = CLKRC_24MHz; | ||
899 | mclk = 24000000; | ||
900 | priv->pclk_limit = 0; | ||
901 | dev_dbg(&client->dev, "using default 24MHz input clock\n"); | ||
902 | } | ||
903 | |||
904 | clkrc |= to_clkrc(&priv->tpf, priv->pclk_limit, priv->pclk_max); | ||
905 | |||
906 | pclk = priv->pclk_max / GET_CLKRC_DIV(clkrc); | ||
907 | dev_dbg(&client->dev, "pixel clock divider: %ld.%ld\n", | ||
908 | mclk / pclk, 10 * mclk % pclk / pclk); | ||
909 | |||
910 | ret = ov6650_s_crop(sd, &a); | ||
911 | if (!ret) | ||
912 | ret = ov6650_reg_rmw(client, REG_COMA, coma_set, coma_mask); | ||
913 | if (!ret) | ||
914 | ret = ov6650_reg_write(client, REG_CLKRC, clkrc); | ||
915 | if (!ret) | ||
916 | ret = ov6650_reg_rmw(client, REG_COML, coml_set, coml_mask); | ||
917 | |||
918 | if (!ret) { | ||
919 | mf->colorspace = priv->colorspace; | ||
920 | mf->width = priv->rect.width >> half_scale; | ||
921 | mf->height = priv->rect.height >> half_scale; | ||
922 | } | ||
923 | |||
924 | return ret; | ||
925 | } | ||
926 | |||
927 | static int ov6650_try_fmt(struct v4l2_subdev *sd, | ||
928 | struct v4l2_mbus_framefmt *mf) | ||
929 | { | ||
930 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
931 | struct ov6650 *priv = to_ov6650(client); | ||
932 | |||
933 | if (is_unscaled_ok(mf->width, mf->height, &priv->rect)) | ||
934 | v4l_bound_align_image(&mf->width, 2, W_CIF, 1, | ||
935 | &mf->height, 2, H_CIF, 1, 0); | ||
936 | |||
937 | mf->field = V4L2_FIELD_NONE; | ||
938 | |||
939 | switch (mf->code) { | ||
940 | case V4L2_MBUS_FMT_Y10_1X10: | ||
941 | mf->code = V4L2_MBUS_FMT_GREY8_1X8; | ||
942 | case V4L2_MBUS_FMT_GREY8_1X8: | ||
943 | case V4L2_MBUS_FMT_YVYU8_2X8: | ||
944 | case V4L2_MBUS_FMT_YUYV8_2X8: | ||
945 | case V4L2_MBUS_FMT_VYUY8_2X8: | ||
946 | case V4L2_MBUS_FMT_UYVY8_2X8: | ||
947 | mf->colorspace = V4L2_COLORSPACE_JPEG; | ||
948 | break; | ||
949 | default: | ||
950 | mf->code = V4L2_MBUS_FMT_SBGGR8_1X8; | ||
951 | case V4L2_MBUS_FMT_SBGGR8_1X8: | ||
952 | mf->colorspace = V4L2_COLORSPACE_SRGB; | ||
953 | break; | ||
954 | } | ||
955 | |||
956 | return 0; | ||
957 | } | ||
958 | |||
959 | static int ov6650_enum_fmt(struct v4l2_subdev *sd, unsigned int index, | ||
960 | enum v4l2_mbus_pixelcode *code) | ||
961 | { | ||
962 | if (index >= ARRAY_SIZE(ov6650_codes)) | ||
963 | return -EINVAL; | ||
964 | |||
965 | *code = ov6650_codes[index]; | ||
966 | return 0; | ||
967 | } | ||
968 | |||
969 | static int ov6650_g_parm(struct v4l2_subdev *sd, struct v4l2_streamparm *parms) | ||
970 | { | ||
971 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
972 | struct ov6650 *priv = to_ov6650(client); | ||
973 | struct v4l2_captureparm *cp = &parms->parm.capture; | ||
974 | |||
975 | if (parms->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) | ||
976 | return -EINVAL; | ||
977 | |||
978 | memset(cp, 0, sizeof(*cp)); | ||
979 | cp->capability = V4L2_CAP_TIMEPERFRAME; | ||
980 | cp->timeperframe.numerator = GET_CLKRC_DIV(to_clkrc(&priv->tpf, | ||
981 | priv->pclk_limit, priv->pclk_max)); | ||
982 | cp->timeperframe.denominator = FRAME_RATE_MAX; | ||
983 | |||
984 | dev_dbg(&client->dev, "Frame interval: %u/%u s\n", | ||
985 | cp->timeperframe.numerator, cp->timeperframe.denominator); | ||
986 | |||
987 | return 0; | ||
988 | } | ||
989 | |||
990 | static int ov6650_s_parm(struct v4l2_subdev *sd, struct v4l2_streamparm *parms) | ||
991 | { | ||
992 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
993 | struct ov6650 *priv = to_ov6650(client); | ||
994 | struct v4l2_captureparm *cp = &parms->parm.capture; | ||
995 | struct v4l2_fract *tpf = &cp->timeperframe; | ||
996 | int div, ret; | ||
997 | u8 clkrc; | ||
998 | |||
999 | if (parms->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) | ||
1000 | return -EINVAL; | ||
1001 | |||
1002 | if (cp->extendedmode != 0) | ||
1003 | return -EINVAL; | ||
1004 | |||
1005 | if (tpf->numerator == 0 || tpf->denominator == 0) | ||
1006 | div = 1; /* Reset to full rate */ | ||
1007 | else | ||
1008 | div = (tpf->numerator * FRAME_RATE_MAX) / tpf->denominator; | ||
1009 | |||
1010 | if (div == 0) | ||
1011 | div = 1; | ||
1012 | else if (div > GET_CLKRC_DIV(CLKRC_DIV_MASK)) | ||
1013 | div = GET_CLKRC_DIV(CLKRC_DIV_MASK); | ||
1014 | |||
1015 | /* | ||
1016 | * Keep result to be used as tpf limit | ||
1017 | * for subseqent clock divider calculations | ||
1018 | */ | ||
1019 | priv->tpf.numerator = div; | ||
1020 | priv->tpf.denominator = FRAME_RATE_MAX; | ||
1021 | |||
1022 | clkrc = to_clkrc(&priv->tpf, priv->pclk_limit, priv->pclk_max); | ||
1023 | |||
1024 | ret = ov6650_reg_rmw(client, REG_CLKRC, clkrc, CLKRC_DIV_MASK); | ||
1025 | if (!ret) { | ||
1026 | tpf->numerator = GET_CLKRC_DIV(clkrc); | ||
1027 | tpf->denominator = FRAME_RATE_MAX; | ||
1028 | } | ||
1029 | |||
1030 | return ret; | ||
1031 | } | ||
1032 | |||
1033 | /* Soft reset the camera. This has nothing to do with the RESET pin! */ | ||
1034 | static int ov6650_reset(struct i2c_client *client) | ||
1035 | { | ||
1036 | int ret; | ||
1037 | |||
1038 | dev_dbg(&client->dev, "reset\n"); | ||
1039 | |||
1040 | ret = ov6650_reg_rmw(client, REG_COMA, COMA_RESET, 0); | ||
1041 | if (ret) | ||
1042 | dev_err(&client->dev, | ||
1043 | "An error occured while entering soft reset!\n"); | ||
1044 | |||
1045 | return ret; | ||
1046 | } | ||
1047 | |||
1048 | /* program default register values */ | ||
1049 | static int ov6650_prog_dflt(struct i2c_client *client) | ||
1050 | { | ||
1051 | int ret; | ||
1052 | |||
1053 | dev_dbg(&client->dev, "initializing\n"); | ||
1054 | |||
1055 | ret = ov6650_reg_write(client, REG_COMA, 0); /* ~COMA_RESET */ | ||
1056 | if (!ret) | ||
1057 | ret = ov6650_reg_rmw(client, REG_COMB, 0, COMB_BAND_FILTER); | ||
1058 | |||
1059 | return ret; | ||
1060 | } | ||
1061 | |||
1062 | static int ov6650_video_probe(struct soc_camera_device *icd, | ||
1063 | struct i2c_client *client) | ||
1064 | { | ||
1065 | u8 pidh, pidl, midh, midl; | ||
1066 | int ret = 0; | ||
1067 | |||
1068 | /* | ||
1069 | * check and show product ID and manufacturer ID | ||
1070 | */ | ||
1071 | ret = ov6650_reg_read(client, REG_PIDH, &pidh); | ||
1072 | if (!ret) | ||
1073 | ret = ov6650_reg_read(client, REG_PIDL, &pidl); | ||
1074 | if (!ret) | ||
1075 | ret = ov6650_reg_read(client, REG_MIDH, &midh); | ||
1076 | if (!ret) | ||
1077 | ret = ov6650_reg_read(client, REG_MIDL, &midl); | ||
1078 | |||
1079 | if (ret) | ||
1080 | return ret; | ||
1081 | |||
1082 | if ((pidh != OV6650_PIDH) || (pidl != OV6650_PIDL)) { | ||
1083 | dev_err(&client->dev, "Product ID error 0x%02x:0x%02x\n", | ||
1084 | pidh, pidl); | ||
1085 | return -ENODEV; | ||
1086 | } | ||
1087 | |||
1088 | dev_info(&client->dev, | ||
1089 | "ov6650 Product ID 0x%02x:0x%02x Manufacturer ID 0x%02x:0x%02x\n", | ||
1090 | pidh, pidl, midh, midl); | ||
1091 | |||
1092 | ret = ov6650_reset(client); | ||
1093 | if (!ret) | ||
1094 | ret = ov6650_prog_dflt(client); | ||
1095 | |||
1096 | return ret; | ||
1097 | } | ||
1098 | |||
1099 | static struct soc_camera_ops ov6650_ops = { | ||
1100 | .set_bus_param = ov6650_set_bus_param, | ||
1101 | .query_bus_param = ov6650_query_bus_param, | ||
1102 | .controls = ov6650_controls, | ||
1103 | .num_controls = ARRAY_SIZE(ov6650_controls), | ||
1104 | }; | ||
1105 | |||
1106 | static struct v4l2_subdev_core_ops ov6650_core_ops = { | ||
1107 | .g_ctrl = ov6650_g_ctrl, | ||
1108 | .s_ctrl = ov6650_s_ctrl, | ||
1109 | .g_chip_ident = ov6650_g_chip_ident, | ||
1110 | #ifdef CONFIG_VIDEO_ADV_DEBUG | ||
1111 | .g_register = ov6650_get_register, | ||
1112 | .s_register = ov6650_set_register, | ||
1113 | #endif | ||
1114 | }; | ||
1115 | |||
1116 | static struct v4l2_subdev_video_ops ov6650_video_ops = { | ||
1117 | .s_stream = ov6650_s_stream, | ||
1118 | .g_mbus_fmt = ov6650_g_fmt, | ||
1119 | .s_mbus_fmt = ov6650_s_fmt, | ||
1120 | .try_mbus_fmt = ov6650_try_fmt, | ||
1121 | .enum_mbus_fmt = ov6650_enum_fmt, | ||
1122 | .cropcap = ov6650_cropcap, | ||
1123 | .g_crop = ov6650_g_crop, | ||
1124 | .s_crop = ov6650_s_crop, | ||
1125 | .g_parm = ov6650_g_parm, | ||
1126 | .s_parm = ov6650_s_parm, | ||
1127 | }; | ||
1128 | |||
1129 | static struct v4l2_subdev_ops ov6650_subdev_ops = { | ||
1130 | .core = &ov6650_core_ops, | ||
1131 | .video = &ov6650_video_ops, | ||
1132 | }; | ||
1133 | |||
1134 | /* | ||
1135 | * i2c_driver function | ||
1136 | */ | ||
1137 | static int ov6650_probe(struct i2c_client *client, | ||
1138 | const struct i2c_device_id *did) | ||
1139 | { | ||
1140 | struct ov6650 *priv; | ||
1141 | struct soc_camera_device *icd = client->dev.platform_data; | ||
1142 | struct soc_camera_link *icl; | ||
1143 | int ret; | ||
1144 | |||
1145 | if (!icd) { | ||
1146 | dev_err(&client->dev, "Missing soc-camera data!\n"); | ||
1147 | return -EINVAL; | ||
1148 | } | ||
1149 | |||
1150 | icl = to_soc_camera_link(icd); | ||
1151 | if (!icl) { | ||
1152 | dev_err(&client->dev, "Missing platform_data for driver\n"); | ||
1153 | return -EINVAL; | ||
1154 | } | ||
1155 | |||
1156 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); | ||
1157 | if (!priv) { | ||
1158 | dev_err(&client->dev, | ||
1159 | "Failed to allocate memory for private data!\n"); | ||
1160 | return -ENOMEM; | ||
1161 | } | ||
1162 | |||
1163 | v4l2_i2c_subdev_init(&priv->subdev, client, &ov6650_subdev_ops); | ||
1164 | |||
1165 | icd->ops = &ov6650_ops; | ||
1166 | |||
1167 | priv->rect.left = DEF_HSTRT << 1; | ||
1168 | priv->rect.top = DEF_VSTRT << 1; | ||
1169 | priv->rect.width = W_CIF; | ||
1170 | priv->rect.height = H_CIF; | ||
1171 | priv->half_scale = false; | ||
1172 | priv->code = V4L2_MBUS_FMT_YUYV8_2X8; | ||
1173 | priv->colorspace = V4L2_COLORSPACE_JPEG; | ||
1174 | |||
1175 | ret = ov6650_video_probe(icd, client); | ||
1176 | |||
1177 | if (ret) { | ||
1178 | icd->ops = NULL; | ||
1179 | i2c_set_clientdata(client, NULL); | ||
1180 | kfree(priv); | ||
1181 | } | ||
1182 | |||
1183 | return ret; | ||
1184 | } | ||
1185 | |||
1186 | static int ov6650_remove(struct i2c_client *client) | ||
1187 | { | ||
1188 | struct ov6650 *priv = to_ov6650(client); | ||
1189 | |||
1190 | i2c_set_clientdata(client, NULL); | ||
1191 | kfree(priv); | ||
1192 | return 0; | ||
1193 | } | ||
1194 | |||
1195 | static const struct i2c_device_id ov6650_id[] = { | ||
1196 | { "ov6650", 0 }, | ||
1197 | { } | ||
1198 | }; | ||
1199 | MODULE_DEVICE_TABLE(i2c, ov6650_id); | ||
1200 | |||
1201 | static struct i2c_driver ov6650_i2c_driver = { | ||
1202 | .driver = { | ||
1203 | .name = "ov6650", | ||
1204 | }, | ||
1205 | .probe = ov6650_probe, | ||
1206 | .remove = ov6650_remove, | ||
1207 | .id_table = ov6650_id, | ||
1208 | }; | ||
1209 | |||
1210 | static int __init ov6650_module_init(void) | ||
1211 | { | ||
1212 | return i2c_add_driver(&ov6650_i2c_driver); | ||
1213 | } | ||
1214 | |||
1215 | static void __exit ov6650_module_exit(void) | ||
1216 | { | ||
1217 | i2c_del_driver(&ov6650_i2c_driver); | ||
1218 | } | ||
1219 | |||
1220 | module_init(ov6650_module_init); | ||
1221 | module_exit(ov6650_module_exit); | ||
1222 | |||
1223 | MODULE_DESCRIPTION("SoC Camera driver for OmniVision OV6650"); | ||
1224 | MODULE_AUTHOR("Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>"); | ||
1225 | MODULE_LICENSE("GPL v2"); | ||