2 tm6000-i2c.c - driver for TM5600/TM6000 USB video capture devices
4 Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
6 Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7 - Fix SMBus Read Byte command
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
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.
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.
23 #include <linux/module.h>
24 #include <linux/kernel.h>
25 #include <linux/usb.h>
26 #include <linux/i2c.h>
29 #include "tm6000-regs.h"
30 #include <media/v4l2-common.h>
31 #include <media/tuner.h>
32 #include "tuner-xc2028.h"
35 /*FIXME: Hack to avoid needing to patch i2c-id.h */
36 #define I2C_HW_B_TM6000 I2C_HW_B_EM28XX
37 /* ----------------------------------------------------------- */
39 static unsigned int i2c_debug
= 0;
40 module_param(i2c_debug
, int, 0644);
41 MODULE_PARM_DESC(i2c_debug
, "enable debug messages [i2c]");
43 #define i2c_dprintk(lvl,fmt, args...) if (i2c_debug>=lvl) do{ \
44 printk(KERN_DEBUG "%s at %s: " fmt, \
45 dev->name, __FUNCTION__ , ##args); } while (0)
47 static int tm6000_i2c_xfer(struct i2c_adapter
*i2c_adap
,
48 struct i2c_msg msgs
[], int num
)
50 struct tm6000_core
*dev
= i2c_adap
->algo_data
;
51 int addr
, rc
, i
, byte
;
55 for (i
= 0; i
< num
; i
++) {
56 addr
= (msgs
[i
].addr
<< 1) & 0xff;
57 i2c_dprintk(2,"%s %s addr=0x%x len=%d:",
58 (msgs
[i
].flags
& I2C_M_RD
) ? "read" : "write",
59 i
== num
- 1 ? "stop" : "nonstop", addr
, msgs
[i
].len
);
60 if (msgs
[i
].flags
& I2C_M_RD
) {
61 /* read request without preceding register selection */
63 * The TM6000 only supports a read transaction
64 * immediately after a 1 or 2 byte write to select
65 * a register. We cannot fulfil this request.
67 i2c_dprintk(2, " read without preceding write not"
71 } else if (i
+ 1 < num
&& msgs
[i
].len
<= 2 &&
72 (msgs
[i
+ 1].flags
& I2C_M_RD
) &&
73 msgs
[i
].addr
== msgs
[i
+ 1].addr
) {
74 /* 1 or 2 byte write followed by a read */
76 for (byte
= 0; byte
< msgs
[i
].len
; byte
++)
77 printk(" %02x", msgs
[i
].buf
[byte
]);
78 i2c_dprintk(2, "; joined to read %s len=%d:",
79 i
== num
- 2 ? "stop" : "nonstop",
81 rc
= tm6000_read_write_usb (dev
,
82 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
83 msgs
[i
].len
== 1 ? REQ_16_SET_GET_I2C_WR1_RDN
84 : REQ_14_SET_GET_I2C_WR2_RDN
,
85 addr
| msgs
[i
].buf
[0] << 8,
86 msgs
[i
].len
== 1 ? 0 : msgs
[i
].buf
[1],
87 msgs
[i
+ 1].buf
, msgs
[i
+ 1].len
);
90 for (byte
= 0; byte
< msgs
[i
].len
; byte
++)
91 printk(" %02x", msgs
[i
].buf
[byte
]);
95 for (byte
= 0; byte
< msgs
[i
].len
; byte
++)
96 printk(" %02x", msgs
[i
].buf
[byte
]);
97 rc
= tm6000_read_write_usb(dev
,
98 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
99 REQ_16_SET_GET_I2C_WR1_RDN
,
100 addr
| msgs
[i
].buf
[0] << 8, 0,
101 msgs
[i
].buf
+ 1, msgs
[i
].len
- 1);
111 i2c_dprintk(2," ERROR: %i\n", rc
);
115 static int tm6000_i2c_eeprom(struct tm6000_core
*dev
,
116 unsigned char *eedata
, int len
)
119 unsigned char *p
= eedata
;
120 unsigned char bytes
[17];
122 dev
->i2c_client
.addr
= 0xa0 >> 1;
125 for (i
= 0; i
< len
; ) {
127 rc
= tm6000_read_write_usb (dev
,
128 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
129 REQ_16_SET_GET_I2C_WR1_RDN
, 0xa0 | i
<<8, 0, p
, 1);
135 "%s: i2c eeprom read error (err=%d)\n",
142 printk(KERN_INFO
"%s: i2c eeprom %02x:", dev
->name
, i
);
143 printk(" %02x", eedata
[i
]);
144 if ((eedata
[i
] >= ' ') && (eedata
[i
] <= 'z')) {
145 bytes
[i
%16] = eedata
[i
];
154 printk(" %s\n", bytes
);
159 for (i
%= 16; i
< 16; i
++)
162 printk(" %s\n", bytes
);
167 printk(KERN_INFO
"%s: Huh, no eeprom present (err=%d)?\n",
172 /* ----------------------------------------------------------- */
177 static u32
functionality(struct i2c_adapter
*adap
)
179 return I2C_FUNC_SMBUS_EMUL
;
182 #define mass_write(addr, reg, data...) \
183 { const static u8 _val[] = data; \
184 rc=tm6000_read_write_usb(dev,USB_DIR_OUT | USB_TYPE_VENDOR, \
185 REQ_16_SET_GET_I2C_WR1_RDN,(reg<<8)+addr, 0x00, (u8 *) _val, \
188 printk(KERN_ERR "Error on line %d: %d\n",__LINE__,rc); \
194 static struct i2c_algorithm tm6000_algo
= {
195 .master_xfer
= tm6000_i2c_xfer
,
196 .functionality
= functionality
,
199 static struct i2c_adapter tm6000_adap_template
= {
200 .owner
= THIS_MODULE
,
201 .class = I2C_CLASS_TV_ANALOG
,
203 .id
= I2C_HW_B_TM6000
,
204 .algo
= &tm6000_algo
,
207 static struct i2c_client tm6000_client_template
= {
208 .name
= "tm6000 internal",
211 /* ----------------------------------------------------------- */
214 * tm6000_i2c_register()
217 int tm6000_i2c_register(struct tm6000_core
*dev
)
219 unsigned char eedata
[256];
221 dev
->i2c_adap
= tm6000_adap_template
;
222 dev
->i2c_adap
.dev
.parent
= &dev
->udev
->dev
;
223 strcpy(dev
->i2c_adap
.name
, dev
->name
);
224 dev
->i2c_adap
.algo_data
= dev
;
225 i2c_add_adapter(&dev
->i2c_adap
);
227 dev
->i2c_client
= tm6000_client_template
;
228 dev
->i2c_client
.adapter
= &dev
->i2c_adap
;
230 i2c_set_adapdata(&dev
->i2c_adap
, &dev
->v4l2_dev
);
232 tm6000_i2c_eeprom(dev
, eedata
, sizeof(eedata
));
238 * tm6000_i2c_unregister()
241 int tm6000_i2c_unregister(struct tm6000_core
*dev
)
243 i2c_del_adapter(&dev
->i2c_adap
);