blob: ee39ebea9975d455da255e522329f10967f18a3e [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 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 Krufky76db93d2006-11-19 19:45:26 -030030#include "lgh06xf.h"
Chris Pascoe0029ee12006-01-09 18:21:28 -020031#include "mt352.h"
32#include "mt352_priv.h"
Michael Krufkyc9ce3942006-06-11 04:24:31 -030033#include "zl10353.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070034
35/* debug */
36int dvb_usb_cxusb_debug;
37module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
38MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
39
40static int cxusb_ctrl_msg(struct dvb_usb_device *d,
41 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
42{
43 int wo = (rbuf == NULL || rlen == 0); /* write-only */
44 u8 sndbuf[1+wlen];
45 memset(sndbuf,0,1+wlen);
46
47 sndbuf[0] = cmd;
48 memcpy(&sndbuf[1],wbuf,wlen);
49 if (wo)
50 dvb_usb_generic_write(d,sndbuf,1+wlen);
51 else
52 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
53
54 return 0;
55}
56
Patrick Boettchere2efeab2005-09-09 13:02:51 -070057/* GPIO */
58static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070059{
60 struct cxusb_state *st = d->priv;
61 u8 o[2],i;
62
Patrick Boettchere2efeab2005-09-09 13:02:51 -070063 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070064 return;
65
Patrick Boettchere2efeab2005-09-09 13:02:51 -070066 o[0] = GPIO_TUNER;
67 o[1] = onoff;
68 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070069
70 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070071 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070072
Patrick Boettchere2efeab2005-09-09 13:02:51 -070073 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070074}
75
Patrick Boettchere2efeab2005-09-09 13:02:51 -070076/* I2C */
Patrick Boettcher22c6d932005-07-07 17:58:10 -070077static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
78{
79 struct dvb_usb_device *d = i2c_get_adapdata(adap);
80 int i;
81
Ingo Molnar3593cab2006-02-07 06:49:14 -020082 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070083 return -EAGAIN;
84
85 if (num > 2)
Michael Krufky4d6e7722006-03-23 00:55:23 -030086 warn("more than two i2c messages at a time is not handled yet. TODO.");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070087
88 for (i = 0; i < num; i++) {
89
Michael Krufky5e805ef2006-03-23 00:01:34 -030090 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
91 switch (msg[i].addr) {
92 case 0x63:
93 cxusb_gpio_tuner(d,0);
94 break;
95 default:
96 cxusb_gpio_tuner(d,1);
97 break;
98 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -070099
100 /* read request */
101 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
102 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
103 obuf[0] = msg[i].len;
104 obuf[1] = msg[i+1].len;
105 obuf[2] = msg[i].addr;
106 memcpy(&obuf[3],msg[i].buf,msg[i].len);
107
108 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
109 obuf, 3+msg[i].len,
110 ibuf, 1+msg[i+1].len) < 0)
111 break;
112
113 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300114 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700115
116 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
117
118 i++;
119 } else { /* write */
120 u8 obuf[2+msg[i].len], ibuf;
121 obuf[0] = msg[i].addr;
122 obuf[1] = msg[i].len;
123 memcpy(&obuf[2],msg[i].buf,msg[i].len);
124
125 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
126 break;
127 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300128 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700129 }
130 }
131
Ingo Molnar3593cab2006-02-07 06:49:14 -0200132 mutex_unlock(&d->i2c_mutex);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700133 return i;
134}
135
136static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
137{
138 return I2C_FUNC_I2C;
139}
140
141static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700142 .master_xfer = cxusb_i2c_xfer,
143 .functionality = cxusb_i2c_func,
144};
145
146static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
147{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700148 u8 b = 0;
149 if (onoff)
150 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
151 else
152 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700153}
154
Michael Krufky5691c842006-04-19 20:40:01 -0300155static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
156{
157 u8 b = 0;
158 if (onoff)
159 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
160 else
161 return 0;
162}
163
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300164static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700165{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700166 u8 buf[2] = { 0x03, 0x00 };
167 if (onoff)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300168 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700169 else
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300170 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700171
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700172 return 0;
173}
174
Chris Pascoe7c239702006-01-09 18:21:29 -0200175static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
176{
177 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200178 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200179 int i;
180
Michael Krufkya07e6092006-01-09 18:21:31 -0200181 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200182
183 *event = 0;
184 *state = REMOTE_NO_KEY_PRESSED;
185
186 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200187 if (keymap[i].custom == ircode[2] &&
188 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200189 *event = keymap[i].event;
190 *state = REMOTE_KEY_PRESSED;
191
192 return 0;
193 }
194 }
195
196 return 0;
197}
198
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200199static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200200 { 0xfe, 0x02, KEY_TV },
201 { 0xfe, 0x0e, KEY_MP3 },
202 { 0xfe, 0x1a, KEY_DVD },
203 { 0xfe, 0x1e, KEY_FAVORITES },
204 { 0xfe, 0x16, KEY_SETUP },
205 { 0xfe, 0x46, KEY_POWER2 },
206 { 0xfe, 0x0a, KEY_EPG },
207 { 0xfe, 0x49, KEY_BACK },
208 { 0xfe, 0x4d, KEY_MENU },
209 { 0xfe, 0x51, KEY_UP },
210 { 0xfe, 0x5b, KEY_LEFT },
211 { 0xfe, 0x5f, KEY_RIGHT },
212 { 0xfe, 0x53, KEY_DOWN },
213 { 0xfe, 0x5e, KEY_OK },
214 { 0xfe, 0x59, KEY_INFO },
215 { 0xfe, 0x55, KEY_TAB },
216 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
217 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
218 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
219 { 0xfe, 0x15, KEY_VOLUMEUP },
220 { 0xfe, 0x05, KEY_VOLUMEDOWN },
221 { 0xfe, 0x11, KEY_CHANNELUP },
222 { 0xfe, 0x09, KEY_CHANNELDOWN },
223 { 0xfe, 0x52, KEY_CAMERA },
224 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
225 { 0xfe, 0x19, KEY_OPEN },
226 { 0xfe, 0x0b, KEY_1 },
227 { 0xfe, 0x17, KEY_2 },
228 { 0xfe, 0x1b, KEY_3 },
229 { 0xfe, 0x07, KEY_4 },
230 { 0xfe, 0x50, KEY_5 },
231 { 0xfe, 0x54, KEY_6 },
232 { 0xfe, 0x48, KEY_7 },
233 { 0xfe, 0x4c, KEY_8 },
234 { 0xfe, 0x58, KEY_9 },
235 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
236 { 0xfe, 0x03, KEY_0 },
237 { 0xfe, 0x1f, KEY_ZOOM },
238 { 0xfe, 0x43, KEY_REWIND },
239 { 0xfe, 0x47, KEY_PLAYPAUSE },
240 { 0xfe, 0x4f, KEY_FASTFORWARD },
241 { 0xfe, 0x57, KEY_MUTE },
242 { 0xfe, 0x0d, KEY_STOP },
243 { 0xfe, 0x01, KEY_RECORD },
244 { 0xfe, 0x4e, KEY_POWER },
245};
246
Michael Krufkyc1501782006-03-26 05:43:36 -0300247static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
248 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
249 { 0xfc, 0x43, KEY_POWER2 },
250 { 0xfc, 0x06, KEY_EPG },
251 { 0xfc, 0x5a, KEY_BACK },
252 { 0xfc, 0x05, KEY_MENU },
253 { 0xfc, 0x47, KEY_INFO },
254 { 0xfc, 0x01, KEY_TAB },
255 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
256 { 0xfc, 0x49, KEY_VOLUMEUP },
257 { 0xfc, 0x09, KEY_VOLUMEDOWN },
258 { 0xfc, 0x54, KEY_CHANNELUP },
259 { 0xfc, 0x0b, KEY_CHANNELDOWN },
Michael Krufkydbcb86e2006-03-26 18:59:45 -0300260 { 0xfc, 0x16, KEY_CAMERA },
Michael Krufkyc1501782006-03-26 05:43:36 -0300261 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
262 { 0xfc, 0x45, KEY_OPEN },
263 { 0xfc, 0x19, KEY_1 },
264 { 0xfc, 0x18, KEY_2 },
265 { 0xfc, 0x1b, KEY_3 },
266 { 0xfc, 0x1a, KEY_4 },
267 { 0xfc, 0x58, KEY_5 },
268 { 0xfc, 0x59, KEY_6 },
269 { 0xfc, 0x15, KEY_7 },
270 { 0xfc, 0x14, KEY_8 },
271 { 0xfc, 0x17, KEY_9 },
272 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
273 { 0xfc, 0x55, KEY_0 },
274 { 0xfc, 0x07, KEY_ZOOM },
275 { 0xfc, 0x0a, KEY_REWIND },
276 { 0xfc, 0x08, KEY_PLAYPAUSE },
277 { 0xfc, 0x4b, KEY_FASTFORWARD },
278 { 0xfc, 0x5b, KEY_MUTE },
279 { 0xfc, 0x04, KEY_STOP },
280 { 0xfc, 0x56, KEY_RECORD },
281 { 0xfc, 0x57, KEY_POWER },
282 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
283 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
284};
285
Chris Pascoe0029ee12006-01-09 18:21:28 -0200286static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
287{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200288 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200289 static u8 reset [] = { RESET, 0x80 };
290 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
291 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
292 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
293 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
294
295 mt352_write(fe, clock_config, sizeof(clock_config));
296 udelay(200);
297 mt352_write(fe, reset, sizeof(reset));
298 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
299
300 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
301 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
302 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
303
304 return 0;
305}
306
Michael Krufky6f447252006-01-11 19:40:33 -0200307static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
308{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200309 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200310 static u8 reset [] = { RESET, 0x80 };
311 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
312 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
313 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
314 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
315
316 mt352_write(fe, clock_config, sizeof(clock_config));
317 udelay(200);
318 mt352_write(fe, reset, sizeof(reset));
319 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
320
321 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
322 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
323 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
324 return 0;
325}
326
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200327static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700328 .demod_address = 0x63,
329
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700330 .output_mode = CX22702_PARALLEL_OUTPUT,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700331};
332
Michael Krufkyfddd6322006-02-27 00:08:17 -0300333static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200334 .demod_address = 0x0e,
335 .demod_chip = LGDT3303,
Michael Krufkyeffee032006-01-09 15:25:47 -0200336};
337
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200338static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200339 .demod_address = 0x0f,
340 .demod_init = cxusb_dee1601_demod_init,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200341};
342
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300343static struct zl10353_config cxusb_zl10353_dee1601_config = {
344 .demod_address = 0x0f,
Chris Pascoe8fb95782006-08-10 03:17:16 -0300345 .parallel_ts = 1,
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300346};
347
Adrian Bunk6fe00b02006-04-19 20:49:28 -0300348static struct mt352_config cxusb_mt352_config = {
Michael Krufky6f447252006-01-11 19:40:33 -0200349 /* used in both lgz201 and th7579 */
350 .demod_address = 0x0f,
351 .demod_init = cxusb_mt352_demod_init,
Michael Krufky6f447252006-01-11 19:40:33 -0200352};
353
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700354/* Callbacks for DVB USB */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300355static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700356{
357 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300358 adap->pll_addr = 0x61;
359 memcpy(adap->pll_init, bpll, 4);
360 adap->pll_desc = &dvb_pll_fmd1216me;
Patrick Boettcher332bed52006-05-14 04:49:00 -0300361
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300362 adap->fe->ops.tuner_ops.init = dvb_usb_tuner_init_i2c;
363 adap->fe->ops.tuner_ops.set_params = dvb_usb_tuner_set_params_i2c;
Patrick Boettcher332bed52006-05-14 04:49:00 -0300364
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700365 return 0;
366}
367
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300368static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200369{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300370 dvb_attach(dvb_pll_attach, adap->fe, 0x61,
371 NULL, &dvb_pll_thomson_dtt7579);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200372 return 0;
373}
374
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300375static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200376{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300377 dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, &dvb_pll_lg_z201);
Michael Krufky6f447252006-01-11 19:40:33 -0200378 return 0;
379}
380
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300381static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200382{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300383 dvb_attach(dvb_pll_attach, adap->fe, 0x60,
384 NULL, &dvb_pll_thomson_dtt7579);
Patrick Boettcher332bed52006-05-14 04:49:00 -0300385 return 0;
386}
387
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300388static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher332bed52006-05-14 04:49:00 -0300389{
Michael Krufky76db93d2006-11-19 19:45:26 -0300390 dvb_attach(lgh06xf_attach, adap->fe, &adap->dev->i2c_adap);
Michael Krufky6f447252006-01-11 19:40:33 -0200391 return 0;
392}
393
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300394static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700395{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700396 u8 b;
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300397 if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700398 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700399
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300400 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700401
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300402 if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config, &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700403 return 0;
404
405 return -EIO;
406}
407
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300408static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufkyeffee032006-01-09 15:25:47 -0200409{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300410 if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200411 err("set interface failed");
412
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300413 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Michael Krufkyeffee032006-01-09 15:25:47 -0200414
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300415 if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config, &adap->dev->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200416 return 0;
417
418 return -EIO;
419}
420
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300421static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200422{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300423 /* used in both lgz201 and th7579 */
424 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200425 err("set interface failed");
426
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300427 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200428
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300429 if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config, &adap->dev->i2c_adap)) != NULL)
430 return 0;
431
432 return -EIO;
433}
434
435static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
436{
437 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
438 err("set interface failed");
439
440 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
441
442 if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config, &adap->dev->i2c_adap)) != NULL) ||
443 ((adap->fe = dvb_attach(zl10353_attach, &cxusb_zl10353_dee1601_config, &adap->dev->i2c_adap)) != NULL))
Chris Pascoe0029ee12006-01-09 18:21:28 -0200444 return 0;
445
446 return -EIO;
447}
448
Patrick Boettcherf5373782006-01-09 18:21:38 -0200449/*
450 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
451 * firmware file before download.
452 */
453
454#define BLUEBIRD_01_ID_OFFSET 6638
455static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw)
456{
457 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
458 return -EINVAL;
459
460 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
461 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
462
Patrick Boettcherf5373782006-01-09 18:21:38 -0200463 fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1;
464 fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8;
465
466 return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2);
467 }
468
469 return -EINVAL;
470}
471
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700472/* DVB USB Driver stuff */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300473static struct dvb_usb_device_properties cxusb_medion_properties;
474static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
475static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
476static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
477static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700478
479static int cxusb_probe(struct usb_interface *intf,
480 const struct usb_device_id *id)
481{
Michael Krufkyeffee032006-01-09 15:25:47 -0200482 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200483 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufky6f447252006-01-11 19:40:33 -0200484 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
485 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
486 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200487 return 0;
488 }
489
490 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700491}
492
493static struct usb_device_id cxusb_table [] = {
494 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
Michael Krufkyeffee032006-01-09 15:25:47 -0200495 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
496 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
Michael Krufky587c03d2006-09-28 02:16:01 -0300497 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
498 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
Michael Krufky6f447252006-01-11 19:40:33 -0200499 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
500 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
501 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
502 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
Michael Krufky587c03d2006-09-28 02:16:01 -0300503 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
504 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
505 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
506 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700507 {} /* Terminating entry */
508};
509MODULE_DEVICE_TABLE (usb, cxusb_table);
510
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300511static struct dvb_usb_device_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700512 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
513
514 .usb_ctrl = CYPRESS_FX2,
515
516 .size_of_priv = sizeof(struct cxusb_state),
517
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300518 .num_adapters = 1,
519 .adapter = {
520 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300521 .streaming_ctrl = cxusb_streaming_ctrl,
522 .frontend_attach = cxusb_cx22702_frontend_attach,
523 .tuner_attach = cxusb_fmd1216me_tuner_attach,
524 /* parameter for the MPEG2-data transfer */
525 .stream = {
526 .type = USB_BULK,
527 .count = 5,
528 .endpoint = 0x02,
529 .u = {
530 .bulk = {
531 .buffersize = 8192,
532 }
533 }
534 },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700535
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300536 },
537 },
538 .power_ctrl = cxusb_power_ctrl,
539
540 .i2c_algo = &cxusb_i2c_algo,
541
542 .generic_bulk_ctrl_endpoint = 0x01,
543
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700544 .num_device_descs = 1,
545 .devices = {
546 { "Medion MD95700 (MDUSBTV-HYBRID)",
547 { NULL },
548 { &cxusb_table[0], NULL },
549 },
550 }
551};
552
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300553static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200554 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
555
Patrick Boettcherf5373782006-01-09 18:21:38 -0200556 .usb_ctrl = DEVICE_SPECIFIC,
557 .firmware = "dvb-usb-bluebird-01.fw",
558 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200559 /* use usb alt setting 0 for EP4 transfer (dvb-t),
560 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200561
562 .size_of_priv = sizeof(struct cxusb_state),
563
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300564 .num_adapters = 1,
565 .adapter = {
566 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300567 .streaming_ctrl = cxusb_streaming_ctrl,
568 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300569 .tuner_attach = cxusb_lgh064f_tuner_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -0200570
Patrick Boettcher01451e72006-10-13 11:34:46 -0300571 /* parameter for the MPEG2-data transfer */
572 .stream = {
573 .type = USB_BULK,
574 .count = 5,
575 .endpoint = 0x02,
576 .u = {
577 .bulk = {
578 .buffersize = 8192,
579 }
580 }
581 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300582 },
583 },
584
585 .power_ctrl = cxusb_bluebird_power_ctrl,
586
Michael Krufkyeffee032006-01-09 15:25:47 -0200587 .i2c_algo = &cxusb_i2c_algo,
588
Michael Krufkyc1501782006-03-26 05:43:36 -0300589 .rc_interval = 100,
590 .rc_key_map = dvico_portable_rc_keys,
591 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
592 .rc_query = cxusb_rc_query,
593
Michael Krufkyeffee032006-01-09 15:25:47 -0200594 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufkyeffee032006-01-09 15:25:47 -0200595
596 .num_device_descs = 1,
597 .devices = {
598 { "DViCO FusionHDTV5 USB Gold",
599 { &cxusb_table[1], NULL },
600 { &cxusb_table[2], NULL },
601 },
602 }
603};
604
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300605static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200606 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
607
Patrick Boettcherf5373782006-01-09 18:21:38 -0200608 .usb_ctrl = DEVICE_SPECIFIC,
609 .firmware = "dvb-usb-bluebird-01.fw",
610 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200611 /* use usb alt setting 0 for EP4 transfer (dvb-t),
612 use usb alt setting 7 for EP2 transfer (atsc) */
613
614 .size_of_priv = sizeof(struct cxusb_state),
615
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300616 .num_adapters = 1,
617 .adapter = {
618 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300619 .streaming_ctrl = cxusb_streaming_ctrl,
620 .frontend_attach = cxusb_dee1601_frontend_attach,
621 .tuner_attach = cxusb_dee1601_tuner_attach,
622 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300623 .stream = {
624 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300625 .count = 5,
626 .endpoint = 0x04,
627 .u = {
628 .bulk = {
629 .buffersize = 8192,
630 }
631 }
632 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300633 },
634 },
635
636 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200637
638 .i2c_algo = &cxusb_i2c_algo,
639
Chris Pascoe7c239702006-01-09 18:21:29 -0200640 .rc_interval = 150,
641 .rc_key_map = dvico_mce_rc_keys,
642 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
643 .rc_query = cxusb_rc_query,
644
Chris Pascoe0029ee12006-01-09 18:21:28 -0200645 .generic_bulk_ctrl_endpoint = 0x01,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200646
Michael Krufky587c03d2006-09-28 02:16:01 -0300647 .num_device_descs = 3,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200648 .devices = {
649 { "DViCO FusionHDTV DVB-T Dual USB",
650 { &cxusb_table[3], NULL },
651 { &cxusb_table[4], NULL },
652 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200653 { "DigitalNow DVB-T Dual USB",
654 { &cxusb_table[9], NULL },
655 { &cxusb_table[10], NULL },
656 },
Michael Krufky587c03d2006-09-28 02:16:01 -0300657 { "DViCO FusionHDTV DVB-T Dual Digital 2",
658 { &cxusb_table[11], NULL },
659 { &cxusb_table[12], NULL },
660 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200661 }
662};
663
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300664static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200665 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
666
667 .usb_ctrl = DEVICE_SPECIFIC,
668 .firmware = "dvb-usb-bluebird-01.fw",
669 .download_firmware = bluebird_patch_dvico_firmware_download,
670 /* use usb alt setting 0 for EP4 transfer (dvb-t),
671 use usb alt setting 7 for EP2 transfer (atsc) */
672
673 .size_of_priv = sizeof(struct cxusb_state),
674
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300675 .num_adapters = 2,
676 .adapter = {
677 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300678 .streaming_ctrl = cxusb_streaming_ctrl,
679 .frontend_attach = cxusb_mt352_frontend_attach,
680 .tuner_attach = cxusb_lgz201_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200681
Patrick Boettcher01451e72006-10-13 11:34:46 -0300682 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300683 .stream = {
684 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300685 .count = 5,
686 .endpoint = 0x04,
687 .u = {
688 .bulk = {
689 .buffersize = 8192,
690 }
691 }
692 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300693 },
694 },
695 .power_ctrl = cxusb_bluebird_power_ctrl,
696
Michael Krufky6f447252006-01-11 19:40:33 -0200697 .i2c_algo = &cxusb_i2c_algo,
698
Michael Krufkyc1501782006-03-26 05:43:36 -0300699 .rc_interval = 100,
700 .rc_key_map = dvico_portable_rc_keys,
701 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
702 .rc_query = cxusb_rc_query,
703
Michael Krufky6f447252006-01-11 19:40:33 -0200704 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200705 .num_device_descs = 1,
706 .devices = {
707 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
708 { &cxusb_table[5], NULL },
709 { &cxusb_table[6], NULL },
710 },
711 }
712};
713
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300714static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200715 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
716
717 .usb_ctrl = DEVICE_SPECIFIC,
718 .firmware = "dvb-usb-bluebird-01.fw",
719 .download_firmware = bluebird_patch_dvico_firmware_download,
720 /* use usb alt setting 0 for EP4 transfer (dvb-t),
721 use usb alt setting 7 for EP2 transfer (atsc) */
722
723 .size_of_priv = sizeof(struct cxusb_state),
724
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300725 .num_adapters = 1,
726 .adapter = {
727 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300728 .streaming_ctrl = cxusb_streaming_ctrl,
729 .frontend_attach = cxusb_mt352_frontend_attach,
730 .tuner_attach = cxusb_dtt7579_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200731
Patrick Boettcher01451e72006-10-13 11:34:46 -0300732 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300733 .stream = {
734 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300735 .count = 5,
736 .endpoint = 0x04,
737 .u = {
738 .bulk = {
739 .buffersize = 8192,
740 }
741 }
742 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300743 },
744 },
745 .power_ctrl = cxusb_bluebird_power_ctrl,
746
Michael Krufky6f447252006-01-11 19:40:33 -0200747 .i2c_algo = &cxusb_i2c_algo,
748
Michael Krufkyc1501782006-03-26 05:43:36 -0300749 .rc_interval = 100,
750 .rc_key_map = dvico_portable_rc_keys,
751 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
752 .rc_query = cxusb_rc_query,
753
Michael Krufky6f447252006-01-11 19:40:33 -0200754 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200755
756 .num_device_descs = 1,
757 .devices = {
758 { "DViCO FusionHDTV DVB-T USB (TH7579)",
759 { &cxusb_table[7], NULL },
760 { &cxusb_table[8], NULL },
761 },
762 }
763};
764
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700765static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700766 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700767 .probe = cxusb_probe,
768 .disconnect = dvb_usb_device_exit,
769 .id_table = cxusb_table,
770};
771
772/* module stuff */
773static int __init cxusb_module_init(void)
774{
775 int result;
776 if ((result = usb_register(&cxusb_driver))) {
777 err("usb_register failed. Error number %d",result);
778 return result;
779 }
780
781 return 0;
782}
783
784static void __exit cxusb_module_exit(void)
785{
786 /* deregister this driver from the USB subsystem */
787 usb_deregister(&cxusb_driver);
788}
789
790module_init (cxusb_module_init);
791module_exit (cxusb_module_exit);
792
793MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufky5b9ed282006-10-15 14:51:08 -0300794MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200795MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700796MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
797MODULE_VERSION("1.0-alpha");
798MODULE_LICENSE("GPL");