blob: 2c1b1e5992a35f8abc5c75ff01104d7ab0f3fe28 [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 *
14 * TODO: check if the cx25840-driver (from ivtv) can be used for the analogue
15 * part
16 *
Patrick Boettcher22c6d932005-07-07 17:58:10 -070017 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
18 *
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License as published by the Free
21 * Software Foundation, version 2.
22 *
23 * see Documentation/dvb/README.dvb-usb for more information
24 */
25#include "cxusb.h"
26
27#include "cx22702.h"
Michael Krufkyeffee032006-01-09 15:25:47 -020028#include "lgdt330x.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070029
30/* debug */
31int dvb_usb_cxusb_debug;
32module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
33MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
34
35static int cxusb_ctrl_msg(struct dvb_usb_device *d,
36 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
37{
38 int wo = (rbuf == NULL || rlen == 0); /* write-only */
39 u8 sndbuf[1+wlen];
40 memset(sndbuf,0,1+wlen);
41
42 sndbuf[0] = cmd;
43 memcpy(&sndbuf[1],wbuf,wlen);
44 if (wo)
45 dvb_usb_generic_write(d,sndbuf,1+wlen);
46 else
47 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
48
49 return 0;
50}
51
Patrick Boettchere2efeab2005-09-09 13:02:51 -070052/* GPIO */
53static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070054{
55 struct cxusb_state *st = d->priv;
56 u8 o[2],i;
57
Patrick Boettchere2efeab2005-09-09 13:02:51 -070058 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070059 return;
60
Patrick Boettchere2efeab2005-09-09 13:02:51 -070061 o[0] = GPIO_TUNER;
62 o[1] = onoff;
63 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070064
65 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070066 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070067
Patrick Boettchere2efeab2005-09-09 13:02:51 -070068 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070069}
70
Patrick Boettchere2efeab2005-09-09 13:02:51 -070071/* I2C */
Patrick Boettcher22c6d932005-07-07 17:58:10 -070072static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
73{
74 struct dvb_usb_device *d = i2c_get_adapdata(adap);
75 int i;
76
77 if (down_interruptible(&d->i2c_sem) < 0)
78 return -EAGAIN;
79
80 if (num > 2)
81 warn("more than 2 i2c messages at a time is not handled yet. TODO.");
82
83 for (i = 0; i < num; i++) {
84
85 switch (msg[i].addr) {
86 case 0x63:
Patrick Boettchere2efeab2005-09-09 13:02:51 -070087 cxusb_gpio_tuner(d,0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070088 break;
89 default:
Patrick Boettchere2efeab2005-09-09 13:02:51 -070090 cxusb_gpio_tuner(d,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070091 break;
92 }
93
94 /* read request */
95 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
96 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
97 obuf[0] = msg[i].len;
98 obuf[1] = msg[i+1].len;
99 obuf[2] = msg[i].addr;
100 memcpy(&obuf[3],msg[i].buf,msg[i].len);
101
102 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
103 obuf, 3+msg[i].len,
104 ibuf, 1+msg[i+1].len) < 0)
105 break;
106
107 if (ibuf[0] != 0x08)
108 deb_info("i2c read could have been failed\n");
109
110 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
111
112 i++;
113 } else { /* write */
114 u8 obuf[2+msg[i].len], ibuf;
115 obuf[0] = msg[i].addr;
116 obuf[1] = msg[i].len;
117 memcpy(&obuf[2],msg[i].buf,msg[i].len);
118
119 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
120 break;
121 if (ibuf != 0x08)
122 deb_info("i2c write could have been failed\n");
123 }
124 }
125
126 up(&d->i2c_sem);
127 return i;
128}
129
130static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
131{
132 return I2C_FUNC_I2C;
133}
134
135static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700136 .master_xfer = cxusb_i2c_xfer,
137 .functionality = cxusb_i2c_func,
138};
139
140static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
141{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700142 u8 b = 0;
143 if (onoff)
144 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
145 else
146 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700147}
148
149static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
150{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700151 u8 buf[2] = { 0x03, 0x00 };
152 if (onoff)
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700153 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700154 else
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700155 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700156
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700157 return 0;
158}
159
160struct cx22702_config cxusb_cx22702_config = {
161 .demod_address = 0x63,
162
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700163 .output_mode = CX22702_PARALLEL_OUTPUT,
164
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700165 .pll_init = dvb_usb_pll_init_i2c,
166 .pll_set = dvb_usb_pll_set_i2c,
167};
168
Michael Krufkyeffee032006-01-09 15:25:47 -0200169struct lgdt330x_config cxusb_lgdt330x_config = {
170 .demod_address = 0x0e,
171 .demod_chip = LGDT3303,
172 .pll_set = dvb_usb_pll_set_i2c,
173};
174
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700175/* Callbacks for DVB USB */
Michael Krufkyeffee032006-01-09 15:25:47 -0200176static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700177{
178 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
179 d->pll_addr = 0x61;
Michael Krufkyeffee032006-01-09 15:25:47 -0200180 memcpy(d->pll_init, bpll, 4);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700181 d->pll_desc = &dvb_pll_fmd1216me;
182 return 0;
183}
184
Michael Krufkyeffee032006-01-09 15:25:47 -0200185static int cxusb_lgh064f_tuner_attach(struct dvb_usb_device *d)
186{
187 u8 bpll[4] = { 0x00, 0x00, 0x18, 0x50 };
188 /* bpll[2] : unset bit 3, set bits 4&5
189 bpll[3] : 0x50 - digital, 0x20 - analog */
190 d->pll_addr = 0x61;
191 memcpy(d->pll_init, bpll, 4);
192 d->pll_desc = &dvb_pll_tdvs_tua6034;
193 return 0;
194}
195
196static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700197{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700198 u8 b;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700199 if (usb_set_interface(d->udev,0,6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700200 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700201
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700202 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700203
204 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
205 return 0;
206
207 return -EIO;
208}
209
Michael Krufkyeffee032006-01-09 15:25:47 -0200210static int cxusb_lgdt330x_frontend_attach(struct dvb_usb_device *d)
211{
Michael Krufky37bdfa02006-01-09 15:25:47 -0200212 if (usb_set_interface(d->udev,0,7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200213 err("set interface failed");
214
215 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
216
217 if ((d->fe = lgdt330x_attach(&cxusb_lgdt330x_config, &d->i2c_adap)) != NULL)
218 return 0;
219
220 return -EIO;
221}
222
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700223/* DVB USB Driver stuff */
Michael Krufkyeffee032006-01-09 15:25:47 -0200224static struct dvb_usb_properties cxusb_medion_properties;
Michael Krufkye71bb542006-01-09 15:32:42 -0200225static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700226
227static int cxusb_probe(struct usb_interface *intf,
228 const struct usb_device_id *id)
229{
Michael Krufkyeffee032006-01-09 15:25:47 -0200230 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufkye71bb542006-01-09 15:32:42 -0200231 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200232 return 0;
233 }
234
235 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700236}
237
238static struct usb_device_id cxusb_table [] = {
239 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
Michael Krufkyeffee032006-01-09 15:25:47 -0200240 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
241 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700242 {} /* Terminating entry */
243};
244MODULE_DEVICE_TABLE (usb, cxusb_table);
245
Michael Krufkyeffee032006-01-09 15:25:47 -0200246static struct dvb_usb_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700247 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
248
249 .usb_ctrl = CYPRESS_FX2,
250
251 .size_of_priv = sizeof(struct cxusb_state),
252
253 .streaming_ctrl = cxusb_streaming_ctrl,
254 .power_ctrl = cxusb_power_ctrl,
Michael Krufkyeffee032006-01-09 15:25:47 -0200255 .frontend_attach = cxusb_cx22702_frontend_attach,
256 .tuner_attach = cxusb_fmd1216me_tuner_attach,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700257
258 .i2c_algo = &cxusb_i2c_algo,
259
260 .generic_bulk_ctrl_endpoint = 0x01,
261 /* parameter for the MPEG2-data transfer */
262 .urb = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700263 .type = DVB_USB_BULK,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700264 .count = 5,
265 .endpoint = 0x02,
266 .u = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700267 .bulk = {
268 .buffersize = 8192,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700269 }
270 }
271 },
272
273 .num_device_descs = 1,
274 .devices = {
275 { "Medion MD95700 (MDUSBTV-HYBRID)",
276 { NULL },
277 { &cxusb_table[0], NULL },
278 },
279 }
280};
281
Michael Krufkye71bb542006-01-09 15:32:42 -0200282static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200283 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
284
285 .usb_ctrl = CYPRESS_FX2,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200286 .firmware = "dvb-usb-bluebird-01.fw",
287 /* use usb alt setting 0 for EP4 transfer (dvb-t),
288 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200289
290 .size_of_priv = sizeof(struct cxusb_state),
291
292 .streaming_ctrl = cxusb_streaming_ctrl,
293 .power_ctrl = cxusb_power_ctrl,
294 .frontend_attach = cxusb_lgdt330x_frontend_attach,
295 .tuner_attach = cxusb_lgh064f_tuner_attach,
296
297 .i2c_algo = &cxusb_i2c_algo,
298
299 .generic_bulk_ctrl_endpoint = 0x01,
300 /* parameter for the MPEG2-data transfer */
301 .urb = {
302 .type = DVB_USB_BULK,
303 .count = 5,
304 .endpoint = 0x02,
305 .u = {
306 .bulk = {
307 .buffersize = 8192,
308 }
309 }
310 },
311
312 .num_device_descs = 1,
313 .devices = {
314 { "DViCO FusionHDTV5 USB Gold",
315 { &cxusb_table[1], NULL },
316 { &cxusb_table[2], NULL },
317 },
318 }
319};
320
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700321static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700322 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700323 .probe = cxusb_probe,
324 .disconnect = dvb_usb_device_exit,
325 .id_table = cxusb_table,
326};
327
328/* module stuff */
329static int __init cxusb_module_init(void)
330{
331 int result;
332 if ((result = usb_register(&cxusb_driver))) {
333 err("usb_register failed. Error number %d",result);
334 return result;
335 }
336
337 return 0;
338}
339
340static void __exit cxusb_module_exit(void)
341{
342 /* deregister this driver from the USB subsystem */
343 usb_deregister(&cxusb_driver);
344}
345
346module_init (cxusb_module_init);
347module_exit (cxusb_module_exit);
348
349MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
350MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
351MODULE_VERSION("1.0-alpha");
352MODULE_LICENSE("GPL");