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 .master_xfer
= cxusb_i2c_xfer
,
145 .functionality
= cxusb_i2c_func
,
148 static int cxusb_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
153 static int cxusb_streaming_ctrl(struct dvb_usb_device
*d
, int onoff
)
155 u8 buf
[2] = { 0x03, 0x00 };
157 cxusb_ctrl_msg(d
,0x36, buf
, 2, NULL
, 0);
159 cxusb_ctrl_msg(d
,0x37, NULL
, 0, NULL
, 0);
164 struct cx22702_config cxusb_cx22702_config
= {
165 .demod_address
= 0x63,
167 .output_mode
= CX22702_PARALLEL_OUTPUT
,
169 .pll_init
= dvb_usb_pll_init_i2c
,
170 .pll_set
= dvb_usb_pll_set_i2c
,
173 /* Callbacks for DVB USB */
174 static int cxusb_tuner_attach(struct dvb_usb_device
*d
)
176 u8 bpll
[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
178 memcpy(d
->pll_init
,bpll
,4);
179 d
->pll_desc
= &dvb_pll_fmd1216me
;
183 static int cxusb_frontend_attach(struct dvb_usb_device
*d
)
185 u8 buf
[2] = { 0x03, 0x00 };
188 if (usb_set_interface(d
->udev
,0,0) < 0)
189 err("set interface to alts=0 failed");
191 cxusb_ctrl_msg(d
,0xde,&b
,0,NULL
,0);
192 cxusb_set_i2c_path(d
,PATH_TUNER_OTHER
);
193 cxusb_ctrl_msg(d
,CMD_POWER_OFF
, NULL
, 0, &b
, 1);
195 if (usb_set_interface(d
->udev
,0,6) < 0)
196 err("set interface failed");
198 cxusb_ctrl_msg(d
,0x36, buf
, 2, NULL
, 0);
199 cxusb_set_i2c_path(d
,PATH_CX22702
);
200 cxusb_ctrl_msg(d
,CMD_POWER_ON
, NULL
, 0, &b
, 1);
202 if ((d
->fe
= cx22702_attach(&cxusb_cx22702_config
, &d
->i2c_adap
)) != NULL
)
208 /* DVB USB Driver stuff */
209 static struct dvb_usb_properties cxusb_properties
;
211 static int cxusb_probe(struct usb_interface
*intf
,
212 const struct usb_device_id
*id
)
214 return dvb_usb_device_init(intf
,&cxusb_properties
,THIS_MODULE
);
217 static struct usb_device_id cxusb_table
[] = {
218 { USB_DEVICE(USB_VID_MEDION
, USB_PID_MEDION_MD95700
) },
219 {} /* Terminating entry */
221 MODULE_DEVICE_TABLE (usb
, cxusb_table
);
223 static struct dvb_usb_properties cxusb_properties
= {
224 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
226 .usb_ctrl
= CYPRESS_FX2
,
228 .size_of_priv
= sizeof(struct cxusb_state
),
230 .streaming_ctrl
= cxusb_streaming_ctrl
,
231 .power_ctrl
= cxusb_power_ctrl
,
232 .frontend_attach
= cxusb_frontend_attach
,
233 .tuner_attach
= cxusb_tuner_attach
,
235 .i2c_algo
= &cxusb_i2c_algo
,
237 .generic_bulk_ctrl_endpoint
= 0x01,
238 /* parameter for the MPEG2-data transfer */
240 .type
= DVB_USB_ISOC
,
252 .num_device_descs
= 1,
254 { "Medion MD95700 (MDUSBTV-HYBRID)",
256 { &cxusb_table
[0], NULL
},
261 static struct usb_driver cxusb_driver
= {
262 .owner
= THIS_MODULE
,
263 .name
= "dvb_usb_cxusb",
264 .probe
= cxusb_probe
,
265 .disconnect
= dvb_usb_device_exit
,
266 .id_table
= cxusb_table
,
270 static int __init
cxusb_module_init(void)
273 if ((result
= usb_register(&cxusb_driver
))) {
274 err("usb_register failed. Error number %d",result
);
281 static void __exit
cxusb_module_exit(void)
283 /* deregister this driver from the USB subsystem */
284 usb_deregister(&cxusb_driver
);
287 module_init (cxusb_module_init
);
288 module_exit (cxusb_module_exit
);
290 MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
291 MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
292 MODULE_VERSION("1.0-alpha");
293 MODULE_LICENSE("GPL");