Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1 | /* |
| 2 | * tw9910 Video Driver |
| 3 | * |
| 4 | * Copyright (C) 2008 Renesas Solutions Corp. |
| 5 | * Kuninori Morimoto <morimoto.kuninori@renesas.com> |
| 6 | * |
| 7 | * Based on ov772x driver, |
| 8 | * |
| 9 | * Copyright (C) 2008 Kuninori Morimoto <morimoto.kuninori@renesas.com> |
| 10 | * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net> |
| 11 | * Copyright (C) 2008 Magnus Damm |
| 12 | * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de> |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License version 2 as |
| 16 | * published by the Free Software Foundation. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/i2c.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/kernel.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/videodev2.h> |
| 26 | #include <media/v4l2-chip-ident.h> |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 27 | #include <media/v4l2-subdev.h> |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 28 | #include <media/soc_camera.h> |
| 29 | #include <media/tw9910.h> |
| 30 | |
| 31 | #define GET_ID(val) ((val & 0xF8) >> 3) |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 32 | #define GET_REV(val) (val & 0x07) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * register offset |
| 36 | */ |
| 37 | #define ID 0x00 /* Product ID Code Register */ |
| 38 | #define STATUS1 0x01 /* Chip Status Register I */ |
| 39 | #define INFORM 0x02 /* Input Format */ |
| 40 | #define OPFORM 0x03 /* Output Format Control Register */ |
| 41 | #define DLYCTR 0x04 /* Hysteresis and HSYNC Delay Control */ |
| 42 | #define OUTCTR1 0x05 /* Output Control I */ |
| 43 | #define ACNTL1 0x06 /* Analog Control Register 1 */ |
| 44 | #define CROP_HI 0x07 /* Cropping Register, High */ |
| 45 | #define VDELAY_LO 0x08 /* Vertical Delay Register, Low */ |
| 46 | #define VACTIVE_LO 0x09 /* Vertical Active Register, Low */ |
| 47 | #define HDELAY_LO 0x0A /* Horizontal Delay Register, Low */ |
| 48 | #define HACTIVE_LO 0x0B /* Horizontal Active Register, Low */ |
| 49 | #define CNTRL1 0x0C /* Control Register I */ |
| 50 | #define VSCALE_LO 0x0D /* Vertical Scaling Register, Low */ |
| 51 | #define SCALE_HI 0x0E /* Scaling Register, High */ |
| 52 | #define HSCALE_LO 0x0F /* Horizontal Scaling Register, Low */ |
| 53 | #define BRIGHT 0x10 /* BRIGHTNESS Control Register */ |
| 54 | #define CONTRAST 0x11 /* CONTRAST Control Register */ |
| 55 | #define SHARPNESS 0x12 /* SHARPNESS Control Register I */ |
| 56 | #define SAT_U 0x13 /* Chroma (U) Gain Register */ |
| 57 | #define SAT_V 0x14 /* Chroma (V) Gain Register */ |
| 58 | #define HUE 0x15 /* Hue Control Register */ |
| 59 | #define CORING1 0x17 |
| 60 | #define CORING2 0x18 /* Coring and IF compensation */ |
| 61 | #define VBICNTL 0x19 /* VBI Control Register */ |
| 62 | #define ACNTL2 0x1A /* Analog Control 2 */ |
| 63 | #define OUTCTR2 0x1B /* Output Control 2 */ |
| 64 | #define SDT 0x1C /* Standard Selection */ |
| 65 | #define SDTR 0x1D /* Standard Recognition */ |
| 66 | #define TEST 0x1F /* Test Control Register */ |
| 67 | #define CLMPG 0x20 /* Clamping Gain */ |
| 68 | #define IAGC 0x21 /* Individual AGC Gain */ |
| 69 | #define AGCGAIN 0x22 /* AGC Gain */ |
| 70 | #define PEAKWT 0x23 /* White Peak Threshold */ |
| 71 | #define CLMPL 0x24 /* Clamp level */ |
| 72 | #define SYNCT 0x25 /* Sync Amplitude */ |
| 73 | #define MISSCNT 0x26 /* Sync Miss Count Register */ |
| 74 | #define PCLAMP 0x27 /* Clamp Position Register */ |
| 75 | #define VCNTL1 0x28 /* Vertical Control I */ |
| 76 | #define VCNTL2 0x29 /* Vertical Control II */ |
| 77 | #define CKILL 0x2A /* Color Killer Level Control */ |
| 78 | #define COMB 0x2B /* Comb Filter Control */ |
| 79 | #define LDLY 0x2C /* Luma Delay and H Filter Control */ |
| 80 | #define MISC1 0x2D /* Miscellaneous Control I */ |
| 81 | #define LOOP 0x2E /* LOOP Control Register */ |
| 82 | #define MISC2 0x2F /* Miscellaneous Control II */ |
| 83 | #define MVSN 0x30 /* Macrovision Detection */ |
| 84 | #define STATUS2 0x31 /* Chip STATUS II */ |
| 85 | #define HFREF 0x32 /* H monitor */ |
| 86 | #define CLMD 0x33 /* CLAMP MODE */ |
| 87 | #define IDCNTL 0x34 /* ID Detection Control */ |
| 88 | #define CLCNTL1 0x35 /* Clamp Control I */ |
| 89 | #define ANAPLLCTL 0x4C |
| 90 | #define VBIMIN 0x4D |
| 91 | #define HSLOWCTL 0x4E |
| 92 | #define WSS3 0x4F |
| 93 | #define FILLDATA 0x50 |
| 94 | #define SDID 0x51 |
| 95 | #define DID 0x52 |
| 96 | #define WSS1 0x53 |
| 97 | #define WSS2 0x54 |
| 98 | #define VVBI 0x55 |
| 99 | #define LCTL6 0x56 |
| 100 | #define LCTL7 0x57 |
| 101 | #define LCTL8 0x58 |
| 102 | #define LCTL9 0x59 |
| 103 | #define LCTL10 0x5A |
| 104 | #define LCTL11 0x5B |
| 105 | #define LCTL12 0x5C |
| 106 | #define LCTL13 0x5D |
| 107 | #define LCTL14 0x5E |
| 108 | #define LCTL15 0x5F |
| 109 | #define LCTL16 0x60 |
| 110 | #define LCTL17 0x61 |
| 111 | #define LCTL18 0x62 |
| 112 | #define LCTL19 0x63 |
| 113 | #define LCTL20 0x64 |
| 114 | #define LCTL21 0x65 |
| 115 | #define LCTL22 0x66 |
| 116 | #define LCTL23 0x67 |
| 117 | #define LCTL24 0x68 |
| 118 | #define LCTL25 0x69 |
| 119 | #define LCTL26 0x6A |
| 120 | #define HSGEGIN 0x6B |
| 121 | #define HSEND 0x6C |
| 122 | #define OVSDLY 0x6D |
| 123 | #define OVSEND 0x6E |
| 124 | #define VBIDELAY 0x6F |
| 125 | |
| 126 | /* |
| 127 | * register detail |
| 128 | */ |
| 129 | |
| 130 | /* INFORM */ |
| 131 | #define FC27_ON 0x40 /* 1 : Input crystal clock frequency is 27MHz */ |
| 132 | #define FC27_FF 0x00 /* 0 : Square pixel mode. */ |
| 133 | /* Must use 24.54MHz for 60Hz field rate */ |
| 134 | /* source or 29.5MHz for 50Hz field rate */ |
| 135 | #define IFSEL_S 0x10 /* 01 : S-video decoding */ |
| 136 | #define IFSEL_C 0x00 /* 00 : Composite video decoding */ |
| 137 | /* Y input video selection */ |
| 138 | #define YSEL_M0 0x00 /* 00 : Mux0 selected */ |
| 139 | #define YSEL_M1 0x04 /* 01 : Mux1 selected */ |
| 140 | #define YSEL_M2 0x08 /* 10 : Mux2 selected */ |
| 141 | #define YSEL_M3 0x10 /* 11 : Mux3 selected */ |
| 142 | |
| 143 | /* OPFORM */ |
| 144 | #define MODE 0x80 /* 0 : CCIR601 compatible YCrCb 4:2:2 format */ |
| 145 | /* 1 : ITU-R-656 compatible data sequence format */ |
| 146 | #define LEN 0x40 /* 0 : 8-bit YCrCb 4:2:2 output format */ |
| 147 | /* 1 : 16-bit YCrCb 4:2:2 output format.*/ |
| 148 | #define LLCMODE 0x20 /* 1 : LLC output mode. */ |
| 149 | /* 0 : free-run output mode */ |
| 150 | #define AINC 0x10 /* Serial interface auto-indexing control */ |
| 151 | /* 0 : auto-increment */ |
| 152 | /* 1 : non-auto */ |
| 153 | #define VSCTL 0x08 /* 1 : Vertical out ctrl by DVALID */ |
| 154 | /* 0 : Vertical out ctrl by HACTIVE and DVALID */ |
| 155 | #define OEN 0x04 /* Output Enable together with TRI_SEL. */ |
| 156 | |
| 157 | /* OUTCTR1 */ |
| 158 | #define VSP_LO 0x00 /* 0 : VS pin output polarity is active low */ |
| 159 | #define VSP_HI 0x80 /* 1 : VS pin output polarity is active high. */ |
| 160 | /* VS pin output control */ |
| 161 | #define VSSL_VSYNC 0x00 /* 0 : VSYNC */ |
| 162 | #define VSSL_VACT 0x10 /* 1 : VACT */ |
| 163 | #define VSSL_FIELD 0x20 /* 2 : FIELD */ |
| 164 | #define VSSL_VVALID 0x30 /* 3 : VVALID */ |
| 165 | #define VSSL_ZERO 0x70 /* 7 : 0 */ |
| 166 | #define HSP_LOW 0x00 /* 0 : HS pin output polarity is active low */ |
| 167 | #define HSP_HI 0x08 /* 1 : HS pin output polarity is active high.*/ |
| 168 | /* HS pin output control */ |
| 169 | #define HSSL_HACT 0x00 /* 0 : HACT */ |
| 170 | #define HSSL_HSYNC 0x01 /* 1 : HSYNC */ |
| 171 | #define HSSL_DVALID 0x02 /* 2 : DVALID */ |
| 172 | #define HSSL_HLOCK 0x03 /* 3 : HLOCK */ |
| 173 | #define HSSL_ASYNCW 0x04 /* 4 : ASYNCW */ |
| 174 | #define HSSL_ZERO 0x07 /* 7 : 0 */ |
| 175 | |
| 176 | /* ACNTL1 */ |
| 177 | #define SRESET 0x80 /* resets the device to its default state |
| 178 | * but all register content remain unchanged. |
| 179 | * This bit is self-resetting. |
| 180 | */ |
| 181 | |
| 182 | /* VBICNTL */ |
Guennadi Liakhovetski | 5d28d52 | 2009-12-11 11:15:05 -0300 | [diff] [blame] | 183 | |
| 184 | /* RTSEL : control the real time signal output from the MPOUT pin */ |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 185 | #define RTSEL_MASK 0x07 |
| 186 | #define RTSEL_VLOSS 0x00 /* 0000 = Video loss */ |
| 187 | #define RTSEL_HLOCK 0x01 /* 0001 = H-lock */ |
| 188 | #define RTSEL_SLOCK 0x02 /* 0010 = S-lock */ |
| 189 | #define RTSEL_VLOCK 0x03 /* 0011 = V-lock */ |
| 190 | #define RTSEL_MONO 0x04 /* 0100 = MONO */ |
| 191 | #define RTSEL_DET50 0x05 /* 0101 = DET50 */ |
| 192 | #define RTSEL_FIELD 0x06 /* 0110 = FIELD */ |
| 193 | #define RTSEL_RTCO 0x07 /* 0111 = RTCO ( Real Time Control ) */ |
| 194 | |
| 195 | /* |
| 196 | * structure |
| 197 | */ |
| 198 | |
| 199 | struct regval_list { |
| 200 | unsigned char reg_num; |
| 201 | unsigned char value; |
| 202 | }; |
| 203 | |
| 204 | struct tw9910_scale_ctrl { |
| 205 | char *name; |
| 206 | unsigned short width; |
| 207 | unsigned short height; |
| 208 | u16 hscale; |
| 209 | u16 vscale; |
| 210 | }; |
| 211 | |
| 212 | struct tw9910_cropping_ctrl { |
| 213 | u16 vdelay; |
| 214 | u16 vactive; |
| 215 | u16 hdelay; |
| 216 | u16 hactive; |
| 217 | }; |
| 218 | |
| 219 | struct tw9910_hsync_ctrl { |
| 220 | u16 start; |
| 221 | u16 end; |
| 222 | }; |
| 223 | |
| 224 | struct tw9910_priv { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 225 | struct v4l2_subdev subdev; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 226 | struct tw9910_video_info *info; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 227 | const struct tw9910_scale_ctrl *scale; |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 228 | u32 revision; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 229 | }; |
| 230 | |
| 231 | /* |
| 232 | * register settings |
| 233 | */ |
| 234 | |
| 235 | #define ENDMARKER { 0xff, 0xff } |
| 236 | |
| 237 | static const struct regval_list tw9910_default_regs[] = |
| 238 | { |
| 239 | { OPFORM, 0x00 }, |
| 240 | { OUTCTR1, VSP_LO | VSSL_VVALID | HSP_HI | HSSL_HSYNC }, |
| 241 | ENDMARKER, |
| 242 | }; |
| 243 | |
| 244 | static const struct soc_camera_data_format tw9910_color_fmt[] = { |
| 245 | { |
| 246 | .name = "VYUY", |
| 247 | .fourcc = V4L2_PIX_FMT_VYUY, |
| 248 | .depth = 16, |
| 249 | .colorspace = V4L2_COLORSPACE_SMPTE170M, |
| 250 | } |
| 251 | }; |
| 252 | |
| 253 | static const struct tw9910_scale_ctrl tw9910_ntsc_scales[] = { |
| 254 | { |
| 255 | .name = "NTSC SQ", |
| 256 | .width = 640, |
| 257 | .height = 480, |
| 258 | .hscale = 0x0100, |
| 259 | .vscale = 0x0100, |
| 260 | }, |
| 261 | { |
| 262 | .name = "NTSC CCIR601", |
| 263 | .width = 720, |
| 264 | .height = 480, |
| 265 | .hscale = 0x0100, |
| 266 | .vscale = 0x0100, |
| 267 | }, |
| 268 | { |
| 269 | .name = "NTSC SQ (CIF)", |
| 270 | .width = 320, |
| 271 | .height = 240, |
| 272 | .hscale = 0x0200, |
| 273 | .vscale = 0x0200, |
| 274 | }, |
| 275 | { |
| 276 | .name = "NTSC CCIR601 (CIF)", |
| 277 | .width = 360, |
| 278 | .height = 240, |
| 279 | .hscale = 0x0200, |
| 280 | .vscale = 0x0200, |
| 281 | }, |
| 282 | { |
| 283 | .name = "NTSC SQ (QCIF)", |
| 284 | .width = 160, |
| 285 | .height = 120, |
| 286 | .hscale = 0x0400, |
| 287 | .vscale = 0x0400, |
| 288 | }, |
| 289 | { |
| 290 | .name = "NTSC CCIR601 (QCIF)", |
| 291 | .width = 180, |
| 292 | .height = 120, |
| 293 | .hscale = 0x0400, |
| 294 | .vscale = 0x0400, |
| 295 | }, |
| 296 | }; |
| 297 | |
| 298 | static const struct tw9910_scale_ctrl tw9910_pal_scales[] = { |
| 299 | { |
| 300 | .name = "PAL SQ", |
| 301 | .width = 768, |
| 302 | .height = 576, |
| 303 | .hscale = 0x0100, |
| 304 | .vscale = 0x0100, |
| 305 | }, |
| 306 | { |
| 307 | .name = "PAL CCIR601", |
| 308 | .width = 720, |
| 309 | .height = 576, |
| 310 | .hscale = 0x0100, |
| 311 | .vscale = 0x0100, |
| 312 | }, |
| 313 | { |
| 314 | .name = "PAL SQ (CIF)", |
| 315 | .width = 384, |
| 316 | .height = 288, |
| 317 | .hscale = 0x0200, |
| 318 | .vscale = 0x0200, |
| 319 | }, |
| 320 | { |
| 321 | .name = "PAL CCIR601 (CIF)", |
| 322 | .width = 360, |
| 323 | .height = 288, |
| 324 | .hscale = 0x0200, |
| 325 | .vscale = 0x0200, |
| 326 | }, |
| 327 | { |
| 328 | .name = "PAL SQ (QCIF)", |
| 329 | .width = 192, |
| 330 | .height = 144, |
| 331 | .hscale = 0x0400, |
| 332 | .vscale = 0x0400, |
| 333 | }, |
| 334 | { |
| 335 | .name = "PAL CCIR601 (QCIF)", |
| 336 | .width = 180, |
| 337 | .height = 144, |
| 338 | .hscale = 0x0400, |
| 339 | .vscale = 0x0400, |
| 340 | }, |
| 341 | }; |
| 342 | |
| 343 | static const struct tw9910_cropping_ctrl tw9910_cropping_ctrl = { |
| 344 | .vdelay = 0x0012, |
| 345 | .vactive = 0x00F0, |
| 346 | .hdelay = 0x0010, |
| 347 | .hactive = 0x02D0, |
| 348 | }; |
| 349 | |
| 350 | static const struct tw9910_hsync_ctrl tw9910_hsync_ctrl = { |
| 351 | .start = 0x0260, |
| 352 | .end = 0x0300, |
| 353 | }; |
| 354 | |
| 355 | /* |
| 356 | * general function |
| 357 | */ |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 358 | static struct tw9910_priv *to_tw9910(const struct i2c_client *client) |
| 359 | { |
Guennadi Liakhovetski | 96c7539 | 2009-08-25 11:53:23 -0300 | [diff] [blame] | 360 | return container_of(i2c_get_clientdata(client), struct tw9910_priv, |
| 361 | subdev); |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 362 | } |
| 363 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 364 | static int tw9910_set_scale(struct i2c_client *client, |
| 365 | const struct tw9910_scale_ctrl *scale) |
| 366 | { |
| 367 | int ret; |
| 368 | |
| 369 | ret = i2c_smbus_write_byte_data(client, SCALE_HI, |
| 370 | (scale->vscale & 0x0F00) >> 4 | |
| 371 | (scale->hscale & 0x0F00) >> 8); |
| 372 | if (ret < 0) |
| 373 | return ret; |
| 374 | |
| 375 | ret = i2c_smbus_write_byte_data(client, HSCALE_LO, |
| 376 | scale->hscale & 0x00FF); |
| 377 | if (ret < 0) |
| 378 | return ret; |
| 379 | |
| 380 | ret = i2c_smbus_write_byte_data(client, VSCALE_LO, |
| 381 | scale->vscale & 0x00FF); |
| 382 | |
| 383 | return ret; |
| 384 | } |
| 385 | |
| 386 | static int tw9910_set_cropping(struct i2c_client *client, |
| 387 | const struct tw9910_cropping_ctrl *cropping) |
| 388 | { |
| 389 | int ret; |
| 390 | |
| 391 | ret = i2c_smbus_write_byte_data(client, CROP_HI, |
| 392 | (cropping->vdelay & 0x0300) >> 2 | |
| 393 | (cropping->vactive & 0x0300) >> 4 | |
| 394 | (cropping->hdelay & 0x0300) >> 6 | |
| 395 | (cropping->hactive & 0x0300) >> 8); |
| 396 | if (ret < 0) |
| 397 | return ret; |
| 398 | |
| 399 | ret = i2c_smbus_write_byte_data(client, VDELAY_LO, |
| 400 | cropping->vdelay & 0x00FF); |
| 401 | if (ret < 0) |
| 402 | return ret; |
| 403 | |
| 404 | ret = i2c_smbus_write_byte_data(client, VACTIVE_LO, |
| 405 | cropping->vactive & 0x00FF); |
| 406 | if (ret < 0) |
| 407 | return ret; |
| 408 | |
| 409 | ret = i2c_smbus_write_byte_data(client, HDELAY_LO, |
| 410 | cropping->hdelay & 0x00FF); |
| 411 | if (ret < 0) |
| 412 | return ret; |
| 413 | |
| 414 | ret = i2c_smbus_write_byte_data(client, HACTIVE_LO, |
| 415 | cropping->hactive & 0x00FF); |
| 416 | |
| 417 | return ret; |
| 418 | } |
| 419 | |
| 420 | static int tw9910_set_hsync(struct i2c_client *client, |
| 421 | const struct tw9910_hsync_ctrl *hsync) |
| 422 | { |
| 423 | int ret; |
| 424 | |
| 425 | /* bit 10 - 3 */ |
| 426 | ret = i2c_smbus_write_byte_data(client, HSGEGIN, |
| 427 | (hsync->start & 0x07F8) >> 3); |
| 428 | if (ret < 0) |
| 429 | return ret; |
| 430 | |
| 431 | /* bit 10 - 3 */ |
| 432 | ret = i2c_smbus_write_byte_data(client, HSEND, |
| 433 | (hsync->end & 0x07F8) >> 3); |
| 434 | if (ret < 0) |
| 435 | return ret; |
| 436 | |
| 437 | /* bit 2 - 0 */ |
| 438 | ret = i2c_smbus_read_byte_data(client, HSLOWCTL); |
| 439 | if (ret < 0) |
| 440 | return ret; |
| 441 | |
| 442 | ret = i2c_smbus_write_byte_data(client, HSLOWCTL, |
| 443 | (ret & 0x88) | |
| 444 | (hsync->start & 0x0007) << 4 | |
| 445 | (hsync->end & 0x0007)); |
| 446 | |
| 447 | return ret; |
| 448 | } |
| 449 | |
| 450 | static int tw9910_write_array(struct i2c_client *client, |
| 451 | const struct regval_list *vals) |
| 452 | { |
| 453 | while (vals->reg_num != 0xff) { |
| 454 | int ret = i2c_smbus_write_byte_data(client, |
| 455 | vals->reg_num, |
| 456 | vals->value); |
| 457 | if (ret < 0) |
| 458 | return ret; |
| 459 | vals++; |
| 460 | } |
| 461 | return 0; |
| 462 | } |
| 463 | |
| 464 | static int tw9910_mask_set(struct i2c_client *client, u8 command, |
| 465 | u8 mask, u8 set) |
| 466 | { |
| 467 | s32 val = i2c_smbus_read_byte_data(client, command); |
Kuninori Morimoto | 1af1b7a | 2009-02-23 12:12:58 -0300 | [diff] [blame] | 468 | if (val < 0) |
| 469 | return val; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 470 | |
| 471 | val &= ~mask; |
Kuninori Morimoto | 1af1b7a | 2009-02-23 12:12:58 -0300 | [diff] [blame] | 472 | val |= set & mask; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 473 | |
| 474 | return i2c_smbus_write_byte_data(client, command, val); |
| 475 | } |
| 476 | |
| 477 | static void tw9910_reset(struct i2c_client *client) |
| 478 | { |
| 479 | i2c_smbus_write_byte_data(client, ACNTL1, SRESET); |
| 480 | msleep(1); |
| 481 | } |
| 482 | |
| 483 | static const struct tw9910_scale_ctrl* |
| 484 | tw9910_select_norm(struct soc_camera_device *icd, u32 width, u32 height) |
| 485 | { |
| 486 | const struct tw9910_scale_ctrl *scale; |
| 487 | const struct tw9910_scale_ctrl *ret = NULL; |
| 488 | v4l2_std_id norm = icd->vdev->current_norm; |
| 489 | __u32 diff = 0xffffffff, tmp; |
| 490 | int size, i; |
| 491 | |
| 492 | if (norm & V4L2_STD_NTSC) { |
| 493 | scale = tw9910_ntsc_scales; |
| 494 | size = ARRAY_SIZE(tw9910_ntsc_scales); |
| 495 | } else if (norm & V4L2_STD_PAL) { |
| 496 | scale = tw9910_pal_scales; |
| 497 | size = ARRAY_SIZE(tw9910_pal_scales); |
| 498 | } else { |
| 499 | return NULL; |
| 500 | } |
| 501 | |
| 502 | for (i = 0; i < size; i++) { |
| 503 | tmp = abs(width - scale[i].width) + |
| 504 | abs(height - scale[i].height); |
| 505 | if (tmp < diff) { |
| 506 | diff = tmp; |
| 507 | ret = scale + i; |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | return ret; |
| 512 | } |
| 513 | |
| 514 | /* |
| 515 | * soc_camera_ops function |
| 516 | */ |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 517 | static int tw9910_s_stream(struct v4l2_subdev *sd, int enable) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 518 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 519 | struct i2c_client *client = sd->priv; |
| 520 | struct tw9910_priv *priv = to_tw9910(client); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 521 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 522 | if (!enable) |
| 523 | return 0; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 524 | |
| 525 | if (!priv->scale) { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 526 | dev_err(&client->dev, "norm select error\n"); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 527 | return -EPERM; |
| 528 | } |
| 529 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 530 | dev_dbg(&client->dev, "%s %dx%d\n", |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 531 | priv->scale->name, |
| 532 | priv->scale->width, |
| 533 | priv->scale->height); |
| 534 | |
| 535 | return 0; |
| 536 | } |
| 537 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 538 | static int tw9910_set_bus_param(struct soc_camera_device *icd, |
| 539 | unsigned long flags) |
| 540 | { |
| 541 | return 0; |
| 542 | } |
| 543 | |
| 544 | static unsigned long tw9910_query_bus_param(struct soc_camera_device *icd) |
| 545 | { |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 546 | struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd)); |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 547 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 548 | struct soc_camera_link *icl = to_soc_camera_link(icd); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 549 | unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER | |
| 550 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH | |
| 551 | SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth; |
| 552 | |
| 553 | return soc_camera_apply_sensor_flags(icl, flags); |
| 554 | } |
| 555 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 556 | static int tw9910_s_std(struct v4l2_subdev *sd, v4l2_std_id norm) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 557 | { |
| 558 | int ret = -EINVAL; |
| 559 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 560 | if (norm & (V4L2_STD_NTSC | V4L2_STD_PAL)) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 561 | ret = 0; |
| 562 | |
| 563 | return ret; |
| 564 | } |
| 565 | |
| 566 | static int tw9910_enum_input(struct soc_camera_device *icd, |
| 567 | struct v4l2_input *inp) |
| 568 | { |
| 569 | inp->type = V4L2_INPUT_TYPE_TUNER; |
| 570 | inp->std = V4L2_STD_UNKNOWN; |
| 571 | strcpy(inp->name, "Video"); |
| 572 | |
| 573 | return 0; |
| 574 | } |
| 575 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 576 | static int tw9910_g_chip_ident(struct v4l2_subdev *sd, |
| 577 | struct v4l2_dbg_chip_ident *id) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 578 | { |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 579 | struct i2c_client *client = sd->priv; |
| 580 | struct tw9910_priv *priv = to_tw9910(client); |
| 581 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 582 | id->ident = V4L2_IDENT_TW9910; |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 583 | id->revision = priv->revision; |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 584 | |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 589 | static int tw9910_g_register(struct v4l2_subdev *sd, |
| 590 | struct v4l2_dbg_register *reg) |
| 591 | { |
| 592 | struct i2c_client *client = sd->priv; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 593 | int ret; |
| 594 | |
| 595 | if (reg->reg > 0xff) |
| 596 | return -EINVAL; |
| 597 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 598 | ret = i2c_smbus_read_byte_data(client, reg->reg); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 599 | if (ret < 0) |
| 600 | return ret; |
| 601 | |
Guennadi Liakhovetski | 5d28d52 | 2009-12-11 11:15:05 -0300 | [diff] [blame] | 602 | /* |
| 603 | * ret = int |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 604 | * reg->val = __u64 |
| 605 | */ |
| 606 | reg->val = (__u64)ret; |
| 607 | |
| 608 | return 0; |
| 609 | } |
| 610 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 611 | static int tw9910_s_register(struct v4l2_subdev *sd, |
| 612 | struct v4l2_dbg_register *reg) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 613 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 614 | struct i2c_client *client = sd->priv; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 615 | |
| 616 | if (reg->reg > 0xff || |
| 617 | reg->val > 0xff) |
| 618 | return -EINVAL; |
| 619 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 620 | return i2c_smbus_write_byte_data(client, reg->reg, reg->val); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 621 | } |
| 622 | #endif |
| 623 | |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 624 | static int tw9910_s_crop(struct v4l2_subdev *sd, struct v4l2_crop *a) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 625 | { |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 626 | struct v4l2_rect *rect = &a->c; |
| 627 | struct i2c_client *client = sd->priv; |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 628 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 629 | struct soc_camera_device *icd = client->dev.platform_data; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 630 | int ret = -EINVAL; |
| 631 | u8 val; |
| 632 | |
| 633 | /* |
| 634 | * select suitable norm |
| 635 | */ |
| 636 | priv->scale = tw9910_select_norm(icd, rect->width, rect->height); |
| 637 | if (!priv->scale) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 638 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 639 | |
| 640 | /* |
| 641 | * reset hardware |
| 642 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 643 | tw9910_reset(client); |
| 644 | ret = tw9910_write_array(client, tw9910_default_regs); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 645 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 646 | goto tw9910_set_fmt_error; |
| 647 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 648 | /* |
| 649 | * set bus width |
| 650 | */ |
| 651 | val = 0x00; |
| 652 | if (SOCAM_DATAWIDTH_16 == priv->info->buswidth) |
| 653 | val = LEN; |
| 654 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 655 | ret = tw9910_mask_set(client, OPFORM, LEN, val); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 656 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 657 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 658 | |
| 659 | /* |
| 660 | * select MPOUT behavior |
| 661 | */ |
| 662 | switch (priv->info->mpout) { |
| 663 | case TW9910_MPO_VLOSS: |
| 664 | val = RTSEL_VLOSS; break; |
| 665 | case TW9910_MPO_HLOCK: |
| 666 | val = RTSEL_HLOCK; break; |
| 667 | case TW9910_MPO_SLOCK: |
| 668 | val = RTSEL_SLOCK; break; |
| 669 | case TW9910_MPO_VLOCK: |
| 670 | val = RTSEL_VLOCK; break; |
| 671 | case TW9910_MPO_MONO: |
| 672 | val = RTSEL_MONO; break; |
| 673 | case TW9910_MPO_DET50: |
| 674 | val = RTSEL_DET50; break; |
| 675 | case TW9910_MPO_FIELD: |
| 676 | val = RTSEL_FIELD; break; |
| 677 | case TW9910_MPO_RTCO: |
| 678 | val = RTSEL_RTCO; break; |
| 679 | default: |
| 680 | val = 0; |
| 681 | } |
| 682 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 683 | ret = tw9910_mask_set(client, VBICNTL, RTSEL_MASK, val); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 684 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 685 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 686 | |
| 687 | /* |
| 688 | * set scale |
| 689 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 690 | ret = tw9910_set_scale(client, priv->scale); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 691 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 692 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 693 | |
| 694 | /* |
| 695 | * set cropping |
| 696 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 697 | ret = tw9910_set_cropping(client, &tw9910_cropping_ctrl); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 698 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 699 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 700 | |
| 701 | /* |
| 702 | * set hsync |
| 703 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 704 | ret = tw9910_set_hsync(client, &tw9910_hsync_ctrl); |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 705 | if (ret < 0) |
| 706 | goto tw9910_set_fmt_error; |
| 707 | |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 708 | rect->width = priv->scale->width; |
| 709 | rect->height = priv->scale->height; |
| 710 | rect->left = 0; |
| 711 | rect->top = 0; |
| 712 | |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 713 | return ret; |
| 714 | |
| 715 | tw9910_set_fmt_error: |
| 716 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 717 | tw9910_reset(client); |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 718 | priv->scale = NULL; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 719 | |
| 720 | return ret; |
| 721 | } |
| 722 | |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 723 | static int tw9910_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a) |
| 724 | { |
| 725 | struct i2c_client *client = sd->priv; |
| 726 | struct tw9910_priv *priv = to_tw9910(client); |
| 727 | |
| 728 | if (!priv->scale) { |
| 729 | int ret; |
| 730 | struct v4l2_crop crop = { |
| 731 | .c = { |
| 732 | .left = 0, |
| 733 | .top = 0, |
| 734 | .width = 640, |
| 735 | .height = 480, |
| 736 | }, |
| 737 | }; |
| 738 | ret = tw9910_s_crop(sd, &crop); |
| 739 | if (ret < 0) |
| 740 | return ret; |
| 741 | } |
| 742 | |
| 743 | a->c.left = 0; |
| 744 | a->c.top = 0; |
| 745 | a->c.width = priv->scale->width; |
| 746 | a->c.height = priv->scale->height; |
| 747 | a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 748 | |
| 749 | return 0; |
| 750 | } |
| 751 | |
| 752 | static int tw9910_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a) |
| 753 | { |
| 754 | a->bounds.left = 0; |
| 755 | a->bounds.top = 0; |
| 756 | a->bounds.width = 768; |
| 757 | a->bounds.height = 576; |
| 758 | a->defrect.left = 0; |
| 759 | a->defrect.top = 0; |
| 760 | a->defrect.width = 640; |
| 761 | a->defrect.height = 480; |
| 762 | a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 763 | a->pixelaspect.numerator = 1; |
| 764 | a->pixelaspect.denominator = 1; |
| 765 | |
| 766 | return 0; |
| 767 | } |
| 768 | |
| 769 | static int tw9910_g_fmt(struct v4l2_subdev *sd, struct v4l2_format *f) |
| 770 | { |
| 771 | struct i2c_client *client = sd->priv; |
| 772 | struct tw9910_priv *priv = to_tw9910(client); |
| 773 | struct v4l2_pix_format *pix = &f->fmt.pix; |
| 774 | |
| 775 | if (!priv->scale) { |
| 776 | int ret; |
| 777 | struct v4l2_crop crop = { |
| 778 | .c = { |
| 779 | .left = 0, |
| 780 | .top = 0, |
| 781 | .width = 640, |
| 782 | .height = 480, |
| 783 | }, |
| 784 | }; |
| 785 | ret = tw9910_s_crop(sd, &crop); |
| 786 | if (ret < 0) |
| 787 | return ret; |
| 788 | } |
| 789 | |
| 790 | f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 791 | |
| 792 | pix->width = priv->scale->width; |
| 793 | pix->height = priv->scale->height; |
| 794 | pix->pixelformat = V4L2_PIX_FMT_VYUY; |
| 795 | pix->colorspace = V4L2_COLORSPACE_SMPTE170M; |
| 796 | pix->field = V4L2_FIELD_INTERLACED; |
| 797 | |
| 798 | return 0; |
| 799 | } |
| 800 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 801 | static int tw9910_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f) |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 802 | { |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 803 | struct i2c_client *client = sd->priv; |
| 804 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 805 | struct v4l2_pix_format *pix = &f->fmt.pix; |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 806 | /* See tw9910_s_crop() - no proper cropping support */ |
| 807 | struct v4l2_crop a = { |
| 808 | .c = { |
| 809 | .left = 0, |
| 810 | .top = 0, |
| 811 | .width = pix->width, |
| 812 | .height = pix->height, |
| 813 | }, |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 814 | }; |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 815 | int i, ret; |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 816 | |
| 817 | /* |
| 818 | * check color format |
| 819 | */ |
| 820 | for (i = 0; i < ARRAY_SIZE(tw9910_color_fmt); i++) |
| 821 | if (pix->pixelformat == tw9910_color_fmt[i].fourcc) |
| 822 | break; |
| 823 | |
| 824 | if (i == ARRAY_SIZE(tw9910_color_fmt)) |
| 825 | return -EINVAL; |
| 826 | |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 827 | ret = tw9910_s_crop(sd, &a); |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 828 | if (!ret) { |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 829 | pix->width = priv->scale->width; |
| 830 | pix->height = priv->scale->height; |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 831 | } |
| 832 | return ret; |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 833 | } |
| 834 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 835 | static int tw9910_try_fmt(struct v4l2_subdev *sd, struct v4l2_format *f) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 836 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 837 | struct i2c_client *client = sd->priv; |
| 838 | struct soc_camera_device *icd = client->dev.platform_data; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 839 | struct v4l2_pix_format *pix = &f->fmt.pix; |
| 840 | const struct tw9910_scale_ctrl *scale; |
| 841 | |
| 842 | if (V4L2_FIELD_ANY == pix->field) { |
| 843 | pix->field = V4L2_FIELD_INTERLACED; |
| 844 | } else if (V4L2_FIELD_INTERLACED != pix->field) { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 845 | dev_err(&client->dev, "Field type invalid.\n"); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 846 | return -EINVAL; |
| 847 | } |
| 848 | |
| 849 | /* |
| 850 | * select suitable norm |
| 851 | */ |
| 852 | scale = tw9910_select_norm(icd, pix->width, pix->height); |
| 853 | if (!scale) |
| 854 | return -EINVAL; |
| 855 | |
| 856 | pix->width = scale->width; |
| 857 | pix->height = scale->height; |
| 858 | |
| 859 | return 0; |
| 860 | } |
| 861 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 862 | static int tw9910_video_probe(struct soc_camera_device *icd, |
| 863 | struct i2c_client *client) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 864 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 865 | struct tw9910_priv *priv = to_tw9910(client); |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame^] | 866 | s32 id; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 867 | |
| 868 | /* |
| 869 | * We must have a parent by now. And it cannot be a wrong one. |
| 870 | * So this entire test is completely redundant. |
| 871 | */ |
| 872 | if (!icd->dev.parent || |
| 873 | to_soc_camera_host(icd->dev.parent)->nr != icd->iface) |
| 874 | return -ENODEV; |
| 875 | |
| 876 | /* |
| 877 | * tw9910 only use 8 or 16 bit bus width |
| 878 | */ |
| 879 | if (SOCAM_DATAWIDTH_16 != priv->info->buswidth && |
| 880 | SOCAM_DATAWIDTH_8 != priv->info->buswidth) { |
Guennadi Liakhovetski | 85f8be6 | 2009-08-25 11:47:00 -0300 | [diff] [blame] | 881 | dev_err(&client->dev, "bus width error\n"); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 882 | return -ENODEV; |
| 883 | } |
| 884 | |
| 885 | icd->formats = tw9910_color_fmt; |
| 886 | icd->num_formats = ARRAY_SIZE(tw9910_color_fmt); |
| 887 | |
| 888 | /* |
| 889 | * check and show Product ID |
Kuninori Morimoto | 4a4bc5e | 2009-12-11 11:06:00 -0300 | [diff] [blame] | 890 | * So far only revisions 0 and 1 have been seen |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 891 | */ |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame^] | 892 | id = i2c_smbus_read_byte_data(client, ID); |
| 893 | priv->revision = GET_REV(id); |
| 894 | id = GET_ID(id); |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 895 | |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame^] | 896 | if (0x0B != id || |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 897 | 0x01 < priv->revision) { |
Guennadi Liakhovetski | 85f8be6 | 2009-08-25 11:47:00 -0300 | [diff] [blame] | 898 | dev_err(&client->dev, |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 899 | "Product ID error %x:%x\n", |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame^] | 900 | id, priv->revision); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 901 | return -ENODEV; |
| 902 | } |
| 903 | |
Guennadi Liakhovetski | 85f8be6 | 2009-08-25 11:47:00 -0300 | [diff] [blame] | 904 | dev_info(&client->dev, |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame^] | 905 | "tw9910 Product ID %0x:%0x\n", id, priv->revision); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 906 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 907 | icd->vdev->tvnorms = V4L2_STD_NTSC | V4L2_STD_PAL; |
| 908 | icd->vdev->current_norm = V4L2_STD_NTSC; |
| 909 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 910 | return 0; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 911 | } |
| 912 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 913 | static struct soc_camera_ops tw9910_ops = { |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 914 | .set_bus_param = tw9910_set_bus_param, |
| 915 | .query_bus_param = tw9910_query_bus_param, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 916 | .enum_input = tw9910_enum_input, |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 917 | }; |
| 918 | |
| 919 | static struct v4l2_subdev_core_ops tw9910_subdev_core_ops = { |
| 920 | .g_chip_ident = tw9910_g_chip_ident, |
| 921 | .s_std = tw9910_s_std, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 922 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 923 | .g_register = tw9910_g_register, |
| 924 | .s_register = tw9910_s_register, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 925 | #endif |
| 926 | }; |
| 927 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 928 | static struct v4l2_subdev_video_ops tw9910_subdev_video_ops = { |
| 929 | .s_stream = tw9910_s_stream, |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 930 | .g_fmt = tw9910_g_fmt, |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 931 | .s_fmt = tw9910_s_fmt, |
| 932 | .try_fmt = tw9910_try_fmt, |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 933 | .cropcap = tw9910_cropcap, |
| 934 | .g_crop = tw9910_g_crop, |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 935 | .s_crop = tw9910_s_crop, |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 936 | }; |
| 937 | |
| 938 | static struct v4l2_subdev_ops tw9910_subdev_ops = { |
| 939 | .core = &tw9910_subdev_core_ops, |
| 940 | .video = &tw9910_subdev_video_ops, |
| 941 | }; |
| 942 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 943 | /* |
| 944 | * i2c_driver function |
| 945 | */ |
| 946 | |
| 947 | static int tw9910_probe(struct i2c_client *client, |
| 948 | const struct i2c_device_id *did) |
| 949 | |
| 950 | { |
| 951 | struct tw9910_priv *priv; |
| 952 | struct tw9910_video_info *info; |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 953 | struct soc_camera_device *icd = client->dev.platform_data; |
| 954 | struct i2c_adapter *adapter = |
| 955 | to_i2c_adapter(client->dev.parent); |
| 956 | struct soc_camera_link *icl; |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 957 | int ret; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 958 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 959 | if (!icd) { |
| 960 | dev_err(&client->dev, "TW9910: missing soc-camera data!\n"); |
| 961 | return -EINVAL; |
| 962 | } |
| 963 | |
| 964 | icl = to_soc_camera_link(icd); |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 965 | if (!icl || !icl->priv) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 966 | return -EINVAL; |
| 967 | |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 968 | info = icl->priv; |
Guennadi Liakhovetski | 0a861e9 | 2009-05-12 15:13:32 +0000 | [diff] [blame] | 969 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 970 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 971 | dev_err(&client->dev, |
| 972 | "I2C-Adapter doesn't support " |
| 973 | "I2C_FUNC_SMBUS_BYTE_DATA\n"); |
| 974 | return -EIO; |
| 975 | } |
| 976 | |
| 977 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| 978 | if (!priv) |
| 979 | return -ENOMEM; |
| 980 | |
| 981 | priv->info = info; |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 982 | |
| 983 | v4l2_i2c_subdev_init(&priv->subdev, client, &tw9910_subdev_ops); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 984 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 985 | icd->ops = &tw9910_ops; |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 986 | icd->iface = icl->bus_id; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 987 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 988 | ret = tw9910_video_probe(icd, client); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 989 | if (ret) { |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 990 | icd->ops = NULL; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 991 | i2c_set_clientdata(client, NULL); |
| 992 | kfree(priv); |
| 993 | } |
| 994 | |
| 995 | return ret; |
| 996 | } |
| 997 | |
| 998 | static int tw9910_remove(struct i2c_client *client) |
| 999 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 1000 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1001 | struct soc_camera_device *icd = client->dev.platform_data; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1002 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1003 | icd->ops = NULL; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1004 | i2c_set_clientdata(client, NULL); |
| 1005 | kfree(priv); |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
| 1009 | static const struct i2c_device_id tw9910_id[] = { |
| 1010 | { "tw9910", 0 }, |
| 1011 | { } |
| 1012 | }; |
| 1013 | MODULE_DEVICE_TABLE(i2c, tw9910_id); |
| 1014 | |
| 1015 | static struct i2c_driver tw9910_i2c_driver = { |
| 1016 | .driver = { |
| 1017 | .name = "tw9910", |
| 1018 | }, |
| 1019 | .probe = tw9910_probe, |
| 1020 | .remove = tw9910_remove, |
| 1021 | .id_table = tw9910_id, |
| 1022 | }; |
| 1023 | |
| 1024 | /* |
| 1025 | * module function |
| 1026 | */ |
| 1027 | static int __init tw9910_module_init(void) |
| 1028 | { |
| 1029 | return i2c_add_driver(&tw9910_i2c_driver); |
| 1030 | } |
| 1031 | |
| 1032 | static void __exit tw9910_module_exit(void) |
| 1033 | { |
| 1034 | i2c_del_driver(&tw9910_i2c_driver); |
| 1035 | } |
| 1036 | |
| 1037 | module_init(tw9910_module_init); |
| 1038 | module_exit(tw9910_module_exit); |
| 1039 | |
| 1040 | MODULE_DESCRIPTION("SoC Camera driver for tw9910"); |
| 1041 | MODULE_AUTHOR("Kuninori Morimoto"); |
| 1042 | MODULE_LICENSE("GPL v2"); |