Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
[sfrench/cifs-2.6.git] / drivers / media / video / cx231xx / cx231xx-i2c.c
1 /*
2    cx231xx-i2c.c - driver for Conexant Cx23100/101/102 USB video capture devices
3
4    Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
5                 Based on em28xx driver
6                 Based on Cx23885 driver
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/usb.h>
26 #include <linux/i2c.h>
27 #include <media/v4l2-common.h>
28 #include <media/tuner.h>
29
30 #include "cx231xx.h"
31
32 /* ----------------------------------------------------------- */
33
34 static unsigned int i2c_scan;
35 module_param(i2c_scan, int, 0444);
36 MODULE_PARM_DESC(i2c_scan, "scan i2c bus at insmod time");
37
38 static unsigned int i2c_debug;
39 module_param(i2c_debug, int, 0644);
40 MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");
41
42 #define dprintk1(lvl, fmt, args...)                     \
43 do {                                                    \
44         if (i2c_debug >= lvl) {                         \
45                 printk(fmt, ##args);                    \
46                 }                                       \
47 } while (0)
48
49 #define dprintk2(lvl, fmt, args...)                     \
50 do {                                                    \
51         if (i2c_debug >= lvl) {                         \
52                 printk(KERN_DEBUG "%s at %s: " fmt,     \
53                        dev->name, __func__ , ##args);   \
54       }                                                 \
55 } while (0)
56
57 /*
58  * cx231xx_i2c_send_bytes()
59  */
60 int cx231xx_i2c_send_bytes(struct i2c_adapter *i2c_adap,
61                            const struct i2c_msg *msg)
62 {
63         struct cx231xx_i2c *bus = i2c_adap->algo_data;
64         struct cx231xx *dev = bus->dev;
65         struct cx231xx_i2c_xfer_data req_data;
66         int status = 0;
67         u16 size = 0;
68         u8 loop = 0;
69         u8 saddr_len = 1;
70         u8 *buf_ptr = NULL;
71         u16 saddr = 0;
72         u8 need_gpio = 0;
73
74         if ((bus->nr == 1) && (msg->addr == 0x61)
75             && (dev->tuner_type == TUNER_XC5000)) {
76
77                 size = msg->len;
78
79                 if (size == 2) {        /* register write sub addr */
80                         /* Just writing sub address will cause problem
81                         * to XC5000. So ignore the request */
82                         return 0;
83                 } else if (size == 4) { /* register write with sub addr */
84                         if (msg->len >= 2)
85                                 saddr = msg->buf[0] << 8 | msg->buf[1];
86                         else if (msg->len == 1)
87                                 saddr = msg->buf[0];
88
89                         switch (saddr) {
90                         case 0x0000:    /* start tuner calibration mode */
91                                 need_gpio = 1;
92                                 /* FW Loading is done */
93                                 dev->xc_fw_load_done = 1;
94                                 break;
95                         case 0x000D:    /* Set signal source */
96                         case 0x0001:    /* Set TV standard - Video */
97                         case 0x0002:    /* Set TV standard - Audio */
98                         case 0x0003:    /* Set RF Frequency */
99                                 need_gpio = 1;
100                                 break;
101                         default:
102                                 if (dev->xc_fw_load_done)
103                                         need_gpio = 1;
104                                 break;
105                         }
106
107                         if (need_gpio) {
108                                 dprintk1(1,
109                                 "GPIO WRITE: addr 0x%x, len %d, saddr 0x%x\n",
110                                 msg->addr, msg->len, saddr);
111
112                                 return dev->cx231xx_gpio_i2c_write(dev,
113                                                                    msg->addr,
114                                                                    msg->buf,
115                                                                    msg->len);
116                         }
117                 }
118
119                 /* special case for Xc5000 tuner case */
120                 saddr_len = 1;
121
122                 /* adjust the length to correct length */
123                 size -= saddr_len;
124                 buf_ptr = (u8 *) (msg->buf + 1);
125
126                 do {
127                         /* prepare xfer_data struct */
128                         req_data.dev_addr = msg->addr;
129                         req_data.direction = msg->flags;
130                         req_data.saddr_len = saddr_len;
131                         req_data.saddr_dat = msg->buf[0];
132                         req_data.buf_size = size > 16 ? 16 : size;
133                         req_data.p_buffer = (u8 *) (buf_ptr + loop * 16);
134
135                         bus->i2c_nostop = (size > 16) ? 1 : 0;
136                         bus->i2c_reserve = (loop == 0) ? 0 : 1;
137
138                         /* usb send command */
139                         status = dev->cx231xx_send_usb_command(bus, &req_data);
140                         loop++;
141
142                         if (size >= 16)
143                                 size -= 16;
144                         else
145                                 size = 0;
146
147                 } while (size > 0);
148
149                 bus->i2c_nostop = 0;
150                 bus->i2c_reserve = 0;
151
152         } else {                /* regular case */
153
154                 /* prepare xfer_data struct */
155                 req_data.dev_addr = msg->addr;
156                 req_data.direction = msg->flags;
157                 req_data.saddr_len = 0;
158                 req_data.saddr_dat = 0;
159                 req_data.buf_size = msg->len;
160                 req_data.p_buffer = msg->buf;
161
162                 /* usb send command */
163                 status = dev->cx231xx_send_usb_command(bus, &req_data);
164         }
165
166         return status < 0 ? status : 0;
167 }
168
169 /*
170  * cx231xx_i2c_recv_bytes()
171  * read a byte from the i2c device
172  */
173 static int cx231xx_i2c_recv_bytes(struct i2c_adapter *i2c_adap,
174                                   const struct i2c_msg *msg)
175 {
176         struct cx231xx_i2c *bus = i2c_adap->algo_data;
177         struct cx231xx *dev = bus->dev;
178         struct cx231xx_i2c_xfer_data req_data;
179         int status = 0;
180         u16 saddr = 0;
181         u8 need_gpio = 0;
182
183         if ((bus->nr == 1) && (msg->addr == 0x61)
184             && dev->tuner_type == TUNER_XC5000) {
185
186                 if (msg->len == 2)
187                         saddr = msg->buf[0] << 8 | msg->buf[1];
188                 else if (msg->len == 1)
189                         saddr = msg->buf[0];
190
191                 if (dev->xc_fw_load_done) {
192
193                         switch (saddr) {
194                         case 0x0009:    /* BUSY check */
195                                 dprintk1(1,
196                                 "GPIO R E A D: Special case BUSY check \n");
197                                 /*Try read BUSY register, just set it to zero*/
198                                 msg->buf[0] = 0;
199                                 if (msg->len == 2)
200                                         msg->buf[1] = 0;
201                                 return 0;
202                         case 0x0004:    /* read Lock status */
203                                 need_gpio = 1;
204                                 break;
205
206                         }
207
208                         if (need_gpio) {
209                                 /* this is a special case to handle Xceive tuner
210                                 clock stretch issue with gpio based I2C */
211
212                                 dprintk1(1,
213                                 "GPIO R E A D: addr 0x%x, len %d, saddr 0x%x\n",
214                                 msg->addr, msg->len,
215                                 msg->buf[0] << 8 | msg->buf[1]);
216
217                                 status =
218                                     dev->cx231xx_gpio_i2c_write(dev, msg->addr,
219                                                                 msg->buf,
220                                                                 msg->len);
221                                 status =
222                                     dev->cx231xx_gpio_i2c_read(dev, msg->addr,
223                                                                msg->buf,
224                                                                msg->len);
225                                 return status;
226                         }
227                 }
228
229                 /* prepare xfer_data struct */
230                 req_data.dev_addr = msg->addr;
231                 req_data.direction = msg->flags;
232                 req_data.saddr_len = msg->len;
233                 req_data.saddr_dat = msg->buf[0] << 8 | msg->buf[1];
234                 req_data.buf_size = msg->len;
235                 req_data.p_buffer = msg->buf;
236
237                 /* usb send command */
238                 status = dev->cx231xx_send_usb_command(bus, &req_data);
239
240         } else {
241
242                 /* prepare xfer_data struct */
243                 req_data.dev_addr = msg->addr;
244                 req_data.direction = msg->flags;
245                 req_data.saddr_len = 0;
246                 req_data.saddr_dat = 0;
247                 req_data.buf_size = msg->len;
248                 req_data.p_buffer = msg->buf;
249
250                 /* usb send command */
251                 status = dev->cx231xx_send_usb_command(bus, &req_data);
252         }
253
254         return status < 0 ? status : 0;
255 }
256
257 /*
258  * cx231xx_i2c_recv_bytes_with_saddr()
259  * read a byte from the i2c device
260  */
261 static int cx231xx_i2c_recv_bytes_with_saddr(struct i2c_adapter *i2c_adap,
262                                              const struct i2c_msg *msg1,
263                                              const struct i2c_msg *msg2)
264 {
265         struct cx231xx_i2c *bus = i2c_adap->algo_data;
266         struct cx231xx *dev = bus->dev;
267         struct cx231xx_i2c_xfer_data req_data;
268         int status = 0;
269         u16 saddr = 0;
270         u8 need_gpio = 0;
271
272         if (msg1->len == 2)
273                 saddr = msg1->buf[0] << 8 | msg1->buf[1];
274         else if (msg1->len == 1)
275                 saddr = msg1->buf[0];
276
277         if ((bus->nr == 1) && (msg2->addr == 0x61)
278             && dev->tuner_type == TUNER_XC5000) {
279
280                 if ((msg2->len < 16)) {
281
282                         dprintk1(1,
283                         "i2c_read: addr 0x%x, len %d, saddr 0x%x, len %d\n",
284                         msg2->addr, msg2->len, saddr, msg1->len);
285
286                         switch (saddr) {
287                         case 0x0008:    /* read FW load status */
288                                 need_gpio = 1;
289                                 break;
290                         case 0x0004:    /* read Lock status */
291                                 need_gpio = 1;
292                                 break;
293                         }
294
295                         if (need_gpio) {
296                                 status =
297                                     dev->cx231xx_gpio_i2c_write(dev, msg1->addr,
298                                                                 msg1->buf,
299                                                                 msg1->len);
300                                 status =
301                                     dev->cx231xx_gpio_i2c_read(dev, msg2->addr,
302                                                                msg2->buf,
303                                                                msg2->len);
304                                 return status;
305                         }
306                 }
307         }
308
309         /* prepare xfer_data struct */
310         req_data.dev_addr = msg2->addr;
311         req_data.direction = msg2->flags;
312         req_data.saddr_len = msg1->len;
313         req_data.saddr_dat = saddr;
314         req_data.buf_size = msg2->len;
315         req_data.p_buffer = msg2->buf;
316
317         /* usb send command */
318         status = dev->cx231xx_send_usb_command(bus, &req_data);
319
320         return status < 0 ? status : 0;
321 }
322
323 /*
324  * cx231xx_i2c_check_for_device()
325  * check if there is a i2c_device at the supplied address
326  */
327 static int cx231xx_i2c_check_for_device(struct i2c_adapter *i2c_adap,
328                                         const struct i2c_msg *msg)
329 {
330         struct cx231xx_i2c *bus = i2c_adap->algo_data;
331         struct cx231xx *dev = bus->dev;
332         struct cx231xx_i2c_xfer_data req_data;
333         int status = 0;
334
335         /* prepare xfer_data struct */
336         req_data.dev_addr = msg->addr;
337         req_data.direction = msg->flags;
338         req_data.saddr_len = 0;
339         req_data.saddr_dat = 0;
340         req_data.buf_size = 0;
341         req_data.p_buffer = NULL;
342
343         /* usb send command */
344         status = dev->cx231xx_send_usb_command(bus, &req_data);
345
346         return status < 0 ? status : 0;
347 }
348
349 /*
350  * cx231xx_i2c_xfer()
351  * the main i2c transfer function
352  */
353 static int cx231xx_i2c_xfer(struct i2c_adapter *i2c_adap,
354                             struct i2c_msg msgs[], int num)
355 {
356         struct cx231xx_i2c *bus = i2c_adap->algo_data;
357         struct cx231xx *dev = bus->dev;
358         int addr, rc, i, byte;
359
360         if (num <= 0)
361                 return 0;
362
363         for (i = 0; i < num; i++) {
364
365                 addr = msgs[i].addr >> 1;
366
367                 dprintk2(2, "%s %s addr=%x len=%d:",
368                          (msgs[i].flags & I2C_M_RD) ? "read" : "write",
369                          i == num - 1 ? "stop" : "nonstop", addr, msgs[i].len);
370                 if (!msgs[i].len) {
371                         /* no len: check only for device presence */
372                         rc = cx231xx_i2c_check_for_device(i2c_adap, &msgs[i]);
373                         if (rc < 0) {
374                                 dprintk2(2, " no device\n");
375                                 return rc;
376                         }
377
378                 } else if (msgs[i].flags & I2C_M_RD) {
379                         /* read bytes */
380                         rc = cx231xx_i2c_recv_bytes(i2c_adap, &msgs[i]);
381                         if (i2c_debug >= 2) {
382                                 for (byte = 0; byte < msgs[i].len; byte++)
383                                         printk(" %02x", msgs[i].buf[byte]);
384                         }
385                 } else if (i + 1 < num && (msgs[i + 1].flags & I2C_M_RD) &&
386                            msgs[i].addr == msgs[i + 1].addr
387                            && (msgs[i].len <= 2) && (bus->nr < 2)) {
388                         /* read bytes */
389                         rc = cx231xx_i2c_recv_bytes_with_saddr(i2c_adap,
390                                                                &msgs[i],
391                                                                &msgs[i + 1]);
392                         if (i2c_debug >= 2) {
393                                 for (byte = 0; byte < msgs[i].len; byte++)
394                                         printk(" %02x", msgs[i].buf[byte]);
395                         }
396                         i++;
397                 } else {
398                         /* write bytes */
399                         if (i2c_debug >= 2) {
400                                 for (byte = 0; byte < msgs[i].len; byte++)
401                                         printk(" %02x", msgs[i].buf[byte]);
402                         }
403                         rc = cx231xx_i2c_send_bytes(i2c_adap, &msgs[i]);
404                 }
405                 if (rc < 0)
406                         goto err;
407                 if (i2c_debug >= 2)
408                         printk("\n");
409         }
410
411         return num;
412 err:
413         dprintk2(2, " ERROR: %i\n", rc);
414         return rc;
415 }
416
417 /* ----------------------------------------------------------- */
418
419 /*
420  * functionality()
421  */
422 static u32 functionality(struct i2c_adapter *adap)
423 {
424         return I2C_FUNC_SMBUS_EMUL | I2C_FUNC_I2C;
425 }
426
427 /*
428  * attach_inform()
429  * gets called when a device attaches to the i2c bus
430  * does some basic configuration
431  */
432 static int attach_inform(struct i2c_client *client)
433 {
434         struct cx231xx_i2c *bus = i2c_get_adapdata(client->adapter);
435         struct cx231xx *dev = bus->dev;
436
437         switch (client->addr << 1) {
438         case 0x8e:
439                 {
440                         struct IR_i2c *ir = i2c_get_clientdata(client);
441                         dprintk1(1, "attach_inform: IR detected (%s).\n",
442                                  ir->phys);
443                         cx231xx_set_ir(dev, ir);
444                         break;
445                 }
446                 break;
447
448         default:
449                 break;
450         }
451
452         return 0;
453 }
454
455 static struct i2c_algorithm cx231xx_algo = {
456         .master_xfer = cx231xx_i2c_xfer,
457         .functionality = functionality,
458 };
459
460 static struct i2c_adapter cx231xx_adap_template = {
461         .owner = THIS_MODULE,
462         .name = "cx231xx",
463         .id = I2C_HW_B_CX231XX,
464         .algo = &cx231xx_algo,
465         .client_register = attach_inform,
466 };
467
468 static struct i2c_client cx231xx_client_template = {
469         .name = "cx231xx internal",
470 };
471
472 /* ----------------------------------------------------------- */
473
474 /*
475  * i2c_devs
476  * incomplete list of known devices
477  */
478 static char *i2c_devs[128] = {
479         [0x60 >> 1] = "colibri",
480         [0x88 >> 1] = "hammerhead",
481         [0x8e >> 1] = "CIR",
482         [0x32 >> 1] = "GeminiIII",
483         [0x02 >> 1] = "Aquarius",
484         [0xa0 >> 1] = "eeprom",
485         [0xc0 >> 1] = "tuner/XC3028",
486         [0xc2 >> 1] = "tuner/XC5000",
487 };
488
489 /*
490  * cx231xx_do_i2c_scan()
491  * check i2c address range for devices
492  */
493 void cx231xx_do_i2c_scan(struct cx231xx *dev, struct i2c_client *c)
494 {
495         unsigned char buf;
496         int i, rc;
497
498         cx231xx_info(": Checking for I2C devices ..\n");
499         for (i = 0; i < 128; i++) {
500                 c->addr = i;
501                 rc = i2c_master_recv(c, &buf, 0);
502                 if (rc < 0)
503                         continue;
504                 cx231xx_info("%s: i2c scan: found device @ 0x%x  [%s]\n",
505                              dev->name, i << 1,
506                              i2c_devs[i] ? i2c_devs[i] : "???");
507         }
508         cx231xx_info(": Completed Checking for I2C devices.\n");
509 }
510
511 /*
512  * cx231xx_i2c_register()
513  * register i2c bus
514  */
515 int cx231xx_i2c_register(struct cx231xx_i2c *bus)
516 {
517         struct cx231xx *dev = bus->dev;
518
519         BUG_ON(!dev->cx231xx_send_usb_command);
520
521         memcpy(&bus->i2c_adap, &cx231xx_adap_template, sizeof(bus->i2c_adap));
522         memcpy(&bus->i2c_algo, &cx231xx_algo, sizeof(bus->i2c_algo));
523         memcpy(&bus->i2c_client, &cx231xx_client_template,
524                sizeof(bus->i2c_client));
525
526         bus->i2c_adap.dev.parent = &dev->udev->dev;
527
528         strlcpy(bus->i2c_adap.name, bus->dev->name, sizeof(bus->i2c_adap.name));
529
530         bus->i2c_algo.data = bus;
531         bus->i2c_adap.algo_data = bus;
532         i2c_set_adapdata(&bus->i2c_adap, &dev->v4l2_dev);
533         i2c_add_adapter(&bus->i2c_adap);
534
535         bus->i2c_client.adapter = &bus->i2c_adap;
536
537         if (0 == bus->i2c_rc) {
538                 if (i2c_scan)
539                         cx231xx_do_i2c_scan(dev, &bus->i2c_client);
540         } else
541                 cx231xx_warn("%s: i2c bus %d register FAILED\n",
542                              dev->name, bus->nr);
543
544         return bus->i2c_rc;
545 }
546
547 /*
548  * cx231xx_i2c_unregister()
549  * unregister i2c_bus
550  */
551 int cx231xx_i2c_unregister(struct cx231xx_i2c *bus)
552 {
553         i2c_del_adapter(&bus->i2c_adap);
554         return 0;
555 }