blob: c7e23e3dd75ed4f47276ace2f8480b461a9131fe [file] [log] [blame]
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001/*
Ruslan Pisarevd00586452010-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;
Dmitri Belimov20dead82010-04-27 22:32:43 -030049 unsigned int i2c_packet_limit = 16;
50
51 if (dev->dev_type == TM6010)
matthieu castet3874cd72011-12-16 14:15:07 -030052 i2c_packet_limit = 80;
Dmitri Belimov20dead82010-04-27 22:32:43 -030053
54 if (!buf)
55 return -1;
56
57 if (len < 1 || len > i2c_packet_limit) {
58 printk(KERN_ERR "Incorrect length of i2c packet = %d, limit set to %d\n",
59 len, i2c_packet_limit);
60 return -1;
61 }
62
63 /* capture mutex */
64 rc = tm6000_read_write_usb(dev, USB_DIR_OUT | USB_TYPE_VENDOR |
65 USB_RECIP_DEVICE, REQ_16_SET_GET_I2C_WR1_RDN,
66 addr | reg << 8, 0, buf, len);
67
68 if (rc < 0) {
69 /* release mutex */
70 return rc;
71 }
72
Dmitri Belimov20dead82010-04-27 22:32:43 -030073 /* release mutex */
74 return rc;
Stefan Ringel4e115022010-02-22 14:35:05 -030075}
76
77/* Generic read - doesn't work fine with 16bit registers */
78static int tm6000_i2c_recv_regs(struct tm6000_core *dev, unsigned char addr,
79 __u8 reg, char *buf, int len)
80{
81 int rc;
Stefan Ringel02512fe2010-02-22 14:35:06 -030082 u8 b[2];
Dmitri Belimov20dead82010-04-27 22:32:43 -030083 unsigned int i2c_packet_limit = 16;
Stefan Ringel4e115022010-02-22 14:35:05 -030084
Dmitri Belimov20dead82010-04-27 22:32:43 -030085 if (dev->dev_type == TM6010)
86 i2c_packet_limit = 64;
87
88 if (!buf)
89 return -1;
90
91 if (len < 1 || len > i2c_packet_limit) {
92 printk(KERN_ERR "Incorrect length of i2c packet = %d, limit set to %d\n",
93 len, i2c_packet_limit);
94 return -1;
95 }
96
97 /* capture mutex */
Stefan Ringel02512fe2010-02-22 14:35:06 -030098 if ((dev->caps.has_zl10353) && (dev->demod_addr << 1 == addr) && (reg % 2 == 0)) {
99 /*
100 * Workaround an I2C bug when reading from zl10353
101 */
102 reg -= 1;
103 len += 1;
104
105 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
106 REQ_16_SET_GET_I2C_WR1_RDN, addr | reg << 8, 0, b, len);
107
108 *buf = b[1];
109 } else {
110 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
Stefan Ringel4e115022010-02-22 14:35:05 -0300111 REQ_16_SET_GET_I2C_WR1_RDN, addr | reg << 8, 0, buf, len);
Stefan Ringel02512fe2010-02-22 14:35:06 -0300112 }
Stefan Ringel4e115022010-02-22 14:35:05 -0300113
Dmitri Belimov20dead82010-04-27 22:32:43 -0300114 /* release mutex */
Stefan Ringel4e115022010-02-22 14:35:05 -0300115 return rc;
116}
117
118/*
119 * read from a 16bit register
120 * for example xc2028, xc3028 or xc3028L
121 */
122static int tm6000_i2c_recv_regs16(struct tm6000_core *dev, unsigned char addr,
123 __u16 reg, char *buf, int len)
124{
Dmitri Belimov20dead82010-04-27 22:32:43 -0300125 int rc;
126 unsigned char ureg;
127
128 if (!buf || len != 2)
129 return -1;
130
131 /* capture mutex */
132 if (dev->dev_type == TM6010) {
133 ureg = reg & 0xFF;
134 rc = tm6000_read_write_usb(dev, USB_DIR_OUT | USB_TYPE_VENDOR |
135 USB_RECIP_DEVICE, REQ_16_SET_GET_I2C_WR1_RDN,
136 addr | (reg & 0xFF00), 0, &ureg, 1);
137
138 if (rc < 0) {
139 /* release mutex */
140 return rc;
141 }
142
Dmitri Belimov20dead82010-04-27 22:32:43 -0300143 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR |
144 USB_RECIP_DEVICE, REQ_35_AFTEK_TUNER_READ,
145 reg, 0, buf, len);
146 } else {
147 rc = tm6000_read_write_usb(dev, USB_DIR_IN | USB_TYPE_VENDOR |
148 USB_RECIP_DEVICE, REQ_14_SET_GET_I2C_WR2_RDN,
149 addr, reg, buf, len);
150 }
151
152 /* release mutex */
153 return rc;
Stefan Ringel4e115022010-02-22 14:35:05 -0300154}
155
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300156static int tm6000_i2c_xfer(struct i2c_adapter *i2c_adap,
157 struct i2c_msg msgs[], int num)
158{
159 struct tm6000_core *dev = i2c_adap->algo_data;
160 int addr, rc, i, byte;
161
162 if (num <= 0)
163 return 0;
164 for (i = 0; i < num; i++) {
Chris Pascoee30b9d62007-11-24 04:34:42 -0300165 addr = (msgs[i].addr << 1) & 0xff;
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300166 i2c_dprintk(2, "%s %s addr=0x%x len=%d:",
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300167 (msgs[i].flags & I2C_M_RD) ? "read" : "write",
168 i == num - 1 ? "stop" : "nonstop", addr, msgs[i].len);
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -0300169 if (msgs[i].flags & I2C_M_RD) {
Chris Pascoee30b9d62007-11-24 04:34:42 -0300170 /* read request without preceding register selection */
171 /*
172 * The TM6000 only supports a read transaction
173 * immediately after a 1 or 2 byte write to select
174 * a register. We cannot fulfil this request.
175 */
176 i2c_dprintk(2, " read without preceding write not"
177 " supported");
178 rc = -EOPNOTSUPP;
179 goto err;
180 } else if (i + 1 < num && msgs[i].len <= 2 &&
181 (msgs[i + 1].flags & I2C_M_RD) &&
182 msgs[i].addr == msgs[i + 1].addr) {
183 /* 1 or 2 byte write followed by a read */
184 if (i2c_debug >= 2)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300185 for (byte = 0; byte < msgs[i].len; byte++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300186 printk(KERN_CONT " %02x", msgs[i].buf[byte]);
Chris Pascoee30b9d62007-11-24 04:34:42 -0300187 i2c_dprintk(2, "; joined to read %s len=%d:",
188 i == num - 2 ? "stop" : "nonstop",
189 msgs[i + 1].len);
Stefan Ringel4e115022010-02-22 14:35:05 -0300190
191 if (msgs[i].len == 2) {
192 rc = tm6000_i2c_recv_regs16(dev, addr,
193 msgs[i].buf[0] << 8 | msgs[i].buf[1],
194 msgs[i + 1].buf, msgs[i + 1].len);
195 } else {
196 rc = tm6000_i2c_recv_regs(dev, addr, msgs[i].buf[0],
197 msgs[i + 1].buf, msgs[i + 1].len);
198 }
199
Chris Pascoee30b9d62007-11-24 04:34:42 -0300200 i++;
Stefan Ringel20cabed2010-02-05 19:57:04 -0300201
Stefan Ringel685b1222010-02-21 17:10:36 -0300202 if (addr == dev->tuner_addr << 1) {
Stefan Ringelf1434f42010-04-02 13:52:50 -0300203 tm6000_set_reg(dev, REQ_50_SET_START, 0, 0);
204 tm6000_set_reg(dev, REQ_51_SET_STOP, 0, 0);
Stefan Ringel20cabed2010-02-05 19:57:04 -0300205 }
Chris Pascoee30b9d62007-11-24 04:34:42 -0300206 if (i2c_debug >= 2)
207 for (byte = 0; byte < msgs[i].len; byte++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300208 printk(KERN_CONT " %02x", msgs[i].buf[byte]);
Chris Pascoee30b9d62007-11-24 04:34:42 -0300209 } else {
210 /* write bytes */
211 if (i2c_debug >= 2)
212 for (byte = 0; byte < msgs[i].len; byte++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300213 printk(KERN_CONT " %02x", msgs[i].buf[byte]);
Stefan Ringel4e115022010-02-22 14:35:05 -0300214 rc = tm6000_i2c_send_regs(dev, addr, msgs[i].buf[0],
Chris Pascoee30b9d62007-11-24 04:34:42 -0300215 msgs[i].buf + 1, msgs[i].len - 1);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300216 }
Chris Pascoee30b9d62007-11-24 04:34:42 -0300217 if (i2c_debug >= 2)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300218 printk(KERN_CONT "\n");
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300219 if (rc < 0)
220 goto err;
221 }
222
223 return num;
224err:
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300225 i2c_dprintk(2, " ERROR: %i\n", rc);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300226 return rc;
227}
228
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300229static int tm6000_i2c_eeprom(struct tm6000_core *dev)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300230{
231 int i, rc;
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300232 unsigned char *p = dev->eedata;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300233 unsigned char bytes[17];
234
235 dev->i2c_client.addr = 0xa0 >> 1;
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300236 dev->eedata_size = 0;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300237
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300238 bytes[16] = '\0';
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300239 for (i = 0; i < sizeof(dev->eedata); ) {
240 *p = i;
241 rc = tm6000_i2c_recv_regs(dev, 0xa0, i, p, 1);
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300242 if (rc < 1) {
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300243 if (p == dev->eedata)
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300244 goto noeeprom;
245 else {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300246 printk(KERN_WARNING
247 "%s: i2c eeprom read error (err=%d)\n",
248 dev->name, rc);
249 }
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300250 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300251 }
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300252 dev->eedata_size++;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300253 p++;
254 if (0 == (i % 16))
255 printk(KERN_INFO "%s: i2c eeprom %02x:", dev->name, i);
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300256 printk(KERN_CONT " %02x", dev->eedata[i]);
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300257 if ((dev->eedata[i] >= ' ') && (dev->eedata[i] <= 'z'))
258 bytes[i%16] = dev->eedata[i];
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300259 else
260 bytes[i%16] = '.';
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300261
262 i++;
263
264 if (0 == (i % 16)) {
265 bytes[16] = '\0';
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300266 printk(KERN_CONT " %s\n", bytes);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300267 }
268 }
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300269 if (0 != (i%16)) {
270 bytes[i%16] = '\0';
271 for (i %= 16; i < 16; i++)
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300272 printk(KERN_CONT " ");
273 printk(KERN_CONT " %s\n", bytes);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300274 }
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300275
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300276 return 0;
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300277
278noeeprom:
279 printk(KERN_INFO "%s: Huh, no eeprom present (err=%d)?\n",
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300280 dev->name, rc);
281 return -EINVAL;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300282}
283
284/* ----------------------------------------------------------- */
285
286/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300287 * functionality()
288 */
289static u32 functionality(struct i2c_adapter *adap)
290{
291 return I2C_FUNC_SMBUS_EMUL;
292}
293
Jean Delvare7bd444e2010-11-07 12:53:44 -0300294static const struct i2c_algorithm tm6000_algo = {
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300295 .master_xfer = tm6000_i2c_xfer,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300296 .functionality = functionality,
297};
298
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300299/* ----------------------------------------------------------- */
300
301/*
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300302 * tm6000_i2c_register()
303 * register i2c bus
304 */
305int tm6000_i2c_register(struct tm6000_core *dev)
306{
Jean Delvare7bd444e2010-11-07 12:53:44 -0300307 int rc;
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300308
Jean Delvare7bd444e2010-11-07 12:53:44 -0300309 dev->i2c_adap.owner = THIS_MODULE;
310 dev->i2c_adap.algo = &tm6000_algo;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300311 dev->i2c_adap.dev.parent = &dev->udev->dev;
Jean Delvare7bd444e2010-11-07 12:53:44 -0300312 strlcpy(dev->i2c_adap.name, dev->name, sizeof(dev->i2c_adap.name));
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300313 dev->i2c_adap.algo_data = dev;
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -0300314 i2c_set_adapdata(&dev->i2c_adap, &dev->v4l2_dev);
Jean Delvare7bd444e2010-11-07 12:53:44 -0300315 rc = i2c_add_adapter(&dev->i2c_adap);
316 if (rc)
317 return rc;
318
319 dev->i2c_client.adapter = &dev->i2c_adap;
320 strlcpy(dev->i2c_client.name, "tm6000 internal", I2C_NAME_SIZE);
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300321 tm6000_i2c_eeprom(dev);
Mauro Carvalho Chehabd4e15bc2007-11-05 15:39:41 -0300322
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300323 return 0;
324}
325
326/*
327 * tm6000_i2c_unregister()
328 * unregister i2c_bus
329 */
330int tm6000_i2c_unregister(struct tm6000_core *dev)
331{
332 i2c_del_adapter(&dev->i2c_adap);
333 return 0;
334}