blob: 9e3a909e0a004daba37a8810cf3bc3d0cd1fe65e [file] [log] [blame]
Hans de Goedea511ba92009-10-16 07:13:07 -03001/**
2 *
3 * GSPCA sub driver for W996[78]CF JPEG USB Dual Mode Camera Chip.
4 *
5 * Copyright (C) 2009 Hans de Goede <hdegoede@redhat.com>
6 *
7 * This module is adapted from the in kernel v4l1 w9968cf driver:
8 *
9 * Copyright (C) 2002-2004 by Luca Risolia <luca.risolia@studio.unibo.it>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 */
26
27/* Note this is not a stand alone driver, it gets included in ov519.c, this
28 is a bit of a hack, but it needs the driver code for a lot of different
29 ov sensors which is already present in ov519.c (the old v4l1 driver used
30 the ovchipcam framework). When we have the time we really should move
31 the sensor drivers to v4l2 sub drivers, and properly split of this
32 driver from ov519.c */
33
Joe Perches133a9fe2011-08-21 19:56:57 -030034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Hans de Goedea511ba92009-10-16 07:13:07 -030036#define W9968CF_I2C_BUS_DELAY 4 /* delay in us for I2C bit r/w operations */
37
Jean-François Moine9a731a32010-06-04 05:26:42 -030038#define Y_QUANTABLE (&sd->jpeg_hdr[JPEG_QT0_OFFSET])
39#define UV_QUANTABLE (&sd->jpeg_hdr[JPEG_QT1_OFFSET])
Hans de Goedea511ba92009-10-16 07:13:07 -030040
41static const struct v4l2_pix_format w9968cf_vga_mode[] = {
42 {160, 120, V4L2_PIX_FMT_UYVY, V4L2_FIELD_NONE,
43 .bytesperline = 160 * 2,
44 .sizeimage = 160 * 120 * 2,
45 .colorspace = V4L2_COLORSPACE_JPEG},
46 {176, 144, V4L2_PIX_FMT_UYVY, V4L2_FIELD_NONE,
47 .bytesperline = 176 * 2,
48 .sizeimage = 176 * 144 * 2,
49 .colorspace = V4L2_COLORSPACE_JPEG},
Hans de Goede79b35902009-10-19 06:08:01 -030050 {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
Hans de Goedea511ba92009-10-16 07:13:07 -030051 .bytesperline = 320 * 2,
52 .sizeimage = 320 * 240 * 2,
53 .colorspace = V4L2_COLORSPACE_JPEG},
Hans de Goede79b35902009-10-19 06:08:01 -030054 {352, 288, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
Hans de Goedea511ba92009-10-16 07:13:07 -030055 .bytesperline = 352 * 2,
56 .sizeimage = 352 * 288 * 2,
57 .colorspace = V4L2_COLORSPACE_JPEG},
Hans de Goede79b35902009-10-19 06:08:01 -030058 {640, 480, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE,
Hans de Goedea511ba92009-10-16 07:13:07 -030059 .bytesperline = 640 * 2,
60 .sizeimage = 640 * 480 * 2,
Hans de Goede79b35902009-10-19 06:08:01 -030061 .colorspace = V4L2_COLORSPACE_JPEG},
Hans de Goedea511ba92009-10-16 07:13:07 -030062};
63
Jean-François Moinef8f20182010-11-12 07:54:02 -030064static void reg_w(struct sd *sd, u16 index, u16 value);
Hans de Goedea511ba92009-10-16 07:13:07 -030065
66/*--------------------------------------------------------------------------
67 Write 64-bit data to the fast serial bus registers.
68 Return 0 on success, -1 otherwise.
69 --------------------------------------------------------------------------*/
Jean-François Moinef8f20182010-11-12 07:54:02 -030070static void w9968cf_write_fsb(struct sd *sd, u16* data)
Hans de Goedea511ba92009-10-16 07:13:07 -030071{
Jean-François Moine780e3122010-10-19 04:29:10 -030072 struct usb_device *udev = sd->gspca_dev.dev;
Hans de Goedea511ba92009-10-16 07:13:07 -030073 u16 value;
74 int ret;
75
Jean-François Moinef8f20182010-11-12 07:54:02 -030076 if (sd->gspca_dev.usb_err < 0)
77 return;
78
Hans de Goedea511ba92009-10-16 07:13:07 -030079 value = *data++;
80 memcpy(sd->gspca_dev.usb_buf, data, 6);
81
82 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0,
83 USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE,
84 value, 0x06, sd->gspca_dev.usb_buf, 6, 500);
85 if (ret < 0) {
Joe Perches133a9fe2011-08-21 19:56:57 -030086 pr_err("Write FSB registers failed (%d)\n", ret);
Jean-François Moinef8f20182010-11-12 07:54:02 -030087 sd->gspca_dev.usb_err = ret;
Hans de Goedea511ba92009-10-16 07:13:07 -030088 }
Hans de Goedea511ba92009-10-16 07:13:07 -030089}
90
91/*--------------------------------------------------------------------------
92 Write data to the serial bus control register.
93 Return 0 on success, a negative number otherwise.
94 --------------------------------------------------------------------------*/
Jean-François Moinef8f20182010-11-12 07:54:02 -030095static void w9968cf_write_sb(struct sd *sd, u16 value)
Hans de Goedea511ba92009-10-16 07:13:07 -030096{
97 int ret;
98
Jean-François Moinef8f20182010-11-12 07:54:02 -030099 if (sd->gspca_dev.usb_err < 0)
100 return;
101
Hans de Goedea511ba92009-10-16 07:13:07 -0300102 /* We don't use reg_w here, as that would cause all writes when
103 bitbanging i2c to be logged, making the logs impossible to read */
104 ret = usb_control_msg(sd->gspca_dev.dev,
105 usb_sndctrlpipe(sd->gspca_dev.dev, 0),
106 0,
107 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
108 value, 0x01, NULL, 0, 500);
109
110 udelay(W9968CF_I2C_BUS_DELAY);
111
112 if (ret < 0) {
Joe Perches133a9fe2011-08-21 19:56:57 -0300113 pr_err("Write SB reg [01] %04x failed\n", value);
Jean-François Moinef8f20182010-11-12 07:54:02 -0300114 sd->gspca_dev.usb_err = ret;
Hans de Goedea511ba92009-10-16 07:13:07 -0300115 }
Hans de Goedea511ba92009-10-16 07:13:07 -0300116}
117
118/*--------------------------------------------------------------------------
119 Read data from the serial bus control register.
120 Return 0 on success, a negative number otherwise.
121 --------------------------------------------------------------------------*/
122static int w9968cf_read_sb(struct sd *sd)
123{
124 int ret;
125
Jean-François Moinef8f20182010-11-12 07:54:02 -0300126 if (sd->gspca_dev.usb_err < 0)
127 return -1;
128
Hans de Goedea511ba92009-10-16 07:13:07 -0300129 /* We don't use reg_r here, as the w9968cf is special and has 16
130 bit registers instead of 8 bit */
131 ret = usb_control_msg(sd->gspca_dev.dev,
132 usb_rcvctrlpipe(sd->gspca_dev.dev, 0),
133 1,
134 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
135 0, 0x01, sd->gspca_dev.usb_buf, 2, 500);
Jean-François Moinef8f20182010-11-12 07:54:02 -0300136 if (ret >= 0) {
Hans de Goedea511ba92009-10-16 07:13:07 -0300137 ret = sd->gspca_dev.usb_buf[0] |
138 (sd->gspca_dev.usb_buf[1] << 8);
Jean-François Moinef8f20182010-11-12 07:54:02 -0300139 } else {
Joe Perches133a9fe2011-08-21 19:56:57 -0300140 pr_err("Read SB reg [01] failed\n");
Jean-François Moinef8f20182010-11-12 07:54:02 -0300141 sd->gspca_dev.usb_err = ret;
142 }
Hans de Goedea511ba92009-10-16 07:13:07 -0300143
144 udelay(W9968CF_I2C_BUS_DELAY);
145
146 return ret;
147}
148
149/*--------------------------------------------------------------------------
150 Upload quantization tables for the JPEG compression.
151 This function is called by w9968cf_start_transfer().
152 Return 0 on success, a negative number otherwise.
153 --------------------------------------------------------------------------*/
Jean-François Moinef8f20182010-11-12 07:54:02 -0300154static void w9968cf_upload_quantizationtables(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300155{
156 u16 a, b;
Jean-François Moinef8f20182010-11-12 07:54:02 -0300157 int i, j;
Hans de Goedea511ba92009-10-16 07:13:07 -0300158
Jean-François Moinef8f20182010-11-12 07:54:02 -0300159 reg_w(sd, 0x39, 0x0010); /* JPEG clock enable */
Hans de Goedea511ba92009-10-16 07:13:07 -0300160
161 for (i = 0, j = 0; i < 32; i++, j += 2) {
Jean-François Moine87bae742010-11-12 05:31:34 -0300162 a = Y_QUANTABLE[j] | ((unsigned)(Y_QUANTABLE[j + 1]) << 8);
163 b = UV_QUANTABLE[j] | ((unsigned)(UV_QUANTABLE[j + 1]) << 8);
164 reg_w(sd, 0x40 + i, a);
165 reg_w(sd, 0x60 + i, b);
Hans de Goedea511ba92009-10-16 07:13:07 -0300166 }
Jean-François Moinef8f20182010-11-12 07:54:02 -0300167 reg_w(sd, 0x39, 0x0012); /* JPEG encoder enable */
Hans de Goedea511ba92009-10-16 07:13:07 -0300168}
169
170/****************************************************************************
171 * Low-level I2C I/O functions. *
172 * The adapter supports the following I2C transfer functions: *
173 * i2c_adap_fastwrite_byte_data() (at 400 kHz bit frequency only) *
174 * i2c_adap_read_byte_data() *
175 * i2c_adap_read_byte() *
176 ****************************************************************************/
177
Jean-François Moinef8f20182010-11-12 07:54:02 -0300178static void w9968cf_smbus_start(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300179{
Jean-François Moinef8f20182010-11-12 07:54:02 -0300180 w9968cf_write_sb(sd, 0x0011); /* SDE=1, SDA=0, SCL=1 */
181 w9968cf_write_sb(sd, 0x0010); /* SDE=1, SDA=0, SCL=0 */
Hans de Goedea511ba92009-10-16 07:13:07 -0300182}
183
Jean-François Moinef8f20182010-11-12 07:54:02 -0300184static void w9968cf_smbus_stop(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300185{
Jean-François Moinef8f20182010-11-12 07:54:02 -0300186 w9968cf_write_sb(sd, 0x0010); /* SDE=1, SDA=0, SCL=0 */
187 w9968cf_write_sb(sd, 0x0011); /* SDE=1, SDA=0, SCL=1 */
188 w9968cf_write_sb(sd, 0x0013); /* SDE=1, SDA=1, SCL=1 */
Hans de Goedea511ba92009-10-16 07:13:07 -0300189}
190
Jean-François Moinef8f20182010-11-12 07:54:02 -0300191static void w9968cf_smbus_write_byte(struct sd *sd, u8 v)
Hans de Goedea511ba92009-10-16 07:13:07 -0300192{
193 u8 bit;
Jean-François Moinef8f20182010-11-12 07:54:02 -0300194 int sda;
Hans de Goedea511ba92009-10-16 07:13:07 -0300195
196 for (bit = 0 ; bit < 8 ; bit++) {
197 sda = (v & 0x80) ? 2 : 0;
198 v <<= 1;
199 /* SDE=1, SDA=sda, SCL=0 */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300200 w9968cf_write_sb(sd, 0x10 | sda);
Hans de Goedea511ba92009-10-16 07:13:07 -0300201 /* SDE=1, SDA=sda, SCL=1 */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300202 w9968cf_write_sb(sd, 0x11 | sda);
Hans de Goedea511ba92009-10-16 07:13:07 -0300203 /* SDE=1, SDA=sda, SCL=0 */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300204 w9968cf_write_sb(sd, 0x10 | sda);
Hans de Goedea511ba92009-10-16 07:13:07 -0300205 }
Hans de Goedea511ba92009-10-16 07:13:07 -0300206}
207
Jean-François Moinef8f20182010-11-12 07:54:02 -0300208static void w9968cf_smbus_read_byte(struct sd *sd, u8 *v)
Hans de Goedea511ba92009-10-16 07:13:07 -0300209{
210 u8 bit;
Hans de Goedea511ba92009-10-16 07:13:07 -0300211
212 /* No need to ensure SDA is high as we are always called after
213 read_ack which ends with SDA high */
214 *v = 0;
215 for (bit = 0 ; bit < 8 ; bit++) {
216 *v <<= 1;
217 /* SDE=1, SDA=1, SCL=1 */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300218 w9968cf_write_sb(sd, 0x0013);
Hans de Goedea511ba92009-10-16 07:13:07 -0300219 *v |= (w9968cf_read_sb(sd) & 0x0008) ? 1 : 0;
220 /* SDE=1, SDA=1, SCL=0 */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300221 w9968cf_write_sb(sd, 0x0012);
Hans de Goedea511ba92009-10-16 07:13:07 -0300222 }
Hans de Goedea511ba92009-10-16 07:13:07 -0300223}
224
Jean-François Moinef8f20182010-11-12 07:54:02 -0300225static void w9968cf_smbus_write_nack(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300226{
Hans de Goedea511ba92009-10-16 07:13:07 -0300227 /* No need to ensure SDA is high as we are always called after
228 read_byte which ends with SDA high */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300229 w9968cf_write_sb(sd, 0x0013); /* SDE=1, SDA=1, SCL=1 */
230 w9968cf_write_sb(sd, 0x0012); /* SDE=1, SDA=1, SCL=0 */
Hans de Goedea511ba92009-10-16 07:13:07 -0300231}
232
Jean-François Moinef8f20182010-11-12 07:54:02 -0300233static void w9968cf_smbus_read_ack(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300234{
Jean-François Moinef8f20182010-11-12 07:54:02 -0300235 int sda;
Hans de Goedea511ba92009-10-16 07:13:07 -0300236
237 /* Ensure SDA is high before raising clock to avoid a spurious stop */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300238 w9968cf_write_sb(sd, 0x0012); /* SDE=1, SDA=1, SCL=0 */
239 w9968cf_write_sb(sd, 0x0013); /* SDE=1, SDA=1, SCL=1 */
Hans de Goedea511ba92009-10-16 07:13:07 -0300240 sda = w9968cf_read_sb(sd);
Jean-François Moinef8f20182010-11-12 07:54:02 -0300241 w9968cf_write_sb(sd, 0x0012); /* SDE=1, SDA=1, SCL=0 */
242 if (sda >= 0 && (sda & 0x08)) {
Hans de Goedea511ba92009-10-16 07:13:07 -0300243 PDEBUG(D_USBI, "Did not receive i2c ACK");
Jean-François Moinef8f20182010-11-12 07:54:02 -0300244 sd->gspca_dev.usb_err = -EIO;
Hans de Goedea511ba92009-10-16 07:13:07 -0300245 }
Hans de Goedea511ba92009-10-16 07:13:07 -0300246}
247
248/* SMBus protocol: S Addr Wr [A] Subaddr [A] Value [A] P */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300249static void w9968cf_i2c_w(struct sd *sd, u8 reg, u8 value)
Hans de Goedea511ba92009-10-16 07:13:07 -0300250{
251 u16* data = (u16 *)sd->gspca_dev.usb_buf;
Hans de Goedea511ba92009-10-16 07:13:07 -0300252
253 data[0] = 0x082f | ((sd->sensor_addr & 0x80) ? 0x1500 : 0x0);
254 data[0] |= (sd->sensor_addr & 0x40) ? 0x4000 : 0x0;
255 data[1] = 0x2082 | ((sd->sensor_addr & 0x40) ? 0x0005 : 0x0);
256 data[1] |= (sd->sensor_addr & 0x20) ? 0x0150 : 0x0;
257 data[1] |= (sd->sensor_addr & 0x10) ? 0x5400 : 0x0;
258 data[2] = 0x8208 | ((sd->sensor_addr & 0x08) ? 0x0015 : 0x0);
259 data[2] |= (sd->sensor_addr & 0x04) ? 0x0540 : 0x0;
260 data[2] |= (sd->sensor_addr & 0x02) ? 0x5000 : 0x0;
261 data[3] = 0x1d20 | ((sd->sensor_addr & 0x02) ? 0x0001 : 0x0);
262 data[3] |= (sd->sensor_addr & 0x01) ? 0x0054 : 0x0;
263
Jean-François Moinef8f20182010-11-12 07:54:02 -0300264 w9968cf_write_fsb(sd, data);
Hans de Goedea511ba92009-10-16 07:13:07 -0300265
266 data[0] = 0x8208 | ((reg & 0x80) ? 0x0015 : 0x0);
267 data[0] |= (reg & 0x40) ? 0x0540 : 0x0;
268 data[0] |= (reg & 0x20) ? 0x5000 : 0x0;
269 data[1] = 0x0820 | ((reg & 0x20) ? 0x0001 : 0x0);
270 data[1] |= (reg & 0x10) ? 0x0054 : 0x0;
271 data[1] |= (reg & 0x08) ? 0x1500 : 0x0;
272 data[1] |= (reg & 0x04) ? 0x4000 : 0x0;
273 data[2] = 0x2082 | ((reg & 0x04) ? 0x0005 : 0x0);
274 data[2] |= (reg & 0x02) ? 0x0150 : 0x0;
275 data[2] |= (reg & 0x01) ? 0x5400 : 0x0;
276 data[3] = 0x001d;
277
Jean-François Moinef8f20182010-11-12 07:54:02 -0300278 w9968cf_write_fsb(sd, data);
Hans de Goedea511ba92009-10-16 07:13:07 -0300279
280 data[0] = 0x8208 | ((value & 0x80) ? 0x0015 : 0x0);
281 data[0] |= (value & 0x40) ? 0x0540 : 0x0;
282 data[0] |= (value & 0x20) ? 0x5000 : 0x0;
283 data[1] = 0x0820 | ((value & 0x20) ? 0x0001 : 0x0);
284 data[1] |= (value & 0x10) ? 0x0054 : 0x0;
285 data[1] |= (value & 0x08) ? 0x1500 : 0x0;
286 data[1] |= (value & 0x04) ? 0x4000 : 0x0;
287 data[2] = 0x2082 | ((value & 0x04) ? 0x0005 : 0x0);
288 data[2] |= (value & 0x02) ? 0x0150 : 0x0;
289 data[2] |= (value & 0x01) ? 0x5400 : 0x0;
290 data[3] = 0xfe1d;
291
Jean-François Moinef8f20182010-11-12 07:54:02 -0300292 w9968cf_write_fsb(sd, data);
Hans de Goedea511ba92009-10-16 07:13:07 -0300293
Jean-François Moinef8f20182010-11-12 07:54:02 -0300294 PDEBUG(D_USBO, "i2c 0x%02x -> [0x%02x]", value, reg);
Hans de Goedea511ba92009-10-16 07:13:07 -0300295}
296
297/* SMBus protocol: S Addr Wr [A] Subaddr [A] P S Addr+1 Rd [A] [Value] NA P */
298static int w9968cf_i2c_r(struct sd *sd, u8 reg)
299{
300 int ret = 0;
301 u8 value;
302
303 /* Fast serial bus data control disable */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300304 w9968cf_write_sb(sd, 0x0013); /* don't change ! */
Hans de Goedea511ba92009-10-16 07:13:07 -0300305
Jean-François Moinef8f20182010-11-12 07:54:02 -0300306 w9968cf_smbus_start(sd);
307 w9968cf_smbus_write_byte(sd, sd->sensor_addr);
308 w9968cf_smbus_read_ack(sd);
309 w9968cf_smbus_write_byte(sd, reg);
310 w9968cf_smbus_read_ack(sd);
311 w9968cf_smbus_stop(sd);
312 w9968cf_smbus_start(sd);
313 w9968cf_smbus_write_byte(sd, sd->sensor_addr + 1);
314 w9968cf_smbus_read_ack(sd);
315 w9968cf_smbus_read_byte(sd, &value);
Hans de Goedea511ba92009-10-16 07:13:07 -0300316 /* signal we don't want to read anymore, the v4l1 driver used to
317 send an ack here which is very wrong! (and then fixed
318 the issues this gave by retrying reads) */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300319 w9968cf_smbus_write_nack(sd);
320 w9968cf_smbus_stop(sd);
Hans de Goedea511ba92009-10-16 07:13:07 -0300321
322 /* Fast serial bus data control re-enable */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300323 w9968cf_write_sb(sd, 0x0030);
Hans de Goedea511ba92009-10-16 07:13:07 -0300324
Jean-François Moinef8f20182010-11-12 07:54:02 -0300325 if (sd->gspca_dev.usb_err >= 0) {
Hans de Goedea511ba92009-10-16 07:13:07 -0300326 ret = value;
327 PDEBUG(D_USBI, "i2c [0x%02X] -> 0x%02X", reg, value);
328 } else
329 PDEBUG(D_ERR, "i2c read [0x%02x] failed", reg);
330
331 return ret;
332}
333
Hans de Goedea511ba92009-10-16 07:13:07 -0300334/*--------------------------------------------------------------------------
335 Turn on the LED on some webcams. A beep should be heard too.
336 Return 0 on success, a negative number otherwise.
337 --------------------------------------------------------------------------*/
Jean-François Moinef8f20182010-11-12 07:54:02 -0300338static void w9968cf_configure(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300339{
Jean-François Moinef8f20182010-11-12 07:54:02 -0300340 reg_w(sd, 0x00, 0xff00); /* power-down */
341 reg_w(sd, 0x00, 0xbf17); /* reset everything */
342 reg_w(sd, 0x00, 0xbf10); /* normal operation */
343 reg_w(sd, 0x01, 0x0010); /* serial bus, SDS high */
344 reg_w(sd, 0x01, 0x0000); /* serial bus, SDS low */
345 reg_w(sd, 0x01, 0x0010); /* ..high 'beep-beep' */
346 reg_w(sd, 0x01, 0x0030); /* Set sda scl to FSB mode */
Hans de Goedea511ba92009-10-16 07:13:07 -0300347
348 sd->stopped = 1;
Hans de Goedea511ba92009-10-16 07:13:07 -0300349}
350
Jean-François Moinef8f20182010-11-12 07:54:02 -0300351static void w9968cf_init(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300352{
Hans de Goedea511ba92009-10-16 07:13:07 -0300353 unsigned long hw_bufsize = sd->sif ? (352 * 288 * 2) : (640 * 480 * 2),
354 y0 = 0x0000,
Jean-François Moine87bae742010-11-12 05:31:34 -0300355 u0 = y0 + hw_bufsize / 2,
356 v0 = u0 + hw_bufsize / 4,
357 y1 = v0 + hw_bufsize / 4,
358 u1 = y1 + hw_bufsize / 2,
359 v1 = u1 + hw_bufsize / 4;
Hans de Goedea511ba92009-10-16 07:13:07 -0300360
Jean-François Moinef8f20182010-11-12 07:54:02 -0300361 reg_w(sd, 0x00, 0xff00); /* power off */
362 reg_w(sd, 0x00, 0xbf10); /* power on */
Hans de Goedea511ba92009-10-16 07:13:07 -0300363
Jean-François Moinef8f20182010-11-12 07:54:02 -0300364 reg_w(sd, 0x03, 0x405d); /* DRAM timings */
365 reg_w(sd, 0x04, 0x0030); /* SDRAM timings */
Hans de Goedea511ba92009-10-16 07:13:07 -0300366
Jean-François Moinef8f20182010-11-12 07:54:02 -0300367 reg_w(sd, 0x20, y0 & 0xffff); /* Y buf.0, low */
368 reg_w(sd, 0x21, y0 >> 16); /* Y buf.0, high */
369 reg_w(sd, 0x24, u0 & 0xffff); /* U buf.0, low */
370 reg_w(sd, 0x25, u0 >> 16); /* U buf.0, high */
371 reg_w(sd, 0x28, v0 & 0xffff); /* V buf.0, low */
372 reg_w(sd, 0x29, v0 >> 16); /* V buf.0, high */
Hans de Goedea511ba92009-10-16 07:13:07 -0300373
Jean-François Moinef8f20182010-11-12 07:54:02 -0300374 reg_w(sd, 0x22, y1 & 0xffff); /* Y buf.1, low */
375 reg_w(sd, 0x23, y1 >> 16); /* Y buf.1, high */
376 reg_w(sd, 0x26, u1 & 0xffff); /* U buf.1, low */
377 reg_w(sd, 0x27, u1 >> 16); /* U buf.1, high */
378 reg_w(sd, 0x2a, v1 & 0xffff); /* V buf.1, low */
379 reg_w(sd, 0x2b, v1 >> 16); /* V buf.1, high */
Hans de Goedea511ba92009-10-16 07:13:07 -0300380
Jean-François Moinef8f20182010-11-12 07:54:02 -0300381 reg_w(sd, 0x32, y1 & 0xffff); /* JPEG buf 0 low */
382 reg_w(sd, 0x33, y1 >> 16); /* JPEG buf 0 high */
Hans de Goedea511ba92009-10-16 07:13:07 -0300383
Jean-François Moinef8f20182010-11-12 07:54:02 -0300384 reg_w(sd, 0x34, y1 & 0xffff); /* JPEG buf 1 low */
385 reg_w(sd, 0x35, y1 >> 16); /* JPEG bug 1 high */
Hans de Goedea511ba92009-10-16 07:13:07 -0300386
Jean-François Moinef8f20182010-11-12 07:54:02 -0300387 reg_w(sd, 0x36, 0x0000);/* JPEG restart interval */
388 reg_w(sd, 0x37, 0x0804);/*JPEG VLE FIFO threshold*/
389 reg_w(sd, 0x38, 0x0000);/* disable hw up-scaling */
390 reg_w(sd, 0x3f, 0x0000); /* JPEG/MCTL test data */
Hans de Goedea511ba92009-10-16 07:13:07 -0300391}
392
Jean-François Moinef8f20182010-11-12 07:54:02 -0300393static void w9968cf_set_crop_window(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300394{
Jean-François Moinef8f20182010-11-12 07:54:02 -0300395 int start_cropx, start_cropy, x, y, fw, fh, cw, ch,
Hans de Goedea511ba92009-10-16 07:13:07 -0300396 max_width, max_height;
397
398 if (sd->sif) {
399 max_width = 352;
400 max_height = 288;
401 } else {
402 max_width = 640;
403 max_height = 480;
404 }
405
406 if (sd->sensor == SEN_OV7620) {
Hans Verkuilcf9211e2012-05-16 06:19:46 -0300407 /*
408 * Sigh, this is dependend on the clock / framerate changes
409 * made by the frequency control, sick.
410 *
411 * Note we cannot use v4l2_ctrl_g_ctrl here, as we get called
412 * from ov519.c:setfreq() with the ctrl lock held!
413 */
414 if (sd->freq->val == 1) {
Hans de Goede73997872009-10-19 06:47:03 -0300415 start_cropx = 277;
416 start_cropy = 37;
Hans de Goedea511ba92009-10-16 07:13:07 -0300417 } else {
Hans de Goede73997872009-10-19 06:47:03 -0300418 start_cropx = 105;
419 start_cropy = 37;
Hans de Goedea511ba92009-10-16 07:13:07 -0300420 }
421 } else {
422 start_cropx = 320;
423 start_cropy = 35;
424 }
425
426 /* Work around to avoid FP arithmetics */
427 #define SC(x) ((x) << 10)
428
429 /* Scaling factors */
430 fw = SC(sd->gspca_dev.width) / max_width;
431 fh = SC(sd->gspca_dev.height) / max_height;
432
Jean-François Moine87bae742010-11-12 05:31:34 -0300433 cw = (fw >= fh) ? max_width : SC(sd->gspca_dev.width) / fh;
434 ch = (fw >= fh) ? SC(sd->gspca_dev.height) / fw : max_height;
Hans de Goedea511ba92009-10-16 07:13:07 -0300435
436 sd->sensor_width = max_width;
437 sd->sensor_height = max_height;
438
439 x = (max_width - cw) / 2;
440 y = (max_height - ch) / 2;
441
Jean-François Moinef8f20182010-11-12 07:54:02 -0300442 reg_w(sd, 0x10, start_cropx + x);
443 reg_w(sd, 0x11, start_cropy + y);
444 reg_w(sd, 0x12, start_cropx + x + cw);
445 reg_w(sd, 0x13, start_cropy + y + ch);
Hans de Goedea511ba92009-10-16 07:13:07 -0300446}
447
Jean-François Moinef8f20182010-11-12 07:54:02 -0300448static void w9968cf_mode_init_regs(struct sd *sd)
Hans de Goedea511ba92009-10-16 07:13:07 -0300449{
Jean-François Moinef8f20182010-11-12 07:54:02 -0300450 int val, vs_polarity, hs_polarity;
Hans de Goedea511ba92009-10-16 07:13:07 -0300451
Jean-François Moinef8f20182010-11-12 07:54:02 -0300452 w9968cf_set_crop_window(sd);
Hans de Goedea511ba92009-10-16 07:13:07 -0300453
Jean-François Moinef8f20182010-11-12 07:54:02 -0300454 reg_w(sd, 0x14, sd->gspca_dev.width);
455 reg_w(sd, 0x15, sd->gspca_dev.height);
Hans de Goedea511ba92009-10-16 07:13:07 -0300456
457 /* JPEG width & height */
Jean-François Moinef8f20182010-11-12 07:54:02 -0300458 reg_w(sd, 0x30, sd->gspca_dev.width);
459 reg_w(sd, 0x31, sd->gspca_dev.height);
Hans de Goedea511ba92009-10-16 07:13:07 -0300460
461 /* Y & UV frame buffer strides (in WORD) */
Hans de Goede79b35902009-10-19 06:08:01 -0300462 if (w9968cf_vga_mode[sd->gspca_dev.curr_mode].pixelformat ==
463 V4L2_PIX_FMT_JPEG) {
Jean-François Moinef8f20182010-11-12 07:54:02 -0300464 reg_w(sd, 0x2c, sd->gspca_dev.width / 2);
465 reg_w(sd, 0x2d, sd->gspca_dev.width / 4);
Hans de Goede79b35902009-10-19 06:08:01 -0300466 } else
Jean-François Moinef8f20182010-11-12 07:54:02 -0300467 reg_w(sd, 0x2c, sd->gspca_dev.width);
Hans de Goedea511ba92009-10-16 07:13:07 -0300468
Jean-François Moinef8f20182010-11-12 07:54:02 -0300469 reg_w(sd, 0x00, 0xbf17); /* reset everything */
470 reg_w(sd, 0x00, 0xbf10); /* normal operation */
Hans de Goedea511ba92009-10-16 07:13:07 -0300471
Hans de Goede79b35902009-10-19 06:08:01 -0300472 /* Transfer size in WORDS (for UYVY format only) */
Hans de Goedea511ba92009-10-16 07:13:07 -0300473 val = sd->gspca_dev.width * sd->gspca_dev.height;
Jean-François Moinef8f20182010-11-12 07:54:02 -0300474 reg_w(sd, 0x3d, val & 0xffff); /* low bits */
475 reg_w(sd, 0x3e, val >> 16); /* high bits */
Hans de Goedea511ba92009-10-16 07:13:07 -0300476
Hans de Goede79b35902009-10-19 06:08:01 -0300477 if (w9968cf_vga_mode[sd->gspca_dev.curr_mode].pixelformat ==
478 V4L2_PIX_FMT_JPEG) {
479 /* We may get called multiple times (usb isoc bw negotiat.) */
Hans de Goede79b35902009-10-19 06:08:01 -0300480 jpeg_define(sd->jpeg_hdr, sd->gspca_dev.height,
481 sd->gspca_dev.width, 0x22); /* JPEG 420 */
Hans Verkuilcf9211e2012-05-16 06:19:46 -0300482 jpeg_set_qual(sd->jpeg_hdr, v4l2_ctrl_g_ctrl(sd->jpegqual));
Jean-François Moinef8f20182010-11-12 07:54:02 -0300483 w9968cf_upload_quantizationtables(sd);
Hans Verkuilcf9211e2012-05-16 06:19:46 -0300484 v4l2_ctrl_grab(sd->jpegqual, true);
Hans de Goede79b35902009-10-19 06:08:01 -0300485 }
486
Hans de Goedea511ba92009-10-16 07:13:07 -0300487 /* Video Capture Control Register */
488 if (sd->sensor == SEN_OV7620) {
489 /* Seems to work around a bug in the image sensor */
490 vs_polarity = 1;
491 hs_polarity = 1;
492 } else {
493 vs_polarity = 1;
494 hs_polarity = 0;
495 }
496
497 val = (vs_polarity << 12) | (hs_polarity << 11);
498
Hans de Goede79b35902009-10-19 06:08:01 -0300499 /* NOTE: We may not have enough memory to do double buffering while
500 doing compression (amount of memory differs per model cam).
501 So we use the second image buffer also as jpeg stream buffer
502 (see w9968cf_init), and disable double buffering. */
503 if (w9968cf_vga_mode[sd->gspca_dev.curr_mode].pixelformat ==
504 V4L2_PIX_FMT_JPEG) {
505 /* val |= 0x0002; YUV422P */
506 val |= 0x0003; /* YUV420P */
507 } else
Hans de Goedea511ba92009-10-16 07:13:07 -0300508 val |= 0x0080; /* Enable HW double buffering */
509
510 /* val |= 0x0020; enable clamping */
511 /* val |= 0x0008; enable (1-2-1) filter */
512 /* val |= 0x000c; enable (2-3-6-3-2) filter */
513
514 val |= 0x8000; /* capt. enable */
515
Jean-François Moinef8f20182010-11-12 07:54:02 -0300516 reg_w(sd, 0x16, val);
Hans de Goedea511ba92009-10-16 07:13:07 -0300517
518 sd->gspca_dev.empty_packet = 0;
Hans de Goedea511ba92009-10-16 07:13:07 -0300519}
520
Hans de Goede79b35902009-10-19 06:08:01 -0300521static void w9968cf_stop0(struct sd *sd)
522{
Hans Verkuilcf9211e2012-05-16 06:19:46 -0300523 v4l2_ctrl_grab(sd->jpegqual, false);
Jean-François Moined65174c2010-11-11 06:20:42 -0300524 reg_w(sd, 0x39, 0x0000); /* disable JPEG encoder */
525 reg_w(sd, 0x16, 0x0000); /* stop video capture */
Hans de Goede79b35902009-10-19 06:08:01 -0300526}
527
528/* The w9968cf docs say that a 0 sized packet means EOF (and also SOF
529 for the next frame). This seems to simply not be true when operating
530 in JPEG mode, in this case there may be empty packets within the
531 frame. So in JPEG mode use the JPEG SOI marker to detect SOF.
532
533 Note to make things even more interesting the w9968cf sends *PLANAR* jpeg,
534 to be precise it sends: SOI, SOF, DRI, SOS, Y-data, SOS, U-data, SOS,
535 V-data, EOI. */
Hans de Goedea511ba92009-10-16 07:13:07 -0300536static void w9968cf_pkt_scan(struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300537 u8 *data, /* isoc packet */
Hans de Goedea511ba92009-10-16 07:13:07 -0300538 int len) /* iso packet length */
539{
Hans de Goede79b35902009-10-19 06:08:01 -0300540 struct sd *sd = (struct sd *) gspca_dev;
541
542 if (w9968cf_vga_mode[gspca_dev->curr_mode].pixelformat ==
543 V4L2_PIX_FMT_JPEG) {
544 if (len >= 2 &&
545 data[0] == 0xff &&
546 data[1] == 0xd8) {
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300547 gspca_frame_add(gspca_dev, LAST_PACKET,
Hans de Goede8394bcf2009-10-16 11:26:22 -0300548 NULL, 0);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300549 gspca_frame_add(gspca_dev, FIRST_PACKET,
Hans de Goede79b35902009-10-19 06:08:01 -0300550 sd->jpeg_hdr, JPEG_HDR_SZ);
551 /* Strip the ff d8, our own header (which adds
552 huffman and quantization tables) already has this */
553 len -= 2;
554 data += 2;
555 }
556 } else {
557 /* In UYVY mode an empty packet signals EOF */
558 if (gspca_dev->empty_packet) {
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300559 gspca_frame_add(gspca_dev, LAST_PACKET,
Hans de Goede79b35902009-10-19 06:08:01 -0300560 NULL, 0);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300561 gspca_frame_add(gspca_dev, FIRST_PACKET,
Hans de Goede79b35902009-10-19 06:08:01 -0300562 NULL, 0);
563 gspca_dev->empty_packet = 0;
564 }
Hans de Goedea511ba92009-10-16 07:13:07 -0300565 }
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300566 gspca_frame_add(gspca_dev, INTER_PACKET, data, len);
Hans de Goedea511ba92009-10-16 07:13:07 -0300567}