Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 1 | /* |
| 2 | * mt9v011 -Micron 1/4-Inch VGA Digital Image Sensor |
| 3 | * |
| 4 | * Copyright (c) 2009 Mauro Carvalho Chehab (mchehab@redhat.com) |
| 5 | * This code is placed under the terms of the GNU General Public License v2 |
| 6 | */ |
| 7 | |
| 8 | #include <linux/i2c.h> |
| 9 | #include <linux/videodev2.h> |
| 10 | #include <linux/delay.h> |
Mauro Carvalho Chehab | e11206e | 2009-07-14 02:38:18 -0300 | [diff] [blame] | 11 | #include <asm/div64.h> |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 12 | #include <media/v4l2-device.h> |
| 13 | #include "mt9v011.h" |
| 14 | #include <media/v4l2-i2c-drv.h> |
| 15 | #include <media/v4l2-chip-ident.h> |
| 16 | |
| 17 | MODULE_DESCRIPTION("Micron mt9v011 sensor driver"); |
| 18 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |
| 19 | MODULE_LICENSE("GPL"); |
| 20 | |
| 21 | |
| 22 | static int debug; |
| 23 | module_param(debug, int, 0); |
| 24 | MODULE_PARM_DESC(debug, "Debug level (0-2)"); |
| 25 | |
| 26 | /* supported controls */ |
| 27 | static struct v4l2_queryctrl mt9v011_qctrl[] = { |
| 28 | { |
| 29 | .id = V4L2_CID_GAIN, |
| 30 | .type = V4L2_CTRL_TYPE_INTEGER, |
| 31 | .name = "Gain", |
| 32 | .minimum = 0, |
| 33 | .maximum = (1 << 10) - 1, |
| 34 | .step = 1, |
| 35 | .default_value = 0x0020, |
| 36 | .flags = 0, |
| 37 | }, { |
| 38 | .id = V4L2_CID_RED_BALANCE, |
| 39 | .type = V4L2_CTRL_TYPE_INTEGER, |
| 40 | .name = "Red Balance", |
| 41 | .minimum = -1 << 9, |
| 42 | .maximum = (1 << 9) - 1, |
| 43 | .step = 1, |
| 44 | .default_value = 0, |
| 45 | .flags = 0, |
| 46 | }, { |
| 47 | .id = V4L2_CID_BLUE_BALANCE, |
| 48 | .type = V4L2_CTRL_TYPE_INTEGER, |
| 49 | .name = "Blue Balance", |
| 50 | .minimum = -1 << 9, |
| 51 | .maximum = (1 << 9) - 1, |
| 52 | .step = 1, |
| 53 | .default_value = 0, |
| 54 | .flags = 0, |
| 55 | }, |
| 56 | }; |
| 57 | |
| 58 | struct mt9v011 { |
| 59 | struct v4l2_subdev sd; |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 60 | unsigned width, height; |
Mauro Carvalho Chehab | e11206e | 2009-07-14 02:38:18 -0300 | [diff] [blame] | 61 | unsigned xtal; |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 62 | |
| 63 | u16 global_gain, red_bal, blue_bal; |
| 64 | }; |
| 65 | |
| 66 | static inline struct mt9v011 *to_mt9v011(struct v4l2_subdev *sd) |
| 67 | { |
| 68 | return container_of(sd, struct mt9v011, sd); |
| 69 | } |
| 70 | |
| 71 | static int mt9v011_read(struct v4l2_subdev *sd, unsigned char addr) |
| 72 | { |
| 73 | struct i2c_client *c = v4l2_get_subdevdata(sd); |
| 74 | __be16 buffer; |
| 75 | int rc, val; |
| 76 | |
Mauro Carvalho Chehab | fbe2800 | 2009-06-29 11:12:05 -0300 | [diff] [blame] | 77 | rc = i2c_master_send(c, &addr, 1); |
| 78 | if (rc != 1) |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 79 | v4l2_dbg(0, debug, sd, |
| 80 | "i2c i/o error: rc == %d (should be 1)\n", rc); |
| 81 | |
| 82 | msleep(10); |
| 83 | |
Mauro Carvalho Chehab | fbe2800 | 2009-06-29 11:12:05 -0300 | [diff] [blame] | 84 | rc = i2c_master_recv(c, (char *)&buffer, 2); |
| 85 | if (rc != 2) |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 86 | v4l2_dbg(0, debug, sd, |
Mauro Carvalho Chehab | fbe2800 | 2009-06-29 11:12:05 -0300 | [diff] [blame] | 87 | "i2c i/o error: rc == %d (should be 2)\n", rc); |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 88 | |
| 89 | val = be16_to_cpu(buffer); |
| 90 | |
| 91 | v4l2_dbg(2, debug, sd, "mt9v011: read 0x%02x = 0x%04x\n", addr, val); |
| 92 | |
| 93 | return val; |
| 94 | } |
| 95 | |
| 96 | static void mt9v011_write(struct v4l2_subdev *sd, unsigned char addr, |
| 97 | u16 value) |
| 98 | { |
| 99 | struct i2c_client *c = v4l2_get_subdevdata(sd); |
| 100 | unsigned char buffer[3]; |
| 101 | int rc; |
| 102 | |
| 103 | buffer[0] = addr; |
| 104 | buffer[1] = value >> 8; |
| 105 | buffer[2] = value & 0xff; |
| 106 | |
| 107 | v4l2_dbg(2, debug, sd, |
| 108 | "mt9v011: writing 0x%02x 0x%04x\n", buffer[0], value); |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 109 | rc = i2c_master_send(c, buffer, 3); |
Mauro Carvalho Chehab | fbe2800 | 2009-06-29 11:12:05 -0300 | [diff] [blame] | 110 | if (rc != 3) |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 111 | v4l2_dbg(0, debug, sd, |
| 112 | "i2c i/o error: rc == %d (should be 3)\n", rc); |
| 113 | } |
| 114 | |
| 115 | |
| 116 | struct i2c_reg_value { |
| 117 | unsigned char reg; |
| 118 | u16 value; |
| 119 | }; |
| 120 | |
| 121 | /* |
| 122 | * Values used at the original driver |
| 123 | * Some values are marked as Reserved at the datasheet |
| 124 | */ |
| 125 | static const struct i2c_reg_value mt9v011_init_default[] = { |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 126 | { R0D_MT9V011_RESET, 0x0001 }, |
| 127 | { R0D_MT9V011_RESET, 0x0000 }, |
Mauro Carvalho Chehab | afe09f8 | 2009-06-29 11:03:22 -0300 | [diff] [blame] | 128 | |
Mauro Carvalho Chehab | afe09f8 | 2009-06-29 11:03:22 -0300 | [diff] [blame] | 129 | { R0C_MT9V011_SHUTTER_DELAY, 0x0000 }, |
Mauro Carvalho Chehab | 6934e6f | 2009-07-04 08:15:11 -0300 | [diff] [blame] | 130 | { R09_MT9V011_SHUTTER_WIDTH, 0x1fc }, |
Mauro Carvalho Chehab | afe09f8 | 2009-06-29 11:03:22 -0300 | [diff] [blame] | 131 | |
Mauro Carvalho Chehab | 6934e6f | 2009-07-04 08:15:11 -0300 | [diff] [blame] | 132 | { R0A_MT9V011_CLK_SPEED, 0x0000 }, |
| 133 | { R1E_MT9V011_DIGITAL_ZOOM, 0x0000 }, |
| 134 | { R20_MT9V011_READ_MODE, 0x1000 }, |
Mauro Carvalho Chehab | afe09f8 | 2009-06-29 11:03:22 -0300 | [diff] [blame] | 135 | |
Mauro Carvalho Chehab | e11206e | 2009-07-14 02:38:18 -0300 | [diff] [blame] | 136 | { R07_MT9V011_OUT_CTRL, 0x0002 }, /* chip enable */ |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 137 | }; |
| 138 | |
| 139 | static void set_balance(struct v4l2_subdev *sd) |
| 140 | { |
| 141 | struct mt9v011 *core = to_mt9v011(sd); |
| 142 | u16 green1_gain, green2_gain, blue_gain, red_gain; |
| 143 | |
| 144 | green1_gain = core->global_gain; |
| 145 | green2_gain = core->global_gain; |
| 146 | |
| 147 | blue_gain = core->global_gain + |
| 148 | core->global_gain * core->blue_bal / (1 << 9); |
| 149 | |
| 150 | red_gain = core->global_gain + |
| 151 | core->global_gain * core->blue_bal / (1 << 9); |
| 152 | |
| 153 | mt9v011_write(sd, R2B_MT9V011_GREEN_1_GAIN, green1_gain); |
| 154 | mt9v011_write(sd, R2E_MT9V011_GREEN_2_GAIN, green1_gain); |
| 155 | mt9v011_write(sd, R2C_MT9V011_BLUE_GAIN, blue_gain); |
| 156 | mt9v011_write(sd, R2D_MT9V011_RED_GAIN, red_gain); |
| 157 | } |
| 158 | |
Mauro Carvalho Chehab | e11206e | 2009-07-14 02:38:18 -0300 | [diff] [blame] | 159 | static void calc_fps(struct v4l2_subdev *sd) |
| 160 | { |
| 161 | struct mt9v011 *core = to_mt9v011(sd); |
| 162 | unsigned height, width, hblank, vblank, speed; |
| 163 | unsigned row_time, t_time; |
| 164 | u64 frames_per_ms; |
| 165 | unsigned tmp; |
| 166 | |
| 167 | height = mt9v011_read(sd, R03_MT9V011_HEIGHT); |
| 168 | width = mt9v011_read(sd, R04_MT9V011_WIDTH); |
| 169 | hblank = mt9v011_read(sd, R05_MT9V011_HBLANK); |
| 170 | vblank = mt9v011_read(sd, R06_MT9V011_VBLANK); |
| 171 | speed = mt9v011_read(sd, R0A_MT9V011_CLK_SPEED); |
| 172 | |
| 173 | row_time = (width + 113 + hblank) * (speed + 2); |
| 174 | t_time = row_time * (height + vblank + 1); |
| 175 | |
| 176 | frames_per_ms = core->xtal * 1000l; |
| 177 | do_div(frames_per_ms, t_time); |
| 178 | tmp = frames_per_ms; |
| 179 | |
| 180 | v4l2_dbg(1, debug, sd, "Programmed to %u.%03u fps (%d pixel clcks)\n", |
| 181 | tmp / 1000, tmp % 1000, t_time); |
| 182 | } |
| 183 | |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 184 | static void set_res(struct v4l2_subdev *sd) |
| 185 | { |
| 186 | struct mt9v011 *core = to_mt9v011(sd); |
| 187 | unsigned vstart, hstart; |
| 188 | |
| 189 | /* |
| 190 | * The mt9v011 doesn't have scaling. So, in order to select the desired |
| 191 | * resolution, we're cropping at the middle of the sensor. |
| 192 | * hblank and vblank should be adjusted, in order to warrant that |
| 193 | * we'll preserve the line timings for 30 fps, no matter what resolution |
| 194 | * is selected. |
Mauro Carvalho Chehab | 6934e6f | 2009-07-04 08:15:11 -0300 | [diff] [blame] | 195 | * NOTE: datasheet says that width (and height) should be filled with |
| 196 | * width-1. However, this doesn't work, since one pixel per line will |
| 197 | * be missing. |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 198 | */ |
| 199 | |
| 200 | hstart = 14 + (640 - core->width) / 2; |
| 201 | mt9v011_write(sd, R02_MT9V011_COLSTART, hstart); |
| 202 | mt9v011_write(sd, R04_MT9V011_WIDTH, core->width); |
| 203 | mt9v011_write(sd, R05_MT9V011_HBLANK, 771 - core->width); |
| 204 | |
Mauro Carvalho Chehab | c180604 | 2009-07-14 02:39:19 -0300 | [diff] [blame] | 205 | vstart = 8 + (480 - core->height) / 2; |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 206 | mt9v011_write(sd, R01_MT9V011_ROWSTART, vstart); |
| 207 | mt9v011_write(sd, R03_MT9V011_HEIGHT, core->height); |
| 208 | mt9v011_write(sd, R06_MT9V011_VBLANK, 508 - core->height); |
Mauro Carvalho Chehab | e11206e | 2009-07-14 02:38:18 -0300 | [diff] [blame] | 209 | |
| 210 | calc_fps(sd); |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 211 | }; |
| 212 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 213 | static int mt9v011_reset(struct v4l2_subdev *sd, u32 val) |
| 214 | { |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 215 | int i; |
| 216 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 217 | for (i = 0; i < ARRAY_SIZE(mt9v011_init_default); i++) |
| 218 | mt9v011_write(sd, mt9v011_init_default[i].reg, |
| 219 | mt9v011_init_default[i].value); |
| 220 | |
| 221 | set_balance(sd); |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 222 | set_res(sd); |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 223 | |
| 224 | return 0; |
| 225 | }; |
| 226 | |
| 227 | static int mt9v011_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) |
| 228 | { |
| 229 | struct mt9v011 *core = to_mt9v011(sd); |
| 230 | |
| 231 | v4l2_dbg(1, debug, sd, "g_ctrl called\n"); |
| 232 | |
| 233 | switch (ctrl->id) { |
| 234 | case V4L2_CID_GAIN: |
| 235 | ctrl->value = core->global_gain; |
| 236 | return 0; |
| 237 | case V4L2_CID_RED_BALANCE: |
| 238 | ctrl->value = core->red_bal; |
| 239 | return 0; |
| 240 | case V4L2_CID_BLUE_BALANCE: |
| 241 | ctrl->value = core->blue_bal; |
| 242 | return 0; |
| 243 | } |
| 244 | return -EINVAL; |
| 245 | } |
| 246 | |
Mauro Carvalho Chehab | 9873740 | 2009-07-13 01:03:37 -0300 | [diff] [blame] | 247 | static int mt9v011_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc) |
| 248 | { |
| 249 | int i; |
| 250 | |
| 251 | v4l2_dbg(1, debug, sd, "queryctrl called\n"); |
| 252 | |
| 253 | for (i = 0; i < ARRAY_SIZE(mt9v011_qctrl); i++) |
| 254 | if (qc->id && qc->id == mt9v011_qctrl[i].id) { |
| 255 | memcpy(qc, &(mt9v011_qctrl[i]), |
| 256 | sizeof(*qc)); |
| 257 | return 0; |
| 258 | } |
| 259 | |
| 260 | return -EINVAL; |
| 261 | } |
| 262 | |
| 263 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 264 | static int mt9v011_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) |
| 265 | { |
| 266 | struct mt9v011 *core = to_mt9v011(sd); |
| 267 | u8 i, n; |
| 268 | n = ARRAY_SIZE(mt9v011_qctrl); |
| 269 | |
| 270 | for (i = 0; i < n; i++) { |
| 271 | if (ctrl->id != mt9v011_qctrl[i].id) |
| 272 | continue; |
| 273 | if (ctrl->value < mt9v011_qctrl[i].minimum || |
| 274 | ctrl->value > mt9v011_qctrl[i].maximum) |
| 275 | return -ERANGE; |
| 276 | v4l2_dbg(1, debug, sd, "s_ctrl: id=%d, value=%d\n", |
| 277 | ctrl->id, ctrl->value); |
| 278 | break; |
| 279 | } |
| 280 | |
| 281 | switch (ctrl->id) { |
| 282 | case V4L2_CID_GAIN: |
| 283 | core->global_gain = ctrl->value; |
| 284 | break; |
| 285 | case V4L2_CID_RED_BALANCE: |
| 286 | core->red_bal = ctrl->value; |
| 287 | break; |
| 288 | case V4L2_CID_BLUE_BALANCE: |
| 289 | core->blue_bal = ctrl->value; |
| 290 | break; |
| 291 | default: |
| 292 | return -EINVAL; |
| 293 | } |
| 294 | |
| 295 | set_balance(sd); |
| 296 | |
| 297 | return 0; |
| 298 | } |
| 299 | |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 300 | static int mt9v011_enum_fmt(struct v4l2_subdev *sd, struct v4l2_fmtdesc *fmt) |
| 301 | { |
| 302 | if (fmt->index > 0) |
| 303 | return -EINVAL; |
| 304 | |
| 305 | fmt->flags = 0; |
| 306 | strcpy(fmt->description, "8 bpp Bayer GRGR..BGBG"); |
| 307 | fmt->pixelformat = V4L2_PIX_FMT_SGRBG8; |
| 308 | |
| 309 | return 0; |
| 310 | } |
| 311 | |
| 312 | static int mt9v011_try_fmt(struct v4l2_subdev *sd, struct v4l2_format *fmt) |
| 313 | { |
| 314 | struct v4l2_pix_format *pix = &fmt->fmt.pix; |
| 315 | |
| 316 | if (pix->pixelformat != V4L2_PIX_FMT_SGRBG8) |
| 317 | return -EINVAL; |
| 318 | |
| 319 | v4l_bound_align_image(&pix->width, 48, 639, 1, |
| 320 | &pix->height, 32, 480, 1, 0); |
| 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | static int mt9v011_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *fmt) |
| 326 | { |
| 327 | struct v4l2_pix_format *pix = &fmt->fmt.pix; |
| 328 | struct mt9v011 *core = to_mt9v011(sd); |
| 329 | int rc; |
| 330 | |
| 331 | rc = mt9v011_try_fmt(sd, fmt); |
| 332 | if (rc < 0) |
| 333 | return -EINVAL; |
| 334 | |
| 335 | core->width = pix->width; |
| 336 | core->height = pix->height; |
| 337 | |
| 338 | set_res(sd); |
| 339 | |
| 340 | return 0; |
| 341 | } |
| 342 | |
Mauro Carvalho Chehab | 2ea472f | 2009-07-14 03:14:21 -0300 | [diff] [blame] | 343 | static int mt9v011_s_config(struct v4l2_subdev *sd, int dumb, void *data) |
| 344 | { |
| 345 | struct mt9v011 *core = to_mt9v011(sd); |
| 346 | unsigned *xtal = data; |
| 347 | |
| 348 | v4l2_dbg(1, debug, sd, "s_config called\n"); |
| 349 | |
| 350 | if (xtal) { |
| 351 | core->xtal = *xtal; |
| 352 | v4l2_dbg(1, debug, sd, "xtal set to %d.%03d MHz\n", |
| 353 | *xtal / 1000000, (*xtal / 1000) % 1000); |
| 354 | } |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 359 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 360 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 361 | static int mt9v011_g_register(struct v4l2_subdev *sd, |
| 362 | struct v4l2_dbg_register *reg) |
| 363 | { |
| 364 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 365 | |
| 366 | if (!v4l2_chip_match_i2c_client(client, ®->match)) |
| 367 | return -EINVAL; |
| 368 | if (!capable(CAP_SYS_ADMIN)) |
| 369 | return -EPERM; |
| 370 | |
| 371 | reg->val = mt9v011_read(sd, reg->reg & 0xff); |
| 372 | reg->size = 2; |
| 373 | |
| 374 | return 0; |
| 375 | } |
| 376 | |
| 377 | static int mt9v011_s_register(struct v4l2_subdev *sd, |
| 378 | struct v4l2_dbg_register *reg) |
| 379 | { |
| 380 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 381 | |
| 382 | if (!v4l2_chip_match_i2c_client(client, ®->match)) |
| 383 | return -EINVAL; |
| 384 | if (!capable(CAP_SYS_ADMIN)) |
| 385 | return -EPERM; |
| 386 | |
| 387 | mt9v011_write(sd, reg->reg & 0xff, reg->val & 0xffff); |
| 388 | |
| 389 | return 0; |
| 390 | } |
| 391 | #endif |
| 392 | |
| 393 | static int mt9v011_g_chip_ident(struct v4l2_subdev *sd, |
| 394 | struct v4l2_dbg_chip_ident *chip) |
| 395 | { |
Mauro Carvalho Chehab | 296544e | 2009-07-27 08:24:29 -0300 | [diff] [blame^] | 396 | u16 version; |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 397 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 398 | |
Mauro Carvalho Chehab | 296544e | 2009-07-27 08:24:29 -0300 | [diff] [blame^] | 399 | version = mt9v011_read(sd, R00_MT9V011_CHIP_VERSION); |
| 400 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 401 | return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_MT9V011, |
Mauro Carvalho Chehab | 296544e | 2009-07-27 08:24:29 -0300 | [diff] [blame^] | 402 | version); |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | static const struct v4l2_subdev_core_ops mt9v011_core_ops = { |
Mauro Carvalho Chehab | 9873740 | 2009-07-13 01:03:37 -0300 | [diff] [blame] | 406 | .queryctrl = mt9v011_queryctrl, |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 407 | .g_ctrl = mt9v011_g_ctrl, |
| 408 | .s_ctrl = mt9v011_s_ctrl, |
| 409 | .reset = mt9v011_reset, |
Mauro Carvalho Chehab | 2ea472f | 2009-07-14 03:14:21 -0300 | [diff] [blame] | 410 | .s_config = mt9v011_s_config, |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 411 | .g_chip_ident = mt9v011_g_chip_ident, |
| 412 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 413 | .g_register = mt9v011_g_register, |
| 414 | .s_register = mt9v011_s_register, |
| 415 | #endif |
| 416 | }; |
| 417 | |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 418 | static const struct v4l2_subdev_video_ops mt9v011_video_ops = { |
| 419 | .enum_fmt = mt9v011_enum_fmt, |
| 420 | .try_fmt = mt9v011_try_fmt, |
| 421 | .s_fmt = mt9v011_s_fmt, |
| 422 | }; |
| 423 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 424 | static const struct v4l2_subdev_ops mt9v011_ops = { |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 425 | .core = &mt9v011_core_ops, |
| 426 | .video = &mt9v011_video_ops, |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 427 | }; |
| 428 | |
| 429 | |
| 430 | /**************************************************************************** |
| 431 | I2C Client & Driver |
| 432 | ****************************************************************************/ |
| 433 | |
| 434 | static int mt9v011_probe(struct i2c_client *c, |
| 435 | const struct i2c_device_id *id) |
| 436 | { |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 437 | u16 version; |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 438 | struct mt9v011 *core; |
| 439 | struct v4l2_subdev *sd; |
| 440 | |
| 441 | /* Check if the adapter supports the needed features */ |
| 442 | if (!i2c_check_functionality(c->adapter, |
| 443 | I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) |
| 444 | return -EIO; |
| 445 | |
| 446 | core = kzalloc(sizeof(struct mt9v011), GFP_KERNEL); |
| 447 | if (!core) |
| 448 | return -ENOMEM; |
| 449 | |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 450 | sd = &core->sd; |
| 451 | v4l2_i2c_subdev_init(sd, c, &mt9v011_ops); |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 452 | |
| 453 | /* Check if the sensor is really a MT9V011 */ |
| 454 | version = mt9v011_read(sd, R00_MT9V011_CHIP_VERSION); |
Mauro Carvalho Chehab | 296544e | 2009-07-27 08:24:29 -0300 | [diff] [blame^] | 455 | if ((version != MT9V011_VERSION) && |
| 456 | (version != MT9V011_REV_B_VERSION)) { |
| 457 | v4l2_info(sd, "*** unknown micron chip detected (0x%04x).\n", |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 458 | version); |
| 459 | kfree(core); |
| 460 | return -EINVAL; |
| 461 | } |
| 462 | |
| 463 | core->global_gain = 0x0024; |
| 464 | core->width = 640; |
| 465 | core->height = 480; |
Mauro Carvalho Chehab | e11206e | 2009-07-14 02:38:18 -0300 | [diff] [blame] | 466 | core->xtal = 27000000; /* Hz */ |
Mauro Carvalho Chehab | 27fe4a3 | 2009-07-04 08:03:48 -0300 | [diff] [blame] | 467 | |
Mauro Carvalho Chehab | 296544e | 2009-07-27 08:24:29 -0300 | [diff] [blame^] | 468 | v4l_info(c, "chip found @ 0x%02x (%s - chip version 0x%04x)\n", |
| 469 | c->addr << 1, c->adapter->name, version); |
Mauro Carvalho Chehab | 7dfba00 | 2009-06-29 05:41:26 -0300 | [diff] [blame] | 470 | |
| 471 | return 0; |
| 472 | } |
| 473 | |
| 474 | static int mt9v011_remove(struct i2c_client *c) |
| 475 | { |
| 476 | struct v4l2_subdev *sd = i2c_get_clientdata(c); |
| 477 | |
| 478 | v4l2_dbg(1, debug, sd, |
| 479 | "mt9v011.c: removing mt9v011 adapter on address 0x%x\n", |
| 480 | c->addr << 1); |
| 481 | |
| 482 | v4l2_device_unregister_subdev(sd); |
| 483 | kfree(to_mt9v011(sd)); |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | /* ----------------------------------------------------------------------- */ |
| 488 | |
| 489 | static const struct i2c_device_id mt9v011_id[] = { |
| 490 | { "mt9v011", 0 }, |
| 491 | { } |
| 492 | }; |
| 493 | MODULE_DEVICE_TABLE(i2c, mt9v011_id); |
| 494 | |
| 495 | static struct v4l2_i2c_driver_data v4l2_i2c_data = { |
| 496 | .name = "mt9v011", |
| 497 | .probe = mt9v011_probe, |
| 498 | .remove = mt9v011_remove, |
| 499 | .id_table = mt9v011_id, |
| 500 | }; |