2 * Driver for IMX074 CMOS Image Sensor from Sony
4 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6 * Partially inspired by the IMX074 driver from the Android / MSM tree
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/delay.h>
14 #include <linux/i2c.h>
15 #include <linux/v4l2-mediabus.h>
16 #include <linux/slab.h>
17 #include <linux/videodev2.h>
18 #include <linux/module.h>
20 #include <media/soc_camera.h>
21 #include <media/v4l2-async.h>
22 #include <media/v4l2-clk.h>
23 #include <media/v4l2-subdev.h>
25 /* IMX074 registers */
27 #define MODE_SELECT 0x0100
28 #define IMAGE_ORIENTATION 0x0101
29 #define GROUPED_PARAMETER_HOLD 0x0104
31 /* Integration Time */
32 #define COARSE_INTEGRATION_TIME_HI 0x0202
33 #define COARSE_INTEGRATION_TIME_LO 0x0203
35 #define ANALOGUE_GAIN_CODE_GLOBAL_HI 0x0204
36 #define ANALOGUE_GAIN_CODE_GLOBAL_LO 0x0205
39 #define PRE_PLL_CLK_DIV 0x0305
40 #define PLL_MULTIPLIER 0x0307
41 #define PLSTATIM 0x302b
42 #define VNDMY_ABLMGSHLMT 0x300a
43 #define Y_OPBADDR_START_DI 0x3014
45 #define FRAME_LENGTH_LINES_HI 0x0340
46 #define FRAME_LENGTH_LINES_LO 0x0341
47 #define LINE_LENGTH_PCK_HI 0x0342
48 #define LINE_LENGTH_PCK_LO 0x0343
49 #define YADDR_START 0x0347
50 #define YADDR_END 0x034b
51 #define X_OUTPUT_SIZE_MSB 0x034c
52 #define X_OUTPUT_SIZE_LSB 0x034d
53 #define Y_OUTPUT_SIZE_MSB 0x034e
54 #define Y_OUTPUT_SIZE_LSB 0x034f
55 #define X_EVEN_INC 0x0381
56 #define X_ODD_INC 0x0383
57 #define Y_EVEN_INC 0x0385
58 #define Y_ODD_INC 0x0387
60 #define HMODEADD 0x3001
61 #define VMODEADD 0x3016
62 #define VAPPLINE_START 0x3069
63 #define VAPPLINE_END 0x306b
64 #define SHUTTER 0x3086
65 #define HADDAVE 0x30e8
66 #define LANESEL 0x3301
68 /* IMX074 supported geometry */
69 #define IMX074_WIDTH 1052
70 #define IMX074_HEIGHT 780
72 /* IMX074 has only one fixed colorspace per pixelcode */
73 struct imx074_datafmt
{
75 enum v4l2_colorspace colorspace
;
79 struct v4l2_subdev subdev
;
80 const struct imx074_datafmt
*fmt
;
84 static const struct imx074_datafmt imx074_colour_fmts
[] = {
85 {MEDIA_BUS_FMT_SBGGR8_1X8
, V4L2_COLORSPACE_SRGB
},
88 static struct imx074
*to_imx074(const struct i2c_client
*client
)
90 return container_of(i2c_get_clientdata(client
), struct imx074
, subdev
);
93 /* Find a data format by a pixel code in an array */
94 static const struct imx074_datafmt
*imx074_find_datafmt(u32 code
)
98 for (i
= 0; i
< ARRAY_SIZE(imx074_colour_fmts
); i
++)
99 if (imx074_colour_fmts
[i
].code
== code
)
100 return imx074_colour_fmts
+ i
;
105 static int reg_write(struct i2c_client
*client
, const u16 addr
, const u8 data
)
107 struct i2c_adapter
*adap
= client
->adapter
;
112 msg
.addr
= client
->addr
;
121 ret
= i2c_transfer(adap
, &msg
, 1);
125 return ret
== 1 ? 0 : -EIO
;
128 static int reg_read(struct i2c_client
*client
, const u16 addr
)
130 u8 buf
[2] = {addr
>> 8, addr
& 0xff};
132 struct i2c_msg msgs
[] = {
134 .addr
= client
->addr
,
139 .addr
= client
->addr
,
146 ret
= i2c_transfer(client
->adapter
, msgs
, ARRAY_SIZE(msgs
));
148 dev_warn(&client
->dev
, "Reading register %x from %x failed\n",
153 return buf
[0] & 0xff; /* no sign-extension */
156 static int imx074_set_fmt(struct v4l2_subdev
*sd
,
157 struct v4l2_subdev_pad_config
*cfg
,
158 struct v4l2_subdev_format
*format
)
160 struct v4l2_mbus_framefmt
*mf
= &format
->format
;
161 const struct imx074_datafmt
*fmt
= imx074_find_datafmt(mf
->code
);
162 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
163 struct imx074
*priv
= to_imx074(client
);
168 dev_dbg(sd
->v4l2_dev
->dev
, "%s(%u)\n", __func__
, mf
->code
);
171 /* MIPI CSI could have changed the format, double-check */
172 if (format
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
)
174 mf
->code
= imx074_colour_fmts
[0].code
;
175 mf
->colorspace
= imx074_colour_fmts
[0].colorspace
;
178 mf
->width
= IMX074_WIDTH
;
179 mf
->height
= IMX074_HEIGHT
;
180 mf
->field
= V4L2_FIELD_NONE
;
182 if (format
->which
== V4L2_SUBDEV_FORMAT_ACTIVE
)
190 static int imx074_get_fmt(struct v4l2_subdev
*sd
,
191 struct v4l2_subdev_pad_config
*cfg
,
192 struct v4l2_subdev_format
*format
)
194 struct v4l2_mbus_framefmt
*mf
= &format
->format
;
195 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
196 struct imx074
*priv
= to_imx074(client
);
198 const struct imx074_datafmt
*fmt
= priv
->fmt
;
203 mf
->code
= fmt
->code
;
204 mf
->colorspace
= fmt
->colorspace
;
205 mf
->width
= IMX074_WIDTH
;
206 mf
->height
= IMX074_HEIGHT
;
207 mf
->field
= V4L2_FIELD_NONE
;
212 static int imx074_get_selection(struct v4l2_subdev
*sd
,
213 struct v4l2_subdev_pad_config
*cfg
,
214 struct v4l2_subdev_selection
*sel
)
216 if (sel
->which
!= V4L2_SUBDEV_FORMAT_ACTIVE
)
221 sel
->r
.width
= IMX074_WIDTH
;
222 sel
->r
.height
= IMX074_HEIGHT
;
224 switch (sel
->target
) {
225 case V4L2_SEL_TGT_CROP_BOUNDS
:
226 case V4L2_SEL_TGT_CROP_DEFAULT
:
227 case V4L2_SEL_TGT_CROP
:
234 static int imx074_enum_mbus_code(struct v4l2_subdev
*sd
,
235 struct v4l2_subdev_pad_config
*cfg
,
236 struct v4l2_subdev_mbus_code_enum
*code
)
239 (unsigned int)code
->index
>= ARRAY_SIZE(imx074_colour_fmts
))
242 code
->code
= imx074_colour_fmts
[code
->index
].code
;
246 static int imx074_s_stream(struct v4l2_subdev
*sd
, int enable
)
248 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
250 /* MODE_SELECT: stream or standby */
251 return reg_write(client
, MODE_SELECT
, !!enable
);
254 static int imx074_s_power(struct v4l2_subdev
*sd
, int on
)
256 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
257 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
258 struct imx074
*priv
= to_imx074(client
);
260 return soc_camera_set_power(&client
->dev
, ssdd
, priv
->clk
, on
);
263 static int imx074_g_mbus_config(struct v4l2_subdev
*sd
,
264 struct v4l2_mbus_config
*cfg
)
266 cfg
->type
= V4L2_MBUS_CSI2
;
267 cfg
->flags
= V4L2_MBUS_CSI2_2_LANE
|
268 V4L2_MBUS_CSI2_CHANNEL_0
|
269 V4L2_MBUS_CSI2_CONTINUOUS_CLOCK
;
274 static const struct v4l2_subdev_video_ops imx074_subdev_video_ops
= {
275 .s_stream
= imx074_s_stream
,
276 .g_mbus_config
= imx074_g_mbus_config
,
279 static const struct v4l2_subdev_core_ops imx074_subdev_core_ops
= {
280 .s_power
= imx074_s_power
,
283 static const struct v4l2_subdev_pad_ops imx074_subdev_pad_ops
= {
284 .enum_mbus_code
= imx074_enum_mbus_code
,
285 .get_selection
= imx074_get_selection
,
286 .get_fmt
= imx074_get_fmt
,
287 .set_fmt
= imx074_set_fmt
,
290 static const struct v4l2_subdev_ops imx074_subdev_ops
= {
291 .core
= &imx074_subdev_core_ops
,
292 .video
= &imx074_subdev_video_ops
,
293 .pad
= &imx074_subdev_pad_ops
,
296 static int imx074_video_probe(struct i2c_client
*client
)
298 struct v4l2_subdev
*subdev
= i2c_get_clientdata(client
);
302 ret
= imx074_s_power(subdev
, 1);
306 /* Read sensor Model ID */
307 ret
= reg_read(client
, 0);
313 ret
= reg_read(client
, 1);
319 dev_info(&client
->dev
, "Chip ID 0x%04x detected\n", id
);
326 /* PLL Setting EXTCLK=24MHz, 22.5times */
327 reg_write(client
, PLL_MULTIPLIER
, 0x2D);
328 reg_write(client
, PRE_PLL_CLK_DIV
, 0x02);
329 reg_write(client
, PLSTATIM
, 0x4B);
332 reg_write(client
, 0x3024, 0x00);
334 reg_write(client
, IMAGE_ORIENTATION
, 0x00);
337 * 0x08+0x08 = top 8 bits
338 * 0x0a+0x08 = compressed 8-bits
339 * 0x0a+0x0a = 10 bits
341 reg_write(client
, 0x0112, 0x08);
342 reg_write(client
, 0x0113, 0x08);
344 /* Base setting for High frame mode */
345 reg_write(client
, VNDMY_ABLMGSHLMT
, 0x80);
346 reg_write(client
, Y_OPBADDR_START_DI
, 0x08);
347 reg_write(client
, 0x3015, 0x37);
348 reg_write(client
, 0x301C, 0x01);
349 reg_write(client
, 0x302C, 0x05);
350 reg_write(client
, 0x3031, 0x26);
351 reg_write(client
, 0x3041, 0x60);
352 reg_write(client
, 0x3051, 0x24);
353 reg_write(client
, 0x3053, 0x34);
354 reg_write(client
, 0x3057, 0xC0);
355 reg_write(client
, 0x305C, 0x09);
356 reg_write(client
, 0x305D, 0x07);
357 reg_write(client
, 0x3060, 0x30);
358 reg_write(client
, 0x3065, 0x00);
359 reg_write(client
, 0x30AA, 0x08);
360 reg_write(client
, 0x30AB, 0x1C);
361 reg_write(client
, 0x30B0, 0x32);
362 reg_write(client
, 0x30B2, 0x83);
363 reg_write(client
, 0x30D3, 0x04);
364 reg_write(client
, 0x3106, 0x78);
365 reg_write(client
, 0x310C, 0x82);
366 reg_write(client
, 0x3304, 0x05);
367 reg_write(client
, 0x3305, 0x04);
368 reg_write(client
, 0x3306, 0x11);
369 reg_write(client
, 0x3307, 0x02);
370 reg_write(client
, 0x3308, 0x0C);
371 reg_write(client
, 0x3309, 0x06);
372 reg_write(client
, 0x330A, 0x08);
373 reg_write(client
, 0x330B, 0x04);
374 reg_write(client
, 0x330C, 0x08);
375 reg_write(client
, 0x330D, 0x06);
376 reg_write(client
, 0x330E, 0x01);
377 reg_write(client
, 0x3381, 0x00);
379 /* V : 1/2V-addition (1,3), H : 1/2H-averaging (1,3) -> Full HD */
380 /* 1608 = 1560 + 48 (black lines) */
381 reg_write(client
, FRAME_LENGTH_LINES_HI
, 0x06);
382 reg_write(client
, FRAME_LENGTH_LINES_LO
, 0x48);
383 reg_write(client
, YADDR_START
, 0x00);
384 reg_write(client
, YADDR_END
, 0x2F);
386 reg_write(client
, X_OUTPUT_SIZE_MSB
, 0x08);
387 reg_write(client
, X_OUTPUT_SIZE_LSB
, 0x38);
389 reg_write(client
, Y_OUTPUT_SIZE_MSB
, 0x06);
390 reg_write(client
, Y_OUTPUT_SIZE_LSB
, 0x18);
391 reg_write(client
, X_EVEN_INC
, 0x01);
392 reg_write(client
, X_ODD_INC
, 0x03);
393 reg_write(client
, Y_EVEN_INC
, 0x01);
394 reg_write(client
, Y_ODD_INC
, 0x03);
395 reg_write(client
, HMODEADD
, 0x00);
396 reg_write(client
, VMODEADD
, 0x16);
397 reg_write(client
, VAPPLINE_START
, 0x24);
398 reg_write(client
, VAPPLINE_END
, 0x53);
399 reg_write(client
, SHUTTER
, 0x00);
400 reg_write(client
, HADDAVE
, 0x80);
402 reg_write(client
, LANESEL
, 0x00);
404 reg_write(client
, GROUPED_PARAMETER_HOLD
, 0x00); /* off */
409 imx074_s_power(subdev
, 0);
413 static int imx074_probe(struct i2c_client
*client
,
414 const struct i2c_device_id
*did
)
417 struct i2c_adapter
*adapter
= to_i2c_adapter(client
->dev
.parent
);
418 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
422 dev_err(&client
->dev
, "IMX074: missing platform data!\n");
426 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
)) {
427 dev_warn(&adapter
->dev
,
428 "I2C-Adapter doesn't support I2C_FUNC_SMBUS_BYTE\n");
432 priv
= devm_kzalloc(&client
->dev
, sizeof(struct imx074
), GFP_KERNEL
);
436 v4l2_i2c_subdev_init(&priv
->subdev
, client
, &imx074_subdev_ops
);
438 priv
->fmt
= &imx074_colour_fmts
[0];
440 priv
->clk
= v4l2_clk_get(&client
->dev
, "mclk");
441 if (IS_ERR(priv
->clk
)) {
442 dev_info(&client
->dev
, "Error %ld getting clock\n", PTR_ERR(priv
->clk
));
443 return -EPROBE_DEFER
;
446 ret
= soc_camera_power_init(&client
->dev
, ssdd
);
450 ret
= imx074_video_probe(client
);
454 ret
= v4l2_async_register_subdev(&priv
->subdev
);
460 v4l2_clk_put(priv
->clk
);
464 static int imx074_remove(struct i2c_client
*client
)
466 struct soc_camera_subdev_desc
*ssdd
= soc_camera_i2c_to_desc(client
);
467 struct imx074
*priv
= to_imx074(client
);
469 v4l2_async_unregister_subdev(&priv
->subdev
);
470 v4l2_clk_put(priv
->clk
);
473 ssdd
->free_bus(ssdd
);
478 static const struct i2c_device_id imx074_id
[] = {
482 MODULE_DEVICE_TABLE(i2c
, imx074_id
);
484 static struct i2c_driver imx074_i2c_driver
= {
488 .probe
= imx074_probe
,
489 .remove
= imx074_remove
,
490 .id_table
= imx074_id
,
493 module_i2c_driver(imx074_i2c_driver
);
495 MODULE_DESCRIPTION("Sony IMX074 Camera driver");
496 MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");
497 MODULE_LICENSE("GPL v2");