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" |
Michael Krufky | 81ad3428 | 2006-04-24 23:21:46 -0300 | [diff] [blame] | 30 | #include "lg_h06xf.h" |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 31 | #include "mt352.h" |
| 32 | #include "mt352_priv.h" |
Michael Krufky | c9ce394 | 2006-06-11 04:24:31 -0300 | [diff] [blame] | 33 | #include "zl10353.h" |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 34 | |
| 35 | /* debug */ |
| 36 | int dvb_usb_cxusb_debug; |
| 37 | module_param_named(debug,dvb_usb_cxusb_debug, int, 0644); |
| 38 | MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS); |
| 39 | |
| 40 | static 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 Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 57 | /* GPIO */ |
| 58 | static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 59 | { |
| 60 | struct cxusb_state *st = d->priv; |
| 61 | u8 o[2],i; |
| 62 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 63 | if (st->gpio_write_state[GPIO_TUNER] == onoff) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 64 | return; |
| 65 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 66 | o[0] = GPIO_TUNER; |
| 67 | o[1] = onoff; |
| 68 | cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 69 | |
| 70 | if (i != 0x01) |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 71 | deb_info("gpio_write failed.\n"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 72 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 73 | st->gpio_write_state[GPIO_TUNER] = onoff; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 76 | /* I2C */ |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 77 | static 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 Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 82 | if (mutex_lock_interruptible(&d->i2c_mutex) < 0) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 83 | return -EAGAIN; |
| 84 | |
| 85 | if (num > 2) |
Michael Krufky | 4d6e772 | 2006-03-23 00:55:23 -0300 | [diff] [blame] | 86 | warn("more than two i2c messages at a time is not handled yet. TODO."); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 87 | |
| 88 | for (i = 0; i < num; i++) { |
| 89 | |
Michael Krufky | 5e805ef | 2006-03-23 00:01:34 -0300 | [diff] [blame] | 90 | 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 Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 99 | |
| 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 Krufky | ae62e3d | 2006-03-23 01:11:18 -0300 | [diff] [blame] | 114 | deb_i2c("i2c read may have failed\n"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 115 | |
| 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 Krufky | ae62e3d | 2006-03-23 01:11:18 -0300 | [diff] [blame] | 128 | deb_i2c("i2c write may have failed\n"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 129 | } |
| 130 | } |
| 131 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 132 | mutex_unlock(&d->i2c_mutex); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 133 | return i; |
| 134 | } |
| 135 | |
| 136 | static u32 cxusb_i2c_func(struct i2c_adapter *adapter) |
| 137 | { |
| 138 | return I2C_FUNC_I2C; |
| 139 | } |
| 140 | |
| 141 | static struct i2c_algorithm cxusb_i2c_algo = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 142 | .master_xfer = cxusb_i2c_xfer, |
| 143 | .functionality = cxusb_i2c_func, |
| 144 | }; |
| 145 | |
| 146 | static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff) |
| 147 | { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 148 | 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 Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Michael Krufky | 5691c84 | 2006-04-19 20:40:01 -0300 | [diff] [blame] | 155 | static 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 Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 164 | static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 165 | { |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 166 | u8 buf[2] = { 0x03, 0x00 }; |
| 167 | if (onoff) |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 168 | cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0); |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 169 | else |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 170 | cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0); |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 171 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 172 | return 0; |
| 173 | } |
| 174 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 175 | static 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 Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 178 | u8 ircode[4]; |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 179 | int i; |
| 180 | |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 181 | cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4); |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 182 | |
| 183 | *event = 0; |
| 184 | *state = REMOTE_NO_KEY_PRESSED; |
| 185 | |
| 186 | for (i = 0; i < d->props.rc_key_map_size; i++) { |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 187 | if (keymap[i].custom == ircode[2] && |
| 188 | keymap[i].data == ircode[3]) { |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 189 | *event = keymap[i].event; |
| 190 | *state = REMOTE_KEY_PRESSED; |
| 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 199 | static struct dvb_usb_rc_key dvico_mce_rc_keys[] = { |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 200 | { 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 Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 247 | static 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 Krufky | dbcb86e | 2006-03-26 18:59:45 -0300 | [diff] [blame] | 260 | { 0xfc, 0x16, KEY_CAMERA }, |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 261 | { 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 Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 286 | static int cxusb_dee1601_demod_init(struct dvb_frontend* fe) |
| 287 | { |
Chris Pascoe | d9ed881 | 2006-02-07 06:49:11 -0200 | [diff] [blame] | 288 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 }; |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 289 | 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 Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 307 | static int cxusb_mt352_demod_init(struct dvb_frontend* fe) |
| 308 | { /* used in both lgz201 and th7579 */ |
Michael Krufky | fb51fd2 | 2006-02-07 06:49:12 -0200 | [diff] [blame] | 309 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 }; |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 310 | 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 | |
Andrew de Quincey | b12faef | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 327 | static int cxusb_lgh064f_tuner_set_params(struct dvb_frontend *fe, |
| 328 | struct dvb_frontend_parameters *fep) |
Michael Krufky | 8d6cdd2 | 2006-04-16 13:19:24 -0300 | [diff] [blame] | 329 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 330 | struct dvb_usb_adapter *adap = fe->dvb->priv; |
| 331 | return lg_h06xf_pll_set(fe, &adap->dev->i2c_adap, fep); |
Michael Krufky | 8d6cdd2 | 2006-04-16 13:19:24 -0300 | [diff] [blame] | 332 | } |
| 333 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 334 | static struct cx22702_config cxusb_cx22702_config = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 335 | .demod_address = 0x63, |
| 336 | |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 337 | .output_mode = CX22702_PARALLEL_OUTPUT, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 338 | }; |
| 339 | |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 340 | static struct lgdt330x_config cxusb_lgdt3303_config = { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 341 | .demod_address = 0x0e, |
| 342 | .demod_chip = LGDT3303, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 343 | }; |
| 344 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 345 | static struct mt352_config cxusb_dee1601_config = { |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 346 | .demod_address = 0x0f, |
| 347 | .demod_init = cxusb_dee1601_demod_init, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 348 | }; |
| 349 | |
Michael Krufky | c9ce394 | 2006-06-11 04:24:31 -0300 | [diff] [blame] | 350 | static struct zl10353_config cxusb_zl10353_dee1601_config = { |
| 351 | .demod_address = 0x0f, |
Chris Pascoe | 8fb9578 | 2006-08-10 03:17:16 -0300 | [diff] [blame] | 352 | .parallel_ts = 1, |
Michael Krufky | c9ce394 | 2006-06-11 04:24:31 -0300 | [diff] [blame] | 353 | }; |
| 354 | |
Adrian Bunk | 6fe00b0 | 2006-04-19 20:49:28 -0300 | [diff] [blame] | 355 | static struct mt352_config cxusb_mt352_config = { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 356 | /* used in both lgz201 and th7579 */ |
| 357 | .demod_address = 0x0f, |
| 358 | .demod_init = cxusb_mt352_demod_init, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 359 | }; |
| 360 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 361 | /* Callbacks for DVB USB */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 362 | static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 363 | { |
| 364 | u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 }; |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 365 | adap->pll_addr = 0x61; |
| 366 | memcpy(adap->pll_init, bpll, 4); |
| 367 | adap->pll_desc = &dvb_pll_fmd1216me; |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 368 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 369 | adap->fe->ops.tuner_ops.init = dvb_usb_tuner_init_i2c; |
| 370 | adap->fe->ops.tuner_ops.set_params = dvb_usb_tuner_set_params_i2c; |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 371 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 372 | return 0; |
| 373 | } |
| 374 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 375 | static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 376 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 377 | adap->pll_addr = 0x61; |
| 378 | adap->pll_desc = &dvb_pll_thomson_dtt7579; |
| 379 | adap->fe->ops.tuner_ops.calc_regs = dvb_usb_tuner_calc_regs; |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 383 | static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap) |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 384 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 385 | adap->pll_addr = 0x61; |
| 386 | adap->pll_desc = &dvb_pll_lg_z201; |
| 387 | adap->fe->ops.tuner_ops.calc_regs = dvb_usb_tuner_calc_regs; |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 388 | return 0; |
| 389 | } |
| 390 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 391 | static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap) |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 392 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 393 | adap->pll_addr = 0x60; |
| 394 | adap->pll_desc = &dvb_pll_thomson_dtt7579; |
| 395 | adap->fe->ops.tuner_ops.calc_regs = dvb_usb_tuner_calc_regs; |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 396 | return 0; |
| 397 | } |
| 398 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 399 | static int cxusb_lgdt3303_tuner_attach(struct dvb_usb_adapter *adap) |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 400 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 401 | adap->fe->ops.tuner_ops.set_params = cxusb_lgh064f_tuner_set_params; |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 402 | return 0; |
| 403 | } |
| 404 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 405 | static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 406 | { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 407 | u8 b; |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 408 | if (usb_set_interface(adap->dev->udev, 0, 6) < 0) |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 409 | err("set interface failed"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 410 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 411 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 412 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 413 | if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config, &adap->dev->i2c_adap)) != NULL) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 414 | return 0; |
| 415 | |
| 416 | return -EIO; |
| 417 | } |
| 418 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 419 | static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 420 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 421 | if (usb_set_interface(adap->dev->udev, 0, 7) < 0) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 422 | err("set interface failed"); |
| 423 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 424 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0); |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 425 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 426 | if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config, &adap->dev->i2c_adap)) != NULL) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 427 | return 0; |
| 428 | |
| 429 | return -EIO; |
| 430 | } |
| 431 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 432 | static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 433 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 434 | /* used in both lgz201 and th7579 */ |
| 435 | if (usb_set_interface(adap->dev->udev, 0, 0) < 0) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 436 | err("set interface failed"); |
| 437 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 438 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0); |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 439 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 440 | if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config, &adap->dev->i2c_adap)) != NULL) |
| 441 | return 0; |
| 442 | |
| 443 | return -EIO; |
| 444 | } |
| 445 | |
| 446 | static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap) |
| 447 | { |
| 448 | if (usb_set_interface(adap->dev->udev, 0, 0) < 0) |
| 449 | err("set interface failed"); |
| 450 | |
| 451 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0); |
| 452 | |
| 453 | if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config, &adap->dev->i2c_adap)) != NULL) || |
| 454 | ((adap->fe = dvb_attach(zl10353_attach, &cxusb_zl10353_dee1601_config, &adap->dev->i2c_adap)) != NULL)) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 455 | return 0; |
| 456 | |
| 457 | return -EIO; |
| 458 | } |
| 459 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 460 | /* |
| 461 | * DViCO bluebird firmware needs the "warm" product ID to be patched into the |
| 462 | * firmware file before download. |
| 463 | */ |
| 464 | |
| 465 | #define BLUEBIRD_01_ID_OFFSET 6638 |
| 466 | static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw) |
| 467 | { |
| 468 | if (fw->size < BLUEBIRD_01_ID_OFFSET + 4) |
| 469 | return -EINVAL; |
| 470 | |
| 471 | if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) && |
| 472 | fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) { |
| 473 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 474 | fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1; |
| 475 | fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8; |
| 476 | |
| 477 | return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2); |
| 478 | } |
| 479 | |
| 480 | return -EINVAL; |
| 481 | } |
| 482 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 483 | /* DVB USB Driver stuff */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 484 | static struct dvb_usb_device_properties cxusb_medion_properties; |
| 485 | static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties; |
| 486 | static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties; |
| 487 | static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties; |
| 488 | static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 489 | |
| 490 | static int cxusb_probe(struct usb_interface *intf, |
| 491 | const struct usb_device_id *id) |
| 492 | { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 493 | 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] | 494 | 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] | 495 | dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 || |
| 496 | dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 || |
| 497 | 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] | 498 | return 0; |
| 499 | } |
| 500 | |
| 501 | return -EINVAL; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | static struct usb_device_id cxusb_table [] = { |
| 505 | { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) }, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 506 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) }, |
| 507 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) }, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 508 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) }, |
| 509 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) }, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 510 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) }, |
| 511 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) }, |
| 512 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) }, |
| 513 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) }, |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 514 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_COLD) }, |
| 515 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_WARM) }, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 516 | {} /* Terminating entry */ |
| 517 | }; |
| 518 | MODULE_DEVICE_TABLE (usb, cxusb_table); |
| 519 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 520 | static struct dvb_usb_device_properties cxusb_medion_properties = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 521 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 522 | |
| 523 | .usb_ctrl = CYPRESS_FX2, |
| 524 | |
| 525 | .size_of_priv = sizeof(struct cxusb_state), |
| 526 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 527 | .num_adapters = 1, |
| 528 | .adapter = { |
| 529 | { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 530 | .streaming_ctrl = cxusb_streaming_ctrl, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 531 | .frontend_attach = cxusb_cx22702_frontend_attach, |
| 532 | .tuner_attach = cxusb_fmd1216me_tuner_attach, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 533 | /* parameter for the MPEG2-data transfer */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 534 | .stream = { |
| 535 | .type = USB_BULK, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 536 | .count = 5, |
| 537 | .endpoint = 0x02, |
| 538 | .u = { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 539 | .bulk = { |
| 540 | .buffersize = 8192, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 541 | } |
| 542 | } |
| 543 | }, |
| 544 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 545 | }, |
| 546 | }, |
| 547 | .power_ctrl = cxusb_power_ctrl, |
| 548 | |
| 549 | .i2c_algo = &cxusb_i2c_algo, |
| 550 | |
| 551 | .generic_bulk_ctrl_endpoint = 0x01, |
| 552 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 553 | .num_device_descs = 1, |
| 554 | .devices = { |
| 555 | { "Medion MD95700 (MDUSBTV-HYBRID)", |
| 556 | { NULL }, |
| 557 | { &cxusb_table[0], NULL }, |
| 558 | }, |
| 559 | } |
| 560 | }; |
| 561 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 562 | static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 563 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 564 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 565 | .usb_ctrl = DEVICE_SPECIFIC, |
| 566 | .firmware = "dvb-usb-bluebird-01.fw", |
| 567 | .download_firmware = bluebird_patch_dvico_firmware_download, |
Michael Krufky | 37bdfa0 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 568 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 569 | use usb alt setting 7 for EP2 transfer (atsc) */ |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 570 | |
| 571 | .size_of_priv = sizeof(struct cxusb_state), |
| 572 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 573 | .num_adapters = 1, |
| 574 | .adapter = { |
| 575 | { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 576 | .streaming_ctrl = cxusb_streaming_ctrl, |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 577 | .frontend_attach = cxusb_lgdt3303_frontend_attach, |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 578 | .tuner_attach = cxusb_lgdt3303_tuner_attach, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 579 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 580 | /* parameter for the MPEG2-data transfer */ |
| 581 | .stream = { |
| 582 | .type = USB_BULK, |
| 583 | .count = 5, |
| 584 | .endpoint = 0x02, |
| 585 | .u = { |
| 586 | .bulk = { |
| 587 | .buffersize = 8192, |
| 588 | } |
| 589 | } |
| 590 | }, |
| 591 | }, |
| 592 | }, |
| 593 | |
| 594 | .power_ctrl = cxusb_bluebird_power_ctrl, |
| 595 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 596 | .i2c_algo = &cxusb_i2c_algo, |
| 597 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 598 | .rc_interval = 100, |
| 599 | .rc_key_map = dvico_portable_rc_keys, |
| 600 | .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys), |
| 601 | .rc_query = cxusb_rc_query, |
| 602 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 603 | .generic_bulk_ctrl_endpoint = 0x01, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 604 | |
| 605 | .num_device_descs = 1, |
| 606 | .devices = { |
| 607 | { "DViCO FusionHDTV5 USB Gold", |
| 608 | { &cxusb_table[1], NULL }, |
| 609 | { &cxusb_table[2], NULL }, |
| 610 | }, |
| 611 | } |
| 612 | }; |
| 613 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 614 | static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = { |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 615 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 616 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 617 | .usb_ctrl = DEVICE_SPECIFIC, |
| 618 | .firmware = "dvb-usb-bluebird-01.fw", |
| 619 | .download_firmware = bluebird_patch_dvico_firmware_download, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 620 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 621 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 622 | |
| 623 | .size_of_priv = sizeof(struct cxusb_state), |
| 624 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 625 | .num_adapters = 1, |
| 626 | .adapter = { |
| 627 | { |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 628 | .streaming_ctrl = cxusb_streaming_ctrl, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 629 | .frontend_attach = cxusb_dee1601_frontend_attach, |
| 630 | .tuner_attach = cxusb_dee1601_tuner_attach, |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 631 | /* parameter for the MPEG2-data transfer */ |
| 632 | .stream = { |
| 633 | .type = USB_BULK, |
| 634 | .count = 5, |
| 635 | .endpoint = 0x04, |
| 636 | .u = { |
| 637 | .bulk = { |
| 638 | .buffersize = 8192, |
| 639 | } |
| 640 | } |
| 641 | }, |
| 642 | }, |
| 643 | }, |
| 644 | |
| 645 | .power_ctrl = cxusb_bluebird_power_ctrl, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 646 | |
| 647 | .i2c_algo = &cxusb_i2c_algo, |
| 648 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 649 | .rc_interval = 150, |
| 650 | .rc_key_map = dvico_mce_rc_keys, |
| 651 | .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys), |
| 652 | .rc_query = cxusb_rc_query, |
| 653 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 654 | .generic_bulk_ctrl_endpoint = 0x01, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 655 | |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 656 | .num_device_descs = 2, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 657 | .devices = { |
| 658 | { "DViCO FusionHDTV DVB-T Dual USB", |
| 659 | { &cxusb_table[3], NULL }, |
| 660 | { &cxusb_table[4], NULL }, |
| 661 | }, |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 662 | { "DigitalNow DVB-T Dual USB", |
| 663 | { &cxusb_table[9], NULL }, |
| 664 | { &cxusb_table[10], NULL }, |
| 665 | }, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 666 | } |
| 667 | }; |
| 668 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 669 | static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 670 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 671 | |
| 672 | .usb_ctrl = DEVICE_SPECIFIC, |
| 673 | .firmware = "dvb-usb-bluebird-01.fw", |
| 674 | .download_firmware = bluebird_patch_dvico_firmware_download, |
| 675 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 676 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 677 | |
| 678 | .size_of_priv = sizeof(struct cxusb_state), |
| 679 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 680 | .num_adapters = 2, |
| 681 | .adapter = { |
| 682 | { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 683 | .streaming_ctrl = cxusb_streaming_ctrl, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 684 | .frontend_attach = cxusb_mt352_frontend_attach, |
| 685 | .tuner_attach = cxusb_lgz201_tuner_attach, |
| 686 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 687 | /* parameter for the MPEG2-data transfer */ |
| 688 | .stream = { |
| 689 | .type = USB_BULK, |
| 690 | .count = 5, |
| 691 | .endpoint = 0x04, |
| 692 | .u = { |
| 693 | .bulk = { |
| 694 | .buffersize = 8192, |
| 695 | } |
| 696 | } |
| 697 | }, |
| 698 | }, |
| 699 | }, |
| 700 | .power_ctrl = cxusb_bluebird_power_ctrl, |
| 701 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 702 | .i2c_algo = &cxusb_i2c_algo, |
| 703 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 704 | .rc_interval = 100, |
| 705 | .rc_key_map = dvico_portable_rc_keys, |
| 706 | .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys), |
| 707 | .rc_query = cxusb_rc_query, |
| 708 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 709 | .generic_bulk_ctrl_endpoint = 0x01, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 710 | .num_device_descs = 1, |
| 711 | .devices = { |
| 712 | { "DViCO FusionHDTV DVB-T USB (LGZ201)", |
| 713 | { &cxusb_table[5], NULL }, |
| 714 | { &cxusb_table[6], NULL }, |
| 715 | }, |
| 716 | } |
| 717 | }; |
| 718 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 719 | static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 720 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 721 | |
| 722 | .usb_ctrl = DEVICE_SPECIFIC, |
| 723 | .firmware = "dvb-usb-bluebird-01.fw", |
| 724 | .download_firmware = bluebird_patch_dvico_firmware_download, |
| 725 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 726 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 727 | |
| 728 | .size_of_priv = sizeof(struct cxusb_state), |
| 729 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 730 | .num_adapters = 1, |
| 731 | .adapter = { |
| 732 | { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 733 | .streaming_ctrl = cxusb_streaming_ctrl, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 734 | .frontend_attach = cxusb_mt352_frontend_attach, |
| 735 | .tuner_attach = cxusb_dtt7579_tuner_attach, |
| 736 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 737 | /* parameter for the MPEG2-data transfer */ |
| 738 | .stream = { |
| 739 | .type = USB_BULK, |
| 740 | .count = 5, |
| 741 | .endpoint = 0x04, |
| 742 | .u = { |
| 743 | .bulk = { |
| 744 | .buffersize = 8192, |
| 745 | } |
| 746 | } |
| 747 | }, |
| 748 | }, |
| 749 | }, |
| 750 | .power_ctrl = cxusb_bluebird_power_ctrl, |
| 751 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 752 | .i2c_algo = &cxusb_i2c_algo, |
| 753 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 754 | .rc_interval = 100, |
| 755 | .rc_key_map = dvico_portable_rc_keys, |
| 756 | .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys), |
| 757 | .rc_query = cxusb_rc_query, |
| 758 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 759 | .generic_bulk_ctrl_endpoint = 0x01, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 760 | |
| 761 | .num_device_descs = 1, |
| 762 | .devices = { |
| 763 | { "DViCO FusionHDTV DVB-T USB (TH7579)", |
| 764 | { &cxusb_table[7], NULL }, |
| 765 | { &cxusb_table[8], NULL }, |
| 766 | }, |
| 767 | } |
| 768 | }; |
| 769 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 770 | static struct usb_driver cxusb_driver = { |
Patrick Boettcher | 63b5c1c | 2005-07-07 17:58:30 -0700 | [diff] [blame] | 771 | .name = "dvb_usb_cxusb", |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 772 | .probe = cxusb_probe, |
| 773 | .disconnect = dvb_usb_device_exit, |
| 774 | .id_table = cxusb_table, |
| 775 | }; |
| 776 | |
| 777 | /* module stuff */ |
| 778 | static int __init cxusb_module_init(void) |
| 779 | { |
| 780 | int result; |
| 781 | if ((result = usb_register(&cxusb_driver))) { |
| 782 | err("usb_register failed. Error number %d",result); |
| 783 | return result; |
| 784 | } |
| 785 | |
| 786 | return 0; |
| 787 | } |
| 788 | |
| 789 | static void __exit cxusb_module_exit(void) |
| 790 | { |
| 791 | /* deregister this driver from the USB subsystem */ |
| 792 | usb_deregister(&cxusb_driver); |
| 793 | } |
| 794 | |
| 795 | module_init (cxusb_module_init); |
| 796 | module_exit (cxusb_module_exit); |
| 797 | |
| 798 | MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>"); |
Michael Krufky | f4efb4d | 2006-01-13 14:10:25 -0200 | [diff] [blame] | 799 | MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>"); |
| 800 | MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 801 | MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design"); |
| 802 | MODULE_VERSION("1.0-alpha"); |
| 803 | MODULE_LICENSE("GPL"); |