blob: f2b9b4be2802e4c2c1b3b9c89265fe53e76d1d0d [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"
Chris Pascoe0029ee12006-01-09 18:21:28 -020030#include "mt352.h"
31#include "mt352_priv.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070032
33/* debug */
34int dvb_usb_cxusb_debug;
35module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
36MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
37
38static int cxusb_ctrl_msg(struct dvb_usb_device *d,
39 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
40{
41 int wo = (rbuf == NULL || rlen == 0); /* write-only */
42 u8 sndbuf[1+wlen];
43 memset(sndbuf,0,1+wlen);
44
45 sndbuf[0] = cmd;
46 memcpy(&sndbuf[1],wbuf,wlen);
47 if (wo)
48 dvb_usb_generic_write(d,sndbuf,1+wlen);
49 else
50 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
51
52 return 0;
53}
54
Patrick Boettchere2efeab2005-09-09 13:02:51 -070055/* GPIO */
56static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070057{
58 struct cxusb_state *st = d->priv;
59 u8 o[2],i;
60
Patrick Boettchere2efeab2005-09-09 13:02:51 -070061 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070062 return;
63
Patrick Boettchere2efeab2005-09-09 13:02:51 -070064 o[0] = GPIO_TUNER;
65 o[1] = onoff;
66 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070067
68 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070069 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070070
Patrick Boettchere2efeab2005-09-09 13:02:51 -070071 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070072}
73
Patrick Boettchere2efeab2005-09-09 13:02:51 -070074/* I2C */
Patrick Boettcher22c6d932005-07-07 17:58:10 -070075static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
76{
77 struct dvb_usb_device *d = i2c_get_adapdata(adap);
78 int i;
79
Ingo Molnar3593cab2006-02-07 06:49:14 -020080 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070081 return -EAGAIN;
82
83 if (num > 2)
Michael Krufky4d6e7722006-03-23 00:55:23 -030084 warn("more than two i2c messages at a time is not handled yet. TODO.");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070085
86 for (i = 0; i < num; i++) {
87
Michael Krufky5e805ef2006-03-23 00:01:34 -030088 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
89 switch (msg[i].addr) {
90 case 0x63:
91 cxusb_gpio_tuner(d,0);
92 break;
93 default:
94 cxusb_gpio_tuner(d,1);
95 break;
96 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -070097
98 /* read request */
99 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
100 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
101 obuf[0] = msg[i].len;
102 obuf[1] = msg[i+1].len;
103 obuf[2] = msg[i].addr;
104 memcpy(&obuf[3],msg[i].buf,msg[i].len);
105
106 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
107 obuf, 3+msg[i].len,
108 ibuf, 1+msg[i+1].len) < 0)
109 break;
110
111 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300112 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700113
114 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
115
116 i++;
117 } else { /* write */
118 u8 obuf[2+msg[i].len], ibuf;
119 obuf[0] = msg[i].addr;
120 obuf[1] = msg[i].len;
121 memcpy(&obuf[2],msg[i].buf,msg[i].len);
122
123 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
124 break;
125 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300126 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700127 }
128 }
129
Ingo Molnar3593cab2006-02-07 06:49:14 -0200130 mutex_unlock(&d->i2c_mutex);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700131 return i;
132}
133
134static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
135{
136 return I2C_FUNC_I2C;
137}
138
139static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700140 .master_xfer = cxusb_i2c_xfer,
141 .functionality = cxusb_i2c_func,
142};
143
144static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
145{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700146 u8 b = 0;
147 if (onoff)
148 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
149 else
150 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700151}
152
153static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
154{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700155 u8 buf[2] = { 0x03, 0x00 };
156 if (onoff)
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700157 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700158 else
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700159 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700160
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700161 return 0;
162}
163
Chris Pascoe7c239702006-01-09 18:21:29 -0200164static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
165{
166 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200167 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200168 int i;
169
Michael Krufkya07e6092006-01-09 18:21:31 -0200170 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200171
172 *event = 0;
173 *state = REMOTE_NO_KEY_PRESSED;
174
175 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200176 if (keymap[i].custom == ircode[2] &&
177 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200178 *event = keymap[i].event;
179 *state = REMOTE_KEY_PRESSED;
180
181 return 0;
182 }
183 }
184
185 return 0;
186}
187
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200188static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200189 { 0xfe, 0x02, KEY_TV },
190 { 0xfe, 0x0e, KEY_MP3 },
191 { 0xfe, 0x1a, KEY_DVD },
192 { 0xfe, 0x1e, KEY_FAVORITES },
193 { 0xfe, 0x16, KEY_SETUP },
194 { 0xfe, 0x46, KEY_POWER2 },
195 { 0xfe, 0x0a, KEY_EPG },
196 { 0xfe, 0x49, KEY_BACK },
197 { 0xfe, 0x4d, KEY_MENU },
198 { 0xfe, 0x51, KEY_UP },
199 { 0xfe, 0x5b, KEY_LEFT },
200 { 0xfe, 0x5f, KEY_RIGHT },
201 { 0xfe, 0x53, KEY_DOWN },
202 { 0xfe, 0x5e, KEY_OK },
203 { 0xfe, 0x59, KEY_INFO },
204 { 0xfe, 0x55, KEY_TAB },
205 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
206 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
207 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
208 { 0xfe, 0x15, KEY_VOLUMEUP },
209 { 0xfe, 0x05, KEY_VOLUMEDOWN },
210 { 0xfe, 0x11, KEY_CHANNELUP },
211 { 0xfe, 0x09, KEY_CHANNELDOWN },
212 { 0xfe, 0x52, KEY_CAMERA },
213 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
214 { 0xfe, 0x19, KEY_OPEN },
215 { 0xfe, 0x0b, KEY_1 },
216 { 0xfe, 0x17, KEY_2 },
217 { 0xfe, 0x1b, KEY_3 },
218 { 0xfe, 0x07, KEY_4 },
219 { 0xfe, 0x50, KEY_5 },
220 { 0xfe, 0x54, KEY_6 },
221 { 0xfe, 0x48, KEY_7 },
222 { 0xfe, 0x4c, KEY_8 },
223 { 0xfe, 0x58, KEY_9 },
224 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
225 { 0xfe, 0x03, KEY_0 },
226 { 0xfe, 0x1f, KEY_ZOOM },
227 { 0xfe, 0x43, KEY_REWIND },
228 { 0xfe, 0x47, KEY_PLAYPAUSE },
229 { 0xfe, 0x4f, KEY_FASTFORWARD },
230 { 0xfe, 0x57, KEY_MUTE },
231 { 0xfe, 0x0d, KEY_STOP },
232 { 0xfe, 0x01, KEY_RECORD },
233 { 0xfe, 0x4e, KEY_POWER },
234};
235
Michael Krufkyc1501782006-03-26 05:43:36 -0300236static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
237 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
238 { 0xfc, 0x43, KEY_POWER2 },
239 { 0xfc, 0x06, KEY_EPG },
240 { 0xfc, 0x5a, KEY_BACK },
241 { 0xfc, 0x05, KEY_MENU },
242 { 0xfc, 0x47, KEY_INFO },
243 { 0xfc, 0x01, KEY_TAB },
244 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
245 { 0xfc, 0x49, KEY_VOLUMEUP },
246 { 0xfc, 0x09, KEY_VOLUMEDOWN },
247 { 0xfc, 0x54, KEY_CHANNELUP },
248 { 0xfc, 0x0b, KEY_CHANNELDOWN },
249 /*
250 { 0xfc, 0x56, KEY_CAMERA },
251 Camera and Record keys both send the same code,
252 but the camera key doesn't repeat.
253 */
254 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
255 { 0xfc, 0x45, KEY_OPEN },
256 { 0xfc, 0x19, KEY_1 },
257 { 0xfc, 0x18, KEY_2 },
258 { 0xfc, 0x1b, KEY_3 },
259 { 0xfc, 0x1a, KEY_4 },
260 { 0xfc, 0x58, KEY_5 },
261 { 0xfc, 0x59, KEY_6 },
262 { 0xfc, 0x15, KEY_7 },
263 { 0xfc, 0x14, KEY_8 },
264 { 0xfc, 0x17, KEY_9 },
265 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
266 { 0xfc, 0x55, KEY_0 },
267 { 0xfc, 0x07, KEY_ZOOM },
268 { 0xfc, 0x0a, KEY_REWIND },
269 { 0xfc, 0x08, KEY_PLAYPAUSE },
270 { 0xfc, 0x4b, KEY_FASTFORWARD },
271 { 0xfc, 0x5b, KEY_MUTE },
272 { 0xfc, 0x04, KEY_STOP },
273 { 0xfc, 0x56, KEY_RECORD },
274 { 0xfc, 0x57, KEY_POWER },
275 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
276 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
277};
278
Chris Pascoe0029ee12006-01-09 18:21:28 -0200279static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
280{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200281 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200282 static u8 reset [] = { RESET, 0x80 };
283 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
284 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
285 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
286 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
287
288 mt352_write(fe, clock_config, sizeof(clock_config));
289 udelay(200);
290 mt352_write(fe, reset, sizeof(reset));
291 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
292
293 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
294 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
295 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
296
297 return 0;
298}
299
Michael Krufky6f447252006-01-11 19:40:33 -0200300static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
301{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200302 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200303 static u8 reset [] = { RESET, 0x80 };
304 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
305 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
306 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
307 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
308
309 mt352_write(fe, clock_config, sizeof(clock_config));
310 udelay(200);
311 mt352_write(fe, reset, sizeof(reset));
312 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
313
314 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
315 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
316 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
317 return 0;
318}
319
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200320static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700321 .demod_address = 0x63,
322
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700323 .output_mode = CX22702_PARALLEL_OUTPUT,
324
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700325 .pll_init = dvb_usb_pll_init_i2c,
326 .pll_set = dvb_usb_pll_set_i2c,
327};
328
Michael Krufkyfddd6322006-02-27 00:08:17 -0300329static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200330 .demod_address = 0x0e,
331 .demod_chip = LGDT3303,
332 .pll_set = dvb_usb_pll_set_i2c,
333};
334
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200335static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200336 .demod_address = 0x0f,
337 .demod_init = cxusb_dee1601_demod_init,
338 .pll_set = dvb_usb_pll_set,
339};
340
Michael Krufky6f447252006-01-11 19:40:33 -0200341struct mt352_config cxusb_mt352_config = {
342 /* used in both lgz201 and th7579 */
343 .demod_address = 0x0f,
344 .demod_init = cxusb_mt352_demod_init,
345 .pll_set = dvb_usb_pll_set,
346};
347
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700348/* Callbacks for DVB USB */
Michael Krufkyeffee032006-01-09 15:25:47 -0200349static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700350{
351 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
352 d->pll_addr = 0x61;
Michael Krufkyeffee032006-01-09 15:25:47 -0200353 memcpy(d->pll_init, bpll, 4);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700354 d->pll_desc = &dvb_pll_fmd1216me;
355 return 0;
356}
357
Michael Krufkyeffee032006-01-09 15:25:47 -0200358static int cxusb_lgh064f_tuner_attach(struct dvb_usb_device *d)
359{
360 u8 bpll[4] = { 0x00, 0x00, 0x18, 0x50 };
361 /* bpll[2] : unset bit 3, set bits 4&5
362 bpll[3] : 0x50 - digital, 0x20 - analog */
363 d->pll_addr = 0x61;
364 memcpy(d->pll_init, bpll, 4);
365 d->pll_desc = &dvb_pll_tdvs_tua6034;
366 return 0;
367}
368
Chris Pascoe0029ee12006-01-09 18:21:28 -0200369static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d)
370{
371 d->pll_addr = 0x61;
372 d->pll_desc = &dvb_pll_thomson_dtt7579;
373 return 0;
374}
375
Michael Krufky6f447252006-01-11 19:40:33 -0200376static int cxusb_lgz201_tuner_attach(struct dvb_usb_device *d)
377{
378 d->pll_addr = 0x61;
379 d->pll_desc = &dvb_pll_lg_z201;
380 return 0;
381}
382
383static int cxusb_dtt7579_tuner_attach(struct dvb_usb_device *d)
384{
385 d->pll_addr = 0x60;
386 d->pll_desc = &dvb_pll_thomson_dtt7579;
387 return 0;
388}
389
Michael Krufkyeffee032006-01-09 15:25:47 -0200390static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700391{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700392 u8 b;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700393 if (usb_set_interface(d->udev,0,6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700394 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700395
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700396 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700397
398 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
399 return 0;
400
401 return -EIO;
402}
403
Michael Krufkyfddd6322006-02-27 00:08:17 -0300404static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d)
Michael Krufkyeffee032006-01-09 15:25:47 -0200405{
Michael Krufky37bdfa02006-01-09 15:25:47 -0200406 if (usb_set_interface(d->udev,0,7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200407 err("set interface failed");
408
409 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
410
Michael Krufkyfddd6322006-02-27 00:08:17 -0300411 if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200412 return 0;
413
414 return -EIO;
415}
416
Michael Krufky6f447252006-01-11 19:40:33 -0200417static int cxusb_mt352_frontend_attach(struct dvb_usb_device *d)
418{ /* used in both lgz201 and th7579 */
419 if (usb_set_interface(d->udev,0,0) < 0)
420 err("set interface failed");
421
422 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
423
424 if ((d->fe = mt352_attach(&cxusb_mt352_config, &d->i2c_adap)) != NULL)
425 return 0;
426
427 return -EIO;
428}
429
Chris Pascoe0029ee12006-01-09 18:21:28 -0200430static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d)
431{
432 if (usb_set_interface(d->udev,0,0) < 0)
433 err("set interface failed");
434
435 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
436
437 if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL)
438 return 0;
439
440 return -EIO;
441}
442
Patrick Boettcherf5373782006-01-09 18:21:38 -0200443/*
444 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
445 * firmware file before download.
446 */
447
448#define BLUEBIRD_01_ID_OFFSET 6638
449static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw)
450{
451 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
452 return -EINVAL;
453
454 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
455 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
456
Patrick Boettcherf5373782006-01-09 18:21:38 -0200457 fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1;
458 fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8;
459
460 return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2);
461 }
462
463 return -EINVAL;
464}
465
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700466/* DVB USB Driver stuff */
Michael Krufkyeffee032006-01-09 15:25:47 -0200467static struct dvb_usb_properties cxusb_medion_properties;
Michael Krufkye71bb542006-01-09 15:32:42 -0200468static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties;
Chris Pascoe0029ee12006-01-09 18:21:28 -0200469static struct dvb_usb_properties cxusb_bluebird_dee1601_properties;
Michael Krufky6f447252006-01-11 19:40:33 -0200470static struct dvb_usb_properties cxusb_bluebird_lgz201_properties;
471static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700472
473static int cxusb_probe(struct usb_interface *intf,
474 const struct usb_device_id *id)
475{
Michael Krufkyeffee032006-01-09 15:25:47 -0200476 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200477 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufky6f447252006-01-11 19:40:33 -0200478 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
479 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
480 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200481 return 0;
482 }
483
484 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700485}
486
487static struct usb_device_id cxusb_table [] = {
488 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
Michael Krufkyeffee032006-01-09 15:25:47 -0200489 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
490 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200491 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) },
492 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) },
Michael Krufky6f447252006-01-11 19:40:33 -0200493 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
494 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
495 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
496 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200497 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_COLD) },
498 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_WARM) },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700499 {} /* Terminating entry */
500};
501MODULE_DEVICE_TABLE (usb, cxusb_table);
502
Michael Krufkyeffee032006-01-09 15:25:47 -0200503static struct dvb_usb_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700504 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
505
506 .usb_ctrl = CYPRESS_FX2,
507
508 .size_of_priv = sizeof(struct cxusb_state),
509
510 .streaming_ctrl = cxusb_streaming_ctrl,
511 .power_ctrl = cxusb_power_ctrl,
Michael Krufkyeffee032006-01-09 15:25:47 -0200512 .frontend_attach = cxusb_cx22702_frontend_attach,
513 .tuner_attach = cxusb_fmd1216me_tuner_attach,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700514
515 .i2c_algo = &cxusb_i2c_algo,
516
517 .generic_bulk_ctrl_endpoint = 0x01,
518 /* parameter for the MPEG2-data transfer */
519 .urb = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700520 .type = DVB_USB_BULK,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700521 .count = 5,
522 .endpoint = 0x02,
523 .u = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700524 .bulk = {
525 .buffersize = 8192,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700526 }
527 }
528 },
529
530 .num_device_descs = 1,
531 .devices = {
532 { "Medion MD95700 (MDUSBTV-HYBRID)",
533 { NULL },
534 { &cxusb_table[0], NULL },
535 },
536 }
537};
538
Michael Krufkye71bb542006-01-09 15:32:42 -0200539static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200540 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
541
Patrick Boettcherf5373782006-01-09 18:21:38 -0200542 .usb_ctrl = DEVICE_SPECIFIC,
543 .firmware = "dvb-usb-bluebird-01.fw",
544 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200545 /* use usb alt setting 0 for EP4 transfer (dvb-t),
546 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200547
548 .size_of_priv = sizeof(struct cxusb_state),
549
550 .streaming_ctrl = cxusb_streaming_ctrl,
551 .power_ctrl = cxusb_power_ctrl,
Michael Krufkyfddd6322006-02-27 00:08:17 -0300552 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -0200553 .tuner_attach = cxusb_lgh064f_tuner_attach,
554
555 .i2c_algo = &cxusb_i2c_algo,
556
Michael Krufkyc1501782006-03-26 05:43:36 -0300557 .rc_interval = 100,
558 .rc_key_map = dvico_portable_rc_keys,
559 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
560 .rc_query = cxusb_rc_query,
561
Michael Krufkyeffee032006-01-09 15:25:47 -0200562 .generic_bulk_ctrl_endpoint = 0x01,
563 /* parameter for the MPEG2-data transfer */
564 .urb = {
565 .type = DVB_USB_BULK,
566 .count = 5,
567 .endpoint = 0x02,
568 .u = {
569 .bulk = {
570 .buffersize = 8192,
571 }
572 }
573 },
574
575 .num_device_descs = 1,
576 .devices = {
577 { "DViCO FusionHDTV5 USB Gold",
578 { &cxusb_table[1], NULL },
579 { &cxusb_table[2], NULL },
580 },
581 }
582};
583
Chris Pascoe0029ee12006-01-09 18:21:28 -0200584static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = {
585 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
586
Patrick Boettcherf5373782006-01-09 18:21:38 -0200587 .usb_ctrl = DEVICE_SPECIFIC,
588 .firmware = "dvb-usb-bluebird-01.fw",
589 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200590 /* use usb alt setting 0 for EP4 transfer (dvb-t),
591 use usb alt setting 7 for EP2 transfer (atsc) */
592
593 .size_of_priv = sizeof(struct cxusb_state),
594
595 .streaming_ctrl = cxusb_streaming_ctrl,
596 .power_ctrl = cxusb_power_ctrl,
597 .frontend_attach = cxusb_dee1601_frontend_attach,
598 .tuner_attach = cxusb_dee1601_tuner_attach,
599
600 .i2c_algo = &cxusb_i2c_algo,
601
Chris Pascoe7c239702006-01-09 18:21:29 -0200602 .rc_interval = 150,
603 .rc_key_map = dvico_mce_rc_keys,
604 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
605 .rc_query = cxusb_rc_query,
606
Chris Pascoe0029ee12006-01-09 18:21:28 -0200607 .generic_bulk_ctrl_endpoint = 0x01,
608 /* parameter for the MPEG2-data transfer */
609 .urb = {
610 .type = DVB_USB_BULK,
611 .count = 5,
612 .endpoint = 0x04,
613 .u = {
614 .bulk = {
615 .buffersize = 8192,
616 }
617 }
618 },
619
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200620 .num_device_descs = 2,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200621 .devices = {
622 { "DViCO FusionHDTV DVB-T Dual USB",
623 { &cxusb_table[3], NULL },
624 { &cxusb_table[4], NULL },
625 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200626 { "DigitalNow DVB-T Dual USB",
627 { &cxusb_table[9], NULL },
628 { &cxusb_table[10], NULL },
629 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200630 }
631};
632
Michael Krufky6f447252006-01-11 19:40:33 -0200633static struct dvb_usb_properties cxusb_bluebird_lgz201_properties = {
634 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
635
636 .usb_ctrl = DEVICE_SPECIFIC,
637 .firmware = "dvb-usb-bluebird-01.fw",
638 .download_firmware = bluebird_patch_dvico_firmware_download,
639 /* use usb alt setting 0 for EP4 transfer (dvb-t),
640 use usb alt setting 7 for EP2 transfer (atsc) */
641
642 .size_of_priv = sizeof(struct cxusb_state),
643
644 .streaming_ctrl = cxusb_streaming_ctrl,
645 .power_ctrl = cxusb_power_ctrl,
646 .frontend_attach = cxusb_mt352_frontend_attach,
647 .tuner_attach = cxusb_lgz201_tuner_attach,
648
649 .i2c_algo = &cxusb_i2c_algo,
650
Michael Krufkyc1501782006-03-26 05:43:36 -0300651 .rc_interval = 100,
652 .rc_key_map = dvico_portable_rc_keys,
653 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
654 .rc_query = cxusb_rc_query,
655
Michael Krufky6f447252006-01-11 19:40:33 -0200656 .generic_bulk_ctrl_endpoint = 0x01,
657 /* parameter for the MPEG2-data transfer */
658 .urb = {
659 .type = DVB_USB_BULK,
660 .count = 5,
661 .endpoint = 0x04,
662 .u = {
663 .bulk = {
664 .buffersize = 8192,
665 }
666 }
667 },
668
669 .num_device_descs = 1,
670 .devices = {
671 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
672 { &cxusb_table[5], NULL },
673 { &cxusb_table[6], NULL },
674 },
675 }
676};
677
678static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties = {
679 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
680
681 .usb_ctrl = DEVICE_SPECIFIC,
682 .firmware = "dvb-usb-bluebird-01.fw",
683 .download_firmware = bluebird_patch_dvico_firmware_download,
684 /* use usb alt setting 0 for EP4 transfer (dvb-t),
685 use usb alt setting 7 for EP2 transfer (atsc) */
686
687 .size_of_priv = sizeof(struct cxusb_state),
688
689 .streaming_ctrl = cxusb_streaming_ctrl,
690 .power_ctrl = cxusb_power_ctrl,
691 .frontend_attach = cxusb_mt352_frontend_attach,
692 .tuner_attach = cxusb_dtt7579_tuner_attach,
693
694 .i2c_algo = &cxusb_i2c_algo,
695
Michael Krufkyc1501782006-03-26 05:43:36 -0300696 .rc_interval = 100,
697 .rc_key_map = dvico_portable_rc_keys,
698 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
699 .rc_query = cxusb_rc_query,
700
Michael Krufky6f447252006-01-11 19:40:33 -0200701 .generic_bulk_ctrl_endpoint = 0x01,
702 /* parameter for the MPEG2-data transfer */
703 .urb = {
704 .type = DVB_USB_BULK,
705 .count = 5,
706 .endpoint = 0x04,
707 .u = {
708 .bulk = {
709 .buffersize = 8192,
710 }
711 }
712 },
713
714 .num_device_descs = 1,
715 .devices = {
716 { "DViCO FusionHDTV DVB-T USB (TH7579)",
717 { &cxusb_table[7], NULL },
718 { &cxusb_table[8], NULL },
719 },
720 }
721};
722
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700723static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700724 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700725 .probe = cxusb_probe,
726 .disconnect = dvb_usb_device_exit,
727 .id_table = cxusb_table,
728};
729
730/* module stuff */
731static int __init cxusb_module_init(void)
732{
733 int result;
734 if ((result = usb_register(&cxusb_driver))) {
735 err("usb_register failed. Error number %d",result);
736 return result;
737 }
738
739 return 0;
740}
741
742static void __exit cxusb_module_exit(void)
743{
744 /* deregister this driver from the USB subsystem */
745 usb_deregister(&cxusb_driver);
746}
747
748module_init (cxusb_module_init);
749module_exit (cxusb_module_exit);
750
751MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200752MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>");
753MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700754MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
755MODULE_VERSION("1.0-alpha");
756MODULE_LICENSE("GPL");