1 /* DVB USB compliant linux driver for Conexant USB reference design.
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.
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
14 * TODO: check if the cx25840-driver (from ivtv) can be used for the analogue
17 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
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.
23 * see Documentation/dvb/README.dvb-usb for more information
30 int dvb_usb_cxusb_debug;
31 module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
32 MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
34 static int cxusb_ctrl_msg(struct dvb_usb_device *d,
35 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
37 int wo = (rbuf == NULL || rlen == 0); /* write-only */
39 memset(sndbuf,0,1+wlen);
42 memcpy(&sndbuf[1],wbuf,wlen);
44 dvb_usb_generic_write(d,sndbuf,1+wlen);
46 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
52 static void cxusb_set_i2c_path(struct dvb_usb_device *d, enum cxusb_i2c_pathes path)
54 struct cxusb_state *st = d->priv;
57 if (path == st->cur_i2c_path)
60 o[0] = IOCTL_SET_I2C_PATH;
65 case PATH_TUNER_OTHER:
69 err("unkown i2c path");
72 cxusb_ctrl_msg(d,CMD_IOCTL,o,2,&i,1);
75 deb_info("i2c_path setting failed.\n");
77 st->cur_i2c_path = path;
80 static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
82 struct dvb_usb_device *d = i2c_get_adapdata(adap);
85 if (down_interruptible(&d->i2c_sem) < 0)
89 warn("more than 2 i2c messages at a time is not handled yet. TODO.");
91 for (i = 0; i < num; i++) {
93 switch (msg[i].addr) {
95 cxusb_set_i2c_path(d,PATH_CX22702);
98 cxusb_set_i2c_path(d,PATH_TUNER_OTHER);
103 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
104 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
105 obuf[0] = msg[i].len;
106 obuf[1] = msg[i+1].len;
107 obuf[2] = msg[i].addr;
108 memcpy(&obuf[3],msg[i].buf,msg[i].len);
110 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
112 ibuf, 1+msg[i+1].len) < 0)
116 deb_info("i2c read could have been failed\n");
118 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
122 u8 obuf[2+msg[i].len], ibuf;
123 obuf[0] = msg[i].addr;
124 obuf[1] = msg[i].len;
125 memcpy(&obuf[2],msg[i].buf,msg[i].len);
127 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
130 deb_info("i2c write could have been failed\n");
138 static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
143 static struct i2c_algorithm cxusb_i2c_algo = {
144 .name = "Conexant USB I2C algorithm",
146 .master_xfer = cxusb_i2c_xfer,
147 .functionality = cxusb_i2c_func,
150 static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
155 static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
157 u8 buf[2] = { 0x03, 0x00 };
159 cxusb_ctrl_msg(d,0x36, buf, 2, NULL, 0);
161 cxusb_ctrl_msg(d,0x37, NULL, 0, NULL, 0);
166 struct cx22702_config cxusb_cx22702_config = {
167 .demod_address = 0x63,
169 .output_mode = CX22702_PARALLEL_OUTPUT,
171 .pll_init = dvb_usb_pll_init_i2c,
172 .pll_set = dvb_usb_pll_set_i2c,
175 /* Callbacks for DVB USB */
176 static int cxusb_tuner_attach(struct dvb_usb_device *d)
178 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
180 memcpy(d->pll_init,bpll,4);
181 d->pll_desc = &dvb_pll_fmd1216me;
185 static int cxusb_frontend_attach(struct dvb_usb_device *d)
187 u8 buf[2] = { 0x03, 0x00 };
190 if (usb_set_interface(d->udev,0,0) < 0)
191 err("set interface to alts=0 failed");
193 cxusb_ctrl_msg(d,0xde,&b,0,NULL,0);
194 cxusb_set_i2c_path(d,PATH_TUNER_OTHER);
195 cxusb_ctrl_msg(d,CMD_POWER_OFF, NULL, 0, &b, 1);
197 if (usb_set_interface(d->udev,0,6) < 0)
198 err("set interface failed");
200 cxusb_ctrl_msg(d,0x36, buf, 2, NULL, 0);
201 cxusb_set_i2c_path(d,PATH_CX22702);
202 cxusb_ctrl_msg(d,CMD_POWER_ON, NULL, 0, &b, 1);
204 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
210 /* DVB USB Driver stuff */
211 static struct dvb_usb_properties cxusb_properties;
213 static int cxusb_probe(struct usb_interface *intf,
214 const struct usb_device_id *id)
216 return dvb_usb_device_init(intf,&cxusb_properties,THIS_MODULE);
219 static struct usb_device_id cxusb_table [] = {
220 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
221 {} /* Terminating entry */
223 MODULE_DEVICE_TABLE (usb, cxusb_table);
225 static struct dvb_usb_properties cxusb_properties = {
226 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
228 .usb_ctrl = CYPRESS_FX2,
230 .size_of_priv = sizeof(struct cxusb_state),
232 .streaming_ctrl = cxusb_streaming_ctrl,
233 .power_ctrl = cxusb_power_ctrl,
234 .frontend_attach = cxusb_frontend_attach,
235 .tuner_attach = cxusb_tuner_attach,
237 .i2c_algo = &cxusb_i2c_algo,
239 .generic_bulk_ctrl_endpoint = 0x01,
240 /* parameter for the MPEG2-data transfer */
242 .type = DVB_USB_ISOC,
254 .num_device_descs = 1,
256 { "Medion MD95700 (MDUSBTV-HYBRID)",
258 { &cxusb_table[0], NULL },
263 static struct usb_driver cxusb_driver = {
264 .owner = THIS_MODULE,
265 .name = "dvb_usb_cxusb",
266 .probe = cxusb_probe,
267 .disconnect = dvb_usb_device_exit,
268 .id_table = cxusb_table,
272 static int __init cxusb_module_init(void)
275 if ((result = usb_register(&cxusb_driver))) {
276 err("usb_register failed. Error number %d",result);
283 static void __exit cxusb_module_exit(void)
285 /* deregister this driver from the USB subsystem */
286 usb_deregister(&cxusb_driver);
289 module_init (cxusb_module_init);
290 module_exit (cxusb_module_exit);
292 MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
293 MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
294 MODULE_VERSION("1.0-alpha");
295 MODULE_LICENSE("GPL");