blob: 0eb49088916225c735f902ef3567b4c0b5d30b3b [file] [log] [blame]
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001/* DVB USB compliant linux driver for Conexant USB reference design.
2 *
3 * The Conexant reference design I saw on their website was only for analogue
4 * capturing (using the cx25842). The box I took to write this driver (reverse
5 * engineered) is the one labeled Medion MD95700. In addition to the cx25842
6 * for analogue capturing it also has a cx22702 DVB-T demodulator on the main
7 * board. Besides it has a atiremote (X10) and a USB2.0 hub onboard.
8 *
9 * Maybe it is a little bit premature to call this driver cxusb, but I assume
10 * the USB protocol is identical or at least inherited from the reference
11 * design, so it can be reused for the "analogue-only" device (if it will
12 * appear at all).
13 *
Michael Krufky81481e92006-01-09 18:21:38 -020014 * TODO: Use the cx25840-driver for the analogue part
Patrick Boettcher22c6d932005-07-07 17:58:10 -070015 *
Patrick Boettcher22c6d932005-07-07 17:58:10 -070016 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
Michael Krufky5b9ed282006-10-15 14:51:08 -030017 * Copyright (C) 2006 Michael Krufky (mkrufky@linuxtv.org)
Chris Pascoeaeb012b2007-11-19 21:57:10 -030018 * Copyright (C) 2006, 2007 Chris Pascoe (c.pascoe@itee.uq.edu.au)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070019 *
Michael Krufkyf35db232006-12-05 14:53:39 -030020 * This program is free software; you can redistribute it and/or modify it
21 * under the terms of the GNU General Public License as published by the Free
22 * Software Foundation, version 2.
Patrick Boettcher22c6d932005-07-07 17:58:10 -070023 *
24 * see Documentation/dvb/README.dvb-usb for more information
25 */
Michael Krufky827855d2008-04-22 14:46:16 -030026#include <media/tuner.h>
David Woodhousee62f89f2008-05-24 00:12:42 +010027#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Michael Krufky827855d2008-04-22 14:46:16 -030029
Patrick Boettcher22c6d932005-07-07 17:58:10 -070030#include "cxusb.h"
31
32#include "cx22702.h"
Michael Krufkyeffee032006-01-09 15:25:47 -020033#include "lgdt330x.h"
Chris Pascoe0029ee12006-01-09 18:21:28 -020034#include "mt352.h"
35#include "mt352_priv.h"
Michael Krufkyc9ce3942006-06-11 04:24:31 -030036#include "zl10353.h"
Chris Pascoeaeb012b2007-11-19 21:57:10 -030037#include "tuner-xc2028.h"
Michael Krufky827855d2008-04-22 14:46:16 -030038#include "tuner-simple.h"
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -030039#include "mxl5005s.h"
David Wongb18bd1d2009-10-26 09:41:22 -030040#include "max2165.h"
Anton Blanchard8d798982008-08-09 12:23:15 -030041#include "dib7000p.h"
42#include "dib0070.h"
David T.L. Wong6bf1a992009-08-05 13:07:10 -030043#include "lgs8gxx.h"
David Wongb18bd1d2009-10-26 09:41:22 -030044#include "atbm8830.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070045
46/* debug */
Adrian Bunk53133af2007-11-05 14:07:06 -030047static int dvb_usb_cxusb_debug;
Michael Krufkyf35db232006-12-05 14:53:39 -030048module_param_named(debug, dvb_usb_cxusb_debug, int, 0644);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070049MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
Janne Grunau78e92002008-04-09 19:13:13 -030050
51DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
52
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -030053#define deb_info(args...) dprintk(dvb_usb_cxusb_debug, 0x03, args)
54#define deb_i2c(args...) dprintk(dvb_usb_cxusb_debug, 0x02, args)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070055
56static int cxusb_ctrl_msg(struct dvb_usb_device *d,
Michael Krufkyf35db232006-12-05 14:53:39 -030057 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070058{
59 int wo = (rbuf == NULL || rlen == 0); /* write-only */
60 u8 sndbuf[1+wlen];
Michael Krufkyf35db232006-12-05 14:53:39 -030061 memset(sndbuf, 0, 1+wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070062
63 sndbuf[0] = cmd;
Michael Krufkyf35db232006-12-05 14:53:39 -030064 memcpy(&sndbuf[1], wbuf, wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070065 if (wo)
Chris Pascoeb17f1092007-11-19 02:42:44 -030066 return dvb_usb_generic_write(d, sndbuf, 1+wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070067 else
Chris Pascoeb17f1092007-11-19 02:42:44 -030068 return dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070069}
70
Patrick Boettchere2efeab2005-09-09 13:02:51 -070071/* GPIO */
72static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070073{
74 struct cxusb_state *st = d->priv;
Michael Krufkyf35db232006-12-05 14:53:39 -030075 u8 o[2], i;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070076
Patrick Boettchere2efeab2005-09-09 13:02:51 -070077 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070078 return;
79
Patrick Boettchere2efeab2005-09-09 13:02:51 -070080 o[0] = GPIO_TUNER;
81 o[1] = onoff;
Michael Krufkyf35db232006-12-05 14:53:39 -030082 cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070083
84 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070085 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070086
Patrick Boettchere2efeab2005-09-09 13:02:51 -070087 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070088}
89
Chris Pascoeaeb012b2007-11-19 21:57:10 -030090static int cxusb_bluebird_gpio_rw(struct dvb_usb_device *d, u8 changemask,
91 u8 newval)
92{
93 u8 o[2], gpio_state;
94 int rc;
95
96 o[0] = 0xff & ~changemask; /* mask of bits to keep */
97 o[1] = newval & changemask; /* new values for bits */
98
99 rc = cxusb_ctrl_msg(d, CMD_BLUEBIRD_GPIO_RW, o, 2, &gpio_state, 1);
100 if (rc < 0 || (gpio_state & changemask) != (newval & changemask))
101 deb_info("bluebird_gpio_write failed.\n");
102
103 return rc < 0 ? rc : gpio_state;
104}
105
106static void cxusb_bluebird_gpio_pulse(struct dvb_usb_device *d, u8 pin, int low)
107{
108 cxusb_bluebird_gpio_rw(d, pin, low ? 0 : pin);
109 msleep(5);
110 cxusb_bluebird_gpio_rw(d, pin, low ? pin : 0);
111}
112
Chris Pascoe5ccaf902007-11-20 01:53:31 -0300113static void cxusb_nano2_led(struct dvb_usb_device *d, int onoff)
114{
115 cxusb_bluebird_gpio_rw(d, 0x40, onoff ? 0 : 0x40);
116}
117
Timothy Leedfbdce02008-08-09 13:36:51 -0300118static int cxusb_d680_dmb_gpio_tuner(struct dvb_usb_device *d,
119 u8 addr, int onoff)
120{
121 u8 o[2] = {addr, onoff};
122 u8 i;
123 int rc;
124
125 rc = cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
126
127 if (rc < 0)
128 return rc;
129 if (i == 0x01)
130 return 0;
131 else {
132 deb_info("gpio_write failed.\n");
133 return -EIO;
134 }
135}
136
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700137/* I2C */
Michael Krufkyf35db232006-12-05 14:53:39 -0300138static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
139 int num)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700140{
141 struct dvb_usb_device *d = i2c_get_adapdata(adap);
142 int i;
143
Ingo Molnar3593cab2006-02-07 06:49:14 -0200144 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700145 return -EAGAIN;
146
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700147 for (i = 0; i < num; i++) {
148
Michael Krufky5e805ef2006-03-23 00:01:34 -0300149 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
150 switch (msg[i].addr) {
Michael Krufkyf35db232006-12-05 14:53:39 -0300151 case 0x63:
152 cxusb_gpio_tuner(d, 0);
153 break;
154 default:
155 cxusb_gpio_tuner(d, 1);
156 break;
Michael Krufky5e805ef2006-03-23 00:01:34 -0300157 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700158
Chris Pascoe272479d72007-11-19 03:01:22 -0300159 if (msg[i].flags & I2C_M_RD) {
160 /* read only */
161 u8 obuf[3], ibuf[1+msg[i].len];
162 obuf[0] = 0;
163 obuf[1] = msg[i].len;
164 obuf[2] = msg[i].addr;
165 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
166 obuf, 3,
167 ibuf, 1+msg[i].len) < 0) {
168 warn("i2c read failed");
169 break;
170 }
171 memcpy(msg[i].buf, &ibuf[1], msg[i].len);
Chris Pascoea644e4a2007-11-19 03:05:09 -0300172 } else if (i+1 < num && (msg[i+1].flags & I2C_M_RD) &&
173 msg[i].addr == msg[i+1].addr) {
174 /* write to then read from same address */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700175 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
176 obuf[0] = msg[i].len;
177 obuf[1] = msg[i+1].len;
178 obuf[2] = msg[i].addr;
Michael Krufkyf35db232006-12-05 14:53:39 -0300179 memcpy(&obuf[3], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700180
181 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
Michael Krufkyf35db232006-12-05 14:53:39 -0300182 obuf, 3+msg[i].len,
183 ibuf, 1+msg[i+1].len) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700184 break;
185
186 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300187 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700188
Michael Krufkyf35db232006-12-05 14:53:39 -0300189 memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700190
191 i++;
Chris Pascoe272479d72007-11-19 03:01:22 -0300192 } else {
193 /* write only */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700194 u8 obuf[2+msg[i].len], ibuf;
195 obuf[0] = msg[i].addr;
196 obuf[1] = msg[i].len;
Michael Krufkyf35db232006-12-05 14:53:39 -0300197 memcpy(&obuf[2], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700198
Michael Krufkyf35db232006-12-05 14:53:39 -0300199 if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
200 2+msg[i].len, &ibuf,1) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700201 break;
202 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300203 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700204 }
205 }
206
Ingo Molnar3593cab2006-02-07 06:49:14 -0200207 mutex_unlock(&d->i2c_mutex);
Chris Pascoe13e001d2007-11-19 02:48:27 -0300208 return i == num ? num : -EREMOTEIO;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700209}
210
211static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
212{
213 return I2C_FUNC_I2C;
214}
215
216static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700217 .master_xfer = cxusb_i2c_xfer,
218 .functionality = cxusb_i2c_func,
219};
220
221static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
222{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700223 u8 b = 0;
224 if (onoff)
225 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
226 else
227 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700228}
229
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300230static int cxusb_aver_power_ctrl(struct dvb_usb_device *d, int onoff)
231{
232 int ret;
233 if (!onoff)
234 return cxusb_ctrl_msg(d, CMD_POWER_OFF, NULL, 0, NULL, 0);
235 if (d->state == DVB_USB_STATE_INIT &&
236 usb_set_interface(d->udev, 0, 0) < 0)
237 err("set interface failed");
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -0300238 do {} while (!(ret = cxusb_ctrl_msg(d, CMD_POWER_ON, NULL, 0, NULL, 0)) &&
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300239 !(ret = cxusb_ctrl_msg(d, 0x15, NULL, 0, NULL, 0)) &&
240 !(ret = cxusb_ctrl_msg(d, 0x17, NULL, 0, NULL, 0)) && 0);
241 if (!ret) {
242 /* FIXME: We don't know why, but we need to configure the
243 * lgdt3303 with the register settings below on resume */
244 int i;
245 u8 buf, bufs[] = {
246 0x0e, 0x2, 0x00, 0x7f,
247 0x0e, 0x2, 0x02, 0xfe,
248 0x0e, 0x2, 0x02, 0x01,
249 0x0e, 0x2, 0x00, 0x03,
250 0x0e, 0x2, 0x0d, 0x40,
251 0x0e, 0x2, 0x0e, 0x87,
252 0x0e, 0x2, 0x0f, 0x8e,
253 0x0e, 0x2, 0x10, 0x01,
254 0x0e, 0x2, 0x14, 0xd7,
255 0x0e, 0x2, 0x47, 0x88,
256 };
257 msleep(20);
258 for (i = 0; i < sizeof(bufs)/sizeof(u8); i += 4/sizeof(u8)) {
259 ret = cxusb_ctrl_msg(d, CMD_I2C_WRITE,
260 bufs+i, 4, &buf, 1);
261 if (ret)
262 break;
263 if (buf != 0x8)
264 return -EREMOTEIO;
265 }
266 }
267 return ret;
268}
269
Michael Krufky5691c842006-04-19 20:40:01 -0300270static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
271{
272 u8 b = 0;
273 if (onoff)
274 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
275 else
276 return 0;
277}
278
Chris Pascoe5ccaf902007-11-20 01:53:31 -0300279static int cxusb_nano2_power_ctrl(struct dvb_usb_device *d, int onoff)
280{
281 int rc = 0;
282
283 rc = cxusb_power_ctrl(d, onoff);
284 if (!onoff)
285 cxusb_nano2_led(d, 0);
286
287 return rc;
288}
289
Timothy Leedfbdce02008-08-09 13:36:51 -0300290static int cxusb_d680_dmb_power_ctrl(struct dvb_usb_device *d, int onoff)
291{
292 int ret;
293 u8 b;
294 ret = cxusb_power_ctrl(d, onoff);
295 if (!onoff)
296 return ret;
297
298 msleep(128);
299 cxusb_ctrl_msg(d, CMD_DIGITAL, NULL, 0, &b, 1);
300 msleep(100);
301 return ret;
302}
303
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300304static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700305{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700306 u8 buf[2] = { 0x03, 0x00 };
307 if (onoff)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300308 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700309 else
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300310 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700311
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700312 return 0;
313}
314
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300315static int cxusb_aver_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
316{
317 if (onoff)
318 cxusb_ctrl_msg(adap->dev, CMD_AVER_STREAM_ON, NULL, 0, NULL, 0);
319 else
320 cxusb_ctrl_msg(adap->dev, CMD_AVER_STREAM_OFF,
321 NULL, 0, NULL, 0);
322 return 0;
323}
324
Timothy Leedfbdce02008-08-09 13:36:51 -0300325static void cxusb_d680_dmb_drain_message(struct dvb_usb_device *d)
326{
327 int ep = d->props.generic_bulk_ctrl_endpoint;
328 const int timeout = 100;
329 const int junk_len = 32;
330 u8 *junk;
331 int rd_count;
332
333 /* Discard remaining data in video pipe */
334 junk = kmalloc(junk_len, GFP_KERNEL);
335 if (!junk)
336 return;
337 while (1) {
338 if (usb_bulk_msg(d->udev,
339 usb_rcvbulkpipe(d->udev, ep),
340 junk, junk_len, &rd_count, timeout) < 0)
341 break;
342 if (!rd_count)
343 break;
344 }
345 kfree(junk);
346}
347
348static void cxusb_d680_dmb_drain_video(struct dvb_usb_device *d)
349{
350 struct usb_data_stream_properties *p = &d->props.adapter[0].stream;
351 const int timeout = 100;
352 const int junk_len = p->u.bulk.buffersize;
353 u8 *junk;
354 int rd_count;
355
356 /* Discard remaining data in video pipe */
357 junk = kmalloc(junk_len, GFP_KERNEL);
358 if (!junk)
359 return;
360 while (1) {
361 if (usb_bulk_msg(d->udev,
362 usb_rcvbulkpipe(d->udev, p->endpoint),
363 junk, junk_len, &rd_count, timeout) < 0)
364 break;
365 if (!rd_count)
366 break;
367 }
368 kfree(junk);
369}
370
371static int cxusb_d680_dmb_streaming_ctrl(
372 struct dvb_usb_adapter *adap, int onoff)
373{
374 if (onoff) {
375 u8 buf[2] = { 0x03, 0x00 };
376 cxusb_d680_dmb_drain_video(adap->dev);
377 return cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON,
378 buf, sizeof(buf), NULL, 0);
379 } else {
380 int ret = cxusb_ctrl_msg(adap->dev,
381 CMD_STREAMING_OFF, NULL, 0, NULL, 0);
382 return ret;
383 }
384}
385
Chris Pascoe7c239702006-01-09 18:21:29 -0200386static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
387{
388 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200389 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200390 int i;
391
Michael Krufkya07e6092006-01-09 18:21:31 -0200392 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200393
394 *event = 0;
395 *state = REMOTE_NO_KEY_PRESSED;
396
397 for (i = 0; i < d->props.rc_key_map_size; i++) {
Mauro Carvalho Chehab2e365882009-08-29 15:19:31 -0300398 if (rc5_custom(&keymap[i]) == ircode[2] &&
399 rc5_data(&keymap[i]) == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200400 *event = keymap[i].event;
401 *state = REMOTE_KEY_PRESSED;
402
403 return 0;
404 }
405 }
406
407 return 0;
408}
409
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300410static int cxusb_bluebird2_rc_query(struct dvb_usb_device *d, u32 *event,
411 int *state)
412{
413 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
414 u8 ircode[4];
415 int i;
416 struct i2c_msg msg = { .addr = 0x6b, .flags = I2C_M_RD,
417 .buf = ircode, .len = 4 };
418
419 *event = 0;
420 *state = REMOTE_NO_KEY_PRESSED;
421
422 if (cxusb_i2c_xfer(&d->i2c_adap, &msg, 1) != 1)
423 return 0;
424
425 for (i = 0; i < d->props.rc_key_map_size; i++) {
Mauro Carvalho Chehab2e365882009-08-29 15:19:31 -0300426 if (rc5_custom(&keymap[i]) == ircode[1] &&
427 rc5_data(&keymap[i]) == ircode[2]) {
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300428 *event = keymap[i].event;
429 *state = REMOTE_KEY_PRESSED;
430
431 return 0;
432 }
433 }
434
435 return 0;
436}
437
Timothy Leedfbdce02008-08-09 13:36:51 -0300438static int cxusb_d680_dmb_rc_query(struct dvb_usb_device *d, u32 *event,
439 int *state)
440{
441 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
442 u8 ircode[2];
443 int i;
444
445 *event = 0;
446 *state = REMOTE_NO_KEY_PRESSED;
447
448 if (cxusb_ctrl_msg(d, 0x10, NULL, 0, ircode, 2) < 0)
449 return 0;
450
451 for (i = 0; i < d->props.rc_key_map_size; i++) {
Mauro Carvalho Chehab2e365882009-08-29 15:19:31 -0300452 if (rc5_custom(&keymap[i]) == ircode[0] &&
453 rc5_data(&keymap[i]) == ircode[1]) {
Timothy Leedfbdce02008-08-09 13:36:51 -0300454 *event = keymap[i].event;
455 *state = REMOTE_KEY_PRESSED;
456
457 return 0;
458 }
459 }
460
461 return 0;
462}
463
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -0300464static struct dvb_usb_rc_key ir_codes_dvico_mce_table[] = {
Mauro Carvalho Chehab2e365882009-08-29 15:19:31 -0300465 { 0xfe02, KEY_TV },
466 { 0xfe0e, KEY_MP3 },
467 { 0xfe1a, KEY_DVD },
468 { 0xfe1e, KEY_FAVORITES },
469 { 0xfe16, KEY_SETUP },
470 { 0xfe46, KEY_POWER2 },
471 { 0xfe0a, KEY_EPG },
472 { 0xfe49, KEY_BACK },
473 { 0xfe4d, KEY_MENU },
474 { 0xfe51, KEY_UP },
475 { 0xfe5b, KEY_LEFT },
476 { 0xfe5f, KEY_RIGHT },
477 { 0xfe53, KEY_DOWN },
478 { 0xfe5e, KEY_OK },
479 { 0xfe59, KEY_INFO },
480 { 0xfe55, KEY_TAB },
481 { 0xfe0f, KEY_PREVIOUSSONG },/* Replay */
482 { 0xfe12, KEY_NEXTSONG }, /* Skip */
483 { 0xfe42, KEY_ENTER }, /* Windows/Start */
484 { 0xfe15, KEY_VOLUMEUP },
485 { 0xfe05, KEY_VOLUMEDOWN },
486 { 0xfe11, KEY_CHANNELUP },
487 { 0xfe09, KEY_CHANNELDOWN },
488 { 0xfe52, KEY_CAMERA },
489 { 0xfe5a, KEY_TUNER }, /* Live */
490 { 0xfe19, KEY_OPEN },
491 { 0xfe0b, KEY_1 },
492 { 0xfe17, KEY_2 },
493 { 0xfe1b, KEY_3 },
494 { 0xfe07, KEY_4 },
495 { 0xfe50, KEY_5 },
496 { 0xfe54, KEY_6 },
497 { 0xfe48, KEY_7 },
498 { 0xfe4c, KEY_8 },
499 { 0xfe58, KEY_9 },
500 { 0xfe13, KEY_ANGLE }, /* Aspect */
501 { 0xfe03, KEY_0 },
502 { 0xfe1f, KEY_ZOOM },
503 { 0xfe43, KEY_REWIND },
504 { 0xfe47, KEY_PLAYPAUSE },
505 { 0xfe4f, KEY_FASTFORWARD },
506 { 0xfe57, KEY_MUTE },
507 { 0xfe0d, KEY_STOP },
508 { 0xfe01, KEY_RECORD },
509 { 0xfe4e, KEY_POWER },
Michael Krufkya07e6092006-01-09 18:21:31 -0200510};
511
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -0300512static struct dvb_usb_rc_key ir_codes_dvico_portable_table[] = {
Mauro Carvalho Chehab2e365882009-08-29 15:19:31 -0300513 { 0xfc02, KEY_SETUP }, /* Profile */
514 { 0xfc43, KEY_POWER2 },
515 { 0xfc06, KEY_EPG },
516 { 0xfc5a, KEY_BACK },
517 { 0xfc05, KEY_MENU },
518 { 0xfc47, KEY_INFO },
519 { 0xfc01, KEY_TAB },
520 { 0xfc42, KEY_PREVIOUSSONG },/* Replay */
521 { 0xfc49, KEY_VOLUMEUP },
522 { 0xfc09, KEY_VOLUMEDOWN },
523 { 0xfc54, KEY_CHANNELUP },
524 { 0xfc0b, KEY_CHANNELDOWN },
525 { 0xfc16, KEY_CAMERA },
526 { 0xfc40, KEY_TUNER }, /* ATV/DTV */
527 { 0xfc45, KEY_OPEN },
528 { 0xfc19, KEY_1 },
529 { 0xfc18, KEY_2 },
530 { 0xfc1b, KEY_3 },
531 { 0xfc1a, KEY_4 },
532 { 0xfc58, KEY_5 },
533 { 0xfc59, KEY_6 },
534 { 0xfc15, KEY_7 },
535 { 0xfc14, KEY_8 },
536 { 0xfc17, KEY_9 },
537 { 0xfc44, KEY_ANGLE }, /* Aspect */
538 { 0xfc55, KEY_0 },
539 { 0xfc07, KEY_ZOOM },
540 { 0xfc0a, KEY_REWIND },
541 { 0xfc08, KEY_PLAYPAUSE },
542 { 0xfc4b, KEY_FASTFORWARD },
543 { 0xfc5b, KEY_MUTE },
544 { 0xfc04, KEY_STOP },
545 { 0xfc56, KEY_RECORD },
546 { 0xfc57, KEY_POWER },
547 { 0xfc41, KEY_UNKNOWN }, /* INPUT */
548 { 0xfc00, KEY_UNKNOWN }, /* HD */
Michael Krufkyc1501782006-03-26 05:43:36 -0300549};
550
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -0300551static struct dvb_usb_rc_key ir_codes_d680_dmb_table[] = {
Mauro Carvalho Chehab2e365882009-08-29 15:19:31 -0300552 { 0x0038, KEY_UNKNOWN }, /* TV/AV */
553 { 0x080c, KEY_ZOOM },
554 { 0x0800, KEY_0 },
555 { 0x0001, KEY_1 },
556 { 0x0802, KEY_2 },
557 { 0x0003, KEY_3 },
558 { 0x0804, KEY_4 },
559 { 0x0005, KEY_5 },
560 { 0x0806, KEY_6 },
561 { 0x0007, KEY_7 },
562 { 0x0808, KEY_8 },
563 { 0x0009, KEY_9 },
564 { 0x000a, KEY_MUTE },
565 { 0x0829, KEY_BACK },
566 { 0x0012, KEY_CHANNELUP },
567 { 0x0813, KEY_CHANNELDOWN },
568 { 0x002b, KEY_VOLUMEUP },
569 { 0x082c, KEY_VOLUMEDOWN },
570 { 0x0020, KEY_UP },
571 { 0x0821, KEY_DOWN },
572 { 0x0011, KEY_LEFT },
573 { 0x0810, KEY_RIGHT },
574 { 0x000d, KEY_OK },
575 { 0x081f, KEY_RECORD },
576 { 0x0017, KEY_PLAYPAUSE },
577 { 0x0816, KEY_PLAYPAUSE },
578 { 0x000b, KEY_STOP },
579 { 0x0827, KEY_FASTFORWARD },
580 { 0x0026, KEY_REWIND },
581 { 0x081e, KEY_UNKNOWN }, /* Time Shift */
582 { 0x000e, KEY_UNKNOWN }, /* Snapshot */
583 { 0x082d, KEY_UNKNOWN }, /* Mouse Cursor */
584 { 0x000f, KEY_UNKNOWN }, /* Minimize/Maximize */
585 { 0x0814, KEY_UNKNOWN }, /* Shuffle */
586 { 0x0025, KEY_POWER },
Timothy Leedfbdce02008-08-09 13:36:51 -0300587};
588
Chris Pascoe0029ee12006-01-09 18:21:28 -0200589static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
590{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200591 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200592 static u8 reset [] = { RESET, 0x80 };
593 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
594 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
595 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
596 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
597
598 mt352_write(fe, clock_config, sizeof(clock_config));
599 udelay(200);
600 mt352_write(fe, reset, sizeof(reset));
601 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
602
603 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
604 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
605 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
606
607 return 0;
608}
609
Michael Krufky6f447252006-01-11 19:40:33 -0200610static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
611{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200612 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200613 static u8 reset [] = { RESET, 0x80 };
614 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
615 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
616 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
617 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
618
619 mt352_write(fe, clock_config, sizeof(clock_config));
620 udelay(200);
621 mt352_write(fe, reset, sizeof(reset));
622 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
623
624 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
625 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
626 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
627 return 0;
628}
629
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200630static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700631 .demod_address = 0x63,
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700632 .output_mode = CX22702_PARALLEL_OUTPUT,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700633};
634
Michael Krufkyfddd6322006-02-27 00:08:17 -0300635static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200636 .demod_address = 0x0e,
637 .demod_chip = LGDT3303,
Michael Krufkyeffee032006-01-09 15:25:47 -0200638};
639
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300640static struct lgdt330x_config cxusb_aver_lgdt3303_config = {
641 .demod_address = 0x0e,
642 .demod_chip = LGDT3303,
643 .clock_polarity_flip = 2,
644};
645
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200646static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200647 .demod_address = 0x0f,
648 .demod_init = cxusb_dee1601_demod_init,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200649};
650
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300651static struct zl10353_config cxusb_zl10353_dee1601_config = {
652 .demod_address = 0x0f,
Chris Pascoe8fb95782006-08-10 03:17:16 -0300653 .parallel_ts = 1,
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300654};
655
Adrian Bunk6fe00b02006-04-19 20:49:28 -0300656static struct mt352_config cxusb_mt352_config = {
Michael Krufky6f447252006-01-11 19:40:33 -0200657 /* used in both lgz201 and th7579 */
658 .demod_address = 0x0f,
659 .demod_init = cxusb_mt352_demod_init,
Michael Krufky6f447252006-01-11 19:40:33 -0200660};
661
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300662static struct zl10353_config cxusb_zl10353_xc3028_config = {
663 .demod_address = 0x0f,
Chris Pascoea1dcd9d2007-11-20 08:17:54 -0300664 .if2 = 45600,
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300665 .no_tuner = 1,
666 .parallel_ts = 1,
667};
668
Robert Lowery0bc35182009-11-08 00:00:11 -0300669static struct zl10353_config cxusb_zl10353_xc3028_config_no_i2c_gate = {
670 .demod_address = 0x0f,
671 .if2 = 45600,
672 .no_tuner = 1,
673 .parallel_ts = 1,
674 .disable_i2c_gate_ctrl = 1,
675};
676
Chris Pascoe702a6762007-11-20 03:34:11 -0300677static struct mt352_config cxusb_mt352_xc3028_config = {
678 .demod_address = 0x0f,
679 .if2 = 4560,
680 .no_tuner = 1,
681 .demod_init = cxusb_mt352_demod_init,
682};
683
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300684/* FIXME: needs tweaking */
685static struct mxl5005s_config aver_a868r_tuner = {
686 .i2c_address = 0x63,
687 .if_freq = 6000000UL,
688 .xtal_freq = CRYSTAL_FREQ_16000000HZ,
689 .agc_mode = MXL_SINGLE_AGC,
690 .tracking_filter = MXL_TF_C,
691 .rssi_enable = MXL_RSSI_ENABLE,
692 .cap_select = MXL_CAP_SEL_ENABLE,
693 .div_out = MXL_DIV_OUT_4,
694 .clock_out = MXL_CLOCK_OUT_DISABLE,
695 .output_load = MXL5005S_IF_OUTPUT_LOAD_200_OHM,
696 .top = MXL5005S_TOP_25P2,
697 .mod_mode = MXL_DIGITAL_MODE,
698 .if_mode = MXL_ZERO_IF,
699 .AgcMasterByte = 0x00,
700};
701
Timothy Leedfbdce02008-08-09 13:36:51 -0300702/* FIXME: needs tweaking */
703static struct mxl5005s_config d680_dmb_tuner = {
704 .i2c_address = 0x63,
705 .if_freq = 36125000UL,
706 .xtal_freq = CRYSTAL_FREQ_16000000HZ,
707 .agc_mode = MXL_SINGLE_AGC,
708 .tracking_filter = MXL_TF_C,
709 .rssi_enable = MXL_RSSI_ENABLE,
710 .cap_select = MXL_CAP_SEL_ENABLE,
711 .div_out = MXL_DIV_OUT_4,
712 .clock_out = MXL_CLOCK_OUT_DISABLE,
713 .output_load = MXL5005S_IF_OUTPUT_LOAD_200_OHM,
714 .top = MXL5005S_TOP_25P2,
715 .mod_mode = MXL_DIGITAL_MODE,
716 .if_mode = MXL_ZERO_IF,
717 .AgcMasterByte = 0x00,
718};
719
David Wongb18bd1d2009-10-26 09:41:22 -0300720static struct max2165_config mygica_d689_max2165_cfg = {
721 .i2c_address = 0x60,
722 .osc_clk = 20
723};
724
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700725/* Callbacks for DVB USB */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300726static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700727{
Michael Krufkycb89cd32008-04-22 14:46:16 -0300728 dvb_attach(simple_tuner_attach, adap->fe,
729 &adap->dev->i2c_adap, 0x61,
730 TUNER_PHILIPS_FMD1216ME_MK3);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700731 return 0;
732}
733
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300734static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200735{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300736 dvb_attach(dvb_pll_attach, adap->fe, 0x61,
Michael Krufky47a99912007-06-12 16:10:51 -0300737 NULL, DVB_PLL_THOMSON_DTT7579);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200738 return 0;
739}
740
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300741static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200742{
Michael Krufky47a99912007-06-12 16:10:51 -0300743 dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201);
Michael Krufky6f447252006-01-11 19:40:33 -0200744 return 0;
745}
746
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300747static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200748{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300749 dvb_attach(dvb_pll_attach, adap->fe, 0x60,
Michael Krufky47a99912007-06-12 16:10:51 -0300750 NULL, DVB_PLL_THOMSON_DTT7579);
Patrick Boettcher332bed52006-05-14 04:49:00 -0300751 return 0;
752}
753
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300754static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher332bed52006-05-14 04:49:00 -0300755{
Michael Krufky827855d2008-04-22 14:46:16 -0300756 dvb_attach(simple_tuner_attach, adap->fe,
757 &adap->dev->i2c_adap, 0x61, TUNER_LG_TDVS_H06XF);
Michael Krufky6f447252006-01-11 19:40:33 -0200758 return 0;
759}
760
Michael Krufkyd7cba042008-09-12 13:31:45 -0300761static int dvico_bluebird_xc2028_callback(void *ptr, int component,
762 int command, int arg)
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300763{
Robert Loweryd483b732008-07-30 19:43:11 -0300764 struct dvb_usb_adapter *adap = ptr;
765 struct dvb_usb_device *d = adap->dev;
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300766
767 switch (command) {
768 case XC2028_TUNER_RESET:
Harvey Harrison708bebd2008-04-08 23:20:00 -0300769 deb_info("%s: XC2028_TUNER_RESET %d\n", __func__, arg);
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300770 cxusb_bluebird_gpio_pulse(d, 0x01, 1);
771 break;
772 case XC2028_RESET_CLK:
Harvey Harrison708bebd2008-04-08 23:20:00 -0300773 deb_info("%s: XC2028_RESET_CLK %d\n", __func__, arg);
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300774 break;
775 default:
Harvey Harrison708bebd2008-04-08 23:20:00 -0300776 deb_info("%s: unknown command %d, arg %d\n", __func__,
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300777 command, arg);
778 return -EINVAL;
779 }
780
781 return 0;
782}
783
784static int cxusb_dvico_xc3028_tuner_attach(struct dvb_usb_adapter *adap)
785{
786 struct dvb_frontend *fe;
787 struct xc2028_config cfg = {
788 .i2c_adap = &adap->dev->i2c_adap,
789 .i2c_addr = 0x61,
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300790 };
791 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300792 .fname = XC2028_DEFAULT_FIRMWARE,
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300793 .max_len = 64,
Robert Loweryd483b732008-07-30 19:43:11 -0300794 .demod = XC3028_FE_ZARLINK456,
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300795 };
796
Michael Krufkyd7cba042008-09-12 13:31:45 -0300797 /* FIXME: generalize & move to common area */
798 adap->fe->callback = dvico_bluebird_xc2028_callback;
799
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300800 fe = dvb_attach(xc2028_attach, adap->fe, &cfg);
801 if (fe == NULL || fe->ops.tuner_ops.set_config == NULL)
802 return -EIO;
803
804 fe->ops.tuner_ops.set_config(fe, &ctl);
805
806 return 0;
807}
808
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300809static int cxusb_mxl5003s_tuner_attach(struct dvb_usb_adapter *adap)
810{
811 dvb_attach(mxl5005s_attach, adap->fe,
812 &adap->dev->i2c_adap, &aver_a868r_tuner);
813 return 0;
814}
815
Timothy Leedfbdce02008-08-09 13:36:51 -0300816static int cxusb_d680_dmb_tuner_attach(struct dvb_usb_adapter *adap)
817{
818 struct dvb_frontend *fe;
819 fe = dvb_attach(mxl5005s_attach, adap->fe,
820 &adap->dev->i2c_adap, &d680_dmb_tuner);
821 return (fe == NULL) ? -EIO : 0;
822}
823
David Wongb18bd1d2009-10-26 09:41:22 -0300824static int cxusb_mygica_d689_tuner_attach(struct dvb_usb_adapter *adap)
825{
826 struct dvb_frontend *fe;
827 fe = dvb_attach(max2165_attach, adap->fe,
828 &adap->dev->i2c_adap, &mygica_d689_max2165_cfg);
829 return (fe == NULL) ? -EIO : 0;
830}
831
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300832static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700833{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700834 u8 b;
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300835 if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700836 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700837
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300838 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700839
Michael Krufkyf35db232006-12-05 14:53:39 -0300840 if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
841 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700842 return 0;
843
844 return -EIO;
845}
846
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300847static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufkyeffee032006-01-09 15:25:47 -0200848{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300849 if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200850 err("set interface failed");
851
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300852 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Michael Krufkyeffee032006-01-09 15:25:47 -0200853
Michael Krufkyf35db232006-12-05 14:53:39 -0300854 if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config,
855 &adap->dev->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200856 return 0;
857
858 return -EIO;
859}
860
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -0300861static int cxusb_aver_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
862{
863 adap->fe = dvb_attach(lgdt330x_attach, &cxusb_aver_lgdt3303_config,
864 &adap->dev->i2c_adap);
865 if (adap->fe != NULL)
866 return 0;
867
868 return -EIO;
869}
870
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300871static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200872{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300873 /* used in both lgz201 and th7579 */
874 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200875 err("set interface failed");
876
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300877 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200878
Michael Krufkyf35db232006-12-05 14:53:39 -0300879 if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
880 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300881 return 0;
882
883 return -EIO;
884}
885
886static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
887{
888 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
889 err("set interface failed");
890
891 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
892
Michael Krufkyf35db232006-12-05 14:53:39 -0300893 if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
894 &adap->dev->i2c_adap)) != NULL) ||
895 ((adap->fe = dvb_attach(zl10353_attach,
896 &cxusb_zl10353_dee1601_config,
897 &adap->dev->i2c_adap)) != NULL))
Chris Pascoe0029ee12006-01-09 18:21:28 -0200898 return 0;
899
900 return -EIO;
901}
902
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300903static int cxusb_dualdig4_frontend_attach(struct dvb_usb_adapter *adap)
904{
905 u8 ircode[4];
906 int i;
907 struct i2c_msg msg = { .addr = 0x6b, .flags = I2C_M_RD,
908 .buf = ircode, .len = 4 };
909
910 if (usb_set_interface(adap->dev->udev, 0, 1) < 0)
911 err("set interface failed");
912
913 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
914
915 /* reset the tuner and demodulator */
916 cxusb_bluebird_gpio_rw(adap->dev, 0x04, 0);
917 cxusb_bluebird_gpio_pulse(adap->dev, 0x01, 1);
918 cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1);
919
920 if ((adap->fe = dvb_attach(zl10353_attach,
Robert Lowery0bc35182009-11-08 00:00:11 -0300921 &cxusb_zl10353_xc3028_config_no_i2c_gate,
Chris Pascoeaeb012b2007-11-19 21:57:10 -0300922 &adap->dev->i2c_adap)) == NULL)
923 return -EIO;
924
925 /* try to determine if there is no IR decoder on the I2C bus */
926 for (i = 0; adap->dev->props.rc_key_map != NULL && i < 5; i++) {
927 msleep(20);
928 if (cxusb_i2c_xfer(&adap->dev->i2c_adap, &msg, 1) != 1)
929 goto no_IR;
930 if (ircode[0] == 0 && ircode[1] == 0)
931 continue;
932 if (ircode[2] + ircode[3] != 0xff) {
933no_IR:
934 adap->dev->props.rc_key_map = NULL;
935 info("No IR receiver detected on this device.");
936 break;
937 }
938 }
939
940 return 0;
941}
942
Anton Blanchard8d798982008-08-09 12:23:15 -0300943static struct dibx000_agc_config dib7070_agc_config = {
944 .band_caps = BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND,
945
946 /*
947 * P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5,
948 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
949 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0
950 */
951 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) |
952 (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
953 .inv_gain = 600,
954 .time_stabiliz = 10,
955 .alpha_level = 0,
956 .thlock = 118,
957 .wbd_inv = 0,
958 .wbd_ref = 3530,
959 .wbd_sel = 1,
960 .wbd_alpha = 5,
961 .agc1_max = 65535,
962 .agc1_min = 0,
963 .agc2_max = 65535,
964 .agc2_min = 0,
965 .agc1_pt1 = 0,
966 .agc1_pt2 = 40,
967 .agc1_pt3 = 183,
968 .agc1_slope1 = 206,
969 .agc1_slope2 = 255,
970 .agc2_pt1 = 72,
971 .agc2_pt2 = 152,
972 .agc2_slope1 = 88,
973 .agc2_slope2 = 90,
974 .alpha_mant = 17,
975 .alpha_exp = 27,
976 .beta_mant = 23,
977 .beta_exp = 51,
978 .perform_agc_softsplit = 0,
979};
980
981static struct dibx000_bandwidth_config dib7070_bw_config_12_mhz = {
982 .internal = 60000,
983 .sampling = 15000,
984 .pll_prediv = 1,
985 .pll_ratio = 20,
986 .pll_range = 3,
987 .pll_reset = 1,
988 .pll_bypass = 0,
989 .enable_refdiv = 0,
990 .bypclk_div = 0,
991 .IO_CLK_en_core = 1,
992 .ADClkSrc = 1,
993 .modulo = 2,
994 /* refsel, sel, freq_15k */
995 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
996 .ifreq = (0 << 25) | 0,
997 .timf = 20452225,
998 .xtal_hz = 12000000,
999};
1000
1001static struct dib7000p_config cxusb_dualdig4_rev2_config = {
1002 .output_mode = OUTMODE_MPEG2_PAR_GATED_CLK,
1003 .output_mpeg2_in_188_bytes = 1,
1004
1005 .agc_config_count = 1,
1006 .agc = &dib7070_agc_config,
1007 .bw = &dib7070_bw_config_12_mhz,
1008 .tuner_is_baseband = 1,
1009 .spur_protect = 1,
1010
1011 .gpio_dir = 0xfcef,
1012 .gpio_val = 0x0110,
1013
1014 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
1015
1016 .hostbus_diversity = 1,
1017};
1018
1019static int cxusb_dualdig4_rev2_frontend_attach(struct dvb_usb_adapter *adap)
1020{
1021 if (usb_set_interface(adap->dev->udev, 0, 1) < 0)
1022 err("set interface failed");
1023
1024 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
1025
1026 cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1);
1027
Randy Dunlap30d81bb2010-02-08 20:30:44 -03001028 if (dib7000p_i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
1029 &cxusb_dualdig4_rev2_config) < 0)
1030 return -ENODEV;
Anton Blanchard8d798982008-08-09 12:23:15 -03001031
Michael Krufkya2dc86b2008-08-09 13:06:26 -03001032 adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap, 0x80,
1033 &cxusb_dualdig4_rev2_config);
1034 if (adap->fe == NULL)
Anton Blanchard8d798982008-08-09 12:23:15 -03001035 return -EIO;
1036
1037 return 0;
1038}
1039
1040static int dib7070_tuner_reset(struct dvb_frontend *fe, int onoff)
1041{
1042 return dib7000p_set_gpio(fe, 8, 0, !onoff);
1043}
1044
1045static int dib7070_tuner_sleep(struct dvb_frontend *fe, int onoff)
1046{
1047 return 0;
1048}
1049
1050static struct dib0070_config dib7070p_dib0070_config = {
1051 .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
1052 .reset = dib7070_tuner_reset,
1053 .sleep = dib7070_tuner_sleep,
1054 .clock_khz = 12000,
1055};
1056
1057struct dib0700_adapter_state {
1058 int (*set_param_save) (struct dvb_frontend *,
1059 struct dvb_frontend_parameters *);
1060};
1061
1062static int dib7070_set_param_override(struct dvb_frontend *fe,
1063 struct dvb_frontend_parameters *fep)
1064{
1065 struct dvb_usb_adapter *adap = fe->dvb->priv;
1066 struct dib0700_adapter_state *state = adap->priv;
1067
1068 u16 offset;
1069 u8 band = BAND_OF_FREQUENCY(fep->frequency/1000);
1070 switch (band) {
Michael Krufkya2dc86b2008-08-09 13:06:26 -03001071 case BAND_VHF: offset = 950; break;
1072 default:
1073 case BAND_UHF: offset = 550; break;
Anton Blanchard8d798982008-08-09 12:23:15 -03001074 }
1075
1076 dib7000p_set_wbd_ref(fe, offset + dib0070_wbd_offset(fe));
1077
1078 return state->set_param_save(fe, fep);
1079}
1080
1081static int cxusb_dualdig4_rev2_tuner_attach(struct dvb_usb_adapter *adap)
1082{
1083 struct dib0700_adapter_state *st = adap->priv;
Michael Krufkya2dc86b2008-08-09 13:06:26 -03001084 struct i2c_adapter *tun_i2c =
1085 dib7000p_get_i2c_master(adap->fe,
1086 DIBX000_I2C_INTERFACE_TUNER, 1);
Anton Blanchard8d798982008-08-09 12:23:15 -03001087
1088 if (dvb_attach(dib0070_attach, adap->fe, tun_i2c,
1089 &dib7070p_dib0070_config) == NULL)
1090 return -ENODEV;
1091
1092 st->set_param_save = adap->fe->ops.tuner_ops.set_params;
1093 adap->fe->ops.tuner_ops.set_params = dib7070_set_param_override;
1094 return 0;
1095}
1096
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001097static int cxusb_nano2_frontend_attach(struct dvb_usb_adapter *adap)
1098{
1099 if (usb_set_interface(adap->dev->udev, 0, 1) < 0)
1100 err("set interface failed");
1101
1102 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
1103
1104 /* reset the tuner and demodulator */
1105 cxusb_bluebird_gpio_rw(adap->dev, 0x04, 0);
1106 cxusb_bluebird_gpio_pulse(adap->dev, 0x01, 1);
1107 cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1);
1108
1109 if ((adap->fe = dvb_attach(zl10353_attach,
1110 &cxusb_zl10353_xc3028_config,
1111 &adap->dev->i2c_adap)) != NULL)
1112 return 0;
1113
Chris Pascoe702a6762007-11-20 03:34:11 -03001114 if ((adap->fe = dvb_attach(mt352_attach,
1115 &cxusb_mt352_xc3028_config,
1116 &adap->dev->i2c_adap)) != NULL)
1117 return 0;
1118
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001119 return -EIO;
1120}
1121
David T.L. Wong6bf1a992009-08-05 13:07:10 -03001122static struct lgs8gxx_config d680_lgs8gl5_cfg = {
1123 .prod = LGS8GXX_PROD_LGS8GL5,
Timothy Leedfbdce02008-08-09 13:36:51 -03001124 .demod_address = 0x19,
David T.L. Wong6bf1a992009-08-05 13:07:10 -03001125 .serial_ts = 0,
1126 .ts_clk_pol = 0,
1127 .ts_clk_gated = 1,
1128 .if_clk_freq = 30400, /* 30.4 MHz */
1129 .if_freq = 5725, /* 5.725 MHz */
1130 .if_neg_center = 0,
1131 .ext_adc = 0,
1132 .adc_signed = 0,
1133 .if_neg_edge = 0,
Timothy Leedfbdce02008-08-09 13:36:51 -03001134};
1135
1136static int cxusb_d680_dmb_frontend_attach(struct dvb_usb_adapter *adap)
1137{
1138 struct dvb_usb_device *d = adap->dev;
1139 int n;
1140
1141 /* Select required USB configuration */
1142 if (usb_set_interface(d->udev, 0, 0) < 0)
1143 err("set interface failed");
1144
1145 /* Unblock all USB pipes */
1146 usb_clear_halt(d->udev,
1147 usb_sndbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
1148 usb_clear_halt(d->udev,
1149 usb_rcvbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
1150 usb_clear_halt(d->udev,
1151 usb_rcvbulkpipe(d->udev, d->props.adapter[0].stream.endpoint));
1152
1153 /* Drain USB pipes to avoid hang after reboot */
1154 for (n = 0; n < 5; n++) {
1155 cxusb_d680_dmb_drain_message(d);
1156 cxusb_d680_dmb_drain_video(d);
1157 msleep(200);
1158 }
1159
1160 /* Reset the tuner */
1161 if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 0) < 0) {
1162 err("clear tuner gpio failed");
1163 return -EIO;
1164 }
1165 msleep(100);
1166 if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 1) < 0) {
1167 err("set tuner gpio failed");
1168 return -EIO;
1169 }
1170 msleep(100);
1171
1172 /* Attach frontend */
David T.L. Wong6bf1a992009-08-05 13:07:10 -03001173 adap->fe = dvb_attach(lgs8gxx_attach, &d680_lgs8gl5_cfg, &d->i2c_adap);
Timothy Leedfbdce02008-08-09 13:36:51 -03001174 if (adap->fe == NULL)
1175 return -EIO;
1176
1177 return 0;
1178}
1179
David Wongb18bd1d2009-10-26 09:41:22 -03001180static struct atbm8830_config mygica_d689_atbm8830_cfg = {
1181 .prod = ATBM8830_PROD_8830,
1182 .demod_address = 0x40,
1183 .serial_ts = 0,
1184 .ts_sampling_edge = 1,
1185 .ts_clk_gated = 0,
1186 .osc_clk_freq = 30400, /* in kHz */
1187 .if_freq = 0, /* zero IF */
1188 .zif_swap_iq = 1,
David Wongc245c752009-11-28 08:36:31 -03001189 .agc_min = 0x2E,
1190 .agc_max = 0x90,
1191 .agc_hold_loop = 0,
David Wongb18bd1d2009-10-26 09:41:22 -03001192};
1193
1194static int cxusb_mygica_d689_frontend_attach(struct dvb_usb_adapter *adap)
1195{
1196 struct dvb_usb_device *d = adap->dev;
David Wongb18bd1d2009-10-26 09:41:22 -03001197
1198 /* Select required USB configuration */
1199 if (usb_set_interface(d->udev, 0, 0) < 0)
1200 err("set interface failed");
1201
1202 /* Unblock all USB pipes */
1203 usb_clear_halt(d->udev,
1204 usb_sndbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
1205 usb_clear_halt(d->udev,
1206 usb_rcvbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
1207 usb_clear_halt(d->udev,
1208 usb_rcvbulkpipe(d->udev, d->props.adapter[0].stream.endpoint));
1209
1210
1211 /* Reset the tuner */
1212 if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 0) < 0) {
1213 err("clear tuner gpio failed");
1214 return -EIO;
1215 }
1216 msleep(100);
1217 if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 1) < 0) {
1218 err("set tuner gpio failed");
1219 return -EIO;
1220 }
1221 msleep(100);
1222
1223 /* Attach frontend */
1224 adap->fe = dvb_attach(atbm8830_attach, &mygica_d689_atbm8830_cfg,
1225 &d->i2c_adap);
1226 if (adap->fe == NULL)
1227 return -EIO;
1228
1229 return 0;
1230}
1231
Patrick Boettcherf5373782006-01-09 18:21:38 -02001232/*
Chris Pascoe702a6762007-11-20 03:34:11 -03001233 * DViCO has shipped two devices with the same USB ID, but only one of them
1234 * needs a firmware download. Check the device class details to see if they
1235 * have non-default values to decide whether the device is actually cold or
1236 * not, and forget a match if it turns out we selected the wrong device.
1237 */
1238static int bluebird_fx2_identify_state(struct usb_device *udev,
1239 struct dvb_usb_device_properties *props,
1240 struct dvb_usb_device_description **desc,
1241 int *cold)
1242{
1243 int wascold = *cold;
1244
1245 *cold = udev->descriptor.bDeviceClass == 0xff &&
1246 udev->descriptor.bDeviceSubClass == 0xff &&
1247 udev->descriptor.bDeviceProtocol == 0xff;
1248
1249 if (*cold && !wascold)
1250 *desc = NULL;
1251
1252 return 0;
1253}
1254
1255/*
Patrick Boettcherf5373782006-01-09 18:21:38 -02001256 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
1257 * firmware file before download.
1258 */
1259
Chris Pascoe702a6762007-11-20 03:34:11 -03001260static const int dvico_firmware_id_offsets[] = { 6638, 3204 };
Michael Krufkyf35db232006-12-05 14:53:39 -03001261static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
1262 const struct firmware *fw)
Patrick Boettcherf5373782006-01-09 18:21:38 -02001263{
Chris Pascoe702a6762007-11-20 03:34:11 -03001264 int pos;
Patrick Boettcherf5373782006-01-09 18:21:38 -02001265
Chris Pascoe702a6762007-11-20 03:34:11 -03001266 for (pos = 0; pos < ARRAY_SIZE(dvico_firmware_id_offsets); pos++) {
1267 int idoff = dvico_firmware_id_offsets[pos];
Patrick Boettcherf5373782006-01-09 18:21:38 -02001268
Chris Pascoe702a6762007-11-20 03:34:11 -03001269 if (fw->size < idoff + 4)
1270 continue;
Patrick Boettcherf5373782006-01-09 18:21:38 -02001271
Chris Pascoe702a6762007-11-20 03:34:11 -03001272 if (fw->data[idoff] == (USB_VID_DVICO & 0xff) &&
1273 fw->data[idoff + 1] == USB_VID_DVICO >> 8) {
David Woodhousee62f89f2008-05-24 00:12:42 +01001274 struct firmware new_fw;
1275 u8 *new_fw_data = vmalloc(fw->size);
1276 int ret;
1277
1278 if (!new_fw_data)
1279 return -ENOMEM;
1280
1281 memcpy(new_fw_data, fw->data, fw->size);
1282 new_fw.size = fw->size;
1283 new_fw.data = new_fw_data;
1284
1285 new_fw_data[idoff + 2] =
Chris Pascoe702a6762007-11-20 03:34:11 -03001286 le16_to_cpu(udev->descriptor.idProduct) + 1;
David Woodhousee62f89f2008-05-24 00:12:42 +01001287 new_fw_data[idoff + 3] =
Chris Pascoe702a6762007-11-20 03:34:11 -03001288 le16_to_cpu(udev->descriptor.idProduct) >> 8;
1289
David Woodhousee62f89f2008-05-24 00:12:42 +01001290 ret = usb_cypress_load_firmware(udev, &new_fw,
1291 CYPRESS_FX2);
1292 vfree(new_fw_data);
1293 return ret;
Chris Pascoe702a6762007-11-20 03:34:11 -03001294 }
Patrick Boettcherf5373782006-01-09 18:21:38 -02001295 }
1296
1297 return -EINVAL;
1298}
1299
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001300/* DVB USB Driver stuff */
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001301static struct dvb_usb_device_properties cxusb_medion_properties;
1302static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
1303static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
1304static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
1305static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
Chris Pascoeaeb012b2007-11-19 21:57:10 -03001306static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_properties;
Anton Blanchard8d798982008-08-09 12:23:15 -03001307static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_rev2_properties;
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001308static struct dvb_usb_device_properties cxusb_bluebird_nano2_properties;
Chris Pascoe702a6762007-11-20 03:34:11 -03001309static struct dvb_usb_device_properties cxusb_bluebird_nano2_needsfirmware_properties;
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -03001310static struct dvb_usb_device_properties cxusb_aver_a868r_properties;
Timothy Leedfbdce02008-08-09 13:36:51 -03001311static struct dvb_usb_device_properties cxusb_d680_dmb_properties;
David Wongb18bd1d2009-10-26 09:41:22 -03001312static struct dvb_usb_device_properties cxusb_mygica_d689_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001313
1314static int cxusb_probe(struct usb_interface *intf,
Michael Krufkyf35db232006-12-05 14:53:39 -03001315 const struct usb_device_id *id)
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001316{
Janne Grunau78e92002008-04-09 19:13:13 -03001317 if (0 == dvb_usb_device_init(intf, &cxusb_medion_properties,
1318 THIS_MODULE, NULL, adapter_nr) ||
1319 0 == dvb_usb_device_init(intf, &cxusb_bluebird_lgh064f_properties,
1320 THIS_MODULE, NULL, adapter_nr) ||
1321 0 == dvb_usb_device_init(intf, &cxusb_bluebird_dee1601_properties,
1322 THIS_MODULE, NULL, adapter_nr) ||
1323 0 == dvb_usb_device_init(intf, &cxusb_bluebird_lgz201_properties,
1324 THIS_MODULE, NULL, adapter_nr) ||
1325 0 == dvb_usb_device_init(intf, &cxusb_bluebird_dtt7579_properties,
1326 THIS_MODULE, NULL, adapter_nr) ||
1327 0 == dvb_usb_device_init(intf, &cxusb_bluebird_dualdig4_properties,
1328 THIS_MODULE, NULL, adapter_nr) ||
1329 0 == dvb_usb_device_init(intf, &cxusb_bluebird_nano2_properties,
1330 THIS_MODULE, NULL, adapter_nr) ||
1331 0 == dvb_usb_device_init(intf,
1332 &cxusb_bluebird_nano2_needsfirmware_properties,
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -03001333 THIS_MODULE, NULL, adapter_nr) ||
1334 0 == dvb_usb_device_init(intf, &cxusb_aver_a868r_properties,
1335 THIS_MODULE, NULL, adapter_nr) ||
Anton Blanchard8d798982008-08-09 12:23:15 -03001336 0 == dvb_usb_device_init(intf,
1337 &cxusb_bluebird_dualdig4_rev2_properties,
1338 THIS_MODULE, NULL, adapter_nr) ||
Timothy Leedfbdce02008-08-09 13:36:51 -03001339 0 == dvb_usb_device_init(intf, &cxusb_d680_dmb_properties,
1340 THIS_MODULE, NULL, adapter_nr) ||
David Wongb18bd1d2009-10-26 09:41:22 -03001341 0 == dvb_usb_device_init(intf, &cxusb_mygica_d689_properties,
1342 THIS_MODULE, NULL, adapter_nr) ||
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -03001343 0)
Michael Krufkyeffee032006-01-09 15:25:47 -02001344 return 0;
Michael Krufkyeffee032006-01-09 15:25:47 -02001345
1346 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001347}
1348
1349static struct usb_device_id cxusb_table [] = {
Michael Krufkyf35db232006-12-05 14:53:39 -03001350 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
1351 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
1352 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
1353 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
1354 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
1355 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
1356 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
1357 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
1358 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
1359 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
1360 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
1361 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
1362 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
Chris Pascoeaeb012b2007-11-19 21:57:10 -03001363 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_4) },
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001364 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DVB_T_NANO_2) },
Chris Pascoe702a6762007-11-20 03:34:11 -03001365 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DVB_T_NANO_2_NFW_WARM) },
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -03001366 { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR_A868R) },
Anton Blanchard8d798982008-08-09 12:23:15 -03001367 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_4_REV_2) },
Timothy Leedfbdce02008-08-09 13:36:51 -03001368 { USB_DEVICE(USB_VID_CONEXANT, USB_PID_CONEXANT_D680_DMB) },
David Wongb18bd1d2009-10-26 09:41:22 -03001369 { USB_DEVICE(USB_VID_CONEXANT, USB_PID_MYGICA_D689) },
Michael Krufkyf35db232006-12-05 14:53:39 -03001370 {} /* Terminating entry */
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001371};
1372MODULE_DEVICE_TABLE (usb, cxusb_table);
1373
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001374static struct dvb_usb_device_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001375 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1376
1377 .usb_ctrl = CYPRESS_FX2,
1378
1379 .size_of_priv = sizeof(struct cxusb_state),
1380
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001381 .num_adapters = 1,
1382 .adapter = {
1383 {
Patrick Boettcher01451e72006-10-13 11:34:46 -03001384 .streaming_ctrl = cxusb_streaming_ctrl,
1385 .frontend_attach = cxusb_cx22702_frontend_attach,
1386 .tuner_attach = cxusb_fmd1216me_tuner_attach,
1387 /* parameter for the MPEG2-data transfer */
1388 .stream = {
1389 .type = USB_BULK,
1390 .count = 5,
1391 .endpoint = 0x02,
1392 .u = {
1393 .bulk = {
1394 .buffersize = 8192,
1395 }
1396 }
1397 },
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001398
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001399 },
1400 },
1401 .power_ctrl = cxusb_power_ctrl,
1402
1403 .i2c_algo = &cxusb_i2c_algo,
1404
1405 .generic_bulk_ctrl_endpoint = 0x01,
1406
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001407 .num_device_descs = 1,
1408 .devices = {
1409 { "Medion MD95700 (MDUSBTV-HYBRID)",
1410 { NULL },
1411 { &cxusb_table[0], NULL },
1412 },
1413 }
1414};
1415
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001416static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -02001417 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1418
Patrick Boettcherf5373782006-01-09 18:21:38 -02001419 .usb_ctrl = DEVICE_SPECIFIC,
1420 .firmware = "dvb-usb-bluebird-01.fw",
1421 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -02001422 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1423 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -02001424
1425 .size_of_priv = sizeof(struct cxusb_state),
1426
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001427 .num_adapters = 1,
1428 .adapter = {
1429 {
Patrick Boettcher01451e72006-10-13 11:34:46 -03001430 .streaming_ctrl = cxusb_streaming_ctrl,
1431 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyf71a56c2006-10-13 21:55:57 -03001432 .tuner_attach = cxusb_lgh064f_tuner_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -02001433
Patrick Boettcher01451e72006-10-13 11:34:46 -03001434 /* parameter for the MPEG2-data transfer */
1435 .stream = {
1436 .type = USB_BULK,
1437 .count = 5,
1438 .endpoint = 0x02,
1439 .u = {
1440 .bulk = {
1441 .buffersize = 8192,
1442 }
1443 }
1444 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001445 },
1446 },
1447
1448 .power_ctrl = cxusb_bluebird_power_ctrl,
1449
Michael Krufkyeffee032006-01-09 15:25:47 -02001450 .i2c_algo = &cxusb_i2c_algo,
1451
Michael Krufkyc1501782006-03-26 05:43:36 -03001452 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001453 .rc_key_map = ir_codes_dvico_portable_table,
1454 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_portable_table),
Michael Krufkyc1501782006-03-26 05:43:36 -03001455 .rc_query = cxusb_rc_query,
1456
Michael Krufkyeffee032006-01-09 15:25:47 -02001457 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufkyeffee032006-01-09 15:25:47 -02001458
1459 .num_device_descs = 1,
1460 .devices = {
1461 { "DViCO FusionHDTV5 USB Gold",
1462 { &cxusb_table[1], NULL },
1463 { &cxusb_table[2], NULL },
1464 },
1465 }
1466};
1467
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001468static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
Chris Pascoe0029ee12006-01-09 18:21:28 -02001469 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1470
Patrick Boettcherf5373782006-01-09 18:21:38 -02001471 .usb_ctrl = DEVICE_SPECIFIC,
1472 .firmware = "dvb-usb-bluebird-01.fw",
1473 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -02001474 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1475 use usb alt setting 7 for EP2 transfer (atsc) */
1476
1477 .size_of_priv = sizeof(struct cxusb_state),
1478
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001479 .num_adapters = 1,
1480 .adapter = {
1481 {
Patrick Boettcher01451e72006-10-13 11:34:46 -03001482 .streaming_ctrl = cxusb_streaming_ctrl,
1483 .frontend_attach = cxusb_dee1601_frontend_attach,
1484 .tuner_attach = cxusb_dee1601_tuner_attach,
1485 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001486 .stream = {
1487 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -03001488 .count = 5,
1489 .endpoint = 0x04,
1490 .u = {
1491 .bulk = {
1492 .buffersize = 8192,
1493 }
1494 }
1495 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001496 },
1497 },
1498
1499 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -02001500
1501 .i2c_algo = &cxusb_i2c_algo,
1502
Chris Pascoe7c239702006-01-09 18:21:29 -02001503 .rc_interval = 150,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001504 .rc_key_map = ir_codes_dvico_mce_table,
1505 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_mce_table),
Chris Pascoe7c239702006-01-09 18:21:29 -02001506 .rc_query = cxusb_rc_query,
1507
Chris Pascoe0029ee12006-01-09 18:21:28 -02001508 .generic_bulk_ctrl_endpoint = 0x01,
Chris Pascoe0029ee12006-01-09 18:21:28 -02001509
Michael Krufky587c03d2006-09-28 02:16:01 -03001510 .num_device_descs = 3,
Chris Pascoe0029ee12006-01-09 18:21:28 -02001511 .devices = {
1512 { "DViCO FusionHDTV DVB-T Dual USB",
1513 { &cxusb_table[3], NULL },
1514 { &cxusb_table[4], NULL },
1515 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -02001516 { "DigitalNow DVB-T Dual USB",
1517 { &cxusb_table[9], NULL },
1518 { &cxusb_table[10], NULL },
1519 },
Michael Krufky587c03d2006-09-28 02:16:01 -03001520 { "DViCO FusionHDTV DVB-T Dual Digital 2",
1521 { &cxusb_table[11], NULL },
1522 { &cxusb_table[12], NULL },
1523 },
Chris Pascoe0029ee12006-01-09 18:21:28 -02001524 }
1525};
1526
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001527static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -02001528 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1529
1530 .usb_ctrl = DEVICE_SPECIFIC,
1531 .firmware = "dvb-usb-bluebird-01.fw",
1532 .download_firmware = bluebird_patch_dvico_firmware_download,
1533 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1534 use usb alt setting 7 for EP2 transfer (atsc) */
1535
1536 .size_of_priv = sizeof(struct cxusb_state),
1537
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001538 .num_adapters = 2,
1539 .adapter = {
1540 {
Patrick Boettcher01451e72006-10-13 11:34:46 -03001541 .streaming_ctrl = cxusb_streaming_ctrl,
1542 .frontend_attach = cxusb_mt352_frontend_attach,
1543 .tuner_attach = cxusb_lgz201_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -02001544
Patrick Boettcher01451e72006-10-13 11:34:46 -03001545 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001546 .stream = {
1547 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -03001548 .count = 5,
1549 .endpoint = 0x04,
1550 .u = {
1551 .bulk = {
1552 .buffersize = 8192,
1553 }
1554 }
1555 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001556 },
1557 },
1558 .power_ctrl = cxusb_bluebird_power_ctrl,
1559
Michael Krufky6f447252006-01-11 19:40:33 -02001560 .i2c_algo = &cxusb_i2c_algo,
1561
Michael Krufkyc1501782006-03-26 05:43:36 -03001562 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001563 .rc_key_map = ir_codes_dvico_portable_table,
1564 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_portable_table),
Michael Krufkyc1501782006-03-26 05:43:36 -03001565 .rc_query = cxusb_rc_query,
1566
Michael Krufky6f447252006-01-11 19:40:33 -02001567 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -02001568 .num_device_descs = 1,
1569 .devices = {
1570 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
1571 { &cxusb_table[5], NULL },
1572 { &cxusb_table[6], NULL },
1573 },
1574 }
1575};
1576
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001577static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -02001578 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1579
1580 .usb_ctrl = DEVICE_SPECIFIC,
1581 .firmware = "dvb-usb-bluebird-01.fw",
1582 .download_firmware = bluebird_patch_dvico_firmware_download,
1583 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1584 use usb alt setting 7 for EP2 transfer (atsc) */
1585
1586 .size_of_priv = sizeof(struct cxusb_state),
1587
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001588 .num_adapters = 1,
1589 .adapter = {
1590 {
Patrick Boettcher01451e72006-10-13 11:34:46 -03001591 .streaming_ctrl = cxusb_streaming_ctrl,
1592 .frontend_attach = cxusb_mt352_frontend_attach,
1593 .tuner_attach = cxusb_dtt7579_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -02001594
Patrick Boettcher01451e72006-10-13 11:34:46 -03001595 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001596 .stream = {
1597 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -03001598 .count = 5,
1599 .endpoint = 0x04,
1600 .u = {
1601 .bulk = {
1602 .buffersize = 8192,
1603 }
1604 }
1605 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -03001606 },
1607 },
1608 .power_ctrl = cxusb_bluebird_power_ctrl,
1609
Michael Krufky6f447252006-01-11 19:40:33 -02001610 .i2c_algo = &cxusb_i2c_algo,
1611
Michael Krufkyc1501782006-03-26 05:43:36 -03001612 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001613 .rc_key_map = ir_codes_dvico_portable_table,
1614 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_portable_table),
Michael Krufkyc1501782006-03-26 05:43:36 -03001615 .rc_query = cxusb_rc_query,
1616
Michael Krufky6f447252006-01-11 19:40:33 -02001617 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -02001618
1619 .num_device_descs = 1,
1620 .devices = {
1621 { "DViCO FusionHDTV DVB-T USB (TH7579)",
1622 { &cxusb_table[7], NULL },
1623 { &cxusb_table[8], NULL },
1624 },
1625 }
1626};
1627
Chris Pascoeaeb012b2007-11-19 21:57:10 -03001628static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_properties = {
1629 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1630
1631 .usb_ctrl = CYPRESS_FX2,
1632
1633 .size_of_priv = sizeof(struct cxusb_state),
1634
1635 .num_adapters = 1,
1636 .adapter = {
1637 {
1638 .streaming_ctrl = cxusb_streaming_ctrl,
1639 .frontend_attach = cxusb_dualdig4_frontend_attach,
1640 .tuner_attach = cxusb_dvico_xc3028_tuner_attach,
1641 /* parameter for the MPEG2-data transfer */
1642 .stream = {
1643 .type = USB_BULK,
1644 .count = 5,
1645 .endpoint = 0x02,
1646 .u = {
1647 .bulk = {
1648 .buffersize = 8192,
1649 }
1650 }
1651 },
1652 },
1653 },
1654
1655 .power_ctrl = cxusb_power_ctrl,
1656
1657 .i2c_algo = &cxusb_i2c_algo,
1658
1659 .generic_bulk_ctrl_endpoint = 0x01,
1660
1661 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001662 .rc_key_map = ir_codes_dvico_mce_table,
1663 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_mce_table),
Chris Pascoeaeb012b2007-11-19 21:57:10 -03001664 .rc_query = cxusb_bluebird2_rc_query,
1665
1666 .num_device_descs = 1,
1667 .devices = {
1668 { "DViCO FusionHDTV DVB-T Dual Digital 4",
1669 { NULL },
1670 { &cxusb_table[13], NULL },
1671 },
1672 }
1673};
1674
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001675static struct dvb_usb_device_properties cxusb_bluebird_nano2_properties = {
1676 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1677
1678 .usb_ctrl = CYPRESS_FX2,
Chris Pascoe702a6762007-11-20 03:34:11 -03001679 .identify_state = bluebird_fx2_identify_state,
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001680
1681 .size_of_priv = sizeof(struct cxusb_state),
1682
1683 .num_adapters = 1,
1684 .adapter = {
1685 {
1686 .streaming_ctrl = cxusb_streaming_ctrl,
1687 .frontend_attach = cxusb_nano2_frontend_attach,
1688 .tuner_attach = cxusb_dvico_xc3028_tuner_attach,
1689 /* parameter for the MPEG2-data transfer */
1690 .stream = {
1691 .type = USB_BULK,
1692 .count = 5,
1693 .endpoint = 0x02,
1694 .u = {
1695 .bulk = {
1696 .buffersize = 8192,
1697 }
1698 }
1699 },
1700 },
1701 },
1702
1703 .power_ctrl = cxusb_nano2_power_ctrl,
1704
1705 .i2c_algo = &cxusb_i2c_algo,
1706
1707 .generic_bulk_ctrl_endpoint = 0x01,
1708
1709 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001710 .rc_key_map = ir_codes_dvico_portable_table,
1711 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_portable_table),
Chris Pascoe5ccaf902007-11-20 01:53:31 -03001712 .rc_query = cxusb_bluebird2_rc_query,
1713
1714 .num_device_descs = 1,
1715 .devices = {
1716 { "DViCO FusionHDTV DVB-T NANO2",
1717 { NULL },
1718 { &cxusb_table[14], NULL },
1719 },
1720 }
1721};
1722
Chris Pascoe702a6762007-11-20 03:34:11 -03001723static struct dvb_usb_device_properties cxusb_bluebird_nano2_needsfirmware_properties = {
1724 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1725
1726 .usb_ctrl = DEVICE_SPECIFIC,
1727 .firmware = "dvb-usb-bluebird-02.fw",
1728 .download_firmware = bluebird_patch_dvico_firmware_download,
1729 .identify_state = bluebird_fx2_identify_state,
1730
1731 .size_of_priv = sizeof(struct cxusb_state),
1732
1733 .num_adapters = 1,
1734 .adapter = {
1735 {
1736 .streaming_ctrl = cxusb_streaming_ctrl,
1737 .frontend_attach = cxusb_nano2_frontend_attach,
1738 .tuner_attach = cxusb_dvico_xc3028_tuner_attach,
1739 /* parameter for the MPEG2-data transfer */
1740 .stream = {
1741 .type = USB_BULK,
1742 .count = 5,
1743 .endpoint = 0x02,
1744 .u = {
1745 .bulk = {
1746 .buffersize = 8192,
1747 }
1748 }
1749 },
1750 },
1751 },
1752
1753 .power_ctrl = cxusb_nano2_power_ctrl,
1754
1755 .i2c_algo = &cxusb_i2c_algo,
1756
1757 .generic_bulk_ctrl_endpoint = 0x01,
1758
1759 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001760 .rc_key_map = ir_codes_dvico_portable_table,
1761 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_portable_table),
Chris Pascoe702a6762007-11-20 03:34:11 -03001762 .rc_query = cxusb_rc_query,
1763
1764 .num_device_descs = 1,
1765 .devices = {
1766 { "DViCO FusionHDTV DVB-T NANO2 w/o firmware",
1767 { &cxusb_table[14], NULL },
1768 { &cxusb_table[15], NULL },
1769 },
1770 }
1771};
1772
Daniel Gimpelevichf5376ad2008-06-28 05:01:30 -03001773static struct dvb_usb_device_properties cxusb_aver_a868r_properties = {
1774 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1775
1776 .usb_ctrl = CYPRESS_FX2,
1777
1778 .size_of_priv = sizeof(struct cxusb_state),
1779
1780 .num_adapters = 1,
1781 .adapter = {
1782 {
1783 .streaming_ctrl = cxusb_aver_streaming_ctrl,
1784 .frontend_attach = cxusb_aver_lgdt3303_frontend_attach,
1785 .tuner_attach = cxusb_mxl5003s_tuner_attach,
1786 /* parameter for the MPEG2-data transfer */
1787 .stream = {
1788 .type = USB_BULK,
1789 .count = 5,
1790 .endpoint = 0x04,
1791 .u = {
1792 .bulk = {
1793 .buffersize = 8192,
1794 }
1795 }
1796 },
1797
1798 },
1799 },
1800 .power_ctrl = cxusb_aver_power_ctrl,
1801
1802 .i2c_algo = &cxusb_i2c_algo,
1803
1804 .generic_bulk_ctrl_endpoint = 0x01,
1805
1806 .num_device_descs = 1,
1807 .devices = {
1808 { "AVerMedia AVerTVHD Volar (A868R)",
1809 { NULL },
1810 { &cxusb_table[16], NULL },
1811 },
1812 }
1813};
1814
Michael Krufkya2dc86b2008-08-09 13:06:26 -03001815static
1816struct dvb_usb_device_properties cxusb_bluebird_dualdig4_rev2_properties = {
Anton Blanchard8d798982008-08-09 12:23:15 -03001817 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1818
1819 .usb_ctrl = CYPRESS_FX2,
1820
1821 .size_of_priv = sizeof(struct cxusb_state),
1822
1823 .num_adapters = 1,
1824 .adapter = {
1825 {
Michael Krufkya2dc86b2008-08-09 13:06:26 -03001826 .streaming_ctrl = cxusb_streaming_ctrl,
1827 .frontend_attach = cxusb_dualdig4_rev2_frontend_attach,
1828 .tuner_attach = cxusb_dualdig4_rev2_tuner_attach,
1829 .size_of_priv = sizeof(struct dib0700_adapter_state),
Anton Blanchard8d798982008-08-09 12:23:15 -03001830 /* parameter for the MPEG2-data transfer */
1831 .stream = {
1832 .type = USB_BULK,
1833 .count = 7,
1834 .endpoint = 0x02,
1835 .u = {
1836 .bulk = {
1837 .buffersize = 4096,
1838 }
1839 }
1840 },
1841 },
1842 },
1843
1844 .power_ctrl = cxusb_bluebird_power_ctrl,
1845
1846 .i2c_algo = &cxusb_i2c_algo,
1847
1848 .generic_bulk_ctrl_endpoint = 0x01,
1849
1850 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001851 .rc_key_map = ir_codes_dvico_mce_table,
1852 .rc_key_map_size = ARRAY_SIZE(ir_codes_dvico_mce_table),
Anton Blanchard8d798982008-08-09 12:23:15 -03001853 .rc_query = cxusb_rc_query,
1854
1855 .num_device_descs = 1,
1856 .devices = {
1857 { "DViCO FusionHDTV DVB-T Dual Digital 4 (rev 2)",
1858 { NULL },
1859 { &cxusb_table[17], NULL },
1860 },
1861 }
1862};
1863
Timothy Leedfbdce02008-08-09 13:36:51 -03001864static struct dvb_usb_device_properties cxusb_d680_dmb_properties = {
1865 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1866
1867 .usb_ctrl = CYPRESS_FX2,
1868
1869 .size_of_priv = sizeof(struct cxusb_state),
1870
1871 .num_adapters = 1,
1872 .adapter = {
1873 {
1874 .streaming_ctrl = cxusb_d680_dmb_streaming_ctrl,
1875 .frontend_attach = cxusb_d680_dmb_frontend_attach,
1876 .tuner_attach = cxusb_d680_dmb_tuner_attach,
1877
1878 /* parameter for the MPEG2-data transfer */
1879 .stream = {
1880 .type = USB_BULK,
1881 .count = 5,
1882 .endpoint = 0x02,
1883 .u = {
1884 .bulk = {
1885 .buffersize = 8192,
1886 }
1887 }
1888 },
1889 },
1890 },
1891
1892 .power_ctrl = cxusb_d680_dmb_power_ctrl,
1893
1894 .i2c_algo = &cxusb_i2c_algo,
1895
1896 .generic_bulk_ctrl_endpoint = 0x01,
1897
1898 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001899 .rc_key_map = ir_codes_d680_dmb_table,
1900 .rc_key_map_size = ARRAY_SIZE(ir_codes_d680_dmb_table),
Timothy Leedfbdce02008-08-09 13:36:51 -03001901 .rc_query = cxusb_d680_dmb_rc_query,
1902
1903 .num_device_descs = 1,
1904 .devices = {
1905 {
1906 "Conexant DMB-TH Stick",
1907 { NULL },
1908 { &cxusb_table[18], NULL },
1909 },
1910 }
1911};
1912
David Wongb18bd1d2009-10-26 09:41:22 -03001913static struct dvb_usb_device_properties cxusb_mygica_d689_properties = {
1914 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
1915
1916 .usb_ctrl = CYPRESS_FX2,
1917
1918 .size_of_priv = sizeof(struct cxusb_state),
1919
1920 .num_adapters = 1,
1921 .adapter = {
1922 {
1923 .streaming_ctrl = cxusb_d680_dmb_streaming_ctrl,
1924 .frontend_attach = cxusb_mygica_d689_frontend_attach,
1925 .tuner_attach = cxusb_mygica_d689_tuner_attach,
1926
1927 /* parameter for the MPEG2-data transfer */
1928 .stream = {
1929 .type = USB_BULK,
1930 .count = 5,
1931 .endpoint = 0x02,
1932 .u = {
1933 .bulk = {
1934 .buffersize = 8192,
1935 }
1936 }
1937 },
1938 },
1939 },
1940
1941 .power_ctrl = cxusb_d680_dmb_power_ctrl,
1942
1943 .i2c_algo = &cxusb_i2c_algo,
1944
1945 .generic_bulk_ctrl_endpoint = 0x01,
1946
1947 .rc_interval = 100,
Mauro Carvalho Chehabe27e9712010-04-01 21:35:32 -03001948 .rc_key_map = ir_codes_d680_dmb_table,
1949 .rc_key_map_size = ARRAY_SIZE(ir_codes_d680_dmb_table),
David Wongb18bd1d2009-10-26 09:41:22 -03001950 .rc_query = cxusb_d680_dmb_rc_query,
1951
1952 .num_device_descs = 1,
1953 .devices = {
1954 {
1955 "Mygica D689 DMB-TH",
1956 { NULL },
1957 { &cxusb_table[19], NULL },
1958 },
1959 }
1960};
1961
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001962static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -07001963 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001964 .probe = cxusb_probe,
Michael Krufkyf35db232006-12-05 14:53:39 -03001965 .disconnect = dvb_usb_device_exit,
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001966 .id_table = cxusb_table,
1967};
1968
1969/* module stuff */
1970static int __init cxusb_module_init(void)
1971{
1972 int result;
1973 if ((result = usb_register(&cxusb_driver))) {
1974 err("usb_register failed. Error number %d",result);
1975 return result;
1976 }
1977
1978 return 0;
1979}
1980
1981static void __exit cxusb_module_exit(void)
1982{
1983 /* deregister this driver from the USB subsystem */
1984 usb_deregister(&cxusb_driver);
1985}
1986
1987module_init (cxusb_module_init);
1988module_exit (cxusb_module_exit);
1989
1990MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufky5b9ed282006-10-15 14:51:08 -03001991MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -02001992MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001993MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
1994MODULE_VERSION("1.0-alpha");
1995MODULE_LICENSE("GPL");