Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 1 | /* 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 Krufky | 81481e9 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 14 | * TODO: Use the cx25840-driver for the analogue part |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 15 | * |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 16 | * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de) |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 17 | * Copyright (C) 2005 Michael Krufky (mkrufky@m1k.net) |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 18 | * Copyright (C) 2006 Chris Pascoe (c.pascoe@itee.uq.edu.au) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 19 | * |
| 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 Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 29 | #include "lgdt330x.h" |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 30 | #include "mt352.h" |
| 31 | #include "mt352_priv.h" |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 32 | |
| 33 | /* debug */ |
| 34 | int dvb_usb_cxusb_debug; |
| 35 | module_param_named(debug,dvb_usb_cxusb_debug, int, 0644); |
| 36 | MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS); |
| 37 | |
| 38 | static 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 Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 55 | /* GPIO */ |
| 56 | static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 57 | { |
| 58 | struct cxusb_state *st = d->priv; |
| 59 | u8 o[2],i; |
| 60 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 61 | if (st->gpio_write_state[GPIO_TUNER] == onoff) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 62 | return; |
| 63 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 64 | o[0] = GPIO_TUNER; |
| 65 | o[1] = onoff; |
| 66 | cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 67 | |
| 68 | if (i != 0x01) |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 69 | deb_info("gpio_write failed.\n"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 70 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 71 | st->gpio_write_state[GPIO_TUNER] = onoff; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 74 | /* I2C */ |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 75 | static 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 Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 80 | if (mutex_lock_interruptible(&d->i2c_mutex) < 0) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 81 | return -EAGAIN; |
| 82 | |
| 83 | if (num > 2) |
| 84 | warn("more than 2 i2c messages at a time is not handled yet. TODO."); |
| 85 | |
| 86 | for (i = 0; i < num; i++) { |
| 87 | |
Michael Krufky | 5e805ef | 2006-03-23 00:01:34 -0300 | [diff] [blame^] | 88 | 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 Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 97 | |
| 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) |
| 112 | deb_info("i2c read could have been failed\n"); |
| 113 | |
| 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) |
| 126 | deb_info("i2c write could have been failed\n"); |
| 127 | } |
| 128 | } |
| 129 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 130 | mutex_unlock(&d->i2c_mutex); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 131 | return i; |
| 132 | } |
| 133 | |
| 134 | static u32 cxusb_i2c_func(struct i2c_adapter *adapter) |
| 135 | { |
| 136 | return I2C_FUNC_I2C; |
| 137 | } |
| 138 | |
| 139 | static struct i2c_algorithm cxusb_i2c_algo = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 140 | .master_xfer = cxusb_i2c_xfer, |
| 141 | .functionality = cxusb_i2c_func, |
| 142 | }; |
| 143 | |
| 144 | static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff) |
| 145 | { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 146 | 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 Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff) |
| 154 | { |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 155 | u8 buf[2] = { 0x03, 0x00 }; |
| 156 | if (onoff) |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 157 | cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0); |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 158 | else |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 159 | cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0); |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 160 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 161 | return 0; |
| 162 | } |
| 163 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 164 | static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state) |
| 165 | { |
| 166 | struct dvb_usb_rc_key *keymap = d->props.rc_key_map; |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 167 | u8 ircode[4]; |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 168 | int i; |
| 169 | |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 170 | cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4); |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 171 | |
| 172 | *event = 0; |
| 173 | *state = REMOTE_NO_KEY_PRESSED; |
| 174 | |
| 175 | for (i = 0; i < d->props.rc_key_map_size; i++) { |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 176 | if (keymap[i].custom == ircode[2] && |
| 177 | keymap[i].data == ircode[3]) { |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 178 | *event = keymap[i].event; |
| 179 | *state = REMOTE_KEY_PRESSED; |
| 180 | |
| 181 | return 0; |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | return 0; |
| 186 | } |
| 187 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 188 | static struct dvb_usb_rc_key dvico_mce_rc_keys[] = { |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 189 | { 0xfe, 0x02, KEY_TV }, |
| 190 | { 0xfe, 0x0e, KEY_MP3 }, |
| 191 | { 0xfe, 0x1a, KEY_DVD }, |
| 192 | { 0xfe, 0x1e, KEY_FAVORITES }, |
| 193 | { 0xfe, 0x16, KEY_SETUP }, |
| 194 | { 0xfe, 0x46, KEY_POWER2 }, |
| 195 | { 0xfe, 0x0a, KEY_EPG }, |
| 196 | { 0xfe, 0x49, KEY_BACK }, |
| 197 | { 0xfe, 0x4d, KEY_MENU }, |
| 198 | { 0xfe, 0x51, KEY_UP }, |
| 199 | { 0xfe, 0x5b, KEY_LEFT }, |
| 200 | { 0xfe, 0x5f, KEY_RIGHT }, |
| 201 | { 0xfe, 0x53, KEY_DOWN }, |
| 202 | { 0xfe, 0x5e, KEY_OK }, |
| 203 | { 0xfe, 0x59, KEY_INFO }, |
| 204 | { 0xfe, 0x55, KEY_TAB }, |
| 205 | { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */ |
| 206 | { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */ |
| 207 | { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */ |
| 208 | { 0xfe, 0x15, KEY_VOLUMEUP }, |
| 209 | { 0xfe, 0x05, KEY_VOLUMEDOWN }, |
| 210 | { 0xfe, 0x11, KEY_CHANNELUP }, |
| 211 | { 0xfe, 0x09, KEY_CHANNELDOWN }, |
| 212 | { 0xfe, 0x52, KEY_CAMERA }, |
| 213 | { 0xfe, 0x5a, KEY_TUNER }, /* Live */ |
| 214 | { 0xfe, 0x19, KEY_OPEN }, |
| 215 | { 0xfe, 0x0b, KEY_1 }, |
| 216 | { 0xfe, 0x17, KEY_2 }, |
| 217 | { 0xfe, 0x1b, KEY_3 }, |
| 218 | { 0xfe, 0x07, KEY_4 }, |
| 219 | { 0xfe, 0x50, KEY_5 }, |
| 220 | { 0xfe, 0x54, KEY_6 }, |
| 221 | { 0xfe, 0x48, KEY_7 }, |
| 222 | { 0xfe, 0x4c, KEY_8 }, |
| 223 | { 0xfe, 0x58, KEY_9 }, |
| 224 | { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */ |
| 225 | { 0xfe, 0x03, KEY_0 }, |
| 226 | { 0xfe, 0x1f, KEY_ZOOM }, |
| 227 | { 0xfe, 0x43, KEY_REWIND }, |
| 228 | { 0xfe, 0x47, KEY_PLAYPAUSE }, |
| 229 | { 0xfe, 0x4f, KEY_FASTFORWARD }, |
| 230 | { 0xfe, 0x57, KEY_MUTE }, |
| 231 | { 0xfe, 0x0d, KEY_STOP }, |
| 232 | { 0xfe, 0x01, KEY_RECORD }, |
| 233 | { 0xfe, 0x4e, KEY_POWER }, |
| 234 | }; |
| 235 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 236 | static int cxusb_dee1601_demod_init(struct dvb_frontend* fe) |
| 237 | { |
Chris Pascoe | d9ed881 | 2006-02-07 06:49:11 -0200 | [diff] [blame] | 238 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 }; |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 239 | static u8 reset [] = { RESET, 0x80 }; |
| 240 | static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 }; |
| 241 | static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 }; |
| 242 | static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 }; |
| 243 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 244 | |
| 245 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 246 | udelay(200); |
| 247 | mt352_write(fe, reset, sizeof(reset)); |
| 248 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 249 | |
| 250 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 251 | mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg)); |
| 252 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 253 | |
| 254 | return 0; |
| 255 | } |
| 256 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 257 | static int cxusb_mt352_demod_init(struct dvb_frontend* fe) |
| 258 | { /* used in both lgz201 and th7579 */ |
Michael Krufky | fb51fd2 | 2006-02-07 06:49:12 -0200 | [diff] [blame] | 259 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 }; |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 260 | static u8 reset [] = { RESET, 0x80 }; |
| 261 | static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 }; |
| 262 | static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 }; |
| 263 | static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 }; |
| 264 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 265 | |
| 266 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 267 | udelay(200); |
| 268 | mt352_write(fe, reset, sizeof(reset)); |
| 269 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 270 | |
| 271 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 272 | mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg)); |
| 273 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 274 | return 0; |
| 275 | } |
| 276 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 277 | static struct cx22702_config cxusb_cx22702_config = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 278 | .demod_address = 0x63, |
| 279 | |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 280 | .output_mode = CX22702_PARALLEL_OUTPUT, |
| 281 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 282 | .pll_init = dvb_usb_pll_init_i2c, |
| 283 | .pll_set = dvb_usb_pll_set_i2c, |
| 284 | }; |
| 285 | |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 286 | static struct lgdt330x_config cxusb_lgdt3303_config = { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 287 | .demod_address = 0x0e, |
| 288 | .demod_chip = LGDT3303, |
| 289 | .pll_set = dvb_usb_pll_set_i2c, |
| 290 | }; |
| 291 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 292 | static struct mt352_config cxusb_dee1601_config = { |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 293 | .demod_address = 0x0f, |
| 294 | .demod_init = cxusb_dee1601_demod_init, |
| 295 | .pll_set = dvb_usb_pll_set, |
| 296 | }; |
| 297 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 298 | struct mt352_config cxusb_mt352_config = { |
| 299 | /* used in both lgz201 and th7579 */ |
| 300 | .demod_address = 0x0f, |
| 301 | .demod_init = cxusb_mt352_demod_init, |
| 302 | .pll_set = dvb_usb_pll_set, |
| 303 | }; |
| 304 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 305 | /* Callbacks for DVB USB */ |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 306 | static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 307 | { |
| 308 | u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 }; |
| 309 | d->pll_addr = 0x61; |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 310 | memcpy(d->pll_init, bpll, 4); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 311 | d->pll_desc = &dvb_pll_fmd1216me; |
| 312 | return 0; |
| 313 | } |
| 314 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 315 | static int cxusb_lgh064f_tuner_attach(struct dvb_usb_device *d) |
| 316 | { |
| 317 | u8 bpll[4] = { 0x00, 0x00, 0x18, 0x50 }; |
| 318 | /* bpll[2] : unset bit 3, set bits 4&5 |
| 319 | bpll[3] : 0x50 - digital, 0x20 - analog */ |
| 320 | d->pll_addr = 0x61; |
| 321 | memcpy(d->pll_init, bpll, 4); |
| 322 | d->pll_desc = &dvb_pll_tdvs_tua6034; |
| 323 | return 0; |
| 324 | } |
| 325 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 326 | static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d) |
| 327 | { |
| 328 | d->pll_addr = 0x61; |
| 329 | d->pll_desc = &dvb_pll_thomson_dtt7579; |
| 330 | return 0; |
| 331 | } |
| 332 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 333 | static int cxusb_lgz201_tuner_attach(struct dvb_usb_device *d) |
| 334 | { |
| 335 | d->pll_addr = 0x61; |
| 336 | d->pll_desc = &dvb_pll_lg_z201; |
| 337 | return 0; |
| 338 | } |
| 339 | |
| 340 | static int cxusb_dtt7579_tuner_attach(struct dvb_usb_device *d) |
| 341 | { |
| 342 | d->pll_addr = 0x60; |
| 343 | d->pll_desc = &dvb_pll_thomson_dtt7579; |
| 344 | return 0; |
| 345 | } |
| 346 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 347 | static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 348 | { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 349 | u8 b; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 350 | if (usb_set_interface(d->udev,0,6) < 0) |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 351 | err("set interface failed"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 352 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 353 | cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 354 | |
| 355 | if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL) |
| 356 | return 0; |
| 357 | |
| 358 | return -EIO; |
| 359 | } |
| 360 | |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 361 | static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 362 | { |
Michael Krufky | 37bdfa0 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 363 | if (usb_set_interface(d->udev,0,7) < 0) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 364 | err("set interface failed"); |
| 365 | |
| 366 | cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); |
| 367 | |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 368 | if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 369 | return 0; |
| 370 | |
| 371 | return -EIO; |
| 372 | } |
| 373 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 374 | static int cxusb_mt352_frontend_attach(struct dvb_usb_device *d) |
| 375 | { /* used in both lgz201 and th7579 */ |
| 376 | if (usb_set_interface(d->udev,0,0) < 0) |
| 377 | err("set interface failed"); |
| 378 | |
| 379 | cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); |
| 380 | |
| 381 | if ((d->fe = mt352_attach(&cxusb_mt352_config, &d->i2c_adap)) != NULL) |
| 382 | return 0; |
| 383 | |
| 384 | return -EIO; |
| 385 | } |
| 386 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 387 | static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d) |
| 388 | { |
| 389 | if (usb_set_interface(d->udev,0,0) < 0) |
| 390 | err("set interface failed"); |
| 391 | |
| 392 | cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0); |
| 393 | |
| 394 | if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL) |
| 395 | return 0; |
| 396 | |
| 397 | return -EIO; |
| 398 | } |
| 399 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 400 | /* |
| 401 | * DViCO bluebird firmware needs the "warm" product ID to be patched into the |
| 402 | * firmware file before download. |
| 403 | */ |
| 404 | |
| 405 | #define BLUEBIRD_01_ID_OFFSET 6638 |
| 406 | static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw) |
| 407 | { |
| 408 | if (fw->size < BLUEBIRD_01_ID_OFFSET + 4) |
| 409 | return -EINVAL; |
| 410 | |
| 411 | if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) && |
| 412 | fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) { |
| 413 | |
| 414 | /* FIXME: are we allowed to change the fw-data ? */ |
| 415 | fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1; |
| 416 | fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8; |
| 417 | |
| 418 | return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2); |
| 419 | } |
| 420 | |
| 421 | return -EINVAL; |
| 422 | } |
| 423 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 424 | /* DVB USB Driver stuff */ |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 425 | static struct dvb_usb_properties cxusb_medion_properties; |
Michael Krufky | e71bb54 | 2006-01-09 15:32:42 -0200 | [diff] [blame] | 426 | static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties; |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 427 | static struct dvb_usb_properties cxusb_bluebird_dee1601_properties; |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 428 | static struct dvb_usb_properties cxusb_bluebird_lgz201_properties; |
| 429 | static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 430 | |
| 431 | static int cxusb_probe(struct usb_interface *intf, |
| 432 | const struct usb_device_id *id) |
| 433 | { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 434 | if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 || |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 435 | dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 || |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 436 | dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 || |
| 437 | dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 || |
| 438 | dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 439 | return 0; |
| 440 | } |
| 441 | |
| 442 | return -EINVAL; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | static struct usb_device_id cxusb_table [] = { |
| 446 | { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) }, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 447 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) }, |
| 448 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) }, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 449 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) }, |
| 450 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) }, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 451 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) }, |
| 452 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) }, |
| 453 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) }, |
| 454 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) }, |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 455 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_COLD) }, |
| 456 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_WARM) }, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 457 | {} /* Terminating entry */ |
| 458 | }; |
| 459 | MODULE_DEVICE_TABLE (usb, cxusb_table); |
| 460 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 461 | static struct dvb_usb_properties cxusb_medion_properties = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 462 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 463 | |
| 464 | .usb_ctrl = CYPRESS_FX2, |
| 465 | |
| 466 | .size_of_priv = sizeof(struct cxusb_state), |
| 467 | |
| 468 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 469 | .power_ctrl = cxusb_power_ctrl, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 470 | .frontend_attach = cxusb_cx22702_frontend_attach, |
| 471 | .tuner_attach = cxusb_fmd1216me_tuner_attach, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 472 | |
| 473 | .i2c_algo = &cxusb_i2c_algo, |
| 474 | |
| 475 | .generic_bulk_ctrl_endpoint = 0x01, |
| 476 | /* parameter for the MPEG2-data transfer */ |
| 477 | .urb = { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 478 | .type = DVB_USB_BULK, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 479 | .count = 5, |
| 480 | .endpoint = 0x02, |
| 481 | .u = { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 482 | .bulk = { |
| 483 | .buffersize = 8192, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 484 | } |
| 485 | } |
| 486 | }, |
| 487 | |
| 488 | .num_device_descs = 1, |
| 489 | .devices = { |
| 490 | { "Medion MD95700 (MDUSBTV-HYBRID)", |
| 491 | { NULL }, |
| 492 | { &cxusb_table[0], NULL }, |
| 493 | }, |
| 494 | } |
| 495 | }; |
| 496 | |
Michael Krufky | e71bb54 | 2006-01-09 15:32:42 -0200 | [diff] [blame] | 497 | static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 498 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 499 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 500 | .usb_ctrl = DEVICE_SPECIFIC, |
| 501 | .firmware = "dvb-usb-bluebird-01.fw", |
| 502 | .download_firmware = bluebird_patch_dvico_firmware_download, |
Michael Krufky | 37bdfa0 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 503 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 504 | use usb alt setting 7 for EP2 transfer (atsc) */ |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 505 | |
| 506 | .size_of_priv = sizeof(struct cxusb_state), |
| 507 | |
| 508 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 509 | .power_ctrl = cxusb_power_ctrl, |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 510 | .frontend_attach = cxusb_lgdt3303_frontend_attach, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 511 | .tuner_attach = cxusb_lgh064f_tuner_attach, |
| 512 | |
| 513 | .i2c_algo = &cxusb_i2c_algo, |
| 514 | |
| 515 | .generic_bulk_ctrl_endpoint = 0x01, |
| 516 | /* parameter for the MPEG2-data transfer */ |
| 517 | .urb = { |
| 518 | .type = DVB_USB_BULK, |
| 519 | .count = 5, |
| 520 | .endpoint = 0x02, |
| 521 | .u = { |
| 522 | .bulk = { |
| 523 | .buffersize = 8192, |
| 524 | } |
| 525 | } |
| 526 | }, |
| 527 | |
| 528 | .num_device_descs = 1, |
| 529 | .devices = { |
| 530 | { "DViCO FusionHDTV5 USB Gold", |
| 531 | { &cxusb_table[1], NULL }, |
| 532 | { &cxusb_table[2], NULL }, |
| 533 | }, |
| 534 | } |
| 535 | }; |
| 536 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 537 | static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = { |
| 538 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 539 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 540 | .usb_ctrl = DEVICE_SPECIFIC, |
| 541 | .firmware = "dvb-usb-bluebird-01.fw", |
| 542 | .download_firmware = bluebird_patch_dvico_firmware_download, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 543 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 544 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 545 | |
| 546 | .size_of_priv = sizeof(struct cxusb_state), |
| 547 | |
| 548 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 549 | .power_ctrl = cxusb_power_ctrl, |
| 550 | .frontend_attach = cxusb_dee1601_frontend_attach, |
| 551 | .tuner_attach = cxusb_dee1601_tuner_attach, |
| 552 | |
| 553 | .i2c_algo = &cxusb_i2c_algo, |
| 554 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 555 | .rc_interval = 150, |
| 556 | .rc_key_map = dvico_mce_rc_keys, |
| 557 | .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys), |
| 558 | .rc_query = cxusb_rc_query, |
| 559 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 560 | .generic_bulk_ctrl_endpoint = 0x01, |
| 561 | /* parameter for the MPEG2-data transfer */ |
| 562 | .urb = { |
| 563 | .type = DVB_USB_BULK, |
| 564 | .count = 5, |
| 565 | .endpoint = 0x04, |
| 566 | .u = { |
| 567 | .bulk = { |
| 568 | .buffersize = 8192, |
| 569 | } |
| 570 | } |
| 571 | }, |
| 572 | |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 573 | .num_device_descs = 2, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 574 | .devices = { |
| 575 | { "DViCO FusionHDTV DVB-T Dual USB", |
| 576 | { &cxusb_table[3], NULL }, |
| 577 | { &cxusb_table[4], NULL }, |
| 578 | }, |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 579 | { "DigitalNow DVB-T Dual USB", |
| 580 | { &cxusb_table[9], NULL }, |
| 581 | { &cxusb_table[10], NULL }, |
| 582 | }, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 583 | } |
| 584 | }; |
| 585 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 586 | static struct dvb_usb_properties cxusb_bluebird_lgz201_properties = { |
| 587 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 588 | |
| 589 | .usb_ctrl = DEVICE_SPECIFIC, |
| 590 | .firmware = "dvb-usb-bluebird-01.fw", |
| 591 | .download_firmware = bluebird_patch_dvico_firmware_download, |
| 592 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 593 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 594 | |
| 595 | .size_of_priv = sizeof(struct cxusb_state), |
| 596 | |
| 597 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 598 | .power_ctrl = cxusb_power_ctrl, |
| 599 | .frontend_attach = cxusb_mt352_frontend_attach, |
| 600 | .tuner_attach = cxusb_lgz201_tuner_attach, |
| 601 | |
| 602 | .i2c_algo = &cxusb_i2c_algo, |
| 603 | |
| 604 | .generic_bulk_ctrl_endpoint = 0x01, |
| 605 | /* parameter for the MPEG2-data transfer */ |
| 606 | .urb = { |
| 607 | .type = DVB_USB_BULK, |
| 608 | .count = 5, |
| 609 | .endpoint = 0x04, |
| 610 | .u = { |
| 611 | .bulk = { |
| 612 | .buffersize = 8192, |
| 613 | } |
| 614 | } |
| 615 | }, |
| 616 | |
| 617 | .num_device_descs = 1, |
| 618 | .devices = { |
| 619 | { "DViCO FusionHDTV DVB-T USB (LGZ201)", |
| 620 | { &cxusb_table[5], NULL }, |
| 621 | { &cxusb_table[6], NULL }, |
| 622 | }, |
| 623 | } |
| 624 | }; |
| 625 | |
| 626 | static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties = { |
| 627 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 628 | |
| 629 | .usb_ctrl = DEVICE_SPECIFIC, |
| 630 | .firmware = "dvb-usb-bluebird-01.fw", |
| 631 | .download_firmware = bluebird_patch_dvico_firmware_download, |
| 632 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 633 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 634 | |
| 635 | .size_of_priv = sizeof(struct cxusb_state), |
| 636 | |
| 637 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 638 | .power_ctrl = cxusb_power_ctrl, |
| 639 | .frontend_attach = cxusb_mt352_frontend_attach, |
| 640 | .tuner_attach = cxusb_dtt7579_tuner_attach, |
| 641 | |
| 642 | .i2c_algo = &cxusb_i2c_algo, |
| 643 | |
| 644 | .generic_bulk_ctrl_endpoint = 0x01, |
| 645 | /* parameter for the MPEG2-data transfer */ |
| 646 | .urb = { |
| 647 | .type = DVB_USB_BULK, |
| 648 | .count = 5, |
| 649 | .endpoint = 0x04, |
| 650 | .u = { |
| 651 | .bulk = { |
| 652 | .buffersize = 8192, |
| 653 | } |
| 654 | } |
| 655 | }, |
| 656 | |
| 657 | .num_device_descs = 1, |
| 658 | .devices = { |
| 659 | { "DViCO FusionHDTV DVB-T USB (TH7579)", |
| 660 | { &cxusb_table[7], NULL }, |
| 661 | { &cxusb_table[8], NULL }, |
| 662 | }, |
| 663 | } |
| 664 | }; |
| 665 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 666 | static struct usb_driver cxusb_driver = { |
Patrick Boettcher | 63b5c1c | 2005-07-07 17:58:30 -0700 | [diff] [blame] | 667 | .name = "dvb_usb_cxusb", |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 668 | .probe = cxusb_probe, |
| 669 | .disconnect = dvb_usb_device_exit, |
| 670 | .id_table = cxusb_table, |
| 671 | }; |
| 672 | |
| 673 | /* module stuff */ |
| 674 | static int __init cxusb_module_init(void) |
| 675 | { |
| 676 | int result; |
| 677 | if ((result = usb_register(&cxusb_driver))) { |
| 678 | err("usb_register failed. Error number %d",result); |
| 679 | return result; |
| 680 | } |
| 681 | |
| 682 | return 0; |
| 683 | } |
| 684 | |
| 685 | static void __exit cxusb_module_exit(void) |
| 686 | { |
| 687 | /* deregister this driver from the USB subsystem */ |
| 688 | usb_deregister(&cxusb_driver); |
| 689 | } |
| 690 | |
| 691 | module_init (cxusb_module_init); |
| 692 | module_exit (cxusb_module_exit); |
| 693 | |
| 694 | MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>"); |
Michael Krufky | f4efb4d | 2006-01-13 14:10:25 -0200 | [diff] [blame] | 695 | MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>"); |
| 696 | MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 697 | MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design"); |
| 698 | MODULE_VERSION("1.0-alpha"); |
| 699 | MODULE_LICENSE("GPL"); |