blob: 1f0d3e995c8d67e64419b4493b56085719820204 [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
Michael Krufky5691c842006-04-19 20:40:01 -0300153static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
154{
155 u8 b = 0;
156 if (onoff)
157 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
158 else
159 return 0;
160}
161
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700162static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
163{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700164 u8 buf[2] = { 0x03, 0x00 };
165 if (onoff)
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700166 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700167 else
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700168 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700169
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700170 return 0;
171}
172
Chris Pascoe7c239702006-01-09 18:21:29 -0200173static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
174{
175 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200176 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200177 int i;
178
Michael Krufkya07e6092006-01-09 18:21:31 -0200179 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200180
181 *event = 0;
182 *state = REMOTE_NO_KEY_PRESSED;
183
184 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200185 if (keymap[i].custom == ircode[2] &&
186 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200187 *event = keymap[i].event;
188 *state = REMOTE_KEY_PRESSED;
189
190 return 0;
191 }
192 }
193
194 return 0;
195}
196
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200197static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200198 { 0xfe, 0x02, KEY_TV },
199 { 0xfe, 0x0e, KEY_MP3 },
200 { 0xfe, 0x1a, KEY_DVD },
201 { 0xfe, 0x1e, KEY_FAVORITES },
202 { 0xfe, 0x16, KEY_SETUP },
203 { 0xfe, 0x46, KEY_POWER2 },
204 { 0xfe, 0x0a, KEY_EPG },
205 { 0xfe, 0x49, KEY_BACK },
206 { 0xfe, 0x4d, KEY_MENU },
207 { 0xfe, 0x51, KEY_UP },
208 { 0xfe, 0x5b, KEY_LEFT },
209 { 0xfe, 0x5f, KEY_RIGHT },
210 { 0xfe, 0x53, KEY_DOWN },
211 { 0xfe, 0x5e, KEY_OK },
212 { 0xfe, 0x59, KEY_INFO },
213 { 0xfe, 0x55, KEY_TAB },
214 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
215 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
216 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
217 { 0xfe, 0x15, KEY_VOLUMEUP },
218 { 0xfe, 0x05, KEY_VOLUMEDOWN },
219 { 0xfe, 0x11, KEY_CHANNELUP },
220 { 0xfe, 0x09, KEY_CHANNELDOWN },
221 { 0xfe, 0x52, KEY_CAMERA },
222 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
223 { 0xfe, 0x19, KEY_OPEN },
224 { 0xfe, 0x0b, KEY_1 },
225 { 0xfe, 0x17, KEY_2 },
226 { 0xfe, 0x1b, KEY_3 },
227 { 0xfe, 0x07, KEY_4 },
228 { 0xfe, 0x50, KEY_5 },
229 { 0xfe, 0x54, KEY_6 },
230 { 0xfe, 0x48, KEY_7 },
231 { 0xfe, 0x4c, KEY_8 },
232 { 0xfe, 0x58, KEY_9 },
233 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
234 { 0xfe, 0x03, KEY_0 },
235 { 0xfe, 0x1f, KEY_ZOOM },
236 { 0xfe, 0x43, KEY_REWIND },
237 { 0xfe, 0x47, KEY_PLAYPAUSE },
238 { 0xfe, 0x4f, KEY_FASTFORWARD },
239 { 0xfe, 0x57, KEY_MUTE },
240 { 0xfe, 0x0d, KEY_STOP },
241 { 0xfe, 0x01, KEY_RECORD },
242 { 0xfe, 0x4e, KEY_POWER },
243};
244
Michael Krufkyc1501782006-03-26 05:43:36 -0300245static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
246 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
247 { 0xfc, 0x43, KEY_POWER2 },
248 { 0xfc, 0x06, KEY_EPG },
249 { 0xfc, 0x5a, KEY_BACK },
250 { 0xfc, 0x05, KEY_MENU },
251 { 0xfc, 0x47, KEY_INFO },
252 { 0xfc, 0x01, KEY_TAB },
253 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
254 { 0xfc, 0x49, KEY_VOLUMEUP },
255 { 0xfc, 0x09, KEY_VOLUMEDOWN },
256 { 0xfc, 0x54, KEY_CHANNELUP },
257 { 0xfc, 0x0b, KEY_CHANNELDOWN },
Michael Krufkydbcb86e2006-03-26 18:59:45 -0300258 { 0xfc, 0x16, KEY_CAMERA },
Michael Krufkyc1501782006-03-26 05:43:36 -0300259 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
260 { 0xfc, 0x45, KEY_OPEN },
261 { 0xfc, 0x19, KEY_1 },
262 { 0xfc, 0x18, KEY_2 },
263 { 0xfc, 0x1b, KEY_3 },
264 { 0xfc, 0x1a, KEY_4 },
265 { 0xfc, 0x58, KEY_5 },
266 { 0xfc, 0x59, KEY_6 },
267 { 0xfc, 0x15, KEY_7 },
268 { 0xfc, 0x14, KEY_8 },
269 { 0xfc, 0x17, KEY_9 },
270 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
271 { 0xfc, 0x55, KEY_0 },
272 { 0xfc, 0x07, KEY_ZOOM },
273 { 0xfc, 0x0a, KEY_REWIND },
274 { 0xfc, 0x08, KEY_PLAYPAUSE },
275 { 0xfc, 0x4b, KEY_FASTFORWARD },
276 { 0xfc, 0x5b, KEY_MUTE },
277 { 0xfc, 0x04, KEY_STOP },
278 { 0xfc, 0x56, KEY_RECORD },
279 { 0xfc, 0x57, KEY_POWER },
280 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
281 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
282};
283
Chris Pascoe0029ee12006-01-09 18:21:28 -0200284static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
285{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200286 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200287 static u8 reset [] = { RESET, 0x80 };
288 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
289 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
290 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
291 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
292
293 mt352_write(fe, clock_config, sizeof(clock_config));
294 udelay(200);
295 mt352_write(fe, reset, sizeof(reset));
296 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
297
298 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
299 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
300 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
301
302 return 0;
303}
304
Michael Krufky6f447252006-01-11 19:40:33 -0200305static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
306{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200307 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200308 static u8 reset [] = { RESET, 0x80 };
309 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
310 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
311 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
312 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
313
314 mt352_write(fe, clock_config, sizeof(clock_config));
315 udelay(200);
316 mt352_write(fe, reset, sizeof(reset));
317 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
318
319 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
320 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
321 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
322 return 0;
323}
324
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200325static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700326 .demod_address = 0x63,
327
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700328 .output_mode = CX22702_PARALLEL_OUTPUT,
329
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700330 .pll_init = dvb_usb_pll_init_i2c,
331 .pll_set = dvb_usb_pll_set_i2c,
332};
333
Michael Krufkyfddd6322006-02-27 00:08:17 -0300334static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200335 .demod_address = 0x0e,
336 .demod_chip = LGDT3303,
337 .pll_set = dvb_usb_pll_set_i2c,
338};
339
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200340static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200341 .demod_address = 0x0f,
342 .demod_init = cxusb_dee1601_demod_init,
343 .pll_set = dvb_usb_pll_set,
344};
345
Michael Krufky6f447252006-01-11 19:40:33 -0200346struct mt352_config cxusb_mt352_config = {
347 /* used in both lgz201 and th7579 */
348 .demod_address = 0x0f,
349 .demod_init = cxusb_mt352_demod_init,
350 .pll_set = dvb_usb_pll_set,
351};
352
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700353/* Callbacks for DVB USB */
Michael Krufkyeffee032006-01-09 15:25:47 -0200354static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700355{
356 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
357 d->pll_addr = 0x61;
Michael Krufkyeffee032006-01-09 15:25:47 -0200358 memcpy(d->pll_init, bpll, 4);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700359 d->pll_desc = &dvb_pll_fmd1216me;
360 return 0;
361}
362
Michael Krufkyeffee032006-01-09 15:25:47 -0200363static int cxusb_lgh064f_tuner_attach(struct dvb_usb_device *d)
364{
365 u8 bpll[4] = { 0x00, 0x00, 0x18, 0x50 };
366 /* bpll[2] : unset bit 3, set bits 4&5
367 bpll[3] : 0x50 - digital, 0x20 - analog */
368 d->pll_addr = 0x61;
369 memcpy(d->pll_init, bpll, 4);
370 d->pll_desc = &dvb_pll_tdvs_tua6034;
371 return 0;
372}
373
Chris Pascoe0029ee12006-01-09 18:21:28 -0200374static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d)
375{
376 d->pll_addr = 0x61;
377 d->pll_desc = &dvb_pll_thomson_dtt7579;
378 return 0;
379}
380
Michael Krufky6f447252006-01-11 19:40:33 -0200381static int cxusb_lgz201_tuner_attach(struct dvb_usb_device *d)
382{
383 d->pll_addr = 0x61;
384 d->pll_desc = &dvb_pll_lg_z201;
385 return 0;
386}
387
388static int cxusb_dtt7579_tuner_attach(struct dvb_usb_device *d)
389{
390 d->pll_addr = 0x60;
391 d->pll_desc = &dvb_pll_thomson_dtt7579;
392 return 0;
393}
394
Michael Krufkyeffee032006-01-09 15:25:47 -0200395static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700396{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700397 u8 b;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700398 if (usb_set_interface(d->udev,0,6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700399 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700400
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700401 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700402
403 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
404 return 0;
405
406 return -EIO;
407}
408
Michael Krufkyfddd6322006-02-27 00:08:17 -0300409static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d)
Michael Krufkyeffee032006-01-09 15:25:47 -0200410{
Michael Krufky37bdfa02006-01-09 15:25:47 -0200411 if (usb_set_interface(d->udev,0,7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200412 err("set interface failed");
413
414 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
415
Michael Krufkyfddd6322006-02-27 00:08:17 -0300416 if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200417 return 0;
418
419 return -EIO;
420}
421
Michael Krufky6f447252006-01-11 19:40:33 -0200422static int cxusb_mt352_frontend_attach(struct dvb_usb_device *d)
423{ /* used in both lgz201 and th7579 */
424 if (usb_set_interface(d->udev,0,0) < 0)
425 err("set interface failed");
426
427 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
428
429 if ((d->fe = mt352_attach(&cxusb_mt352_config, &d->i2c_adap)) != NULL)
430 return 0;
431
432 return -EIO;
433}
434
Chris Pascoe0029ee12006-01-09 18:21:28 -0200435static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d)
436{
437 if (usb_set_interface(d->udev,0,0) < 0)
438 err("set interface failed");
439
440 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
441
442 if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL)
443 return 0;
444
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 .tuner_attach = cxusb_lgh064f_tuner_attach,
559
560 .i2c_algo = &cxusb_i2c_algo,
561
Michael Krufkyc1501782006-03-26 05:43:36 -0300562 .rc_interval = 100,
563 .rc_key_map = dvico_portable_rc_keys,
564 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
565 .rc_query = cxusb_rc_query,
566
Michael Krufkyeffee032006-01-09 15:25:47 -0200567 .generic_bulk_ctrl_endpoint = 0x01,
568 /* parameter for the MPEG2-data transfer */
569 .urb = {
570 .type = DVB_USB_BULK,
571 .count = 5,
572 .endpoint = 0x02,
573 .u = {
574 .bulk = {
575 .buffersize = 8192,
576 }
577 }
578 },
579
580 .num_device_descs = 1,
581 .devices = {
582 { "DViCO FusionHDTV5 USB Gold",
583 { &cxusb_table[1], NULL },
584 { &cxusb_table[2], NULL },
585 },
586 }
587};
588
Chris Pascoe0029ee12006-01-09 18:21:28 -0200589static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = {
590 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
591
Patrick Boettcherf5373782006-01-09 18:21:38 -0200592 .usb_ctrl = DEVICE_SPECIFIC,
593 .firmware = "dvb-usb-bluebird-01.fw",
594 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200595 /* use usb alt setting 0 for EP4 transfer (dvb-t),
596 use usb alt setting 7 for EP2 transfer (atsc) */
597
598 .size_of_priv = sizeof(struct cxusb_state),
599
600 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300601 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200602 .frontend_attach = cxusb_dee1601_frontend_attach,
603 .tuner_attach = cxusb_dee1601_tuner_attach,
604
605 .i2c_algo = &cxusb_i2c_algo,
606
Chris Pascoe7c239702006-01-09 18:21:29 -0200607 .rc_interval = 150,
608 .rc_key_map = dvico_mce_rc_keys,
609 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
610 .rc_query = cxusb_rc_query,
611
Chris Pascoe0029ee12006-01-09 18:21:28 -0200612 .generic_bulk_ctrl_endpoint = 0x01,
613 /* parameter for the MPEG2-data transfer */
614 .urb = {
615 .type = DVB_USB_BULK,
616 .count = 5,
617 .endpoint = 0x04,
618 .u = {
619 .bulk = {
620 .buffersize = 8192,
621 }
622 }
623 },
624
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200625 .num_device_descs = 2,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200626 .devices = {
627 { "DViCO FusionHDTV DVB-T Dual USB",
628 { &cxusb_table[3], NULL },
629 { &cxusb_table[4], NULL },
630 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200631 { "DigitalNow DVB-T Dual USB",
632 { &cxusb_table[9], NULL },
633 { &cxusb_table[10], NULL },
634 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200635 }
636};
637
Michael Krufky6f447252006-01-11 19:40:33 -0200638static struct dvb_usb_properties cxusb_bluebird_lgz201_properties = {
639 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
640
641 .usb_ctrl = DEVICE_SPECIFIC,
642 .firmware = "dvb-usb-bluebird-01.fw",
643 .download_firmware = bluebird_patch_dvico_firmware_download,
644 /* use usb alt setting 0 for EP4 transfer (dvb-t),
645 use usb alt setting 7 for EP2 transfer (atsc) */
646
647 .size_of_priv = sizeof(struct cxusb_state),
648
649 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300650 .power_ctrl = cxusb_bluebird_power_ctrl,
Michael Krufky6f447252006-01-11 19:40:33 -0200651 .frontend_attach = cxusb_mt352_frontend_attach,
652 .tuner_attach = cxusb_lgz201_tuner_attach,
653
654 .i2c_algo = &cxusb_i2c_algo,
655
Michael Krufkyc1501782006-03-26 05:43:36 -0300656 .rc_interval = 100,
657 .rc_key_map = dvico_portable_rc_keys,
658 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
659 .rc_query = cxusb_rc_query,
660
Michael Krufky6f447252006-01-11 19:40:33 -0200661 .generic_bulk_ctrl_endpoint = 0x01,
662 /* parameter for the MPEG2-data transfer */
663 .urb = {
664 .type = DVB_USB_BULK,
665 .count = 5,
666 .endpoint = 0x04,
667 .u = {
668 .bulk = {
669 .buffersize = 8192,
670 }
671 }
672 },
673
674 .num_device_descs = 1,
675 .devices = {
676 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
677 { &cxusb_table[5], NULL },
678 { &cxusb_table[6], NULL },
679 },
680 }
681};
682
683static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties = {
684 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
685
686 .usb_ctrl = DEVICE_SPECIFIC,
687 .firmware = "dvb-usb-bluebird-01.fw",
688 .download_firmware = bluebird_patch_dvico_firmware_download,
689 /* use usb alt setting 0 for EP4 transfer (dvb-t),
690 use usb alt setting 7 for EP2 transfer (atsc) */
691
692 .size_of_priv = sizeof(struct cxusb_state),
693
694 .streaming_ctrl = cxusb_streaming_ctrl,
Michael Krufky5691c842006-04-19 20:40:01 -0300695 .power_ctrl = cxusb_bluebird_power_ctrl,
Michael Krufky6f447252006-01-11 19:40:33 -0200696 .frontend_attach = cxusb_mt352_frontend_attach,
697 .tuner_attach = cxusb_dtt7579_tuner_attach,
698
699 .i2c_algo = &cxusb_i2c_algo,
700
Michael Krufkyc1501782006-03-26 05:43:36 -0300701 .rc_interval = 100,
702 .rc_key_map = dvico_portable_rc_keys,
703 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
704 .rc_query = cxusb_rc_query,
705
Michael Krufky6f447252006-01-11 19:40:33 -0200706 .generic_bulk_ctrl_endpoint = 0x01,
707 /* parameter for the MPEG2-data transfer */
708 .urb = {
709 .type = DVB_USB_BULK,
710 .count = 5,
711 .endpoint = 0x04,
712 .u = {
713 .bulk = {
714 .buffersize = 8192,
715 }
716 }
717 },
718
719 .num_device_descs = 1,
720 .devices = {
721 { "DViCO FusionHDTV DVB-T USB (TH7579)",
722 { &cxusb_table[7], NULL },
723 { &cxusb_table[8], NULL },
724 },
725 }
726};
727
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700728static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700729 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700730 .probe = cxusb_probe,
731 .disconnect = dvb_usb_device_exit,
732 .id_table = cxusb_table,
733};
734
735/* module stuff */
736static int __init cxusb_module_init(void)
737{
738 int result;
739 if ((result = usb_register(&cxusb_driver))) {
740 err("usb_register failed. Error number %d",result);
741 return result;
742 }
743
744 return 0;
745}
746
747static void __exit cxusb_module_exit(void)
748{
749 /* deregister this driver from the USB subsystem */
750 usb_deregister(&cxusb_driver);
751}
752
753module_init (cxusb_module_init);
754module_exit (cxusb_module_exit);
755
756MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200757MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>");
758MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700759MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
760MODULE_VERSION("1.0-alpha");
761MODULE_LICENSE("GPL");