blob: 8559c2cd9a458f3d4fcd87bed3ea5bd027f2a0d4 [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 Krufkya07e6092006-01-09 18:21:31 -020017 * Copyright (C) 2005 Michael Krufky (mkrufky@m1k.net)
Chris Pascoe7c239702006-01-09 18:21:29 -020018 * Copyright (C) 2006 Chris Pascoe (c.pascoe@itee.uq.edu.au)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070019 *
20 * 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.
23 *
24 * see Documentation/dvb/README.dvb-usb for more information
25 */
26#include "cxusb.h"
27
28#include "cx22702.h"
Michael Krufkyeffee032006-01-09 15:25:47 -020029#include "lgdt330x.h"
Michael Krufky81ad3422006-04-24 23:21:46 -030030#include "lg_h06xf.h"
Chris Pascoe0029ee12006-01-09 18:21:28 -020031#include "mt352.h"
32#include "mt352_priv.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070033
34/* debug */
35int dvb_usb_cxusb_debug;
36module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
37MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
38
39static int cxusb_ctrl_msg(struct dvb_usb_device *d,
40 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
41{
42 int wo = (rbuf == NULL || rlen == 0); /* write-only */
43 u8 sndbuf[1+wlen];
44 memset(sndbuf,0,1+wlen);
45
46 sndbuf[0] = cmd;
47 memcpy(&sndbuf[1],wbuf,wlen);
48 if (wo)
49 dvb_usb_generic_write(d,sndbuf,1+wlen);
50 else
51 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
52
53 return 0;
54}
55
Patrick Boettchere2efeab2005-09-09 13:02:51 -070056/* GPIO */
57static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070058{
59 struct cxusb_state *st = d->priv;
60 u8 o[2],i;
61
Patrick Boettchere2efeab2005-09-09 13:02:51 -070062 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070063 return;
64
Patrick Boettchere2efeab2005-09-09 13:02:51 -070065 o[0] = GPIO_TUNER;
66 o[1] = onoff;
67 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070068
69 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070070 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070071
Patrick Boettchere2efeab2005-09-09 13:02:51 -070072 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070073}
74
Patrick Boettchere2efeab2005-09-09 13:02:51 -070075/* I2C */
Patrick Boettcher22c6d932005-07-07 17:58:10 -070076static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
77{
78 struct dvb_usb_device *d = i2c_get_adapdata(adap);
79 int i;
80
Ingo Molnar3593cab2006-02-07 06:49:14 -020081 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070082 return -EAGAIN;
83
84 if (num > 2)
Michael Krufky4d6e7722006-03-23 00:55:23 -030085 warn("more than two i2c messages at a time is not handled yet. TODO.");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070086
87 for (i = 0; i < num; i++) {
88
Michael Krufky5e805ef2006-03-23 00:01:34 -030089 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
90 switch (msg[i].addr) {
91 case 0x63:
92 cxusb_gpio_tuner(d,0);
93 break;
94 default:
95 cxusb_gpio_tuner(d,1);
96 break;
97 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -070098
99 /* read request */
100 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
101 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
102 obuf[0] = msg[i].len;
103 obuf[1] = msg[i+1].len;
104 obuf[2] = msg[i].addr;
105 memcpy(&obuf[3],msg[i].buf,msg[i].len);
106
107 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
108 obuf, 3+msg[i].len,
109 ibuf, 1+msg[i+1].len) < 0)
110 break;
111
112 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300113 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700114
115 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
116
117 i++;
118 } else { /* write */
119 u8 obuf[2+msg[i].len], ibuf;
120 obuf[0] = msg[i].addr;
121 obuf[1] = msg[i].len;
122 memcpy(&obuf[2],msg[i].buf,msg[i].len);
123
124 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
125 break;
126 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300127 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700128 }
129 }
130
Ingo Molnar3593cab2006-02-07 06:49:14 -0200131 mutex_unlock(&d->i2c_mutex);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700132 return i;
133}
134
135static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
136{
137 return I2C_FUNC_I2C;
138}
139
140static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700141 .master_xfer = cxusb_i2c_xfer,
142 .functionality = cxusb_i2c_func,
143};
144
145static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
146{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700147 u8 b = 0;
148 if (onoff)
149 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
150 else
151 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700152}
153
Michael Krufky5691c842006-04-19 20:40:01 -0300154static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
155{
156 u8 b = 0;
157 if (onoff)
158 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
159 else
160 return 0;
161}
162
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700163static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
164{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700165 u8 buf[2] = { 0x03, 0x00 };
166 if (onoff)
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700167 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700168 else
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700169 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700170
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700171 return 0;
172}
173
Chris Pascoe7c239702006-01-09 18:21:29 -0200174static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
175{
176 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200177 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200178 int i;
179
Michael Krufkya07e6092006-01-09 18:21:31 -0200180 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200181
182 *event = 0;
183 *state = REMOTE_NO_KEY_PRESSED;
184
185 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200186 if (keymap[i].custom == ircode[2] &&
187 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200188 *event = keymap[i].event;
189 *state = REMOTE_KEY_PRESSED;
190
191 return 0;
192 }
193 }
194
195 return 0;
196}
197
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200198static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200199 { 0xfe, 0x02, KEY_TV },
200 { 0xfe, 0x0e, KEY_MP3 },
201 { 0xfe, 0x1a, KEY_DVD },
202 { 0xfe, 0x1e, KEY_FAVORITES },
203 { 0xfe, 0x16, KEY_SETUP },
204 { 0xfe, 0x46, KEY_POWER2 },
205 { 0xfe, 0x0a, KEY_EPG },
206 { 0xfe, 0x49, KEY_BACK },
207 { 0xfe, 0x4d, KEY_MENU },
208 { 0xfe, 0x51, KEY_UP },
209 { 0xfe, 0x5b, KEY_LEFT },
210 { 0xfe, 0x5f, KEY_RIGHT },
211 { 0xfe, 0x53, KEY_DOWN },
212 { 0xfe, 0x5e, KEY_OK },
213 { 0xfe, 0x59, KEY_INFO },
214 { 0xfe, 0x55, KEY_TAB },
215 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
216 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
217 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
218 { 0xfe, 0x15, KEY_VOLUMEUP },
219 { 0xfe, 0x05, KEY_VOLUMEDOWN },
220 { 0xfe, 0x11, KEY_CHANNELUP },
221 { 0xfe, 0x09, KEY_CHANNELDOWN },
222 { 0xfe, 0x52, KEY_CAMERA },
223 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
224 { 0xfe, 0x19, KEY_OPEN },
225 { 0xfe, 0x0b, KEY_1 },
226 { 0xfe, 0x17, KEY_2 },
227 { 0xfe, 0x1b, KEY_3 },
228 { 0xfe, 0x07, KEY_4 },
229 { 0xfe, 0x50, KEY_5 },
230 { 0xfe, 0x54, KEY_6 },
231 { 0xfe, 0x48, KEY_7 },
232 { 0xfe, 0x4c, KEY_8 },
233 { 0xfe, 0x58, KEY_9 },
234 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
235 { 0xfe, 0x03, KEY_0 },
236 { 0xfe, 0x1f, KEY_ZOOM },
237 { 0xfe, 0x43, KEY_REWIND },
238 { 0xfe, 0x47, KEY_PLAYPAUSE },
239 { 0xfe, 0x4f, KEY_FASTFORWARD },
240 { 0xfe, 0x57, KEY_MUTE },
241 { 0xfe, 0x0d, KEY_STOP },
242 { 0xfe, 0x01, KEY_RECORD },
243 { 0xfe, 0x4e, KEY_POWER },
244};
245
Michael Krufkyc1501782006-03-26 05:43:36 -0300246static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
247 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
248 { 0xfc, 0x43, KEY_POWER2 },
249 { 0xfc, 0x06, KEY_EPG },
250 { 0xfc, 0x5a, KEY_BACK },
251 { 0xfc, 0x05, KEY_MENU },
252 { 0xfc, 0x47, KEY_INFO },
253 { 0xfc, 0x01, KEY_TAB },
254 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
255 { 0xfc, 0x49, KEY_VOLUMEUP },
256 { 0xfc, 0x09, KEY_VOLUMEDOWN },
257 { 0xfc, 0x54, KEY_CHANNELUP },
258 { 0xfc, 0x0b, KEY_CHANNELDOWN },
Michael Krufkydbcb86e2006-03-26 18:59:45 -0300259 { 0xfc, 0x16, KEY_CAMERA },
Michael Krufkyc1501782006-03-26 05:43:36 -0300260 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
261 { 0xfc, 0x45, KEY_OPEN },
262 { 0xfc, 0x19, KEY_1 },
263 { 0xfc, 0x18, KEY_2 },
264 { 0xfc, 0x1b, KEY_3 },
265 { 0xfc, 0x1a, KEY_4 },
266 { 0xfc, 0x58, KEY_5 },
267 { 0xfc, 0x59, KEY_6 },
268 { 0xfc, 0x15, KEY_7 },
269 { 0xfc, 0x14, KEY_8 },
270 { 0xfc, 0x17, KEY_9 },
271 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
272 { 0xfc, 0x55, KEY_0 },
273 { 0xfc, 0x07, KEY_ZOOM },
274 { 0xfc, 0x0a, KEY_REWIND },
275 { 0xfc, 0x08, KEY_PLAYPAUSE },
276 { 0xfc, 0x4b, KEY_FASTFORWARD },
277 { 0xfc, 0x5b, KEY_MUTE },
278 { 0xfc, 0x04, KEY_STOP },
279 { 0xfc, 0x56, KEY_RECORD },
280 { 0xfc, 0x57, KEY_POWER },
281 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
282 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
283};
284
Chris Pascoe0029ee12006-01-09 18:21:28 -0200285static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
286{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200287 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200288 static u8 reset [] = { RESET, 0x80 };
289 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
290 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
291 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
292 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
293
294 mt352_write(fe, clock_config, sizeof(clock_config));
295 udelay(200);
296 mt352_write(fe, reset, sizeof(reset));
297 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
298
299 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
300 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
301 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
302
303 return 0;
304}
305
Michael Krufky6f447252006-01-11 19:40:33 -0200306static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
307{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200308 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200309 static u8 reset [] = { RESET, 0x80 };
310 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
311 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
312 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
313 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
314
315 mt352_write(fe, clock_config, sizeof(clock_config));
316 udelay(200);
317 mt352_write(fe, reset, sizeof(reset));
318 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
319
320 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
321 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
322 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
323 return 0;
324}
325
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300326static int cxusb_lgh064f_tuner_set_params(struct dvb_frontend *fe,
327 struct dvb_frontend_parameters *fep)
Michael Krufky8d6cdd22006-04-16 13:19:24 -0300328{
329 struct dvb_usb_device *d = fe->dvb->priv;
Michael Krufky55bbcde2006-04-18 17:47:08 -0300330 return lg_h06xf_pll_set(fe, &d->i2c_adap, fep);
Michael Krufky8d6cdd22006-04-16 13:19:24 -0300331}
332
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200333static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700334 .demod_address = 0x63,
335
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700336 .output_mode = CX22702_PARALLEL_OUTPUT,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700337};
338
Michael Krufkyfddd6322006-02-27 00:08:17 -0300339static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200340 .demod_address = 0x0e,
341 .demod_chip = LGDT3303,
Michael Krufkyeffee032006-01-09 15:25:47 -0200342};
343
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200344static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200345 .demod_address = 0x0f,
346 .demod_init = cxusb_dee1601_demod_init,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200347};
348
Adrian Bunk6fe00b02006-04-19 20:49:28 -0300349static struct mt352_config cxusb_mt352_config = {
Michael Krufky6f447252006-01-11 19:40:33 -0200350 /* used in both lgz201 and th7579 */
351 .demod_address = 0x0f,
352 .demod_init = cxusb_mt352_demod_init,
Michael Krufky6f447252006-01-11 19:40:33 -0200353};
354
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700355/* Callbacks for DVB USB */
Michael Krufkyeffee032006-01-09 15:25:47 -0200356static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700357{
358 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
359 d->pll_addr = 0x61;
Michael Krufkyeffee032006-01-09 15:25:47 -0200360 memcpy(d->pll_init, bpll, 4);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700361 d->pll_desc = &dvb_pll_fmd1216me;
362 return 0;
363}
364
Chris Pascoe0029ee12006-01-09 18:21:28 -0200365static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d)
366{
367 d->pll_addr = 0x61;
368 d->pll_desc = &dvb_pll_thomson_dtt7579;
369 return 0;
370}
371
Michael Krufky6f447252006-01-11 19:40:33 -0200372static int cxusb_lgz201_tuner_attach(struct dvb_usb_device *d)
373{
374 d->pll_addr = 0x61;
375 d->pll_desc = &dvb_pll_lg_z201;
376 return 0;
377}
378
379static int cxusb_dtt7579_tuner_attach(struct dvb_usb_device *d)
380{
381 d->pll_addr = 0x60;
382 d->pll_desc = &dvb_pll_thomson_dtt7579;
383 return 0;
384}
385
Michael Krufkyeffee032006-01-09 15:25:47 -0200386static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700387{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700388 u8 b;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700389 if (usb_set_interface(d->udev,0,6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700390 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700391
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700392 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700393
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300394 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL) {
395 d->fe->ops->tuner_ops.init = dvb_usb_tuner_init_i2c;
396 d->fe->ops->tuner_ops.set_params = dvb_usb_tuner_set_params_i2c;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700397 return 0;
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300398 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700399
400 return -EIO;
401}
402
Michael Krufkyfddd6322006-02-27 00:08:17 -0300403static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d)
Michael Krufkyeffee032006-01-09 15:25:47 -0200404{
Michael Krufky37bdfa02006-01-09 15:25:47 -0200405 if (usb_set_interface(d->udev,0,7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200406 err("set interface failed");
407
408 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
409
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300410 if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL) {
411 d->fe->ops->tuner_ops.set_params = cxusb_lgh064f_tuner_set_params;
Michael Krufkyeffee032006-01-09 15:25:47 -0200412 return 0;
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300413 }
Michael Krufkyeffee032006-01-09 15:25:47 -0200414
415 return -EIO;
416}
417
Michael Krufky6f447252006-01-11 19:40:33 -0200418static int cxusb_mt352_frontend_attach(struct dvb_usb_device *d)
419{ /* used in both lgz201 and th7579 */
420 if (usb_set_interface(d->udev,0,0) < 0)
421 err("set interface failed");
422
423 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
424
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300425 if ((d->fe = mt352_attach(&cxusb_mt352_config, &d->i2c_adap)) != NULL) {
426 d->fe->ops->tuner_ops.pllbuf = dvb_usb_tuner_pllbuf;
Michael Krufky6f447252006-01-11 19:40:33 -0200427 return 0;
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300428 }
Michael Krufky6f447252006-01-11 19:40:33 -0200429
430 return -EIO;
431}
432
Chris Pascoe0029ee12006-01-09 18:21:28 -0200433static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d)
434{
435 if (usb_set_interface(d->udev,0,0) < 0)
436 err("set interface failed");
437
438 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
439
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300440 if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL) {
441 d->fe->ops->tuner_ops.pllbuf = dvb_usb_tuner_pllbuf;
Chris Pascoe0029ee12006-01-09 18:21:28 -0200442 return 0;
Andrew de Quinceyb12faef2006-04-18 17:47:12 -0300443 }
Chris Pascoe0029ee12006-01-09 18:21:28 -0200444
445 return -EIO;
446}
447
Patrick Boettcherf5373782006-01-09 18:21:38 -0200448/*
449 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
450 * firmware file before download.
451 */
452
453#define BLUEBIRD_01_ID_OFFSET 6638
454static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw)
455{
456 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
457 return -EINVAL;
458
459 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
460 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
461
Patrick Boettcherf5373782006-01-09 18:21:38 -0200462 fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1;
463 fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8;
464
465 return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2);
466 }
467
468 return -EINVAL;
469}
470
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700471/* DVB USB Driver stuff */
Michael Krufkyeffee032006-01-09 15:25:47 -0200472static struct dvb_usb_properties cxusb_medion_properties;
Michael Krufkye71bb542006-01-09 15:32:42 -0200473static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties;
Chris Pascoe0029ee12006-01-09 18:21:28 -0200474static struct dvb_usb_properties cxusb_bluebird_dee1601_properties;
Michael Krufky6f447252006-01-11 19:40:33 -0200475static struct dvb_usb_properties cxusb_bluebird_lgz201_properties;
476static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700477
478static int cxusb_probe(struct usb_interface *intf,
479 const struct usb_device_id *id)
480{
Michael Krufkyeffee032006-01-09 15:25:47 -0200481 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200482 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufky6f447252006-01-11 19:40:33 -0200483 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
484 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
485 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200486 return 0;
487 }
488
489 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700490}
491
492static struct usb_device_id cxusb_table [] = {
493 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
Michael Krufkyeffee032006-01-09 15:25:47 -0200494 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
495 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200496 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) },
497 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) },
Michael Krufky6f447252006-01-11 19:40:33 -0200498 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
499 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
500 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
501 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200502 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_COLD) },
503 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_WARM) },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700504 {} /* Terminating entry */
505};
506MODULE_DEVICE_TABLE (usb, cxusb_table);
507
Michael Krufkyeffee032006-01-09 15:25:47 -0200508static struct dvb_usb_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700509 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
510
511 .usb_ctrl = CYPRESS_FX2,
512
513 .size_of_priv = sizeof(struct cxusb_state),
514
515 .streaming_ctrl = cxusb_streaming_ctrl,
516 .power_ctrl = cxusb_power_ctrl,
Michael Krufkyeffee032006-01-09 15:25:47 -0200517 .frontend_attach = cxusb_cx22702_frontend_attach,
518 .tuner_attach = cxusb_fmd1216me_tuner_attach,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700519
520 .i2c_algo = &cxusb_i2c_algo,
521
522 .generic_bulk_ctrl_endpoint = 0x01,
523 /* parameter for the MPEG2-data transfer */
524 .urb = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700525 .type = DVB_USB_BULK,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700526 .count = 5,
527 .endpoint = 0x02,
528 .u = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700529 .bulk = {
530 .buffersize = 8192,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700531 }
532 }
533 },
534
535 .num_device_descs = 1,
536 .devices = {
537 { "Medion MD95700 (MDUSBTV-HYBRID)",
538 { NULL },
539 { &cxusb_table[0], NULL },
540 },
541 }
542};
543
Michael Krufkye71bb542006-01-09 15:32:42 -0200544static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200545 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
546
Patrick Boettcherf5373782006-01-09 18:21:38 -0200547 .usb_ctrl = DEVICE_SPECIFIC,
548 .firmware = "dvb-usb-bluebird-01.fw",
549 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200550 /* use usb alt setting 0 for EP4 transfer (dvb-t),
551 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200552
553 .size_of_priv = sizeof(struct cxusb_state),
554
555 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300556 .power_ctrl = cxusb_bluebird_power_ctrl,
Michael Krufkyfddd6322006-02-27 00:08:17 -0300557 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -0200558
559 .i2c_algo = &cxusb_i2c_algo,
560
Michael Krufkyc1501782006-03-26 05:43:36 -0300561 .rc_interval = 100,
562 .rc_key_map = dvico_portable_rc_keys,
563 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
564 .rc_query = cxusb_rc_query,
565
Michael Krufkyeffee032006-01-09 15:25:47 -0200566 .generic_bulk_ctrl_endpoint = 0x01,
567 /* parameter for the MPEG2-data transfer */
568 .urb = {
569 .type = DVB_USB_BULK,
570 .count = 5,
571 .endpoint = 0x02,
572 .u = {
573 .bulk = {
574 .buffersize = 8192,
575 }
576 }
577 },
578
579 .num_device_descs = 1,
580 .devices = {
581 { "DViCO FusionHDTV5 USB Gold",
582 { &cxusb_table[1], NULL },
583 { &cxusb_table[2], NULL },
584 },
585 }
586};
587
Chris Pascoe0029ee12006-01-09 18:21:28 -0200588static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = {
589 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
590
Patrick Boettcherf5373782006-01-09 18:21:38 -0200591 .usb_ctrl = DEVICE_SPECIFIC,
592 .firmware = "dvb-usb-bluebird-01.fw",
593 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200594 /* use usb alt setting 0 for EP4 transfer (dvb-t),
595 use usb alt setting 7 for EP2 transfer (atsc) */
596
597 .size_of_priv = sizeof(struct cxusb_state),
598
599 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300600 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200601 .frontend_attach = cxusb_dee1601_frontend_attach,
602 .tuner_attach = cxusb_dee1601_tuner_attach,
603
604 .i2c_algo = &cxusb_i2c_algo,
605
Chris Pascoe7c239702006-01-09 18:21:29 -0200606 .rc_interval = 150,
607 .rc_key_map = dvico_mce_rc_keys,
608 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
609 .rc_query = cxusb_rc_query,
610
Chris Pascoe0029ee12006-01-09 18:21:28 -0200611 .generic_bulk_ctrl_endpoint = 0x01,
612 /* parameter for the MPEG2-data transfer */
613 .urb = {
614 .type = DVB_USB_BULK,
615 .count = 5,
616 .endpoint = 0x04,
617 .u = {
618 .bulk = {
619 .buffersize = 8192,
620 }
621 }
622 },
623
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200624 .num_device_descs = 2,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200625 .devices = {
626 { "DViCO FusionHDTV DVB-T Dual USB",
627 { &cxusb_table[3], NULL },
628 { &cxusb_table[4], NULL },
629 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200630 { "DigitalNow DVB-T Dual USB",
631 { &cxusb_table[9], NULL },
632 { &cxusb_table[10], NULL },
633 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200634 }
635};
636
Michael Krufky6f447252006-01-11 19:40:33 -0200637static struct dvb_usb_properties cxusb_bluebird_lgz201_properties = {
638 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
639
640 .usb_ctrl = DEVICE_SPECIFIC,
641 .firmware = "dvb-usb-bluebird-01.fw",
642 .download_firmware = bluebird_patch_dvico_firmware_download,
643 /* use usb alt setting 0 for EP4 transfer (dvb-t),
644 use usb alt setting 7 for EP2 transfer (atsc) */
645
646 .size_of_priv = sizeof(struct cxusb_state),
647
648 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300649 .power_ctrl = cxusb_bluebird_power_ctrl,
Michael Krufky6f447252006-01-11 19:40:33 -0200650 .frontend_attach = cxusb_mt352_frontend_attach,
651 .tuner_attach = cxusb_lgz201_tuner_attach,
652
653 .i2c_algo = &cxusb_i2c_algo,
654
Michael Krufkyc1501782006-03-26 05:43:36 -0300655 .rc_interval = 100,
656 .rc_key_map = dvico_portable_rc_keys,
657 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
658 .rc_query = cxusb_rc_query,
659
Michael Krufky6f447252006-01-11 19:40:33 -0200660 .generic_bulk_ctrl_endpoint = 0x01,
661 /* parameter for the MPEG2-data transfer */
662 .urb = {
663 .type = DVB_USB_BULK,
664 .count = 5,
665 .endpoint = 0x04,
666 .u = {
667 .bulk = {
668 .buffersize = 8192,
669 }
670 }
671 },
672
673 .num_device_descs = 1,
674 .devices = {
675 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
676 { &cxusb_table[5], NULL },
677 { &cxusb_table[6], NULL },
678 },
679 }
680};
681
682static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties = {
683 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
684
685 .usb_ctrl = DEVICE_SPECIFIC,
686 .firmware = "dvb-usb-bluebird-01.fw",
687 .download_firmware = bluebird_patch_dvico_firmware_download,
688 /* use usb alt setting 0 for EP4 transfer (dvb-t),
689 use usb alt setting 7 for EP2 transfer (atsc) */
690
691 .size_of_priv = sizeof(struct cxusb_state),
692
693 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300694 .power_ctrl = cxusb_bluebird_power_ctrl,
Michael Krufky6f447252006-01-11 19:40:33 -0200695 .frontend_attach = cxusb_mt352_frontend_attach,
696 .tuner_attach = cxusb_dtt7579_tuner_attach,
697
698 .i2c_algo = &cxusb_i2c_algo,
699
Michael Krufkyc1501782006-03-26 05:43:36 -0300700 .rc_interval = 100,
701 .rc_key_map = dvico_portable_rc_keys,
702 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
703 .rc_query = cxusb_rc_query,
704
Michael Krufky6f447252006-01-11 19:40:33 -0200705 .generic_bulk_ctrl_endpoint = 0x01,
706 /* parameter for the MPEG2-data transfer */
707 .urb = {
708 .type = DVB_USB_BULK,
709 .count = 5,
710 .endpoint = 0x04,
711 .u = {
712 .bulk = {
713 .buffersize = 8192,
714 }
715 }
716 },
717
718 .num_device_descs = 1,
719 .devices = {
720 { "DViCO FusionHDTV DVB-T USB (TH7579)",
721 { &cxusb_table[7], NULL },
722 { &cxusb_table[8], NULL },
723 },
724 }
725};
726
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700727static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700728 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700729 .probe = cxusb_probe,
730 .disconnect = dvb_usb_device_exit,
731 .id_table = cxusb_table,
732};
733
734/* module stuff */
735static int __init cxusb_module_init(void)
736{
737 int result;
738 if ((result = usb_register(&cxusb_driver))) {
739 err("usb_register failed. Error number %d",result);
740 return result;
741 }
742
743 return 0;
744}
745
746static void __exit cxusb_module_exit(void)
747{
748 /* deregister this driver from the USB subsystem */
749 usb_deregister(&cxusb_driver);
750}
751
752module_init (cxusb_module_init);
753module_exit (cxusb_module_exit);
754
755MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200756MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>");
757MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700758MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
759MODULE_VERSION("1.0-alpha");
760MODULE_LICENSE("GPL");