blob: 0290bbf00c3e68c0541e87803d98963b721e8a41 [file] [log] [blame]
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001/*
Ruslan Pisarevd0058642010-10-20 06:35:54 -03002 * tm6000-i2c.c - driver for TM5600/TM6000/TM6010 USB video capture devices
3 *
4 * Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
5 *
6 * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7 * - Fix SMBus Read Byte command
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation version 2
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.
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030021 */
22
23#include <linux/module.h>
24#include <linux/kernel.h>
25#include <linux/usb.h>
26#include <linux/i2c.h>
27
28#include "tm6000.h"
29#include "tm6000-regs.h"
30#include <media/v4l2-common.h>
31#include <media/tuner.h>
32#include "tuner-xc2028.h"
33
34
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030035/* ----------------------------------------------------------- */
36
Ruslan Pisarevd7fe4a62010-10-20 06:34:40 -030037static unsigned int i2c_debug;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030038module_param(i2c_debug, int, 0644);
39MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");
40
Timofey Trofimov52e0a722010-05-29 13:52:46 -030041#define i2c_dprintk(lvl, fmt, args...) if (i2c_debug >= lvl) do { \
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030042 printk(KERN_DEBUG "%s at %s: " fmt, \
Curtis McEnroe0f063c62011-06-02 20:33:32 -040043 dev->name, __func__, ##args); } while (0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030044
Stefan Ringel4e115022010-02-22 14:35:05 -030045static int tm6000_i2c_send_regs(struct tm6000_core *dev, unsigned char addr,
46 __u8 reg, char *buf, int len)
47{
Dmitri Belimov20dead82010-04-27 22:32:43 -030048 int rc;
49 unsigned int tsleep;
50 unsigned int i2c_packet_limit = 16;
51
52 if (dev->dev_type == TM6010)
53 i2c_packet_limit = 64;
54
55 if (!buf)
56 return -1;
57
58 if (len < 1 || len > i2c_packet_limit) {
59 printk(KERN_ERR "Incorrect length of i2c packet = %d, limit set to %d\n",
60 len, i2c_packet_limit);
61 return -1;
62 }
63
64 /* capture mutex */
65 rc = tm6000_read_write_usb(dev, USB_DIR_OUT | USB_TYPE_VENDOR |
66 USB_RECIP_DEVICE, REQ_16_SET_GET_I2C_WR1_RDN,
67 addr | reg << 8, 0, buf, len);
68
69 if (rc < 0) {
70 /* release mutex */
71 return rc;
72 }
73
74 /* Calculate delay time, 14000us for 64 bytes */
75 tsleep = ((len * 200) + 200 + 1000) / 1000;
76 msleep(tsleep);
77
78 /* release mutex */
79 return rc;
Stefan Ringel4e115022010-02-22 14:35:05 -030080}
81
82/* Generic read - doesn't work fine with 16bit registers */
83static int tm6000_i2c_recv_regs(struct tm6000_core *dev, unsigned char addr,
84 __u8 reg, char *buf, int len)
85{
86 int rc;
Stefan Ringel02512fe2010-02-22 14:35:06 -030087 u8 b[2];
Dmitri Belimov20dead82010-04-27 22:32:43 -030088 unsigned int i2c_packet_limit = 16;
Stefan Ringel4e115022010-02-22 14:35:05 -030089
Dmitri Belimov20dead82010-04-27 22:32:43 -030090 if (dev->dev_type == TM6010)
91 i2c_packet_limit = 64;
92
93 if (!buf)
94 return -1;
95
96 if (len < 1 || len > i2c_packet_limit) {
97 printk(KERN_ERR "Incorrect length of i2c packet = %d, limit set to %d\n",
98 len, i2c_packet_limit);
99 return -1;
100 }
101
102 /* capture mutex */
Stefan Ringel02512fe2010-02-22 14:35:06 -0300103 if ((dev->caps.has_zl10353) && (dev->demod_addr << 1 == addr) && (reg % 2 == 0)) {
104 /*
105 * Workaround an I2C bug when reading from zl10353
106 */
107 reg -= 1;
108 len += 1;
109
110 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
111 REQ_16_SET_GET_I2C_WR1_RDN, addr | reg << 8, 0, b, len);
112
113 *buf = b[1];
114 } else {
115 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Stefan Ringel4e115022010-02-22 14:35:05 -0300116 REQ_16_SET_GET_I2C_WR1_RDN, addr | reg << 8, 0, buf, len);
Stefan Ringel02512fe2010-02-22 14:35:06 -0300117 }
Stefan Ringel4e115022010-02-22 14:35:05 -0300118
Dmitri Belimov20dead82010-04-27 22:32:43 -0300119 /* release mutex */
Stefan Ringel4e115022010-02-22 14:35:05 -0300120 return rc;
121}
122
123/*
124 * read from a 16bit register
125 * for example xc2028, xc3028 or xc3028L
126 */
127static int tm6000_i2c_recv_regs16(struct tm6000_core *dev, unsigned char addr,
128 __u16 reg, char *buf, int len)
129{
Dmitri Belimov20dead82010-04-27 22:32:43 -0300130 int rc;
131 unsigned char ureg;
132
133 if (!buf || len != 2)
134 return -1;
135
136 /* capture mutex */
137 if (dev->dev_type == TM6010) {
138 ureg = reg & 0xFF;
139 rc = tm6000_read_write_usb(dev, USB_DIR_OUT | USB_TYPE_VENDOR |
140 USB_RECIP_DEVICE, REQ_16_SET_GET_I2C_WR1_RDN,
141 addr | (reg & 0xFF00), 0, &ureg, 1);
142
143 if (rc < 0) {
144 /* release mutex */
145 return rc;
146 }
147
148 msleep(1400 / 1000);
149 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR |
150 USB_RECIP_DEVICE, REQ_35_AFTEK_TUNER_READ,
151 reg, 0, buf, len);
152 } else {
153 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR |
154 USB_RECIP_DEVICE, REQ_14_SET_GET_I2C_WR2_RDN,
155 addr, reg, buf, len);
156 }
157
158 /* release mutex */
159 return rc;
Stefan Ringel4e115022010-02-22 14:35:05 -0300160}
161
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300162static int tm6000_i2c_xfer(struct i2c_adapter *i2c_adap,
163 struct i2c_msg msgs[], int num)
164{
165 struct tm6000_core *dev = i2c_adap->algo_data;
166 int addr, rc, i, byte;
167
168 if (num <= 0)
169 return 0;
170 for (i = 0; i < num; i++) {
Chris Pascoee30b9d62007-11-24 04:34:42 -0300171 addr = (msgs[i].addr << 1) & 0xff;
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300172 i2c_dprintk(2, "%s %s addr=0x%x len=%d:",
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300173 (msgs[i].flags & I2C_M_RD) ? "read" : "write",
174 i == num - 1 ? "stop" : "nonstop", addr, msgs[i].len);
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -0300175 if (msgs[i].flags & I2C_M_RD) {
Chris Pascoee30b9d62007-11-24 04:34:42 -0300176 /* read request without preceding register selection */
177 /*
178 * The TM6000 only supports a read transaction
179 * immediately after a 1 or 2 byte write to select
180 * a register. We cannot fulfil this request.
181 */
182 i2c_dprintk(2, " read without preceding write not"
183 " supported");
184 rc = -EOPNOTSUPP;
185 goto err;
186 } else if (i + 1 < num && msgs[i].len <= 2 &&
187 (msgs[i + 1].flags & I2C_M_RD) &&
188 msgs[i].addr == msgs[i + 1].addr) {
189 /* 1 or 2 byte write followed by a read */
190 if (i2c_debug >= 2)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300191 for (byte = 0; byte < msgs[i].len; byte++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300192 printk(KERN_CONT " %02x", msgs[i].buf[byte]);
Chris Pascoee30b9d62007-11-24 04:34:42 -0300193 i2c_dprintk(2, "; joined to read %s len=%d:",
194 i == num - 2 ? "stop" : "nonstop",
195 msgs[i + 1].len);
Stefan Ringel4e115022010-02-22 14:35:05 -0300196
197 if (msgs[i].len == 2) {
198 rc = tm6000_i2c_recv_regs16(dev, addr,
199 msgs[i].buf[0] << 8 | msgs[i].buf[1],
200 msgs[i + 1].buf, msgs[i + 1].len);
201 } else {
202 rc = tm6000_i2c_recv_regs(dev, addr, msgs[i].buf[0],
203 msgs[i + 1].buf, msgs[i + 1].len);
204 }
205
Chris Pascoee30b9d62007-11-24 04:34:42 -0300206 i++;
Stefan Ringel20cabed2010-02-05 19:57:04 -0300207
Stefan Ringel685b1222010-02-21 17:10:36 -0300208 if (addr == dev->tuner_addr << 1) {
Stefan Ringelf1434f42010-04-02 13:52:50 -0300209 tm6000_set_reg(dev, REQ_50_SET_START, 0, 0);
210 tm6000_set_reg(dev, REQ_51_SET_STOP, 0, 0);
Stefan Ringel20cabed2010-02-05 19:57:04 -0300211 }
Chris Pascoee30b9d62007-11-24 04:34:42 -0300212 if (i2c_debug >= 2)
213 for (byte = 0; byte < msgs[i].len; byte++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300214 printk(KERN_CONT " %02x", msgs[i].buf[byte]);
Chris Pascoee30b9d62007-11-24 04:34:42 -0300215 } else {
216 /* write bytes */
217 if (i2c_debug >= 2)
218 for (byte = 0; byte < msgs[i].len; byte++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300219 printk(KERN_CONT " %02x", msgs[i].buf[byte]);
Stefan Ringel4e115022010-02-22 14:35:05 -0300220 rc = tm6000_i2c_send_regs(dev, addr, msgs[i].buf[0],
Chris Pascoee30b9d62007-11-24 04:34:42 -0300221 msgs[i].buf + 1, msgs[i].len - 1);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300222 }
Chris Pascoee30b9d62007-11-24 04:34:42 -0300223 if (i2c_debug >= 2)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300224 printk(KERN_CONT "\n");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300225 if (rc < 0)
226 goto err;
227 }
228
229 return num;
230err:
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300231 i2c_dprintk(2, " ERROR: %i\n", rc);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300232 return rc;
233}
234
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300235static int tm6000_i2c_eeprom(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300236{
237 int i, rc;
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300238 unsigned char *p = dev->eedata;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300239 unsigned char bytes[17];
240
241 dev->i2c_client.addr = 0xa0 >> 1;
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300242 dev->eedata_size = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300243
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300244 bytes[16] = '\0';
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300245 for (i = 0; i < sizeof(dev->eedata); ) {
246 *p = i;
247 rc = tm6000_i2c_recv_regs(dev, 0xa0, i, p, 1);
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300248 if (rc < 1) {
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300249 if (p == dev->eedata)
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300250 goto noeeprom;
251 else {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300252 printk(KERN_WARNING
253 "%s: i2c eeprom read error (err=%d)\n",
254 dev->name, rc);
255 }
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300256 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300257 }
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300258 dev->eedata_size++;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300259 p++;
260 if (0 == (i % 16))
261 printk(KERN_INFO "%s: i2c eeprom %02x:", dev->name, i);
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300262 printk(KERN_CONT " %02x", dev->eedata[i]);
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300263 if ((dev->eedata[i] >= ' ') && (dev->eedata[i] <= 'z'))
264 bytes[i%16] = dev->eedata[i];
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300265 else
266 bytes[i%16] = '.';
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300267
268 i++;
269
270 if (0 == (i % 16)) {
271 bytes[16] = '\0';
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300272 printk(KERN_CONT " %s\n", bytes);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300273 }
274 }
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300275 if (0 != (i%16)) {
276 bytes[i%16] = '\0';
277 for (i %= 16; i < 16; i++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300278 printk(KERN_CONT " ");
279 printk(KERN_CONT " %s\n", bytes);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300280 }
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300281
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300282 return 0;
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300283
284noeeprom:
285 printk(KERN_INFO "%s: Huh, no eeprom present (err=%d)?\n",
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300286 dev->name, rc);
287 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300288}
289
290/* ----------------------------------------------------------- */
291
292/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300293 * functionality()
294 */
295static u32 functionality(struct i2c_adapter *adap)
296{
297 return I2C_FUNC_SMBUS_EMUL;
298}
299
Jean Delvare7bd444e2010-11-07 12:53:44 -0300300static const struct i2c_algorithm tm6000_algo = {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300301 .master_xfer = tm6000_i2c_xfer,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300302 .functionality = functionality,
303};
304
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300305/* ----------------------------------------------------------- */
306
307/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300308 * tm6000_i2c_register()
309 * register i2c bus
310 */
311int tm6000_i2c_register(struct tm6000_core *dev)
312{
Jean Delvare7bd444e2010-11-07 12:53:44 -0300313 int rc;
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300314
Jean Delvare7bd444e2010-11-07 12:53:44 -0300315 dev->i2c_adap.owner = THIS_MODULE;
316 dev->i2c_adap.algo = &tm6000_algo;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300317 dev->i2c_adap.dev.parent = &dev->udev->dev;
Jean Delvare7bd444e2010-11-07 12:53:44 -0300318 strlcpy(dev->i2c_adap.name, dev->name, sizeof(dev->i2c_adap.name));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300319 dev->i2c_adap.algo_data = dev;
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -0300320 i2c_set_adapdata(&dev->i2c_adap, &dev->v4l2_dev);
Jean Delvare7bd444e2010-11-07 12:53:44 -0300321 rc = i2c_add_adapter(&dev->i2c_adap);
322 if (rc)
323 return rc;
324
325 dev->i2c_client.adapter = &dev->i2c_adap;
326 strlcpy(dev->i2c_client.name, "tm6000 internal", I2C_NAME_SIZE);
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300327 tm6000_i2c_eeprom(dev);
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300328
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300329 return 0;
330}
331
332/*
333 * tm6000_i2c_unregister()
334 * unregister i2c_bus
335 */
336int tm6000_i2c_unregister(struct tm6000_core *dev)
337{
338 i2c_del_adapter(&dev->i2c_adap);
339 return 0;
340}