blob: 482d249ca7f3f0613d8aee2bf7c3ca27804a908a [file] [log] [blame]
Malcolm Priestleyf6d87352011-07-25 15:35:03 -03001/* DVB USB compliant linux driver for IT9137
2 *
3 * Copyright (C) 2011 Malcolm Priestley (tvboxspy@gmail.com)
4 * IT9137 (C) ITE Tech Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License Version 2, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 *
20 * see Documentation/dvb/README.dvb-usb for more information
21 * see Documentation/dvb/it9137.txt for firmware information
22 *
23 */
24#define DVB_USB_LOG_PREFIX "it913x"
25
26#include <linux/usb.h>
27#include <linux/usb/input.h>
28#include <media/rc-core.h>
29
30#include "dvb-usb.h"
31#include "it913x-fe.h"
32
33/* debug */
34static int dvb_usb_it913x_debug;
35#define l_dprintk(var, level, args...) do { \
36 if ((var >= level)) \
37 printk(KERN_DEBUG DVB_USB_LOG_PREFIX ": " args); \
38} while (0)
39
40#define deb_info(level, args...) l_dprintk(dvb_usb_it913x_debug, level, args)
41#define debug_data_snipet(level, name, p) \
42 deb_info(level, name" (%02x%02x%02x%02x%02x%02x%02x%02x)", \
43 *p, *(p+1), *(p+2), *(p+3), *(p+4), \
44 *(p+5), *(p+6), *(p+7));
45
46
47module_param_named(debug, dvb_usb_it913x_debug, int, 0644);
48MODULE_PARM_DESC(debug, "set debugging level (1=info (or-able))."
49 DVB_USB_DEBUG_STATUS);
50
51static int pid_filter;
52module_param_named(pid, pid_filter, int, 0644);
53MODULE_PARM_DESC(pid, "set default 0=on 1=off");
54
Malcolm Priestley5e642c02011-11-30 17:16:09 -030055static int dvb_usb_it913x_firmware;
56module_param_named(firmware, dvb_usb_it913x_firmware, int, 0644);
57MODULE_PARM_DESC(firmware, "set firmware 0=auto 1=IT9137 2=IT9135V1");
58
59
Malcolm Priestleyf6d87352011-07-25 15:35:03 -030060int cmd_counter;
61
62DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
63
64struct it913x_state {
65 u8 id;
Malcolm Priestley50815702011-12-04 08:20:37 -030066 struct ite_config it913x_config;
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -030067 u8 pid_filter_onoff;
Malcolm Priestleybc549192011-10-14 19:54:11 -030068};
69
70struct ite_config it913x_config;
71
Malcolm Priestley15157c52011-12-01 17:35:48 -030072#define IT913X_RETRY 10
73#define IT913X_SND_TIMEOUT 100
74#define IT913X_RCV_TIMEOUT 200
75
Malcolm Priestleyf6d87352011-07-25 15:35:03 -030076static int it913x_bulk_write(struct usb_device *dev,
77 u8 *snd, int len, u8 pipe)
78{
Malcolm Priestley15157c52011-12-01 17:35:48 -030079 int ret, actual_l, i;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -030080
Malcolm Priestley15157c52011-12-01 17:35:48 -030081 for (i = 0; i < IT913X_RETRY; i++) {
82 ret = usb_bulk_msg(dev, usb_sndbulkpipe(dev, pipe),
83 snd, len , &actual_l, IT913X_SND_TIMEOUT);
84 if (ret == 0 || ret != -EBUSY || ret != -ETIMEDOUT)
85 break;
86 }
87
88 if (len != actual_l && ret == 0)
89 ret = -EAGAIN;
90
Malcolm Priestleyf6d87352011-07-25 15:35:03 -030091 return ret;
92}
93
94static int it913x_bulk_read(struct usb_device *dev,
95 u8 *rev, int len, u8 pipe)
96{
Malcolm Priestley15157c52011-12-01 17:35:48 -030097 int ret, actual_l, i;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -030098
Malcolm Priestley15157c52011-12-01 17:35:48 -030099 for (i = 0; i < IT913X_RETRY; i++) {
100 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, pipe),
101 rev, len , &actual_l, IT913X_RCV_TIMEOUT);
102 if (ret == 0 || ret != -EBUSY || ret != -ETIMEDOUT)
103 break;
104 }
105
106 if (len != actual_l && ret == 0)
107 ret = -EAGAIN;
108
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300109 return ret;
110}
111
112static u16 check_sum(u8 *p, u8 len)
113{
114 u16 sum = 0;
115 u8 i = 1;
116 while (i < len)
117 sum += (i++ & 1) ? (*p++) << 8 : *p++;
118 return ~sum;
119}
120
Malcolm Priestley15157c52011-12-01 17:35:48 -0300121static int it913x_usb_talk(struct usb_device *udev, u8 mode, u8 pro,
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300122 u8 cmd, u32 reg, u8 addr, u8 *data, u8 len)
123{
124 int ret = 0, i, buf_size = 1;
125 u8 *buff;
126 u8 rlen;
127 u16 chk_sum;
128
129 buff = kzalloc(256, GFP_KERNEL);
130 if (!buff) {
131 info("USB Buffer Failed");
132 return -ENOMEM;
133 }
134
135 buff[buf_size++] = pro;
136 buff[buf_size++] = cmd;
137 buff[buf_size++] = cmd_counter;
138
139 switch (mode) {
140 case READ_LONG:
141 case WRITE_LONG:
142 buff[buf_size++] = len;
143 buff[buf_size++] = 2;
144 buff[buf_size++] = (reg >> 24);
145 buff[buf_size++] = (reg >> 16) & 0xff;
146 buff[buf_size++] = (reg >> 8) & 0xff;
147 buff[buf_size++] = reg & 0xff;
148 break;
149 case READ_SHORT:
150 buff[buf_size++] = addr;
151 break;
152 case WRITE_SHORT:
153 buff[buf_size++] = len;
154 buff[buf_size++] = addr;
155 buff[buf_size++] = (reg >> 8) & 0xff;
156 buff[buf_size++] = reg & 0xff;
157 break;
158 case READ_DATA:
159 case WRITE_DATA:
160 break;
161 case WRITE_CMD:
162 mode = 7;
163 break;
164 default:
165 kfree(buff);
166 return -EINVAL;
167 }
168
169 if (mode & 1) {
170 for (i = 0; i < len ; i++)
171 buff[buf_size++] = data[i];
172 }
173 chk_sum = check_sum(&buff[1], buf_size);
174
175 buff[buf_size++] = chk_sum >> 8;
176 buff[0] = buf_size;
177 buff[buf_size++] = (chk_sum & 0xff);
178
179 ret = it913x_bulk_write(udev, buff, buf_size , 0x02);
Malcolm Priestley15157c52011-12-01 17:35:48 -0300180 if (ret < 0)
181 goto error;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300182
Malcolm Priestley15157c52011-12-01 17:35:48 -0300183 ret = it913x_bulk_read(udev, buff, (mode & 1) ?
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300184 5 : len + 5 , 0x01);
Malcolm Priestley15157c52011-12-01 17:35:48 -0300185 if (ret < 0)
186 goto error;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300187
188 rlen = (mode & 0x1) ? 0x1 : len;
189
190 if (mode & 1)
Malcolm Priestley15157c52011-12-01 17:35:48 -0300191 ret = buff[2];
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300192 else
193 memcpy(data, &buff[3], rlen);
194
195 cmd_counter++;
196
Malcolm Priestley15157c52011-12-01 17:35:48 -0300197error: kfree(buff);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300198
Malcolm Priestley15157c52011-12-01 17:35:48 -0300199 return ret;
200}
201
202static int it913x_io(struct usb_device *udev, u8 mode, u8 pro,
203 u8 cmd, u32 reg, u8 addr, u8 *data, u8 len)
204{
205 int ret, i;
206
207 for (i = 0; i < IT913X_RETRY; i++) {
208 ret = it913x_usb_talk(udev, mode, pro,
209 cmd, reg, addr, data, len);
210 if (ret != -EAGAIN)
211 break;
212 }
213
214 return ret;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300215}
216
217static int it913x_wr_reg(struct usb_device *udev, u8 pro, u32 reg , u8 data)
218{
219 int ret;
220 u8 b[1];
221 b[0] = data;
222 ret = it913x_io(udev, WRITE_LONG, pro,
223 CMD_DEMOD_WRITE, reg, 0, b, sizeof(b));
224
225 return ret;
226}
227
228static int it913x_read_reg(struct usb_device *udev, u32 reg)
229{
230 int ret;
231 u8 data[1];
232
233 ret = it913x_io(udev, READ_LONG, DEV_0,
234 CMD_DEMOD_READ, reg, 0, &data[0], 1);
235
236 return (ret < 0) ? ret : data[0];
237}
238
239static u32 it913x_query(struct usb_device *udev, u8 pro)
240{
Malcolm Priestley4da28762012-03-25 06:57:49 -0300241 int ret, i;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300242 u8 data[4];
Malcolm Priestley4da28762012-03-25 06:57:49 -0300243 u8 ver;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300244
Malcolm Priestley4da28762012-03-25 06:57:49 -0300245 for (i = 0; i < 5; i++) {
246 ret = it913x_io(udev, READ_LONG, pro, CMD_DEMOD_READ,
247 0x1222, 0, &data[0], 3);
248 ver = data[0];
249 if (ver > 0 && ver < 3)
250 break;
251 msleep(100);
252 }
253
254 if (ver < 1 || ver > 2) {
255 info("Failed to identify chip version applying 1");
256 it913x_config.chip_ver = 0x1;
257 it913x_config.chip_type = 0x9135;
258 return 0;
259 }
260
261 it913x_config.chip_ver = ver;
Malcolm Priestleybc549192011-10-14 19:54:11 -0300262 it913x_config.chip_type = (u16)(data[2] << 8) + data[1];
263
264 info("Chip Version=%02x Chip Type=%04x", it913x_config.chip_ver,
265 it913x_config.chip_type);
266
267 ret |= it913x_io(udev, READ_SHORT, pro,
268 CMD_QUERYINFO, 0, 0x1, &data[0], 4);
269
270 it913x_config.firmware = (data[0] << 24) + (data[1] << 16) +
271 (data[2] << 8) + data[3];
272
273 return (ret < 0) ? 0 : it913x_config.firmware;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300274}
275
276static int it913x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
277{
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -0300278 struct it913x_state *st = adap->dev->priv;
Malcolm Priestleyd4d5a402012-01-02 14:46:32 -0300279 struct usb_device *udev = adap->dev->udev;
280 int ret;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300281 u8 pro = (adap->id == 0) ? DEV_0_DMOD : DEV_1_DMOD;
282
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300283 mutex_lock(&adap->dev->i2c_mutex);
284
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300285 deb_info(1, "PID_C (%02x)", onoff);
286
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -0300287 ret = it913x_wr_reg(udev, pro, PID_EN, st->pid_filter_onoff);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300288
289 mutex_unlock(&adap->dev->i2c_mutex);
290 return ret;
291}
292
293static int it913x_pid_filter(struct dvb_usb_adapter *adap,
294 int index, u16 pid, int onoff)
295{
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -0300296 struct it913x_state *st = adap->dev->priv;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300297 struct usb_device *udev = adap->dev->udev;
Malcolm Priestleyd4d5a402012-01-02 14:46:32 -0300298 int ret;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300299 u8 pro = (adap->id == 0) ? DEV_0_DMOD : DEV_1_DMOD;
300
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300301 mutex_lock(&adap->dev->i2c_mutex);
302
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300303 deb_info(1, "PID_F (%02x)", onoff);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300304
Malcolm Priestleyd4d5a402012-01-02 14:46:32 -0300305 ret = it913x_wr_reg(udev, pro, PID_LSB, (u8)(pid & 0xff));
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300306
Malcolm Priestleyd4d5a402012-01-02 14:46:32 -0300307 ret |= it913x_wr_reg(udev, pro, PID_MSB, (u8)(pid >> 8));
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300308
Malcolm Priestleyd4d5a402012-01-02 14:46:32 -0300309 ret |= it913x_wr_reg(udev, pro, PID_INX_EN, (u8)onoff);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300310
Malcolm Priestleyd4d5a402012-01-02 14:46:32 -0300311 ret |= it913x_wr_reg(udev, pro, PID_INX, (u8)(index & 0x1f));
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300312
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -0300313 if (udev->speed == USB_SPEED_HIGH && pid == 0x2000) {
314 ret |= it913x_wr_reg(udev, pro, PID_EN, !onoff);
315 st->pid_filter_onoff = !onoff;
316 } else
317 st->pid_filter_onoff =
318 adap->fe_adap[adap->active_fe].pid_filtering;
319
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300320 mutex_unlock(&adap->dev->i2c_mutex);
321 return 0;
322}
323
324
325static int it913x_return_status(struct usb_device *udev)
326{
327 u32 firm = 0;
328
329 firm = it913x_query(udev, DEV_0);
330 if (firm > 0)
331 info("Firmware Version %d", firm);
332
333 return (firm > 0) ? firm : 0;
334}
335
336static int it913x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
337 int num)
338{
339 struct dvb_usb_device *d = i2c_get_adapdata(adap);
340 static u8 data[256];
341 int ret;
342 u32 reg;
343 u8 pro;
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300344
345 mutex_lock(&d->i2c_mutex);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300346
347 debug_data_snipet(1, "Message out", msg[0].buf);
348 deb_info(2, "num of messages %d address %02x", num, msg[0].addr);
349
350 pro = (msg[0].addr & 0x2) ? DEV_0_DMOD : 0x0;
351 pro |= (msg[0].addr & 0x20) ? DEV_1 : DEV_0;
352 memcpy(data, msg[0].buf, msg[0].len);
353 reg = (data[0] << 24) + (data[1] << 16) +
354 (data[2] << 8) + data[3];
355 if (num == 2) {
356 ret = it913x_io(d->udev, READ_LONG, pro,
357 CMD_DEMOD_READ, reg, 0, data, msg[1].len);
358 memcpy(msg[1].buf, data, msg[1].len);
359 } else
360 ret = it913x_io(d->udev, WRITE_LONG, pro, CMD_DEMOD_WRITE,
361 reg, 0, &data[4], msg[0].len - 4);
362
363 mutex_unlock(&d->i2c_mutex);
364
365 return ret;
366}
367
368static u32 it913x_i2c_func(struct i2c_adapter *adapter)
369{
370 return I2C_FUNC_I2C;
371}
372
373static struct i2c_algorithm it913x_i2c_algo = {
374 .master_xfer = it913x_i2c_xfer,
375 .functionality = it913x_i2c_func,
376};
377
378/* Callbacks for DVB USB */
tvboxspy2ba0f942011-09-21 18:57:41 -0300379#define IT913X_POLL 250
380static int it913x_rc_query(struct dvb_usb_device *d)
381{
382 u8 ibuf[4];
383 int ret;
384 u32 key;
385 /* Avoid conflict with frontends*/
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300386 mutex_lock(&d->i2c_mutex);
tvboxspy2ba0f942011-09-21 18:57:41 -0300387
388 ret = it913x_io(d->udev, READ_LONG, PRO_LINK, CMD_IR_GET,
389 0, 0, &ibuf[0], sizeof(ibuf));
390
391 if ((ibuf[2] + ibuf[3]) == 0xff) {
392 key = ibuf[2];
Malcolm Priestleyc725ff62011-11-28 18:22:41 -0300393 key += ibuf[0] << 16;
394 key += ibuf[1] << 8;
395 deb_info(1, "NEC Extended Key =%08x", key);
tvboxspy2ba0f942011-09-21 18:57:41 -0300396 if (d->rc_dev != NULL)
397 rc_keydown(d->rc_dev, key, 0);
398 }
Malcolm Priestleyc725ff62011-11-28 18:22:41 -0300399
tvboxspy2ba0f942011-09-21 18:57:41 -0300400 mutex_unlock(&d->i2c_mutex);
401
402 return ret;
403}
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300404
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300405/* Firmware sets raw */
406const char fw_it9135_v1[] = "dvb-usb-it9135-01.fw";
Malcolm Priestley53844c42011-12-12 15:53:00 -0300407const char fw_it9135_v2[] = "dvb-usb-it9135-02.fw";
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300408const char fw_it9137[] = "dvb-usb-it9137-01.fw";
409
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300410static int ite_firmware_select(struct usb_device *udev,
411 struct dvb_usb_device_properties *props)
412{
413 int sw;
414 /* auto switch */
Malcolm Priestleya8ea0212012-01-20 19:07:18 -0300415 if (le16_to_cpu(udev->descriptor.idVendor) == USB_VID_KWORLD_2)
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300416 sw = IT9137_FW;
Malcolm Priestleya8ea0212012-01-20 19:07:18 -0300417 else if (it913x_config.chip_ver == 1)
418 sw = IT9135_V1_FW;
419 else
420 sw = IT9135_V2_FW;
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300421
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300422 /* force switch */
423 if (dvb_usb_it913x_firmware != IT9135_AUTO)
424 sw = dvb_usb_it913x_firmware;
425
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300426 switch (sw) {
427 case IT9135_V1_FW:
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300428 it913x_config.firmware_ver = 1;
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300429 it913x_config.adc_x2 = 1;
Malcolm Priestley6c5637e2012-02-12 09:03:06 -0300430 it913x_config.read_slevel = false;
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300431 props->firmware = fw_it9135_v1;
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300432 break;
Malcolm Priestley53844c42011-12-12 15:53:00 -0300433 case IT9135_V2_FW:
434 it913x_config.firmware_ver = 1;
435 it913x_config.adc_x2 = 1;
Malcolm Priestley6c5637e2012-02-12 09:03:06 -0300436 it913x_config.read_slevel = false;
Malcolm Priestley53844c42011-12-12 15:53:00 -0300437 props->firmware = fw_it9135_v2;
Malcolm Priestleyfc594e32012-01-28 18:02:34 -0300438 switch (it913x_config.tuner_id_0) {
439 case IT9135_61:
440 case IT9135_62:
441 break;
442 default:
443 info("Unknown tuner ID applying default 0x60");
444 case IT9135_60:
Malcolm Priestleya8ea0212012-01-20 19:07:18 -0300445 it913x_config.tuner_id_0 = IT9135_60;
Malcolm Priestleyfc594e32012-01-28 18:02:34 -0300446 }
Malcolm Priestley53844c42011-12-12 15:53:00 -0300447 break;
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300448 case IT9137_FW:
449 default:
450 it913x_config.firmware_ver = 0;
451 it913x_config.adc_x2 = 0;
Malcolm Priestley6c5637e2012-02-12 09:03:06 -0300452 it913x_config.read_slevel = true;
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300453 props->firmware = fw_it9137;
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300454 }
455
456 return 0;
457}
458
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300459static void it913x_select_remote(struct usb_device *udev,
460 struct dvb_usb_device_properties *props)
461{
462 switch (le16_to_cpu(udev->descriptor.idProduct)) {
463 case USB_PID_ITETECH_IT9135_9005:
464 props->rc.core.rc_codes = RC_MAP_IT913X_V2;
465 return;
466 default:
467 props->rc.core.rc_codes = RC_MAP_IT913X_V1;
468 }
469 return;
470}
471
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300472#define TS_MPEG_PKT_SIZE 188
473#define EP_LOW 21
474#define TS_BUFFER_SIZE_PID (EP_LOW*TS_MPEG_PKT_SIZE)
475#define EP_HIGH 348
476#define TS_BUFFER_SIZE_MAX (EP_HIGH*TS_MPEG_PKT_SIZE)
477
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300478static int it913x_select_config(struct usb_device *udev,
479 struct dvb_usb_device_properties *props)
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300480{
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300481 int ret = 0, reg;
482 bool proprietary_ir = false;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300483
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300484 if (it913x_config.chip_ver == 0x02
485 && it913x_config.chip_type == 0x9135)
486 reg = it913x_read_reg(udev, 0x461d);
487 else
488 reg = it913x_read_reg(udev, 0x461b);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300489
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300490 if (reg < 0)
491 return reg;
492
493 if (reg == 0) {
494 it913x_config.dual_mode = 0;
495 it913x_config.tuner_id_0 = IT9135_38;
496 proprietary_ir = true;
497 } else {
498 /* TS mode */
499 reg = it913x_read_reg(udev, 0x49c5);
500 if (reg < 0)
501 return reg;
502 it913x_config.dual_mode = reg;
503
504 /* IR mode type */
505 reg = it913x_read_reg(udev, 0x49ac);
506 if (reg < 0)
507 return reg;
508 if (reg == 5) {
509 info("Remote propriety (raw) mode");
510 proprietary_ir = true;
511 } else if (reg == 1) {
512 info("Remote HID mode NOT SUPPORTED");
513 proprietary_ir = false;
514 props->rc.core.rc_codes = NULL;
515 } else
516 props->rc.core.rc_codes = NULL;
517
518 /* Tuner_id */
519 reg = it913x_read_reg(udev, 0x49d0);
520 if (reg < 0)
521 return reg;
522 it913x_config.tuner_id_0 = reg;
523 }
524
525 if (proprietary_ir)
526 it913x_select_remote(udev, props);
Malcolm Priestleybc549192011-10-14 19:54:11 -0300527
Malcolm Priestley3822c7c2011-11-06 10:24:30 -0300528 if (udev->speed != USB_SPEED_HIGH) {
529 props->adapter[0].fe[0].pid_filter_count = 5;
530 info("USB 1 low speed mode - connect to USB 2 port");
531 if (pid_filter > 0)
532 pid_filter = 0;
533 if (it913x_config.dual_mode) {
534 it913x_config.dual_mode = 0;
535 info("Dual mode not supported in USB 1");
536 }
537 } else /* For replugging */
538 if(props->adapter[0].fe[0].pid_filter_count == 5)
539 props->adapter[0].fe[0].pid_filter_count = 31;
540
Malcolm Priestleyed3189c2011-12-30 18:48:00 -0300541 /* Select Stream Buffer Size and pid filter option*/
542 if (pid_filter) {
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300543 props->adapter[0].fe[0].stream.u.bulk.buffersize =
544 TS_BUFFER_SIZE_MAX;
Malcolm Priestleyed3189c2011-12-30 18:48:00 -0300545 props->adapter[0].fe[0].caps &=
546 ~DVB_USB_ADAP_NEED_PID_FILTERING;
547 } else
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300548 props->adapter[0].fe[0].stream.u.bulk.buffersize =
549 TS_BUFFER_SIZE_PID;
Malcolm Priestleyed3189c2011-12-30 18:48:00 -0300550
Malcolm Priestleyf36472d2011-12-11 17:09:46 -0300551 if (it913x_config.dual_mode) {
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300552 props->adapter[1].fe[0].stream.u.bulk.buffersize =
553 props->adapter[0].fe[0].stream.u.bulk.buffersize;
Malcolm Priestleyf36472d2011-12-11 17:09:46 -0300554 props->num_adapters = 2;
Malcolm Priestleyed3189c2011-12-30 18:48:00 -0300555 if (pid_filter)
556 props->adapter[1].fe[0].caps =
557 props->adapter[0].fe[0].caps;
Malcolm Priestleyf36472d2011-12-11 17:09:46 -0300558 } else
559 props->num_adapters = 1;
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300560
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300561 info("Dual mode=%x Tuner Type=%x", it913x_config.dual_mode,
562 it913x_config.tuner_id_0);
563
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300564 ret = ite_firmware_select(udev, props);
565
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300566 return ret;
567}
568
569static int it913x_identify_state(struct usb_device *udev,
570 struct dvb_usb_device_properties *props,
571 struct dvb_usb_device_description **desc,
572 int *cold)
573{
574 int ret = 0, firm_no;
575 u8 reg;
576
577 firm_no = it913x_return_status(udev);
578
579 /* Read and select config */
580 ret = it913x_select_config(udev, props);
581 if (ret < 0)
582 return ret;
583
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300584 if (firm_no > 0) {
585 *cold = 0;
586 return 0;
587 }
588
Malcolm Priestleybc549192011-10-14 19:54:11 -0300589 if (it913x_config.dual_mode) {
590 it913x_config.tuner_id_1 = it913x_read_reg(udev, 0x49e0);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300591 ret = it913x_wr_reg(udev, DEV_0, GPIOH1_EN, 0x1);
592 ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_ON, 0x1);
593 ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_O, 0x1);
Malcolm Priestleybc549192011-10-14 19:54:11 -0300594 msleep(50);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300595 ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_O, 0x0);
596 msleep(50);
597 reg = it913x_read_reg(udev, GPIOH1_O);
598 if (reg == 0) {
599 ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_O, 0x1);
600 ret |= it913x_return_status(udev);
601 if (ret != 0)
602 ret = it913x_wr_reg(udev, DEV_0,
603 GPIOH1_O, 0x0);
604 }
Malcolm Priestleyf36472d2011-12-11 17:09:46 -0300605 }
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300606
607 reg = it913x_read_reg(udev, IO_MUX_POWER_CLK);
608
Malcolm Priestleybc549192011-10-14 19:54:11 -0300609 if (it913x_config.dual_mode) {
610 ret |= it913x_wr_reg(udev, DEV_0, 0x4bfb, CHIP2_I2C_ADDR);
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300611 if (it913x_config.firmware_ver == 1)
612 ret |= it913x_wr_reg(udev, DEV_0, 0xcfff, 0x1);
613 else
614 ret |= it913x_wr_reg(udev, DEV_0, CLK_O_EN, 0x1);
Malcolm Priestleybc549192011-10-14 19:54:11 -0300615 } else {
616 ret |= it913x_wr_reg(udev, DEV_0, 0x4bfb, 0x0);
Malcolm Priestley990f49a2011-11-28 18:04:21 -0300617 if (it913x_config.firmware_ver == 1)
618 ret |= it913x_wr_reg(udev, DEV_0, 0xcfff, 0x0);
619 else
620 ret |= it913x_wr_reg(udev, DEV_0, CLK_O_EN, 0x0);
Malcolm Priestleybc549192011-10-14 19:54:11 -0300621 }
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300622
623 *cold = 1;
624
625 return (ret < 0) ? -ENODEV : 0;
626}
627
628static int it913x_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
629{
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -0300630 struct it913x_state *st = adap->dev->priv;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300631 int ret = 0;
632 u8 pro = (adap->id == 0) ? DEV_0_DMOD : DEV_1_DMOD;
633
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300634 deb_info(1, "STM (%02x)", onoff);
635
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300636 if (!onoff) {
637 mutex_lock(&adap->dev->i2c_mutex);
638
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300639 ret = it913x_wr_reg(adap->dev->udev, pro, PID_RST, 0x1);
640
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300641 mutex_unlock(&adap->dev->i2c_mutex);
Malcolm Priestleyaaa589f2012-02-12 07:31:41 -0300642 st->pid_filter_onoff =
643 adap->fe_adap[adap->active_fe].pid_filtering;
644
Malcolm Priestley46f3da992012-02-12 07:29:38 -0300645 }
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300646
647 return ret;
648}
649
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300650static int it913x_download_firmware(struct usb_device *udev,
651 const struct firmware *fw)
652{
Malcolm Priestleyb6990292011-11-30 17:14:47 -0300653 int ret = 0, i = 0, pos = 0;
Malcolm Priestleyf0e07d72011-12-15 18:43:44 -0300654 u8 packet_size, min_pkt;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300655 u8 *fw_data;
656
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300657 ret = it913x_wr_reg(udev, DEV_0, I2C_CLK, I2C_CLK_100);
658
659 info("FRM Starting Firmware Download");
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300660
Malcolm Priestleyb6990292011-11-30 17:14:47 -0300661 /* Multi firmware loader */
662 /* This uses scatter write firmware headers */
663 /* The firmware must start with 03 XX 00 */
664 /* and be the extact firmware length */
665
Malcolm Priestleyf0e07d72011-12-15 18:43:44 -0300666 if (it913x_config.chip_ver == 2)
667 min_pkt = 0x11;
668 else
669 min_pkt = 0x19;
670
Malcolm Priestleyb6990292011-11-30 17:14:47 -0300671 while (i <= fw->size) {
672 if (((fw->data[i] == 0x3) && (fw->data[i + 2] == 0x0))
673 || (i == fw->size)) {
674 packet_size = i - pos;
Malcolm Priestleyf0e07d72011-12-15 18:43:44 -0300675 if ((packet_size > min_pkt) || (i == fw->size)) {
Malcolm Priestleyb6990292011-11-30 17:14:47 -0300676 fw_data = (u8 *)(fw->data + pos);
677 pos += packet_size;
Malcolm Priestley4da28762012-03-25 06:57:49 -0300678 if (packet_size > 0) {
679 ret = it913x_io(udev, WRITE_DATA,
Malcolm Priestleyb6990292011-11-30 17:14:47 -0300680 DEV_0, CMD_SCATTER_WRITE, 0,
681 0, fw_data, packet_size);
Malcolm Priestley4da28762012-03-25 06:57:49 -0300682 if (ret < 0)
683 break;
684 }
Malcolm Priestleyb6990292011-11-30 17:14:47 -0300685 udelay(1000);
686 }
687 }
688 i++;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300689 }
690
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300691 if (ret < 0)
Malcolm Priestley4da28762012-03-25 06:57:49 -0300692 info("FRM Firmware Download Failed (%d)" , ret);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300693 else
694 info("FRM Firmware Download Completed - Resetting Device");
695
Malcolm Priestley4da28762012-03-25 06:57:49 -0300696 msleep(30);
697
698 ret = it913x_io(udev, WRITE_CMD, DEV_0, CMD_BOOT, 0, 0, NULL, 0);
699 if (ret < 0)
700 info("FRM Device not responding to reboot");
701
702 ret = it913x_return_status(udev);
703 if (ret == 0) {
704 info("FRM Failed to reboot device");
705 return -ENODEV;
706 }
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300707
708 msleep(30);
709
Malcolm Priestley4da28762012-03-25 06:57:49 -0300710 ret = it913x_wr_reg(udev, DEV_0, I2C_CLK, I2C_CLK_400);
711
712 msleep(30);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300713
714 /* Tuner function */
Malcolm Priestleybc549192011-10-14 19:54:11 -0300715 if (it913x_config.dual_mode)
716 ret |= it913x_wr_reg(udev, DEV_0_DMOD , 0xec4c, 0xa0);
Malcolm Priestleyb7d425d392011-10-31 12:02:08 -0300717 else
718 ret |= it913x_wr_reg(udev, DEV_0_DMOD , 0xec4c, 0x68);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300719
Malcolm Priestleyb7d425d392011-10-31 12:02:08 -0300720 if ((it913x_config.chip_ver == 1) &&
721 (it913x_config.chip_type == 0x9135)) {
722 ret |= it913x_wr_reg(udev, DEV_0, PADODPU, 0x0);
723 ret |= it913x_wr_reg(udev, DEV_0, AGC_O_D, 0x0);
724 if (it913x_config.dual_mode) {
725 ret |= it913x_wr_reg(udev, DEV_1, PADODPU, 0x0);
726 ret |= it913x_wr_reg(udev, DEV_1, AGC_O_D, 0x0);
727 }
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300728 }
729
730 return (ret < 0) ? -ENODEV : 0;
731}
732
733static int it913x_name(struct dvb_usb_adapter *adap)
734{
735 const char *desc = adap->dev->desc->name;
736 char *fe_name[] = {"_1", "_2", "_3", "_4"};
Michael Krufky77eed212011-09-06 09:31:57 -0300737 char *name = adap->fe_adap[0].fe->ops.info.name;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300738
739 strlcpy(name, desc, 128);
740 strlcat(name, fe_name[adap->id], 128);
741
742 return 0;
743}
744
745static int it913x_frontend_attach(struct dvb_usb_adapter *adap)
746{
747 struct usb_device *udev = adap->dev->udev;
Malcolm Priestley50815702011-12-04 08:20:37 -0300748 struct it913x_state *st = adap->dev->priv;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300749 int ret = 0;
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300750 u8 adap_addr = I2C_BASE_ADDR + (adap->id << 5);
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300751 u16 ep_size = adap->props.fe[0].stream.u.bulk.buffersize / 4;
Malcolm Priestley3822c7c2011-11-06 10:24:30 -0300752 u8 pkt_size = 0x80;
753
754 if (adap->dev->udev->speed != USB_SPEED_HIGH)
755 pkt_size = 0x10;
Malcolm Priestleybc549192011-10-14 19:54:11 -0300756
Malcolm Priestleyb7d425d392011-10-31 12:02:08 -0300757 it913x_config.adf = it913x_read_reg(udev, IO_MUX_POWER_CLK);
Malcolm Priestleybc549192011-10-14 19:54:11 -0300758
759 if (adap->id == 0)
Malcolm Priestley50815702011-12-04 08:20:37 -0300760 memcpy(&st->it913x_config, &it913x_config,
761 sizeof(struct ite_config));
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300762
Michael Krufky77eed212011-09-06 09:31:57 -0300763 adap->fe_adap[0].fe = dvb_attach(it913x_fe_attach,
Malcolm Priestley50815702011-12-04 08:20:37 -0300764 &adap->dev->i2c_adap, adap_addr, &st->it913x_config);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300765
Michael Krufky77eed212011-09-06 09:31:57 -0300766 if (adap->id == 0 && adap->fe_adap[0].fe) {
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300767 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2_SW_RST, 0x1);
768 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_SW_RST, 0x1);
769 ret = it913x_wr_reg(udev, DEV_0, EP0_TX_EN, 0x0f);
770 ret = it913x_wr_reg(udev, DEV_0, EP0_TX_NAK, 0x1b);
771 ret = it913x_wr_reg(udev, DEV_0, EP0_TX_EN, 0x2f);
772 ret = it913x_wr_reg(udev, DEV_0, EP4_TX_LEN_LSB,
773 ep_size & 0xff);
774 ret = it913x_wr_reg(udev, DEV_0, EP4_TX_LEN_MSB, ep_size >> 8);
Malcolm Priestley3822c7c2011-11-06 10:24:30 -0300775 ret = it913x_wr_reg(udev, DEV_0, EP4_MAX_PKT, pkt_size);
Michael Krufky77eed212011-09-06 09:31:57 -0300776 } else if (adap->id == 1 && adap->fe_adap[0].fe) {
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300777 ret = it913x_wr_reg(udev, DEV_0, EP0_TX_EN, 0x6f);
778 ret = it913x_wr_reg(udev, DEV_0, EP5_TX_LEN_LSB,
779 ep_size & 0xff);
780 ret = it913x_wr_reg(udev, DEV_0, EP5_TX_LEN_MSB, ep_size >> 8);
Malcolm Priestley3822c7c2011-11-06 10:24:30 -0300781 ret = it913x_wr_reg(udev, DEV_0, EP5_MAX_PKT, pkt_size);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300782 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_EN, 0x1);
783 ret = it913x_wr_reg(udev, DEV_1_DMOD, MP2IF_SERIAL, 0x1);
784 ret = it913x_wr_reg(udev, DEV_1, TOP_HOSTB_SER_MODE, 0x1);
785 ret = it913x_wr_reg(udev, DEV_0_DMOD, TSIS_ENABLE, 0x1);
786 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2_SW_RST, 0x0);
787 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_SW_RST, 0x0);
788 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_HALF_PSB, 0x0);
789 ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF_STOP_EN, 0x1);
790 ret = it913x_wr_reg(udev, DEV_1_DMOD, MPEG_FULL_SPEED, 0x0);
791 ret = it913x_wr_reg(udev, DEV_1_DMOD, MP2IF_STOP_EN, 0x0);
792 } else
793 return -ENODEV;
794
795 ret = it913x_name(adap);
796
797 return ret;
798}
799
800/* DVB USB Driver */
801static struct dvb_usb_device_properties it913x_properties;
802
803static int it913x_probe(struct usb_interface *intf,
804 const struct usb_device_id *id)
805{
806 cmd_counter = 0;
807 if (0 == dvb_usb_device_init(intf, &it913x_properties,
808 THIS_MODULE, NULL, adapter_nr)) {
809 info("DEV registering device driver");
810 return 0;
811 }
812
813 info("DEV it913x Error");
814 return -ENODEV;
815
816}
817
818static struct usb_device_id it913x_table[] = {
819 { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_UB499_2T_T09) },
Malcolm Priestleybc549192011-10-14 19:54:11 -0300820 { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135) },
Malcolm Priestleyfdb5a912011-11-06 18:30:26 -0300821 { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV22_IT9137) },
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300822 { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135_9005) },
Malcolm Priestley53844c42011-12-12 15:53:00 -0300823 { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135_9006) },
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300824 {} /* Terminating entry */
825};
826
827MODULE_DEVICE_TABLE(usb, it913x_table);
828
829static struct dvb_usb_device_properties it913x_properties = {
830 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
831 .usb_ctrl = DEVICE_SPECIFIC,
832 .download_firmware = it913x_download_firmware,
833 .firmware = "dvb-usb-it9137-01.fw",
834 .no_reconnect = 1,
835 .size_of_priv = sizeof(struct it913x_state),
836 .num_adapters = 2,
837 .adapter = {
838 {
Michael Krufky77eed212011-09-06 09:31:57 -0300839 .num_frontends = 1,
840 .fe = {{
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300841 .caps = DVB_USB_ADAP_HAS_PID_FILTER|
842 DVB_USB_ADAP_NEED_PID_FILTERING|
843 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
844 .streaming_ctrl = it913x_streaming_ctrl,
845 .pid_filter_count = 31,
846 .pid_filter = it913x_pid_filter,
847 .pid_filter_ctrl = it913x_pid_filter_ctrl,
848 .frontend_attach = it913x_frontend_attach,
849 /* parameter for the MPEG2-data transfer */
850 .stream = {
851 .type = USB_BULK,
852 .count = 10,
853 .endpoint = 0x04,
854 .u = {/* Keep Low if PID filter on */
855 .bulk = {
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300856 .buffersize =
857 TS_BUFFER_SIZE_PID,
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300858 }
859 }
860 }
Michael Krufky77eed212011-09-06 09:31:57 -0300861 }},
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300862 },
863 {
Michael Krufky77eed212011-09-06 09:31:57 -0300864 .num_frontends = 1,
865 .fe = {{
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300866 .caps = DVB_USB_ADAP_HAS_PID_FILTER|
867 DVB_USB_ADAP_NEED_PID_FILTERING|
868 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
869 .streaming_ctrl = it913x_streaming_ctrl,
870 .pid_filter_count = 31,
871 .pid_filter = it913x_pid_filter,
872 .pid_filter_ctrl = it913x_pid_filter_ctrl,
873 .frontend_attach = it913x_frontend_attach,
874 /* parameter for the MPEG2-data transfer */
875 .stream = {
876 .type = USB_BULK,
877 .count = 5,
878 .endpoint = 0x05,
879 .u = {
880 .bulk = {
Malcolm Priestley9c1133c2011-11-27 17:35:06 -0300881 .buffersize =
882 TS_BUFFER_SIZE_PID,
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300883 }
884 }
885 }
Michael Krufky77eed212011-09-06 09:31:57 -0300886 }},
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300887 }
888 },
889 .identify_state = it913x_identify_state,
tvboxspy2ba0f942011-09-21 18:57:41 -0300890 .rc.core = {
891 .protocol = RC_TYPE_NEC,
892 .module_name = "it913x",
893 .rc_query = it913x_rc_query,
894 .rc_interval = IT913X_POLL,
895 .allowed_protos = RC_TYPE_NEC,
Malcolm Priestley3691a0d2012-02-01 18:27:42 -0300896 .rc_codes = RC_MAP_IT913X_V1,
tvboxspy2ba0f942011-09-21 18:57:41 -0300897 },
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300898 .i2c_algo = &it913x_i2c_algo,
Malcolm Priestley53844c42011-12-12 15:53:00 -0300899 .num_device_descs = 5,
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300900 .devices = {
901 { "Kworld UB499-2T T09(IT9137)",
902 { &it913x_table[0], NULL },
903 },
Malcolm Priestleybc549192011-10-14 19:54:11 -0300904 { "ITE 9135 Generic",
905 { &it913x_table[1], NULL },
906 },
Malcolm Priestleyfdb5a912011-11-06 18:30:26 -0300907 { "Sveon STV22 Dual DVB-T HDTV(IT9137)",
908 { &it913x_table[2], NULL },
909 },
Malcolm Priestley5e642c02011-11-30 17:16:09 -0300910 { "ITE 9135(9005) Generic",
911 { &it913x_table[3], NULL },
912 },
Malcolm Priestley53844c42011-12-12 15:53:00 -0300913 { "ITE 9135(9006) Generic",
914 { &it913x_table[4], NULL },
915 },
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300916 }
917};
918
919static struct usb_driver it913x_driver = {
920 .name = "it913x",
921 .probe = it913x_probe,
922 .disconnect = dvb_usb_device_exit,
923 .id_table = it913x_table,
924};
925
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -0800926module_usb_driver(it913x_driver);
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300927
928MODULE_AUTHOR("Malcolm Priestley <tvboxspy@gmail.com>");
929MODULE_DESCRIPTION("it913x USB 2 Driver");
Malcolm Priestley4da28762012-03-25 06:57:49 -0300930MODULE_VERSION("1.28");
Malcolm Priestleyf6d87352011-07-25 15:35:03 -0300931MODULE_LICENSE("GPL");