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 |
Kuninori Morimoto | faa5826 | 2009-12-11 11:34:51 -0300 | [diff] [blame^] | 120 | #define HSBEGIN 0x6B |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 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 */ |
Kuninori Morimoto | 06f292e | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 155 | #define OEN_TRI_SEL_MASK 0x07 |
| 156 | #define OEN_TRI_SEL_ALL_ON 0x00 /* Enable output for Rev0/Rev1 */ |
| 157 | #define OEN_TRI_SEL_ALL_OFF_r0 0x06 /* All tri-stated for Rev0 */ |
| 158 | #define OEN_TRI_SEL_ALL_OFF_r1 0x07 /* All tri-stated for Rev1 */ |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 159 | |
| 160 | /* OUTCTR1 */ |
| 161 | #define VSP_LO 0x00 /* 0 : VS pin output polarity is active low */ |
| 162 | #define VSP_HI 0x80 /* 1 : VS pin output polarity is active high. */ |
| 163 | /* VS pin output control */ |
| 164 | #define VSSL_VSYNC 0x00 /* 0 : VSYNC */ |
| 165 | #define VSSL_VACT 0x10 /* 1 : VACT */ |
| 166 | #define VSSL_FIELD 0x20 /* 2 : FIELD */ |
| 167 | #define VSSL_VVALID 0x30 /* 3 : VVALID */ |
| 168 | #define VSSL_ZERO 0x70 /* 7 : 0 */ |
| 169 | #define HSP_LOW 0x00 /* 0 : HS pin output polarity is active low */ |
| 170 | #define HSP_HI 0x08 /* 1 : HS pin output polarity is active high.*/ |
| 171 | /* HS pin output control */ |
| 172 | #define HSSL_HACT 0x00 /* 0 : HACT */ |
| 173 | #define HSSL_HSYNC 0x01 /* 1 : HSYNC */ |
| 174 | #define HSSL_DVALID 0x02 /* 2 : DVALID */ |
| 175 | #define HSSL_HLOCK 0x03 /* 3 : HLOCK */ |
| 176 | #define HSSL_ASYNCW 0x04 /* 4 : ASYNCW */ |
| 177 | #define HSSL_ZERO 0x07 /* 7 : 0 */ |
| 178 | |
| 179 | /* ACNTL1 */ |
| 180 | #define SRESET 0x80 /* resets the device to its default state |
| 181 | * but all register content remain unchanged. |
| 182 | * This bit is self-resetting. |
| 183 | */ |
Kuninori Morimoto | 607e5ad | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 184 | #define ACNTL1_PDN_MASK 0x0e |
| 185 | #define CLK_PDN 0x08 /* system clock power down */ |
| 186 | #define Y_PDN 0x04 /* Luma ADC power down */ |
| 187 | #define C_PDN 0x02 /* Chroma ADC power down */ |
| 188 | |
| 189 | /* ACNTL2 */ |
| 190 | #define ACNTL2_PDN_MASK 0x40 |
| 191 | #define PLL_PDN 0x40 /* PLL power down */ |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 192 | |
| 193 | /* VBICNTL */ |
Guennadi Liakhovetski | 5d28d52 | 2009-12-11 11:15:05 -0300 | [diff] [blame] | 194 | |
| 195 | /* RTSEL : control the real time signal output from the MPOUT pin */ |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 196 | #define RTSEL_MASK 0x07 |
| 197 | #define RTSEL_VLOSS 0x00 /* 0000 = Video loss */ |
| 198 | #define RTSEL_HLOCK 0x01 /* 0001 = H-lock */ |
| 199 | #define RTSEL_SLOCK 0x02 /* 0010 = S-lock */ |
| 200 | #define RTSEL_VLOCK 0x03 /* 0011 = V-lock */ |
| 201 | #define RTSEL_MONO 0x04 /* 0100 = MONO */ |
| 202 | #define RTSEL_DET50 0x05 /* 0101 = DET50 */ |
| 203 | #define RTSEL_FIELD 0x06 /* 0110 = FIELD */ |
| 204 | #define RTSEL_RTCO 0x07 /* 0111 = RTCO ( Real Time Control ) */ |
| 205 | |
| 206 | /* |
| 207 | * structure |
| 208 | */ |
| 209 | |
| 210 | struct regval_list { |
| 211 | unsigned char reg_num; |
| 212 | unsigned char value; |
| 213 | }; |
| 214 | |
| 215 | struct tw9910_scale_ctrl { |
| 216 | char *name; |
| 217 | unsigned short width; |
| 218 | unsigned short height; |
| 219 | u16 hscale; |
| 220 | u16 vscale; |
| 221 | }; |
| 222 | |
| 223 | struct tw9910_cropping_ctrl { |
| 224 | u16 vdelay; |
| 225 | u16 vactive; |
| 226 | u16 hdelay; |
| 227 | u16 hactive; |
| 228 | }; |
| 229 | |
| 230 | struct tw9910_hsync_ctrl { |
| 231 | u16 start; |
| 232 | u16 end; |
| 233 | }; |
| 234 | |
| 235 | struct tw9910_priv { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 236 | struct v4l2_subdev subdev; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 237 | struct tw9910_video_info *info; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 238 | const struct tw9910_scale_ctrl *scale; |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 239 | u32 revision; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | /* |
| 243 | * register settings |
| 244 | */ |
| 245 | |
| 246 | #define ENDMARKER { 0xff, 0xff } |
| 247 | |
| 248 | static const struct regval_list tw9910_default_regs[] = |
| 249 | { |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 250 | { OUTCTR1, VSP_LO | VSSL_VVALID | HSP_HI | HSSL_HSYNC }, |
| 251 | ENDMARKER, |
| 252 | }; |
| 253 | |
| 254 | static const struct soc_camera_data_format tw9910_color_fmt[] = { |
| 255 | { |
| 256 | .name = "VYUY", |
| 257 | .fourcc = V4L2_PIX_FMT_VYUY, |
| 258 | .depth = 16, |
| 259 | .colorspace = V4L2_COLORSPACE_SMPTE170M, |
| 260 | } |
| 261 | }; |
| 262 | |
| 263 | static const struct tw9910_scale_ctrl tw9910_ntsc_scales[] = { |
| 264 | { |
| 265 | .name = "NTSC SQ", |
| 266 | .width = 640, |
| 267 | .height = 480, |
| 268 | .hscale = 0x0100, |
| 269 | .vscale = 0x0100, |
| 270 | }, |
| 271 | { |
| 272 | .name = "NTSC CCIR601", |
| 273 | .width = 720, |
| 274 | .height = 480, |
| 275 | .hscale = 0x0100, |
| 276 | .vscale = 0x0100, |
| 277 | }, |
| 278 | { |
| 279 | .name = "NTSC SQ (CIF)", |
| 280 | .width = 320, |
| 281 | .height = 240, |
| 282 | .hscale = 0x0200, |
| 283 | .vscale = 0x0200, |
| 284 | }, |
| 285 | { |
| 286 | .name = "NTSC CCIR601 (CIF)", |
| 287 | .width = 360, |
| 288 | .height = 240, |
| 289 | .hscale = 0x0200, |
| 290 | .vscale = 0x0200, |
| 291 | }, |
| 292 | { |
| 293 | .name = "NTSC SQ (QCIF)", |
| 294 | .width = 160, |
| 295 | .height = 120, |
| 296 | .hscale = 0x0400, |
| 297 | .vscale = 0x0400, |
| 298 | }, |
| 299 | { |
| 300 | .name = "NTSC CCIR601 (QCIF)", |
| 301 | .width = 180, |
| 302 | .height = 120, |
| 303 | .hscale = 0x0400, |
| 304 | .vscale = 0x0400, |
| 305 | }, |
| 306 | }; |
| 307 | |
| 308 | static const struct tw9910_scale_ctrl tw9910_pal_scales[] = { |
| 309 | { |
| 310 | .name = "PAL SQ", |
| 311 | .width = 768, |
| 312 | .height = 576, |
| 313 | .hscale = 0x0100, |
| 314 | .vscale = 0x0100, |
| 315 | }, |
| 316 | { |
| 317 | .name = "PAL CCIR601", |
| 318 | .width = 720, |
| 319 | .height = 576, |
| 320 | .hscale = 0x0100, |
| 321 | .vscale = 0x0100, |
| 322 | }, |
| 323 | { |
| 324 | .name = "PAL SQ (CIF)", |
| 325 | .width = 384, |
| 326 | .height = 288, |
| 327 | .hscale = 0x0200, |
| 328 | .vscale = 0x0200, |
| 329 | }, |
| 330 | { |
| 331 | .name = "PAL CCIR601 (CIF)", |
| 332 | .width = 360, |
| 333 | .height = 288, |
| 334 | .hscale = 0x0200, |
| 335 | .vscale = 0x0200, |
| 336 | }, |
| 337 | { |
| 338 | .name = "PAL SQ (QCIF)", |
| 339 | .width = 192, |
| 340 | .height = 144, |
| 341 | .hscale = 0x0400, |
| 342 | .vscale = 0x0400, |
| 343 | }, |
| 344 | { |
| 345 | .name = "PAL CCIR601 (QCIF)", |
| 346 | .width = 180, |
| 347 | .height = 144, |
| 348 | .hscale = 0x0400, |
| 349 | .vscale = 0x0400, |
| 350 | }, |
| 351 | }; |
| 352 | |
| 353 | static const struct tw9910_cropping_ctrl tw9910_cropping_ctrl = { |
| 354 | .vdelay = 0x0012, |
| 355 | .vactive = 0x00F0, |
| 356 | .hdelay = 0x0010, |
| 357 | .hactive = 0x02D0, |
| 358 | }; |
| 359 | |
| 360 | static const struct tw9910_hsync_ctrl tw9910_hsync_ctrl = { |
| 361 | .start = 0x0260, |
| 362 | .end = 0x0300, |
| 363 | }; |
| 364 | |
| 365 | /* |
| 366 | * general function |
| 367 | */ |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 368 | static struct tw9910_priv *to_tw9910(const struct i2c_client *client) |
| 369 | { |
Guennadi Liakhovetski | 96c7539 | 2009-08-25 11:53:23 -0300 | [diff] [blame] | 370 | return container_of(i2c_get_clientdata(client), struct tw9910_priv, |
| 371 | subdev); |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 372 | } |
| 373 | |
Kuninori Morimoto | 2079708 | 2009-12-11 11:34:51 -0300 | [diff] [blame] | 374 | static int tw9910_mask_set(struct i2c_client *client, u8 command, |
| 375 | u8 mask, u8 set) |
| 376 | { |
| 377 | s32 val = i2c_smbus_read_byte_data(client, command); |
| 378 | if (val < 0) |
| 379 | return val; |
| 380 | |
| 381 | val &= ~mask; |
| 382 | val |= set & mask; |
| 383 | |
| 384 | return i2c_smbus_write_byte_data(client, command, val); |
| 385 | } |
| 386 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 387 | static int tw9910_set_scale(struct i2c_client *client, |
| 388 | const struct tw9910_scale_ctrl *scale) |
| 389 | { |
| 390 | int ret; |
| 391 | |
| 392 | ret = i2c_smbus_write_byte_data(client, SCALE_HI, |
| 393 | (scale->vscale & 0x0F00) >> 4 | |
| 394 | (scale->hscale & 0x0F00) >> 8); |
| 395 | if (ret < 0) |
| 396 | return ret; |
| 397 | |
| 398 | ret = i2c_smbus_write_byte_data(client, HSCALE_LO, |
| 399 | scale->hscale & 0x00FF); |
| 400 | if (ret < 0) |
| 401 | return ret; |
| 402 | |
| 403 | ret = i2c_smbus_write_byte_data(client, VSCALE_LO, |
| 404 | scale->vscale & 0x00FF); |
| 405 | |
| 406 | return ret; |
| 407 | } |
| 408 | |
| 409 | static int tw9910_set_cropping(struct i2c_client *client, |
| 410 | const struct tw9910_cropping_ctrl *cropping) |
| 411 | { |
| 412 | int ret; |
| 413 | |
| 414 | ret = i2c_smbus_write_byte_data(client, CROP_HI, |
| 415 | (cropping->vdelay & 0x0300) >> 2 | |
| 416 | (cropping->vactive & 0x0300) >> 4 | |
| 417 | (cropping->hdelay & 0x0300) >> 6 | |
| 418 | (cropping->hactive & 0x0300) >> 8); |
| 419 | if (ret < 0) |
| 420 | return ret; |
| 421 | |
| 422 | ret = i2c_smbus_write_byte_data(client, VDELAY_LO, |
| 423 | cropping->vdelay & 0x00FF); |
| 424 | if (ret < 0) |
| 425 | return ret; |
| 426 | |
| 427 | ret = i2c_smbus_write_byte_data(client, VACTIVE_LO, |
| 428 | cropping->vactive & 0x00FF); |
| 429 | if (ret < 0) |
| 430 | return ret; |
| 431 | |
| 432 | ret = i2c_smbus_write_byte_data(client, HDELAY_LO, |
| 433 | cropping->hdelay & 0x00FF); |
| 434 | if (ret < 0) |
| 435 | return ret; |
| 436 | |
| 437 | ret = i2c_smbus_write_byte_data(client, HACTIVE_LO, |
| 438 | cropping->hactive & 0x00FF); |
| 439 | |
| 440 | return ret; |
| 441 | } |
| 442 | |
| 443 | static int tw9910_set_hsync(struct i2c_client *client, |
| 444 | const struct tw9910_hsync_ctrl *hsync) |
| 445 | { |
Kuninori Morimoto | faa5826 | 2009-12-11 11:34:51 -0300 | [diff] [blame^] | 446 | struct tw9910_priv *priv = to_tw9910(client); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 447 | int ret; |
| 448 | |
| 449 | /* bit 10 - 3 */ |
Kuninori Morimoto | faa5826 | 2009-12-11 11:34:51 -0300 | [diff] [blame^] | 450 | ret = i2c_smbus_write_byte_data(client, HSBEGIN, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 451 | (hsync->start & 0x07F8) >> 3); |
| 452 | if (ret < 0) |
| 453 | return ret; |
| 454 | |
| 455 | /* bit 10 - 3 */ |
| 456 | ret = i2c_smbus_write_byte_data(client, HSEND, |
| 457 | (hsync->end & 0x07F8) >> 3); |
| 458 | if (ret < 0) |
| 459 | return ret; |
| 460 | |
Kuninori Morimoto | faa5826 | 2009-12-11 11:34:51 -0300 | [diff] [blame^] | 461 | /* So far only revisions 0 and 1 have been seen */ |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 462 | /* bit 2 - 0 */ |
Kuninori Morimoto | faa5826 | 2009-12-11 11:34:51 -0300 | [diff] [blame^] | 463 | if (1 == priv->revision) |
| 464 | ret = tw9910_mask_set(client, HSLOWCTL, 0x77, |
| 465 | (hsync->start & 0x0007) << 4 | |
| 466 | (hsync->end & 0x0007)); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 467 | |
| 468 | return ret; |
| 469 | } |
| 470 | |
| 471 | static int tw9910_write_array(struct i2c_client *client, |
| 472 | const struct regval_list *vals) |
| 473 | { |
| 474 | while (vals->reg_num != 0xff) { |
| 475 | int ret = i2c_smbus_write_byte_data(client, |
| 476 | vals->reg_num, |
| 477 | vals->value); |
| 478 | if (ret < 0) |
| 479 | return ret; |
| 480 | vals++; |
| 481 | } |
| 482 | return 0; |
| 483 | } |
| 484 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 485 | static void tw9910_reset(struct i2c_client *client) |
| 486 | { |
Kuninori Morimoto | 607e5ad | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 487 | tw9910_mask_set(client, ACNTL1, SRESET, SRESET); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 488 | msleep(1); |
| 489 | } |
| 490 | |
Kuninori Morimoto | 607e5ad | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 491 | static int tw9910_power(struct i2c_client *client, int enable) |
| 492 | { |
| 493 | int ret; |
| 494 | u8 acntl1; |
| 495 | u8 acntl2; |
| 496 | |
| 497 | if (enable) { |
| 498 | acntl1 = 0; |
| 499 | acntl2 = 0; |
| 500 | } else { |
| 501 | acntl1 = CLK_PDN | Y_PDN | C_PDN; |
| 502 | acntl2 = PLL_PDN; |
| 503 | } |
| 504 | |
| 505 | ret = tw9910_mask_set(client, ACNTL1, ACNTL1_PDN_MASK, acntl1); |
| 506 | if (ret < 0) |
| 507 | return ret; |
| 508 | |
| 509 | return tw9910_mask_set(client, ACNTL2, ACNTL2_PDN_MASK, acntl2); |
| 510 | } |
| 511 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 512 | static const struct tw9910_scale_ctrl* |
| 513 | tw9910_select_norm(struct soc_camera_device *icd, u32 width, u32 height) |
| 514 | { |
| 515 | const struct tw9910_scale_ctrl *scale; |
| 516 | const struct tw9910_scale_ctrl *ret = NULL; |
| 517 | v4l2_std_id norm = icd->vdev->current_norm; |
| 518 | __u32 diff = 0xffffffff, tmp; |
| 519 | int size, i; |
| 520 | |
| 521 | if (norm & V4L2_STD_NTSC) { |
| 522 | scale = tw9910_ntsc_scales; |
| 523 | size = ARRAY_SIZE(tw9910_ntsc_scales); |
| 524 | } else if (norm & V4L2_STD_PAL) { |
| 525 | scale = tw9910_pal_scales; |
| 526 | size = ARRAY_SIZE(tw9910_pal_scales); |
| 527 | } else { |
| 528 | return NULL; |
| 529 | } |
| 530 | |
| 531 | for (i = 0; i < size; i++) { |
| 532 | tmp = abs(width - scale[i].width) + |
| 533 | abs(height - scale[i].height); |
| 534 | if (tmp < diff) { |
| 535 | diff = tmp; |
| 536 | ret = scale + i; |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | return ret; |
| 541 | } |
| 542 | |
| 543 | /* |
| 544 | * soc_camera_ops function |
| 545 | */ |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 546 | static int tw9910_s_stream(struct v4l2_subdev *sd, int enable) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 547 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 548 | struct i2c_client *client = sd->priv; |
| 549 | struct tw9910_priv *priv = to_tw9910(client); |
Kuninori Morimoto | 06f292e | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 550 | u8 val; |
Kuninori Morimoto | 607e5ad | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 551 | int ret; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 552 | |
Kuninori Morimoto | 06f292e | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 553 | if (!enable) { |
| 554 | switch (priv->revision) { |
| 555 | case 0: |
| 556 | val = OEN_TRI_SEL_ALL_OFF_r0; |
| 557 | break; |
| 558 | case 1: |
| 559 | val = OEN_TRI_SEL_ALL_OFF_r1; |
| 560 | break; |
| 561 | default: |
| 562 | dev_err(&client->dev, "un-supported revision\n"); |
| 563 | return -EINVAL; |
| 564 | } |
| 565 | } else { |
| 566 | val = OEN_TRI_SEL_ALL_ON; |
| 567 | |
| 568 | if (!priv->scale) { |
| 569 | dev_err(&client->dev, "norm select error\n"); |
| 570 | return -EPERM; |
| 571 | } |
| 572 | |
| 573 | dev_dbg(&client->dev, "%s %dx%d\n", |
| 574 | priv->scale->name, |
| 575 | priv->scale->width, |
| 576 | priv->scale->height); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 577 | } |
| 578 | |
Kuninori Morimoto | 607e5ad | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 579 | ret = tw9910_mask_set(client, OPFORM, OEN_TRI_SEL_MASK, val); |
| 580 | if (ret < 0) |
| 581 | return ret; |
| 582 | |
| 583 | return tw9910_power(client, enable); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 584 | } |
| 585 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 586 | static int tw9910_set_bus_param(struct soc_camera_device *icd, |
| 587 | unsigned long flags) |
| 588 | { |
| 589 | return 0; |
| 590 | } |
| 591 | |
| 592 | static unsigned long tw9910_query_bus_param(struct soc_camera_device *icd) |
| 593 | { |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 594 | struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd)); |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 595 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 596 | struct soc_camera_link *icl = to_soc_camera_link(icd); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 597 | unsigned long flags = SOCAM_PCLK_SAMPLE_RISING | SOCAM_MASTER | |
| 598 | SOCAM_VSYNC_ACTIVE_HIGH | SOCAM_HSYNC_ACTIVE_HIGH | |
| 599 | SOCAM_DATA_ACTIVE_HIGH | priv->info->buswidth; |
| 600 | |
| 601 | return soc_camera_apply_sensor_flags(icl, flags); |
| 602 | } |
| 603 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 604 | 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] | 605 | { |
| 606 | int ret = -EINVAL; |
| 607 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 608 | if (norm & (V4L2_STD_NTSC | V4L2_STD_PAL)) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 609 | ret = 0; |
| 610 | |
| 611 | return ret; |
| 612 | } |
| 613 | |
| 614 | static int tw9910_enum_input(struct soc_camera_device *icd, |
| 615 | struct v4l2_input *inp) |
| 616 | { |
| 617 | inp->type = V4L2_INPUT_TYPE_TUNER; |
| 618 | inp->std = V4L2_STD_UNKNOWN; |
| 619 | strcpy(inp->name, "Video"); |
| 620 | |
| 621 | return 0; |
| 622 | } |
| 623 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 624 | static int tw9910_g_chip_ident(struct v4l2_subdev *sd, |
| 625 | struct v4l2_dbg_chip_ident *id) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 626 | { |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 627 | struct i2c_client *client = sd->priv; |
| 628 | struct tw9910_priv *priv = to_tw9910(client); |
| 629 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 630 | id->ident = V4L2_IDENT_TW9910; |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 631 | id->revision = priv->revision; |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 632 | |
| 633 | return 0; |
| 634 | } |
| 635 | |
| 636 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 637 | static int tw9910_g_register(struct v4l2_subdev *sd, |
| 638 | struct v4l2_dbg_register *reg) |
| 639 | { |
| 640 | struct i2c_client *client = sd->priv; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 641 | int ret; |
| 642 | |
| 643 | if (reg->reg > 0xff) |
| 644 | return -EINVAL; |
| 645 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 646 | ret = i2c_smbus_read_byte_data(client, reg->reg); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 647 | if (ret < 0) |
| 648 | return ret; |
| 649 | |
Guennadi Liakhovetski | 5d28d52 | 2009-12-11 11:15:05 -0300 | [diff] [blame] | 650 | /* |
| 651 | * ret = int |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 652 | * reg->val = __u64 |
| 653 | */ |
| 654 | reg->val = (__u64)ret; |
| 655 | |
| 656 | return 0; |
| 657 | } |
| 658 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 659 | static int tw9910_s_register(struct v4l2_subdev *sd, |
| 660 | struct v4l2_dbg_register *reg) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 661 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 662 | struct i2c_client *client = sd->priv; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 663 | |
| 664 | if (reg->reg > 0xff || |
| 665 | reg->val > 0xff) |
| 666 | return -EINVAL; |
| 667 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 668 | return i2c_smbus_write_byte_data(client, reg->reg, reg->val); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 669 | } |
| 670 | #endif |
| 671 | |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 672 | 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] | 673 | { |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 674 | struct v4l2_rect *rect = &a->c; |
| 675 | struct i2c_client *client = sd->priv; |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 676 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 677 | struct soc_camera_device *icd = client->dev.platform_data; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 678 | int ret = -EINVAL; |
| 679 | u8 val; |
| 680 | |
| 681 | /* |
| 682 | * select suitable norm |
| 683 | */ |
| 684 | priv->scale = tw9910_select_norm(icd, rect->width, rect->height); |
| 685 | if (!priv->scale) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 686 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 687 | |
| 688 | /* |
| 689 | * reset hardware |
| 690 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 691 | tw9910_reset(client); |
| 692 | ret = tw9910_write_array(client, tw9910_default_regs); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 693 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 694 | goto tw9910_set_fmt_error; |
| 695 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 696 | /* |
| 697 | * set bus width |
| 698 | */ |
| 699 | val = 0x00; |
| 700 | if (SOCAM_DATAWIDTH_16 == priv->info->buswidth) |
| 701 | val = LEN; |
| 702 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 703 | ret = tw9910_mask_set(client, OPFORM, LEN, val); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 704 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 705 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 706 | |
| 707 | /* |
| 708 | * select MPOUT behavior |
| 709 | */ |
| 710 | switch (priv->info->mpout) { |
| 711 | case TW9910_MPO_VLOSS: |
| 712 | val = RTSEL_VLOSS; break; |
| 713 | case TW9910_MPO_HLOCK: |
| 714 | val = RTSEL_HLOCK; break; |
| 715 | case TW9910_MPO_SLOCK: |
| 716 | val = RTSEL_SLOCK; break; |
| 717 | case TW9910_MPO_VLOCK: |
| 718 | val = RTSEL_VLOCK; break; |
| 719 | case TW9910_MPO_MONO: |
| 720 | val = RTSEL_MONO; break; |
| 721 | case TW9910_MPO_DET50: |
| 722 | val = RTSEL_DET50; break; |
| 723 | case TW9910_MPO_FIELD: |
| 724 | val = RTSEL_FIELD; break; |
| 725 | case TW9910_MPO_RTCO: |
| 726 | val = RTSEL_RTCO; break; |
| 727 | default: |
| 728 | val = 0; |
| 729 | } |
| 730 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 731 | ret = tw9910_mask_set(client, VBICNTL, RTSEL_MASK, val); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 732 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 733 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 734 | |
| 735 | /* |
| 736 | * set scale |
| 737 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 738 | ret = tw9910_set_scale(client, priv->scale); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 739 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 740 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 741 | |
| 742 | /* |
| 743 | * set cropping |
| 744 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 745 | ret = tw9910_set_cropping(client, &tw9910_cropping_ctrl); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 746 | if (ret < 0) |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 747 | goto tw9910_set_fmt_error; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 748 | |
| 749 | /* |
| 750 | * set hsync |
| 751 | */ |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 752 | ret = tw9910_set_hsync(client, &tw9910_hsync_ctrl); |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 753 | if (ret < 0) |
| 754 | goto tw9910_set_fmt_error; |
| 755 | |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 756 | rect->width = priv->scale->width; |
| 757 | rect->height = priv->scale->height; |
| 758 | rect->left = 0; |
| 759 | rect->top = 0; |
| 760 | |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 761 | return ret; |
| 762 | |
| 763 | tw9910_set_fmt_error: |
| 764 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 765 | tw9910_reset(client); |
Kuninori Morimoto | 6d75611 | 2008-12-29 06:04:16 -0300 | [diff] [blame] | 766 | priv->scale = NULL; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 767 | |
| 768 | return ret; |
| 769 | } |
| 770 | |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 771 | static int tw9910_g_crop(struct v4l2_subdev *sd, struct v4l2_crop *a) |
| 772 | { |
| 773 | struct i2c_client *client = sd->priv; |
| 774 | struct tw9910_priv *priv = to_tw9910(client); |
| 775 | |
| 776 | if (!priv->scale) { |
| 777 | int ret; |
| 778 | struct v4l2_crop crop = { |
| 779 | .c = { |
| 780 | .left = 0, |
| 781 | .top = 0, |
| 782 | .width = 640, |
| 783 | .height = 480, |
| 784 | }, |
| 785 | }; |
| 786 | ret = tw9910_s_crop(sd, &crop); |
| 787 | if (ret < 0) |
| 788 | return ret; |
| 789 | } |
| 790 | |
| 791 | a->c.left = 0; |
| 792 | a->c.top = 0; |
| 793 | a->c.width = priv->scale->width; |
| 794 | a->c.height = priv->scale->height; |
| 795 | a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 796 | |
| 797 | return 0; |
| 798 | } |
| 799 | |
| 800 | static int tw9910_cropcap(struct v4l2_subdev *sd, struct v4l2_cropcap *a) |
| 801 | { |
| 802 | a->bounds.left = 0; |
| 803 | a->bounds.top = 0; |
| 804 | a->bounds.width = 768; |
| 805 | a->bounds.height = 576; |
| 806 | a->defrect.left = 0; |
| 807 | a->defrect.top = 0; |
| 808 | a->defrect.width = 640; |
| 809 | a->defrect.height = 480; |
| 810 | a->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 811 | a->pixelaspect.numerator = 1; |
| 812 | a->pixelaspect.denominator = 1; |
| 813 | |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | static int tw9910_g_fmt(struct v4l2_subdev *sd, struct v4l2_format *f) |
| 818 | { |
| 819 | struct i2c_client *client = sd->priv; |
| 820 | struct tw9910_priv *priv = to_tw9910(client); |
| 821 | struct v4l2_pix_format *pix = &f->fmt.pix; |
| 822 | |
| 823 | if (!priv->scale) { |
| 824 | int ret; |
| 825 | struct v4l2_crop crop = { |
| 826 | .c = { |
| 827 | .left = 0, |
| 828 | .top = 0, |
| 829 | .width = 640, |
| 830 | .height = 480, |
| 831 | }, |
| 832 | }; |
| 833 | ret = tw9910_s_crop(sd, &crop); |
| 834 | if (ret < 0) |
| 835 | return ret; |
| 836 | } |
| 837 | |
| 838 | f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 839 | |
| 840 | pix->width = priv->scale->width; |
| 841 | pix->height = priv->scale->height; |
| 842 | pix->pixelformat = V4L2_PIX_FMT_VYUY; |
| 843 | pix->colorspace = V4L2_COLORSPACE_SMPTE170M; |
| 844 | pix->field = V4L2_FIELD_INTERLACED; |
| 845 | |
| 846 | return 0; |
| 847 | } |
| 848 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 849 | 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] | 850 | { |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 851 | struct i2c_client *client = sd->priv; |
| 852 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 853 | struct v4l2_pix_format *pix = &f->fmt.pix; |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 854 | /* See tw9910_s_crop() - no proper cropping support */ |
| 855 | struct v4l2_crop a = { |
| 856 | .c = { |
| 857 | .left = 0, |
| 858 | .top = 0, |
| 859 | .width = pix->width, |
| 860 | .height = pix->height, |
| 861 | }, |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 862 | }; |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 863 | int i, ret; |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 864 | |
| 865 | /* |
| 866 | * check color format |
| 867 | */ |
| 868 | for (i = 0; i < ARRAY_SIZE(tw9910_color_fmt); i++) |
| 869 | if (pix->pixelformat == tw9910_color_fmt[i].fourcc) |
| 870 | break; |
| 871 | |
| 872 | if (i == ARRAY_SIZE(tw9910_color_fmt)) |
| 873 | return -EINVAL; |
| 874 | |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 875 | ret = tw9910_s_crop(sd, &a); |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 876 | if (!ret) { |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 877 | pix->width = priv->scale->width; |
| 878 | pix->height = priv->scale->height; |
Guennadi Liakhovetski | 123ab62 | 2009-08-25 11:46:52 -0300 | [diff] [blame] | 879 | } |
| 880 | return ret; |
Guennadi Liakhovetski | 09e231b | 2009-03-13 06:08:20 -0300 | [diff] [blame] | 881 | } |
| 882 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 883 | 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] | 884 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 885 | struct i2c_client *client = sd->priv; |
| 886 | struct soc_camera_device *icd = client->dev.platform_data; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 887 | struct v4l2_pix_format *pix = &f->fmt.pix; |
| 888 | const struct tw9910_scale_ctrl *scale; |
| 889 | |
| 890 | if (V4L2_FIELD_ANY == pix->field) { |
| 891 | pix->field = V4L2_FIELD_INTERLACED; |
| 892 | } else if (V4L2_FIELD_INTERLACED != pix->field) { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 893 | dev_err(&client->dev, "Field type invalid.\n"); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 894 | return -EINVAL; |
| 895 | } |
| 896 | |
| 897 | /* |
| 898 | * select suitable norm |
| 899 | */ |
| 900 | scale = tw9910_select_norm(icd, pix->width, pix->height); |
| 901 | if (!scale) |
| 902 | return -EINVAL; |
| 903 | |
| 904 | pix->width = scale->width; |
| 905 | pix->height = scale->height; |
| 906 | |
| 907 | return 0; |
| 908 | } |
| 909 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 910 | static int tw9910_video_probe(struct soc_camera_device *icd, |
| 911 | struct i2c_client *client) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 912 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 913 | struct tw9910_priv *priv = to_tw9910(client); |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 914 | s32 id; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 915 | |
| 916 | /* |
| 917 | * We must have a parent by now. And it cannot be a wrong one. |
| 918 | * So this entire test is completely redundant. |
| 919 | */ |
| 920 | if (!icd->dev.parent || |
| 921 | to_soc_camera_host(icd->dev.parent)->nr != icd->iface) |
| 922 | return -ENODEV; |
| 923 | |
| 924 | /* |
| 925 | * tw9910 only use 8 or 16 bit bus width |
| 926 | */ |
| 927 | if (SOCAM_DATAWIDTH_16 != priv->info->buswidth && |
| 928 | SOCAM_DATAWIDTH_8 != priv->info->buswidth) { |
Guennadi Liakhovetski | 85f8be6 | 2009-08-25 11:47:00 -0300 | [diff] [blame] | 929 | dev_err(&client->dev, "bus width error\n"); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 930 | return -ENODEV; |
| 931 | } |
| 932 | |
| 933 | icd->formats = tw9910_color_fmt; |
| 934 | icd->num_formats = ARRAY_SIZE(tw9910_color_fmt); |
| 935 | |
| 936 | /* |
| 937 | * check and show Product ID |
Kuninori Morimoto | 4a4bc5e | 2009-12-11 11:06:00 -0300 | [diff] [blame] | 938 | * So far only revisions 0 and 1 have been seen |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 939 | */ |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 940 | id = i2c_smbus_read_byte_data(client, ID); |
| 941 | priv->revision = GET_REV(id); |
| 942 | id = GET_ID(id); |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 943 | |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 944 | if (0x0B != id || |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 945 | 0x01 < priv->revision) { |
Guennadi Liakhovetski | 85f8be6 | 2009-08-25 11:47:00 -0300 | [diff] [blame] | 946 | dev_err(&client->dev, |
Kuninori Morimoto | 6d74e5f | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 947 | "Product ID error %x:%x\n", |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 948 | id, priv->revision); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 949 | return -ENODEV; |
| 950 | } |
| 951 | |
Guennadi Liakhovetski | 85f8be6 | 2009-08-25 11:47:00 -0300 | [diff] [blame] | 952 | dev_info(&client->dev, |
Kuninori Morimoto | 88a67c5 | 2009-12-11 11:34:50 -0300 | [diff] [blame] | 953 | "tw9910 Product ID %0x:%0x\n", id, priv->revision); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 954 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 955 | icd->vdev->tvnorms = V4L2_STD_NTSC | V4L2_STD_PAL; |
| 956 | icd->vdev->current_norm = V4L2_STD_NTSC; |
| 957 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 958 | return 0; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 959 | } |
| 960 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 961 | static struct soc_camera_ops tw9910_ops = { |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 962 | .set_bus_param = tw9910_set_bus_param, |
| 963 | .query_bus_param = tw9910_query_bus_param, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 964 | .enum_input = tw9910_enum_input, |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 965 | }; |
| 966 | |
| 967 | static struct v4l2_subdev_core_ops tw9910_subdev_core_ops = { |
| 968 | .g_chip_ident = tw9910_g_chip_ident, |
| 969 | .s_std = tw9910_s_std, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 970 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 971 | .g_register = tw9910_g_register, |
| 972 | .s_register = tw9910_s_register, |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 973 | #endif |
| 974 | }; |
| 975 | |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 976 | static struct v4l2_subdev_video_ops tw9910_subdev_video_ops = { |
| 977 | .s_stream = tw9910_s_stream, |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 978 | .g_fmt = tw9910_g_fmt, |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 979 | .s_fmt = tw9910_s_fmt, |
| 980 | .try_fmt = tw9910_try_fmt, |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 981 | .cropcap = tw9910_cropcap, |
| 982 | .g_crop = tw9910_g_crop, |
Guennadi Liakhovetski | 08590b9 | 2009-08-25 11:46:54 -0300 | [diff] [blame] | 983 | .s_crop = tw9910_s_crop, |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 984 | }; |
| 985 | |
| 986 | static struct v4l2_subdev_ops tw9910_subdev_ops = { |
| 987 | .core = &tw9910_subdev_core_ops, |
| 988 | .video = &tw9910_subdev_video_ops, |
| 989 | }; |
| 990 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 991 | /* |
| 992 | * i2c_driver function |
| 993 | */ |
| 994 | |
| 995 | static int tw9910_probe(struct i2c_client *client, |
| 996 | const struct i2c_device_id *did) |
| 997 | |
| 998 | { |
| 999 | struct tw9910_priv *priv; |
| 1000 | struct tw9910_video_info *info; |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1001 | struct soc_camera_device *icd = client->dev.platform_data; |
| 1002 | struct i2c_adapter *adapter = |
| 1003 | to_i2c_adapter(client->dev.parent); |
| 1004 | struct soc_camera_link *icl; |
Guennadi Liakhovetski | 6a6c878 | 2009-08-25 11:50:46 -0300 | [diff] [blame] | 1005 | int ret; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1006 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1007 | if (!icd) { |
| 1008 | dev_err(&client->dev, "TW9910: missing soc-camera data!\n"); |
| 1009 | return -EINVAL; |
| 1010 | } |
| 1011 | |
| 1012 | icl = to_soc_camera_link(icd); |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 1013 | if (!icl || !icl->priv) |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1014 | return -EINVAL; |
| 1015 | |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 1016 | info = icl->priv; |
Guennadi Liakhovetski | 0a861e9 | 2009-05-12 15:13:32 +0000 | [diff] [blame] | 1017 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1018 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) { |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1019 | dev_err(&client->dev, |
| 1020 | "I2C-Adapter doesn't support " |
| 1021 | "I2C_FUNC_SMBUS_BYTE_DATA\n"); |
| 1022 | return -EIO; |
| 1023 | } |
| 1024 | |
| 1025 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| 1026 | if (!priv) |
| 1027 | return -ENOMEM; |
| 1028 | |
| 1029 | priv->info = info; |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 1030 | |
| 1031 | v4l2_i2c_subdev_init(&priv->subdev, client, &tw9910_subdev_ops); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1032 | |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1033 | icd->ops = &tw9910_ops; |
Guennadi Liakhovetski | 0f44829 | 2009-12-11 11:31:35 -0300 | [diff] [blame] | 1034 | icd->iface = icl->bus_id; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1035 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1036 | ret = tw9910_video_probe(icd, client); |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1037 | if (ret) { |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1038 | icd->ops = NULL; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1039 | i2c_set_clientdata(client, NULL); |
| 1040 | kfree(priv); |
| 1041 | } |
| 1042 | |
| 1043 | return ret; |
| 1044 | } |
| 1045 | |
| 1046 | static int tw9910_remove(struct i2c_client *client) |
| 1047 | { |
Guennadi Liakhovetski | 979ea1d | 2009-08-25 11:43:33 -0300 | [diff] [blame] | 1048 | struct tw9910_priv *priv = to_tw9910(client); |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1049 | struct soc_camera_device *icd = client->dev.platform_data; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1050 | |
Guennadi Liakhovetski | 40e2e09 | 2009-08-25 11:28:22 -0300 | [diff] [blame] | 1051 | icd->ops = NULL; |
Kuninori Morimoto | ed922a8 | 2008-12-29 06:04:06 -0300 | [diff] [blame] | 1052 | i2c_set_clientdata(client, NULL); |
| 1053 | kfree(priv); |
| 1054 | return 0; |
| 1055 | } |
| 1056 | |
| 1057 | static const struct i2c_device_id tw9910_id[] = { |
| 1058 | { "tw9910", 0 }, |
| 1059 | { } |
| 1060 | }; |
| 1061 | MODULE_DEVICE_TABLE(i2c, tw9910_id); |
| 1062 | |
| 1063 | static struct i2c_driver tw9910_i2c_driver = { |
| 1064 | .driver = { |
| 1065 | .name = "tw9910", |
| 1066 | }, |
| 1067 | .probe = tw9910_probe, |
| 1068 | .remove = tw9910_remove, |
| 1069 | .id_table = tw9910_id, |
| 1070 | }; |
| 1071 | |
| 1072 | /* |
| 1073 | * module function |
| 1074 | */ |
| 1075 | static int __init tw9910_module_init(void) |
| 1076 | { |
| 1077 | return i2c_add_driver(&tw9910_i2c_driver); |
| 1078 | } |
| 1079 | |
| 1080 | static void __exit tw9910_module_exit(void) |
| 1081 | { |
| 1082 | i2c_del_driver(&tw9910_i2c_driver); |
| 1083 | } |
| 1084 | |
| 1085 | module_init(tw9910_module_init); |
| 1086 | module_exit(tw9910_module_exit); |
| 1087 | |
| 1088 | MODULE_DESCRIPTION("SoC Camera driver for tw9910"); |
| 1089 | MODULE_AUTHOR("Kuninori Morimoto"); |
| 1090 | MODULE_LICENSE("GPL v2"); |