1 // SPDX-License-Identifier: GPL-2.0-only
3 * V4L2 subdevice driver for OmniVision OV6650 Camera Sensor
5 * Copyright (C) 2010 Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
7 * Based on OmniVision OV96xx Camera Driver
8 * Copyright (C) 2009 Marek Vasut <marek.vasut@gmail.com>
10 * Based on ov772x camera driver:
11 * Copyright (C) 2008 Renesas Solutions Corp.
12 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
14 * Based on ov7670 and soc_camera_platform driver,
15 * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net>
16 * Copyright (C) 2008 Magnus Damm
17 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
19 * Hardware specific bits initially based on former work by Matt Callow
20 * drivers/media/video/omap/sensor_ov6650.c
21 * Copyright (C) 2006 Matt Callow
24 #include <linux/bitops.h>
25 #include <linux/clk.h>
26 #include <linux/delay.h>
27 #include <linux/i2c.h>
28 #include <linux/slab.h>
29 #include <linux/v4l2-mediabus.h>
30 #include <linux/module.h>
32 #include <media/v4l2-ctrls.h>
33 #include <media/v4l2-device.h>
35 /* Register definitions */
36 #define REG_GAIN 0x00 /* range 00 - 3F */
39 #define REG_SAT 0x03 /* [7:4] saturation [0:3] reserved */
40 #define REG_HUE 0x04 /* [7:6] rsrvd [5] hue en [4:0] hue */
48 #define REG_CLKRC 0x11 /* Data Format and Internal Clock */
49 /* [7:6] Input system clock (MHz)*/
50 /* 00=8, 01=12, 10=16, 11=24 */
51 /* [5:0]: Internal Clock Pre-Scaler */
52 #define REG_COMA 0x12 /* [7] Reset */
57 #define REG_HSTRT 0x17
58 #define REG_HSTOP 0x18
59 #define REG_VSTRT 0x19
60 #define REG_VSTOP 0x1a
61 #define REG_PSHFT 0x1b
64 #define REG_HSYNS 0x1e
65 #define REG_HSYNE 0x1f
77 #define REG_FRARL 0x2b
84 #define REG_FRAJH 0x32
85 #define REG_FRAJL 0x33
87 #define REG_L1AEC 0x35
101 #define REG_RMCO 0x6c
102 #define REG_GMCO 0x6d
103 #define REG_BMCO 0x6e
106 /* Register bits, values, etc. */
107 #define OV6650_PIDH 0x66 /* high byte of product ID number */
108 #define OV6650_PIDL 0x50 /* low byte of product ID number */
109 #define OV6650_MIDH 0x7F /* high byte of mfg ID */
110 #define OV6650_MIDL 0xA2 /* low byte of mfg ID */
112 #define DEF_GAIN 0x00
113 #define DEF_BLUE 0x80
117 #define SAT_MASK (0xf << SAT_SHIFT)
118 #define SET_SAT(x) (((x) << SAT_SHIFT) & SAT_MASK)
120 #define HUE_EN BIT(5)
121 #define HUE_MASK 0x1f
123 #define SET_HUE(x) (HUE_EN | ((x) & HUE_MASK))
125 #define DEF_AECH 0x4D
127 #define CLKRC_8MHz 0x00
128 #define CLKRC_12MHz 0x40
129 #define CLKRC_16MHz 0x80
130 #define CLKRC_24MHz 0xc0
131 #define CLKRC_DIV_MASK 0x3f
132 #define GET_CLKRC_DIV(x) (((x) & CLKRC_DIV_MASK) + 1)
133 #define DEF_CLKRC 0x00
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
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
152 #define COML_ONE_CHANNEL BIT(7)
154 #define DEF_HSTRT 0x24
155 #define DEF_HSTOP 0xd4
156 #define DEF_VSTRT 0x04
157 #define DEF_VSTOP 0x94
159 #define COMF_HREF_LOW BIT(4)
161 #define COMJ_PCLK_RISING BIT(4)
162 #define COMJ_VSYNC_HIGH BIT(0)
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)
170 #define FRAME_RATE_MAX 30
179 struct v4l2_subdev subdev
;
180 struct v4l2_ctrl_handler hdl
;
182 /* exposure/autoexposure cluster */
183 struct v4l2_ctrl
*autoexposure
;
184 struct v4l2_ctrl
*exposure
;
187 /* gain/autogain cluster */
188 struct v4l2_ctrl
*autogain
;
189 struct v4l2_ctrl
*gain
;
192 /* blue/red/autowhitebalance cluster */
193 struct v4l2_ctrl
*autowb
;
194 struct v4l2_ctrl
*blue
;
195 struct v4l2_ctrl
*red
;
198 bool half_scale
; /* scale down output by 2 */
199 struct v4l2_rect rect
; /* sensor cropping window */
200 struct v4l2_fract tpf
; /* as requested with set_frame_interval */
209 static const struct ov6650_xclk ov6650_xclk
[] = {
216 .clkrc
= CLKRC_12MHz
,
220 .clkrc
= CLKRC_16MHz
,
224 .clkrc
= CLKRC_24MHz
,
228 static u32 ov6650_codes
[] = {
229 MEDIA_BUS_FMT_YUYV8_2X8
,
230 MEDIA_BUS_FMT_UYVY8_2X8
,
231 MEDIA_BUS_FMT_YVYU8_2X8
,
232 MEDIA_BUS_FMT_VYUY8_2X8
,
233 MEDIA_BUS_FMT_SBGGR8_1X8
,
234 MEDIA_BUS_FMT_Y8_1X8
,
237 static const struct v4l2_mbus_framefmt ov6650_def_fmt
= {
240 .code
= MEDIA_BUS_FMT_SBGGR8_1X8
,
241 .colorspace
= V4L2_COLORSPACE_SRGB
,
242 .field
= V4L2_FIELD_NONE
,
243 .ycbcr_enc
= V4L2_YCBCR_ENC_DEFAULT
,
244 .quantization
= V4L2_QUANTIZATION_DEFAULT
,
245 .xfer_func
= V4L2_XFER_FUNC_DEFAULT
,
248 /* read a register */
249 static int ov6650_reg_read(struct i2c_client
*client
, u8 reg
, u8
*val
)
253 struct i2c_msg msg
= {
254 .addr
= client
->addr
,
260 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
264 msg
.flags
= I2C_M_RD
;
265 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
273 dev_err(&client
->dev
, "Failed reading register 0x%02x!\n", reg
);
277 /* write a register */
278 static int ov6650_reg_write(struct i2c_client
*client
, u8 reg
, u8 val
)
281 unsigned char data
[2] = { reg
, val
};
282 struct i2c_msg msg
= {
283 .addr
= client
->addr
,
289 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
293 dev_err(&client
->dev
, "Failed writing register 0x%02x!\n", reg
);
300 /* Read a register, alter its bits, write it back */
301 static int ov6650_reg_rmw(struct i2c_client
*client
, u8 reg
, u8 set
, u8 mask
)
306 ret
= ov6650_reg_read(client
, reg
, &val
);
308 dev_err(&client
->dev
,
309 "[Read]-Modify-Write of register 0x%02x failed!\n",
317 ret
= ov6650_reg_write(client
, reg
, val
);
319 dev_err(&client
->dev
,
320 "Read-Modify-[Write] of register 0x%02x failed!\n",
326 static struct ov6650
*to_ov6650(const struct i2c_client
*client
)
328 return container_of(i2c_get_clientdata(client
), struct ov6650
, subdev
);
331 /* Start/Stop streaming from the device */
332 static int ov6650_s_stream(struct v4l2_subdev
*sd
, int enable
)
337 /* Get status of additional camera capabilities */
338 static int ov6550_g_volatile_ctrl(struct v4l2_ctrl
*ctrl
)
340 struct ov6650
*priv
= container_of(ctrl
->handler
, struct ov6650
, hdl
);
341 struct v4l2_subdev
*sd
= &priv
->subdev
;
342 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
347 case V4L2_CID_AUTOGAIN
:
348 ret
= ov6650_reg_read(client
, REG_GAIN
, ®
);
350 priv
->gain
->val
= reg
;
352 case V4L2_CID_AUTO_WHITE_BALANCE
:
353 ret
= ov6650_reg_read(client
, REG_BLUE
, ®
);
355 ret
= ov6650_reg_read(client
, REG_RED
, ®2
);
357 priv
->blue
->val
= reg
;
358 priv
->red
->val
= reg2
;
361 case V4L2_CID_EXPOSURE_AUTO
:
362 ret
= ov6650_reg_read(client
, REG_AECH
, ®
);
364 priv
->exposure
->val
= reg
;
370 /* Set status of additional camera capabilities */
371 static int ov6550_s_ctrl(struct v4l2_ctrl
*ctrl
)
373 struct ov6650
*priv
= container_of(ctrl
->handler
, struct ov6650
, hdl
);
374 struct v4l2_subdev
*sd
= &priv
->subdev
;
375 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
379 case V4L2_CID_AUTOGAIN
:
380 ret
= ov6650_reg_rmw(client
, REG_COMB
,
381 ctrl
->val
? COMB_AGC
: 0, COMB_AGC
);
382 if (!ret
&& !ctrl
->val
)
383 ret
= ov6650_reg_write(client
, REG_GAIN
, priv
->gain
->val
);
385 case V4L2_CID_AUTO_WHITE_BALANCE
:
386 ret
= ov6650_reg_rmw(client
, REG_COMB
,
387 ctrl
->val
? COMB_AWB
: 0, COMB_AWB
);
388 if (!ret
&& !ctrl
->val
) {
389 ret
= ov6650_reg_write(client
, REG_BLUE
, priv
->blue
->val
);
391 ret
= ov6650_reg_write(client
, REG_RED
,
395 case V4L2_CID_SATURATION
:
396 return ov6650_reg_rmw(client
, REG_SAT
, SET_SAT(ctrl
->val
),
399 return ov6650_reg_rmw(client
, REG_HUE
, SET_HUE(ctrl
->val
),
401 case V4L2_CID_BRIGHTNESS
:
402 return ov6650_reg_write(client
, REG_BRT
, ctrl
->val
);
403 case V4L2_CID_EXPOSURE_AUTO
:
404 ret
= ov6650_reg_rmw(client
, REG_COMB
, ctrl
->val
==
405 V4L2_EXPOSURE_AUTO
? COMB_AEC
: 0, COMB_AEC
);
406 if (!ret
&& ctrl
->val
== V4L2_EXPOSURE_MANUAL
)
407 ret
= ov6650_reg_write(client
, REG_AECH
,
408 priv
->exposure
->val
);
411 return ov6650_reg_write(client
, REG_GAM1
, ctrl
->val
);
413 return ov6650_reg_rmw(client
, REG_COMB
,
414 ctrl
->val
? COMB_FLIP_V
: 0, COMB_FLIP_V
);
416 return ov6650_reg_rmw(client
, REG_COMB
,
417 ctrl
->val
? COMB_FLIP_H
: 0, COMB_FLIP_H
);
423 #ifdef CONFIG_VIDEO_ADV_DEBUG
424 static int ov6650_get_register(struct v4l2_subdev
*sd
,
425 struct v4l2_dbg_register
*reg
)
427 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
431 if (reg
->reg
& ~0xff)
436 ret
= ov6650_reg_read(client
, reg
->reg
, &val
);
438 reg
->val
= (__u64
)val
;
443 static int ov6650_set_register(struct v4l2_subdev
*sd
,
444 const struct v4l2_dbg_register
*reg
)
446 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
448 if (reg
->reg
& ~0xff || reg
->val
& ~0xff)
451 return ov6650_reg_write(client
, reg
->reg
, reg
->val
);
455 static int ov6650_s_power(struct v4l2_subdev
*sd
, int on
)
457 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
458 struct ov6650
*priv
= to_ov6650(client
);
462 ret
= clk_prepare_enable(priv
->clk
);
464 clk_disable_unprepare(priv
->clk
);
469 static int ov6650_get_selection(struct v4l2_subdev
*sd
,
470 struct v4l2_subdev_state
*sd_state
,
471 struct v4l2_subdev_selection
*sel
)
473 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
474 struct ov6650
*priv
= to_ov6650(client
);
475 struct v4l2_rect
*rect
;
477 if (sel
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
478 /* pre-select try crop rectangle */
479 rect
= v4l2_subdev_state_get_crop(sd_state
, 0);
482 /* pre-select active crop rectangle */
486 switch (sel
->target
) {
487 case V4L2_SEL_TGT_CROP_BOUNDS
:
488 sel
->r
.left
= DEF_HSTRT
<< 1;
489 sel
->r
.top
= DEF_VSTRT
<< 1;
490 sel
->r
.width
= W_CIF
;
491 sel
->r
.height
= H_CIF
;
494 case V4L2_SEL_TGT_CROP
:
495 /* use selected crop rectangle */
504 static bool is_unscaled_ok(int width
, int height
, struct v4l2_rect
*rect
)
506 return width
> rect
->width
>> 1 || height
> rect
->height
>> 1;
509 static void ov6650_bind_align_crop_rectangle(struct v4l2_rect
*rect
)
511 v4l_bound_align_image(&rect
->width
, 2, W_CIF
, 1,
512 &rect
->height
, 2, H_CIF
, 1, 0);
513 v4l_bound_align_image(&rect
->left
, DEF_HSTRT
<< 1,
514 (DEF_HSTRT
<< 1) + W_CIF
- (__s32
)rect
->width
, 1,
515 &rect
->top
, DEF_VSTRT
<< 1,
516 (DEF_VSTRT
<< 1) + H_CIF
- (__s32
)rect
->height
,
520 static int ov6650_set_selection(struct v4l2_subdev
*sd
,
521 struct v4l2_subdev_state
*sd_state
,
522 struct v4l2_subdev_selection
*sel
)
524 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
525 struct ov6650
*priv
= to_ov6650(client
);
528 if (sel
->target
!= V4L2_SEL_TGT_CROP
)
531 ov6650_bind_align_crop_rectangle(&sel
->r
);
533 if (sel
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
534 struct v4l2_rect
*crop
=
535 v4l2_subdev_state_get_crop(sd_state
, 0);
536 struct v4l2_mbus_framefmt
*mf
=
537 v4l2_subdev_state_get_format(sd_state
, 0);
538 /* detect current pad config scaling factor */
539 bool half_scale
= !is_unscaled_ok(mf
->width
, mf
->height
, crop
);
541 /* store new crop rectangle */
544 /* adjust frame size */
545 mf
->width
= crop
->width
>> half_scale
;
546 mf
->height
= crop
->height
>> half_scale
;
551 /* V4L2_SUBDEV_FORMAT_ACTIVE */
553 /* apply new crop rectangle */
554 ret
= ov6650_reg_write(client
, REG_HSTRT
, sel
->r
.left
>> 1);
556 priv
->rect
.width
+= priv
->rect
.left
- sel
->r
.left
;
557 priv
->rect
.left
= sel
->r
.left
;
558 ret
= ov6650_reg_write(client
, REG_HSTOP
,
559 (sel
->r
.left
+ sel
->r
.width
) >> 1);
562 priv
->rect
.width
= sel
->r
.width
;
563 ret
= ov6650_reg_write(client
, REG_VSTRT
, sel
->r
.top
>> 1);
566 priv
->rect
.height
+= priv
->rect
.top
- sel
->r
.top
;
567 priv
->rect
.top
= sel
->r
.top
;
568 ret
= ov6650_reg_write(client
, REG_VSTOP
,
569 (sel
->r
.top
+ sel
->r
.height
) >> 1);
572 priv
->rect
.height
= sel
->r
.height
;
577 static int ov6650_get_fmt(struct v4l2_subdev
*sd
,
578 struct v4l2_subdev_state
*sd_state
,
579 struct v4l2_subdev_format
*format
)
581 struct v4l2_mbus_framefmt
*mf
= &format
->format
;
582 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
583 struct ov6650
*priv
= to_ov6650(client
);
588 /* initialize response with default media bus frame format */
589 *mf
= ov6650_def_fmt
;
591 /* update media bus format code and frame size */
592 if (format
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
593 struct v4l2_mbus_framefmt
*try_fmt
=
594 v4l2_subdev_state_get_format(sd_state
, 0);
596 mf
->width
= try_fmt
->width
;
597 mf
->height
= try_fmt
->height
;
598 mf
->code
= try_fmt
->code
;
601 mf
->width
= priv
->rect
.width
>> priv
->half_scale
;
602 mf
->height
= priv
->rect
.height
>> priv
->half_scale
;
603 mf
->code
= priv
->code
;
608 #define to_clkrc(div) ((div) - 1)
610 /* set the format we will capture in */
611 static int ov6650_s_fmt(struct v4l2_subdev
*sd
, u32 code
, bool half_scale
)
613 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
614 struct ov6650
*priv
= to_ov6650(client
);
615 u8 coma_set
= 0, coma_mask
= 0, coml_set
, coml_mask
;
618 /* select color matrix configuration for given color encoding */
620 case MEDIA_BUS_FMT_Y8_1X8
:
621 dev_dbg(&client
->dev
, "pixel format GREY8_1X8\n");
622 coma_mask
|= COMA_RGB
| COMA_WORD_SWAP
| COMA_BYTE_SWAP
;
625 case MEDIA_BUS_FMT_YUYV8_2X8
:
626 dev_dbg(&client
->dev
, "pixel format YUYV8_2X8_LE\n");
627 coma_mask
|= COMA_RGB
| COMA_BW
| COMA_BYTE_SWAP
;
628 coma_set
|= COMA_WORD_SWAP
;
630 case MEDIA_BUS_FMT_YVYU8_2X8
:
631 dev_dbg(&client
->dev
, "pixel format YVYU8_2X8_LE (untested)\n");
632 coma_mask
|= COMA_RGB
| COMA_BW
| COMA_WORD_SWAP
|
635 case MEDIA_BUS_FMT_UYVY8_2X8
:
636 dev_dbg(&client
->dev
, "pixel format YUYV8_2X8_BE\n");
638 coma_mask
|= COMA_RGB
| COMA_BW
| COMA_WORD_SWAP
;
639 coma_set
|= COMA_BYTE_SWAP
;
641 coma_mask
|= COMA_RGB
| COMA_BW
;
642 coma_set
|= COMA_BYTE_SWAP
| COMA_WORD_SWAP
;
645 case MEDIA_BUS_FMT_VYUY8_2X8
:
646 dev_dbg(&client
->dev
, "pixel format YVYU8_2X8_BE (untested)\n");
648 coma_mask
|= COMA_RGB
| COMA_BW
;
649 coma_set
|= COMA_BYTE_SWAP
| COMA_WORD_SWAP
;
651 coma_mask
|= COMA_RGB
| COMA_BW
| COMA_WORD_SWAP
;
652 coma_set
|= COMA_BYTE_SWAP
;
655 case MEDIA_BUS_FMT_SBGGR8_1X8
:
656 dev_dbg(&client
->dev
, "pixel format SBGGR8_1X8 (untested)\n");
657 coma_mask
|= COMA_BW
| COMA_BYTE_SWAP
| COMA_WORD_SWAP
;
658 coma_set
|= COMA_RAW_RGB
| COMA_RGB
;
661 dev_err(&client
->dev
, "Pixel format not handled: 0x%x\n", code
);
665 if (code
== MEDIA_BUS_FMT_Y8_1X8
||
666 code
== MEDIA_BUS_FMT_SBGGR8_1X8
) {
667 coml_mask
= COML_ONE_CHANNEL
;
671 coml_set
= COML_ONE_CHANNEL
;
675 dev_dbg(&client
->dev
, "max resolution: QCIF\n");
676 coma_set
|= COMA_QCIF
;
678 dev_dbg(&client
->dev
, "max resolution: CIF\n");
679 coma_mask
|= COMA_QCIF
;
682 ret
= ov6650_reg_rmw(client
, REG_COMA
, coma_set
, coma_mask
);
684 priv
->half_scale
= half_scale
;
686 ret
= ov6650_reg_rmw(client
, REG_COML
, coml_set
, coml_mask
);
694 static int ov6650_set_fmt(struct v4l2_subdev
*sd
,
695 struct v4l2_subdev_state
*sd_state
,
696 struct v4l2_subdev_format
*format
)
698 struct v4l2_mbus_framefmt
*mf
= &format
->format
;
699 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
700 struct ov6650
*priv
= to_ov6650(client
);
701 struct v4l2_rect
*crop
;
708 case MEDIA_BUS_FMT_Y10_1X10
:
709 mf
->code
= MEDIA_BUS_FMT_Y8_1X8
;
711 case MEDIA_BUS_FMT_Y8_1X8
:
712 case MEDIA_BUS_FMT_YVYU8_2X8
:
713 case MEDIA_BUS_FMT_YUYV8_2X8
:
714 case MEDIA_BUS_FMT_VYUY8_2X8
:
715 case MEDIA_BUS_FMT_UYVY8_2X8
:
718 mf
->code
= MEDIA_BUS_FMT_SBGGR8_1X8
;
720 case MEDIA_BUS_FMT_SBGGR8_1X8
:
724 if (format
->which
== V4L2_SUBDEV_FORMAT_TRY
)
725 crop
= v4l2_subdev_state_get_crop(sd_state
, 0);
729 half_scale
= !is_unscaled_ok(mf
->width
, mf
->height
, crop
);
731 if (format
->which
== V4L2_SUBDEV_FORMAT_TRY
) {
732 struct v4l2_mbus_framefmt
*try_fmt
=
733 v4l2_subdev_state_get_format(sd_state
, 0);
735 /* store new mbus frame format code and size in pad config */
736 try_fmt
->width
= crop
->width
>> half_scale
;
737 try_fmt
->height
= crop
->height
>> half_scale
;
738 try_fmt
->code
= mf
->code
;
740 /* return default mbus frame format updated with pad config */
741 *mf
= ov6650_def_fmt
;
742 mf
->width
= try_fmt
->width
;
743 mf
->height
= try_fmt
->height
;
744 mf
->code
= try_fmt
->code
;
749 /* apply new media bus frame format and scaling if changed */
750 if (mf
->code
!= priv
->code
|| half_scale
!= priv
->half_scale
)
751 ret
= ov6650_s_fmt(sd
, mf
->code
, half_scale
);
755 /* return default format updated with active size and code */
756 *mf
= ov6650_def_fmt
;
757 mf
->width
= priv
->rect
.width
>> priv
->half_scale
;
758 mf
->height
= priv
->rect
.height
>> priv
->half_scale
;
759 mf
->code
= priv
->code
;
764 static int ov6650_enum_mbus_code(struct v4l2_subdev
*sd
,
765 struct v4l2_subdev_state
*sd_state
,
766 struct v4l2_subdev_mbus_code_enum
*code
)
768 if (code
->pad
|| code
->index
>= ARRAY_SIZE(ov6650_codes
))
771 code
->code
= ov6650_codes
[code
->index
];
775 static int ov6650_enum_frame_interval(struct v4l2_subdev
*sd
,
776 struct v4l2_subdev_state
*sd_state
,
777 struct v4l2_subdev_frame_interval_enum
*fie
)
781 /* enumerate supported frame intervals not exceeding 1 second */
782 if (fie
->index
> CLKRC_DIV_MASK
||
783 GET_CLKRC_DIV(fie
->index
) > FRAME_RATE_MAX
)
786 for (i
= 0; i
< ARRAY_SIZE(ov6650_codes
); i
++)
787 if (fie
->code
== ov6650_codes
[i
])
789 if (i
== ARRAY_SIZE(ov6650_codes
))
792 if (!fie
->width
|| fie
->width
> W_CIF
||
793 !fie
->height
|| fie
->height
> H_CIF
)
796 fie
->interval
.numerator
= GET_CLKRC_DIV(fie
->index
);
797 fie
->interval
.denominator
= FRAME_RATE_MAX
;
802 static int ov6650_get_frame_interval(struct v4l2_subdev
*sd
,
803 struct v4l2_subdev_state
*sd_state
,
804 struct v4l2_subdev_frame_interval
*ival
)
806 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
807 struct ov6650
*priv
= to_ov6650(client
);
810 * FIXME: Implement support for V4L2_SUBDEV_FORMAT_TRY, using the V4L2
811 * subdev active state API.
813 if (ival
->which
!= V4L2_SUBDEV_FORMAT_ACTIVE
)
816 ival
->interval
= priv
->tpf
;
818 dev_dbg(&client
->dev
, "Frame interval: %u/%u s\n",
819 ival
->interval
.numerator
, ival
->interval
.denominator
);
824 static int ov6650_set_frame_interval(struct v4l2_subdev
*sd
,
825 struct v4l2_subdev_state
*sd_state
,
826 struct v4l2_subdev_frame_interval
*ival
)
828 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
829 struct ov6650
*priv
= to_ov6650(client
);
830 struct v4l2_fract
*tpf
= &ival
->interval
;
834 * FIXME: Implement support for V4L2_SUBDEV_FORMAT_TRY, using the V4L2
835 * subdev active state API.
837 if (ival
->which
!= V4L2_SUBDEV_FORMAT_ACTIVE
)
840 if (tpf
->numerator
== 0 || tpf
->denominator
== 0)
841 div
= 1; /* Reset to full rate */
843 div
= (tpf
->numerator
* FRAME_RATE_MAX
) / tpf
->denominator
;
847 else if (div
> GET_CLKRC_DIV(CLKRC_DIV_MASK
))
848 div
= GET_CLKRC_DIV(CLKRC_DIV_MASK
);
850 ret
= ov6650_reg_rmw(client
, REG_CLKRC
, to_clkrc(div
), CLKRC_DIV_MASK
);
852 priv
->tpf
.numerator
= div
;
853 priv
->tpf
.denominator
= FRAME_RATE_MAX
;
861 /* Soft reset the camera. This has nothing to do with the RESET pin! */
862 static int ov6650_reset(struct i2c_client
*client
)
866 dev_dbg(&client
->dev
, "reset\n");
868 ret
= ov6650_reg_rmw(client
, REG_COMA
, COMA_RESET
, 0);
870 dev_err(&client
->dev
,
871 "An error occurred while entering soft reset!\n");
876 /* program default register values */
877 static int ov6650_prog_dflt(struct i2c_client
*client
, u8 clkrc
)
881 dev_dbg(&client
->dev
, "initializing\n");
883 ret
= ov6650_reg_write(client
, REG_COMA
, 0); /* ~COMA_RESET */
885 ret
= ov6650_reg_write(client
, REG_CLKRC
, clkrc
);
887 ret
= ov6650_reg_rmw(client
, REG_COMB
, 0, COMB_BAND_FILTER
);
892 static int ov6650_video_probe(struct v4l2_subdev
*sd
)
894 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
895 struct ov6650
*priv
= to_ov6650(client
);
896 const struct ov6650_xclk
*xclk
= NULL
;
898 u8 pidh
, pidl
, midh
, midl
;
901 priv
->clk
= devm_clk_get(&client
->dev
, NULL
);
902 if (IS_ERR(priv
->clk
)) {
903 ret
= PTR_ERR(priv
->clk
);
904 dev_err(&client
->dev
, "clk request err: %d\n", ret
);
908 rate
= clk_get_rate(priv
->clk
);
909 for (i
= 0; rate
&& i
< ARRAY_SIZE(ov6650_xclk
); i
++) {
910 if (rate
!= ov6650_xclk
[i
].rate
)
913 xclk
= &ov6650_xclk
[i
];
914 dev_info(&client
->dev
, "using host default clock rate %lukHz\n",
918 for (i
= 0; !xclk
&& i
< ARRAY_SIZE(ov6650_xclk
); i
++) {
919 ret
= clk_set_rate(priv
->clk
, ov6650_xclk
[i
].rate
);
920 if (ret
|| clk_get_rate(priv
->clk
) != ov6650_xclk
[i
].rate
)
923 xclk
= &ov6650_xclk
[i
];
924 dev_info(&client
->dev
, "using negotiated clock rate %lukHz\n",
929 dev_err(&client
->dev
, "unable to get supported clock rate\n");
935 ret
= ov6650_s_power(sd
, 1);
942 * check and show product ID and manufacturer ID
944 ret
= ov6650_reg_read(client
, REG_PIDH
, &pidh
);
946 ret
= ov6650_reg_read(client
, REG_PIDL
, &pidl
);
948 ret
= ov6650_reg_read(client
, REG_MIDH
, &midh
);
950 ret
= ov6650_reg_read(client
, REG_MIDL
, &midl
);
955 if ((pidh
!= OV6650_PIDH
) || (pidl
!= OV6650_PIDL
)) {
956 dev_err(&client
->dev
, "Product ID error 0x%02x:0x%02x\n",
962 dev_info(&client
->dev
,
963 "ov6650 Product ID 0x%02x:0x%02x Manufacturer ID 0x%02x:0x%02x\n",
964 pidh
, pidl
, midh
, midl
);
966 ret
= ov6650_reset(client
);
968 ret
= ov6650_prog_dflt(client
, xclk
->clkrc
);
970 /* driver default frame format, no scaling */
971 ret
= ov6650_s_fmt(sd
, ov6650_def_fmt
.code
, false);
974 ret
= v4l2_ctrl_handler_setup(&priv
->hdl
);
977 ov6650_s_power(sd
, 0);
981 static const struct v4l2_ctrl_ops ov6550_ctrl_ops
= {
982 .g_volatile_ctrl
= ov6550_g_volatile_ctrl
,
983 .s_ctrl
= ov6550_s_ctrl
,
986 static const struct v4l2_subdev_core_ops ov6650_core_ops
= {
987 #ifdef CONFIG_VIDEO_ADV_DEBUG
988 .g_register
= ov6650_get_register
,
989 .s_register
= ov6650_set_register
,
991 .s_power
= ov6650_s_power
,
994 /* Request bus settings on camera side */
995 static int ov6650_get_mbus_config(struct v4l2_subdev
*sd
,
997 struct v4l2_mbus_config
*cfg
)
999 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
1003 ret
= ov6650_reg_read(client
, REG_COMJ
, &comj
);
1007 ret
= ov6650_reg_read(client
, REG_COMF
, &comf
);
1011 cfg
->type
= V4L2_MBUS_PARALLEL
;
1013 cfg
->bus
.parallel
.flags
= V4L2_MBUS_MASTER
| V4L2_MBUS_DATA_ACTIVE_HIGH
1014 | ((comj
& COMJ_VSYNC_HIGH
) ? V4L2_MBUS_VSYNC_ACTIVE_HIGH
1015 : V4L2_MBUS_VSYNC_ACTIVE_LOW
)
1016 | ((comf
& COMF_HREF_LOW
) ? V4L2_MBUS_HSYNC_ACTIVE_LOW
1017 : V4L2_MBUS_HSYNC_ACTIVE_HIGH
)
1018 | ((comj
& COMJ_PCLK_RISING
) ? V4L2_MBUS_PCLK_SAMPLE_RISING
1019 : V4L2_MBUS_PCLK_SAMPLE_FALLING
);
1023 static const struct v4l2_subdev_video_ops ov6650_video_ops
= {
1024 .s_stream
= ov6650_s_stream
,
1027 static const struct v4l2_subdev_pad_ops ov6650_pad_ops
= {
1028 .enum_mbus_code
= ov6650_enum_mbus_code
,
1029 .enum_frame_interval
= ov6650_enum_frame_interval
,
1030 .get_selection
= ov6650_get_selection
,
1031 .set_selection
= ov6650_set_selection
,
1032 .get_fmt
= ov6650_get_fmt
,
1033 .set_fmt
= ov6650_set_fmt
,
1034 .get_frame_interval
= ov6650_get_frame_interval
,
1035 .set_frame_interval
= ov6650_set_frame_interval
,
1036 .get_mbus_config
= ov6650_get_mbus_config
,
1039 static const struct v4l2_subdev_ops ov6650_subdev_ops
= {
1040 .core
= &ov6650_core_ops
,
1041 .video
= &ov6650_video_ops
,
1042 .pad
= &ov6650_pad_ops
,
1045 static const struct v4l2_subdev_internal_ops ov6650_internal_ops
= {
1046 .registered
= ov6650_video_probe
,
1050 * i2c_driver function
1052 static int ov6650_probe(struct i2c_client
*client
)
1054 struct ov6650
*priv
;
1057 priv
= devm_kzalloc(&client
->dev
, sizeof(*priv
), GFP_KERNEL
);
1061 v4l2_i2c_subdev_init(&priv
->subdev
, client
, &ov6650_subdev_ops
);
1062 v4l2_ctrl_handler_init(&priv
->hdl
, 13);
1063 v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1064 V4L2_CID_VFLIP
, 0, 1, 1, 0);
1065 v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1066 V4L2_CID_HFLIP
, 0, 1, 1, 0);
1067 priv
->autogain
= v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1068 V4L2_CID_AUTOGAIN
, 0, 1, 1, 1);
1069 priv
->gain
= v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1070 V4L2_CID_GAIN
, 0, 0x3f, 1, DEF_GAIN
);
1071 priv
->autowb
= v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1072 V4L2_CID_AUTO_WHITE_BALANCE
, 0, 1, 1, 1);
1073 priv
->blue
= v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1074 V4L2_CID_BLUE_BALANCE
, 0, 0xff, 1, DEF_BLUE
);
1075 priv
->red
= v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1076 V4L2_CID_RED_BALANCE
, 0, 0xff, 1, DEF_RED
);
1077 v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1078 V4L2_CID_SATURATION
, 0, 0xf, 1, 0x8);
1079 v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1080 V4L2_CID_HUE
, 0, HUE_MASK
, 1, DEF_HUE
);
1081 v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1082 V4L2_CID_BRIGHTNESS
, 0, 0xff, 1, 0x80);
1083 priv
->autoexposure
= v4l2_ctrl_new_std_menu(&priv
->hdl
,
1084 &ov6550_ctrl_ops
, V4L2_CID_EXPOSURE_AUTO
,
1085 V4L2_EXPOSURE_MANUAL
, 0, V4L2_EXPOSURE_AUTO
);
1086 priv
->exposure
= v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1087 V4L2_CID_EXPOSURE
, 0, 0xff, 1, DEF_AECH
);
1088 v4l2_ctrl_new_std(&priv
->hdl
, &ov6550_ctrl_ops
,
1089 V4L2_CID_GAMMA
, 0, 0xff, 1, 0x12);
1091 priv
->subdev
.ctrl_handler
= &priv
->hdl
;
1092 if (priv
->hdl
.error
) {
1093 ret
= priv
->hdl
.error
;
1097 v4l2_ctrl_auto_cluster(2, &priv
->autogain
, 0, true);
1098 v4l2_ctrl_auto_cluster(3, &priv
->autowb
, 0, true);
1099 v4l2_ctrl_auto_cluster(2, &priv
->autoexposure
,
1100 V4L2_EXPOSURE_MANUAL
, true);
1102 priv
->rect
.left
= DEF_HSTRT
<< 1;
1103 priv
->rect
.top
= DEF_VSTRT
<< 1;
1104 priv
->rect
.width
= W_CIF
;
1105 priv
->rect
.height
= H_CIF
;
1107 /* Hardware default frame interval */
1108 priv
->tpf
.numerator
= GET_CLKRC_DIV(DEF_CLKRC
);
1109 priv
->tpf
.denominator
= FRAME_RATE_MAX
;
1111 priv
->subdev
.internal_ops
= &ov6650_internal_ops
;
1113 ret
= v4l2_async_register_subdev(&priv
->subdev
);
1117 v4l2_ctrl_handler_free(&priv
->hdl
);
1122 static void ov6650_remove(struct i2c_client
*client
)
1124 struct ov6650
*priv
= to_ov6650(client
);
1126 v4l2_async_unregister_subdev(&priv
->subdev
);
1127 v4l2_ctrl_handler_free(&priv
->hdl
);
1130 static const struct i2c_device_id ov6650_id
[] = {
1134 MODULE_DEVICE_TABLE(i2c
, ov6650_id
);
1136 static struct i2c_driver ov6650_i2c_driver
= {
1140 .probe
= ov6650_probe
,
1141 .remove
= ov6650_remove
,
1142 .id_table
= ov6650_id
,
1145 module_i2c_driver(ov6650_i2c_driver
);
1147 MODULE_DESCRIPTION("V4L2 subdevice driver for OmniVision OV6650 camera sensor");
1148 MODULE_AUTHOR("Janusz Krzysztofik <jmkrzyszt@gmail.com");
1149 MODULE_LICENSE("GPL v2");