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 | 5b9ed28 | 2006-10-15 14:51:08 -0300 | [diff] [blame] | 17 | * Copyright (C) 2006 Michael Krufky (mkrufky@linuxtv.org) |
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 | * |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 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. |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 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" |
Michael Krufky | c9ce394 | 2006-06-11 04:24:31 -0300 | [diff] [blame] | 32 | #include "zl10353.h" |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 33 | |
| 34 | /* debug */ |
Adrian Bunk | 53133af | 2007-11-05 14:07:06 -0300 | [diff] [blame] | 35 | static int dvb_usb_cxusb_debug; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 36 | module_param_named(debug, dvb_usb_cxusb_debug, int, 0644); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 37 | MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS); |
Adrian Bunk | 53133af | 2007-11-05 14:07:06 -0300 | [diff] [blame] | 38 | #define deb_info(args...) dprintk(dvb_usb_cxusb_debug,0x01,args) |
| 39 | #define deb_i2c(args...) if (d->udev->descriptor.idVendor == USB_VID_MEDION) \ |
| 40 | dprintk(dvb_usb_cxusb_debug,0x01,args) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 41 | |
| 42 | static int cxusb_ctrl_msg(struct dvb_usb_device *d, |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 43 | u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 44 | { |
| 45 | int wo = (rbuf == NULL || rlen == 0); /* write-only */ |
| 46 | u8 sndbuf[1+wlen]; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 47 | memset(sndbuf, 0, 1+wlen); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 48 | |
| 49 | sndbuf[0] = cmd; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 50 | memcpy(&sndbuf[1], wbuf, wlen); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 51 | if (wo) |
Chris Pascoe | b17f109 | 2007-11-19 02:42:44 -0300 | [diff] [blame] | 52 | return dvb_usb_generic_write(d, sndbuf, 1+wlen); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 53 | else |
Chris Pascoe | b17f109 | 2007-11-19 02:42:44 -0300 | [diff] [blame] | 54 | return dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 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; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 61 | u8 o[2], i; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 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; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 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 */ |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 77 | static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], |
| 78 | int num) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 79 | { |
| 80 | struct dvb_usb_device *d = i2c_get_adapdata(adap); |
| 81 | int i; |
| 82 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 83 | if (mutex_lock_interruptible(&d->i2c_mutex) < 0) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 84 | return -EAGAIN; |
| 85 | |
| 86 | if (num > 2) |
Michael Krufky | 4d6e772 | 2006-03-23 00:55:23 -0300 | [diff] [blame] | 87 | 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] | 88 | |
| 89 | for (i = 0; i < num; i++) { |
| 90 | |
Michael Krufky | 5e805ef | 2006-03-23 00:01:34 -0300 | [diff] [blame] | 91 | if (d->udev->descriptor.idVendor == USB_VID_MEDION) |
| 92 | switch (msg[i].addr) { |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 93 | case 0x63: |
| 94 | cxusb_gpio_tuner(d, 0); |
| 95 | break; |
| 96 | default: |
| 97 | cxusb_gpio_tuner(d, 1); |
| 98 | break; |
Michael Krufky | 5e805ef | 2006-03-23 00:01:34 -0300 | [diff] [blame] | 99 | } |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 100 | |
Chris Pascoe | 272479d7 | 2007-11-19 03:01:22 -0300 | [diff] [blame^] | 101 | if (msg[i].flags & I2C_M_RD) { |
| 102 | /* read only */ |
| 103 | u8 obuf[3], ibuf[1+msg[i].len]; |
| 104 | obuf[0] = 0; |
| 105 | obuf[1] = msg[i].len; |
| 106 | obuf[2] = msg[i].addr; |
| 107 | if (cxusb_ctrl_msg(d, CMD_I2C_READ, |
| 108 | obuf, 3, |
| 109 | ibuf, 1+msg[i].len) < 0) { |
| 110 | warn("i2c read failed"); |
| 111 | break; |
| 112 | } |
| 113 | memcpy(msg[i].buf, &ibuf[1], msg[i].len); |
| 114 | } else if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) { |
| 115 | /* write then read */ |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 116 | u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len]; |
| 117 | obuf[0] = msg[i].len; |
| 118 | obuf[1] = msg[i+1].len; |
| 119 | obuf[2] = msg[i].addr; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 120 | memcpy(&obuf[3], msg[i].buf, msg[i].len); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 121 | |
| 122 | if (cxusb_ctrl_msg(d, CMD_I2C_READ, |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 123 | obuf, 3+msg[i].len, |
| 124 | ibuf, 1+msg[i+1].len) < 0) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 125 | break; |
| 126 | |
| 127 | if (ibuf[0] != 0x08) |
Michael Krufky | ae62e3d | 2006-03-23 01:11:18 -0300 | [diff] [blame] | 128 | deb_i2c("i2c read may have failed\n"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 129 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 130 | memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 131 | |
| 132 | i++; |
Chris Pascoe | 272479d7 | 2007-11-19 03:01:22 -0300 | [diff] [blame^] | 133 | } else { |
| 134 | /* write only */ |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 135 | u8 obuf[2+msg[i].len], ibuf; |
| 136 | obuf[0] = msg[i].addr; |
| 137 | obuf[1] = msg[i].len; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 138 | memcpy(&obuf[2], msg[i].buf, msg[i].len); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 139 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 140 | if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf, |
| 141 | 2+msg[i].len, &ibuf,1) < 0) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 142 | break; |
| 143 | if (ibuf != 0x08) |
Michael Krufky | ae62e3d | 2006-03-23 01:11:18 -0300 | [diff] [blame] | 144 | deb_i2c("i2c write may have failed\n"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
Ingo Molnar | 3593cab | 2006-02-07 06:49:14 -0200 | [diff] [blame] | 148 | mutex_unlock(&d->i2c_mutex); |
Chris Pascoe | 13e001d | 2007-11-19 02:48:27 -0300 | [diff] [blame] | 149 | return i == num ? num : -EREMOTEIO; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static u32 cxusb_i2c_func(struct i2c_adapter *adapter) |
| 153 | { |
| 154 | return I2C_FUNC_I2C; |
| 155 | } |
| 156 | |
| 157 | static struct i2c_algorithm cxusb_i2c_algo = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 158 | .master_xfer = cxusb_i2c_xfer, |
| 159 | .functionality = cxusb_i2c_func, |
| 160 | }; |
| 161 | |
| 162 | static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff) |
| 163 | { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 164 | u8 b = 0; |
| 165 | if (onoff) |
| 166 | return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0); |
| 167 | else |
| 168 | return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Michael Krufky | 5691c84 | 2006-04-19 20:40:01 -0300 | [diff] [blame] | 171 | static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff) |
| 172 | { |
| 173 | u8 b = 0; |
| 174 | if (onoff) |
| 175 | return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0); |
| 176 | else |
| 177 | return 0; |
| 178 | } |
| 179 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 180 | static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 181 | { |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 182 | u8 buf[2] = { 0x03, 0x00 }; |
| 183 | if (onoff) |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 184 | cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0); |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 185 | else |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 186 | cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0); |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 187 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 188 | return 0; |
| 189 | } |
| 190 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 191 | static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state) |
| 192 | { |
| 193 | struct dvb_usb_rc_key *keymap = d->props.rc_key_map; |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 194 | u8 ircode[4]; |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 195 | int i; |
| 196 | |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 197 | cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4); |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 198 | |
| 199 | *event = 0; |
| 200 | *state = REMOTE_NO_KEY_PRESSED; |
| 201 | |
| 202 | for (i = 0; i < d->props.rc_key_map_size; i++) { |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 203 | if (keymap[i].custom == ircode[2] && |
| 204 | keymap[i].data == ircode[3]) { |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 205 | *event = keymap[i].event; |
| 206 | *state = REMOTE_KEY_PRESSED; |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | return 0; |
| 213 | } |
| 214 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 215 | static struct dvb_usb_rc_key dvico_mce_rc_keys[] = { |
Michael Krufky | a07e609 | 2006-01-09 18:21:31 -0200 | [diff] [blame] | 216 | { 0xfe, 0x02, KEY_TV }, |
| 217 | { 0xfe, 0x0e, KEY_MP3 }, |
| 218 | { 0xfe, 0x1a, KEY_DVD }, |
| 219 | { 0xfe, 0x1e, KEY_FAVORITES }, |
| 220 | { 0xfe, 0x16, KEY_SETUP }, |
| 221 | { 0xfe, 0x46, KEY_POWER2 }, |
| 222 | { 0xfe, 0x0a, KEY_EPG }, |
| 223 | { 0xfe, 0x49, KEY_BACK }, |
| 224 | { 0xfe, 0x4d, KEY_MENU }, |
| 225 | { 0xfe, 0x51, KEY_UP }, |
| 226 | { 0xfe, 0x5b, KEY_LEFT }, |
| 227 | { 0xfe, 0x5f, KEY_RIGHT }, |
| 228 | { 0xfe, 0x53, KEY_DOWN }, |
| 229 | { 0xfe, 0x5e, KEY_OK }, |
| 230 | { 0xfe, 0x59, KEY_INFO }, |
| 231 | { 0xfe, 0x55, KEY_TAB }, |
| 232 | { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */ |
| 233 | { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */ |
| 234 | { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */ |
| 235 | { 0xfe, 0x15, KEY_VOLUMEUP }, |
| 236 | { 0xfe, 0x05, KEY_VOLUMEDOWN }, |
| 237 | { 0xfe, 0x11, KEY_CHANNELUP }, |
| 238 | { 0xfe, 0x09, KEY_CHANNELDOWN }, |
| 239 | { 0xfe, 0x52, KEY_CAMERA }, |
| 240 | { 0xfe, 0x5a, KEY_TUNER }, /* Live */ |
| 241 | { 0xfe, 0x19, KEY_OPEN }, |
| 242 | { 0xfe, 0x0b, KEY_1 }, |
| 243 | { 0xfe, 0x17, KEY_2 }, |
| 244 | { 0xfe, 0x1b, KEY_3 }, |
| 245 | { 0xfe, 0x07, KEY_4 }, |
| 246 | { 0xfe, 0x50, KEY_5 }, |
| 247 | { 0xfe, 0x54, KEY_6 }, |
| 248 | { 0xfe, 0x48, KEY_7 }, |
| 249 | { 0xfe, 0x4c, KEY_8 }, |
| 250 | { 0xfe, 0x58, KEY_9 }, |
| 251 | { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */ |
| 252 | { 0xfe, 0x03, KEY_0 }, |
| 253 | { 0xfe, 0x1f, KEY_ZOOM }, |
| 254 | { 0xfe, 0x43, KEY_REWIND }, |
| 255 | { 0xfe, 0x47, KEY_PLAYPAUSE }, |
| 256 | { 0xfe, 0x4f, KEY_FASTFORWARD }, |
| 257 | { 0xfe, 0x57, KEY_MUTE }, |
| 258 | { 0xfe, 0x0d, KEY_STOP }, |
| 259 | { 0xfe, 0x01, KEY_RECORD }, |
| 260 | { 0xfe, 0x4e, KEY_POWER }, |
| 261 | }; |
| 262 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 263 | static struct dvb_usb_rc_key dvico_portable_rc_keys[] = { |
| 264 | { 0xfc, 0x02, KEY_SETUP }, /* Profile */ |
| 265 | { 0xfc, 0x43, KEY_POWER2 }, |
| 266 | { 0xfc, 0x06, KEY_EPG }, |
| 267 | { 0xfc, 0x5a, KEY_BACK }, |
| 268 | { 0xfc, 0x05, KEY_MENU }, |
| 269 | { 0xfc, 0x47, KEY_INFO }, |
| 270 | { 0xfc, 0x01, KEY_TAB }, |
| 271 | { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */ |
| 272 | { 0xfc, 0x49, KEY_VOLUMEUP }, |
| 273 | { 0xfc, 0x09, KEY_VOLUMEDOWN }, |
| 274 | { 0xfc, 0x54, KEY_CHANNELUP }, |
| 275 | { 0xfc, 0x0b, KEY_CHANNELDOWN }, |
Michael Krufky | dbcb86e | 2006-03-26 18:59:45 -0300 | [diff] [blame] | 276 | { 0xfc, 0x16, KEY_CAMERA }, |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 277 | { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */ |
| 278 | { 0xfc, 0x45, KEY_OPEN }, |
| 279 | { 0xfc, 0x19, KEY_1 }, |
| 280 | { 0xfc, 0x18, KEY_2 }, |
| 281 | { 0xfc, 0x1b, KEY_3 }, |
| 282 | { 0xfc, 0x1a, KEY_4 }, |
| 283 | { 0xfc, 0x58, KEY_5 }, |
| 284 | { 0xfc, 0x59, KEY_6 }, |
| 285 | { 0xfc, 0x15, KEY_7 }, |
| 286 | { 0xfc, 0x14, KEY_8 }, |
| 287 | { 0xfc, 0x17, KEY_9 }, |
| 288 | { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */ |
| 289 | { 0xfc, 0x55, KEY_0 }, |
| 290 | { 0xfc, 0x07, KEY_ZOOM }, |
| 291 | { 0xfc, 0x0a, KEY_REWIND }, |
| 292 | { 0xfc, 0x08, KEY_PLAYPAUSE }, |
| 293 | { 0xfc, 0x4b, KEY_FASTFORWARD }, |
| 294 | { 0xfc, 0x5b, KEY_MUTE }, |
| 295 | { 0xfc, 0x04, KEY_STOP }, |
| 296 | { 0xfc, 0x56, KEY_RECORD }, |
| 297 | { 0xfc, 0x57, KEY_POWER }, |
| 298 | { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */ |
| 299 | { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */ |
| 300 | }; |
| 301 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 302 | static int cxusb_dee1601_demod_init(struct dvb_frontend* fe) |
| 303 | { |
Chris Pascoe | d9ed881 | 2006-02-07 06:49:11 -0200 | [diff] [blame] | 304 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 }; |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 305 | static u8 reset [] = { RESET, 0x80 }; |
| 306 | static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 }; |
| 307 | static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 }; |
| 308 | static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 }; |
| 309 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 310 | |
| 311 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 312 | udelay(200); |
| 313 | mt352_write(fe, reset, sizeof(reset)); |
| 314 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 315 | |
| 316 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 317 | mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg)); |
| 318 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 319 | |
| 320 | return 0; |
| 321 | } |
| 322 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 323 | static int cxusb_mt352_demod_init(struct dvb_frontend* fe) |
| 324 | { /* used in both lgz201 and th7579 */ |
Michael Krufky | fb51fd2 | 2006-02-07 06:49:12 -0200 | [diff] [blame] | 325 | static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 }; |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 326 | static u8 reset [] = { RESET, 0x80 }; |
| 327 | static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 }; |
| 328 | static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 }; |
| 329 | static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 }; |
| 330 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 331 | |
| 332 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 333 | udelay(200); |
| 334 | mt352_write(fe, reset, sizeof(reset)); |
| 335 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 336 | |
| 337 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 338 | mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg)); |
| 339 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 340 | return 0; |
| 341 | } |
| 342 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 343 | static struct cx22702_config cxusb_cx22702_config = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 344 | .demod_address = 0x63, |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 345 | .output_mode = CX22702_PARALLEL_OUTPUT, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 346 | }; |
| 347 | |
Michael Krufky | fddd632 | 2006-02-27 00:08:17 -0300 | [diff] [blame] | 348 | static struct lgdt330x_config cxusb_lgdt3303_config = { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 349 | .demod_address = 0x0e, |
| 350 | .demod_chip = LGDT3303, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 351 | }; |
| 352 | |
Adrian Bunk | 703cb2c | 2006-01-23 17:11:09 -0200 | [diff] [blame] | 353 | static struct mt352_config cxusb_dee1601_config = { |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 354 | .demod_address = 0x0f, |
| 355 | .demod_init = cxusb_dee1601_demod_init, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 356 | }; |
| 357 | |
Michael Krufky | c9ce394 | 2006-06-11 04:24:31 -0300 | [diff] [blame] | 358 | static struct zl10353_config cxusb_zl10353_dee1601_config = { |
| 359 | .demod_address = 0x0f, |
Chris Pascoe | 8fb9578 | 2006-08-10 03:17:16 -0300 | [diff] [blame] | 360 | .parallel_ts = 1, |
Michael Krufky | c9ce394 | 2006-06-11 04:24:31 -0300 | [diff] [blame] | 361 | }; |
| 362 | |
Adrian Bunk | 6fe00b0 | 2006-04-19 20:49:28 -0300 | [diff] [blame] | 363 | static struct mt352_config cxusb_mt352_config = { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 364 | /* used in both lgz201 and th7579 */ |
| 365 | .demod_address = 0x0f, |
| 366 | .demod_init = cxusb_mt352_demod_init, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 367 | }; |
| 368 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 369 | /* Callbacks for DVB USB */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 370 | static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 371 | { |
Trent Piepho | b7754d7 | 2007-05-08 18:05:16 -0300 | [diff] [blame] | 372 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 373 | DVB_PLL_FMD1216ME); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 374 | return 0; |
| 375 | } |
| 376 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 377 | static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 378 | { |
Michael Krufky | 79a54cb | 2006-12-05 14:20:06 -0300 | [diff] [blame] | 379 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 380 | NULL, DVB_PLL_THOMSON_DTT7579); |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 381 | return 0; |
| 382 | } |
| 383 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 384 | static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap) |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 385 | { |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 386 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201); |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 387 | return 0; |
| 388 | } |
| 389 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 390 | static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap) |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 391 | { |
Michael Krufky | 79a54cb | 2006-12-05 14:20:06 -0300 | [diff] [blame] | 392 | dvb_attach(dvb_pll_attach, adap->fe, 0x60, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 393 | NULL, DVB_PLL_THOMSON_DTT7579); |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 394 | return 0; |
| 395 | } |
| 396 | |
Michael Krufky | f71a56c | 2006-10-13 21:55:57 -0300 | [diff] [blame] | 397 | static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap) |
Patrick Boettcher | 332bed5 | 2006-05-14 04:49:00 -0300 | [diff] [blame] | 398 | { |
Trent Piepho | 6bdcc6e | 2007-04-27 12:31:30 -0300 | [diff] [blame] | 399 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 400 | DVB_PLL_LG_TDVS_H06XF); |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 401 | return 0; |
| 402 | } |
| 403 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 404 | static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 405 | { |
Patrick Boettcher | e2efeab | 2005-09-09 13:02:51 -0700 | [diff] [blame] | 406 | u8 b; |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 407 | if (usb_set_interface(adap->dev->udev, 0, 6) < 0) |
Patrick Boettcher | 8257e8a | 2005-07-07 17:58:15 -0700 | [diff] [blame] | 408 | err("set interface failed"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 409 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 410 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 411 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 412 | if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config, |
| 413 | &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 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 426 | if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config, |
| 427 | &adap->dev->i2c_adap)) != NULL) |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 428 | return 0; |
| 429 | |
| 430 | return -EIO; |
| 431 | } |
| 432 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 433 | static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 434 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 435 | /* used in both lgz201 and th7579 */ |
| 436 | if (usb_set_interface(adap->dev->udev, 0, 0) < 0) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 437 | err("set interface failed"); |
| 438 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 439 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0); |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 440 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 441 | if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config, |
| 442 | &adap->dev->i2c_adap)) != NULL) |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 443 | return 0; |
| 444 | |
| 445 | return -EIO; |
| 446 | } |
| 447 | |
| 448 | static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap) |
| 449 | { |
| 450 | if (usb_set_interface(adap->dev->udev, 0, 0) < 0) |
| 451 | err("set interface failed"); |
| 452 | |
| 453 | cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0); |
| 454 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 455 | if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config, |
| 456 | &adap->dev->i2c_adap)) != NULL) || |
| 457 | ((adap->fe = dvb_attach(zl10353_attach, |
| 458 | &cxusb_zl10353_dee1601_config, |
| 459 | &adap->dev->i2c_adap)) != NULL)) |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 460 | return 0; |
| 461 | |
| 462 | return -EIO; |
| 463 | } |
| 464 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 465 | /* |
| 466 | * DViCO bluebird firmware needs the "warm" product ID to be patched into the |
| 467 | * firmware file before download. |
| 468 | */ |
| 469 | |
| 470 | #define BLUEBIRD_01_ID_OFFSET 6638 |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 471 | static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, |
| 472 | const struct firmware *fw) |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 473 | { |
| 474 | if (fw->size < BLUEBIRD_01_ID_OFFSET + 4) |
| 475 | return -EINVAL; |
| 476 | |
| 477 | if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) && |
| 478 | fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) { |
| 479 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 480 | fw->data[BLUEBIRD_01_ID_OFFSET + 2] = |
Jin-Bong lee | 1d1370a | 2007-02-20 23:10:34 -0300 | [diff] [blame] | 481 | le16_to_cpu(udev->descriptor.idProduct) + 1; |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 482 | fw->data[BLUEBIRD_01_ID_OFFSET + 3] = |
Jin-Bong lee | 1d1370a | 2007-02-20 23:10:34 -0300 | [diff] [blame] | 483 | le16_to_cpu(udev->descriptor.idProduct) >> 8; |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 484 | |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 485 | return usb_cypress_load_firmware(udev, fw, CYPRESS_FX2); |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | return -EINVAL; |
| 489 | } |
| 490 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 491 | /* DVB USB Driver stuff */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 492 | static struct dvb_usb_device_properties cxusb_medion_properties; |
| 493 | static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties; |
| 494 | static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties; |
| 495 | static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties; |
| 496 | static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 497 | |
| 498 | static int cxusb_probe(struct usb_interface *intf, |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 499 | const struct usb_device_id *id) |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 500 | { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 501 | 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] | 502 | 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] | 503 | dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 || |
| 504 | dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 || |
| 505 | 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] | 506 | return 0; |
| 507 | } |
| 508 | |
| 509 | return -EINVAL; |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | static struct usb_device_id cxusb_table [] = { |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 513 | { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) }, |
| 514 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) }, |
| 515 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) }, |
| 516 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) }, |
| 517 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) }, |
| 518 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) }, |
| 519 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) }, |
| 520 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) }, |
| 521 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) }, |
| 522 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) }, |
| 523 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) }, |
| 524 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) }, |
| 525 | { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) }, |
| 526 | {} /* Terminating entry */ |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 527 | }; |
| 528 | MODULE_DEVICE_TABLE (usb, cxusb_table); |
| 529 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 530 | static struct dvb_usb_device_properties cxusb_medion_properties = { |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 531 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 532 | |
| 533 | .usb_ctrl = CYPRESS_FX2, |
| 534 | |
| 535 | .size_of_priv = sizeof(struct cxusb_state), |
| 536 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 537 | .num_adapters = 1, |
| 538 | .adapter = { |
| 539 | { |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 540 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 541 | .frontend_attach = cxusb_cx22702_frontend_attach, |
| 542 | .tuner_attach = cxusb_fmd1216me_tuner_attach, |
| 543 | /* parameter for the MPEG2-data transfer */ |
| 544 | .stream = { |
| 545 | .type = USB_BULK, |
| 546 | .count = 5, |
| 547 | .endpoint = 0x02, |
| 548 | .u = { |
| 549 | .bulk = { |
| 550 | .buffersize = 8192, |
| 551 | } |
| 552 | } |
| 553 | }, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 554 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 555 | }, |
| 556 | }, |
| 557 | .power_ctrl = cxusb_power_ctrl, |
| 558 | |
| 559 | .i2c_algo = &cxusb_i2c_algo, |
| 560 | |
| 561 | .generic_bulk_ctrl_endpoint = 0x01, |
| 562 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 563 | .num_device_descs = 1, |
| 564 | .devices = { |
| 565 | { "Medion MD95700 (MDUSBTV-HYBRID)", |
| 566 | { NULL }, |
| 567 | { &cxusb_table[0], NULL }, |
| 568 | }, |
| 569 | } |
| 570 | }; |
| 571 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 572 | static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = { |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 573 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 574 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 575 | .usb_ctrl = DEVICE_SPECIFIC, |
| 576 | .firmware = "dvb-usb-bluebird-01.fw", |
| 577 | .download_firmware = bluebird_patch_dvico_firmware_download, |
Michael Krufky | 37bdfa0 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 578 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 579 | use usb alt setting 7 for EP2 transfer (atsc) */ |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 580 | |
| 581 | .size_of_priv = sizeof(struct cxusb_state), |
| 582 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 583 | .num_adapters = 1, |
| 584 | .adapter = { |
| 585 | { |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 586 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 587 | .frontend_attach = cxusb_lgdt3303_frontend_attach, |
Michael Krufky | f71a56c | 2006-10-13 21:55:57 -0300 | [diff] [blame] | 588 | .tuner_attach = cxusb_lgh064f_tuner_attach, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 589 | |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 590 | /* parameter for the MPEG2-data transfer */ |
| 591 | .stream = { |
| 592 | .type = USB_BULK, |
| 593 | .count = 5, |
| 594 | .endpoint = 0x02, |
| 595 | .u = { |
| 596 | .bulk = { |
| 597 | .buffersize = 8192, |
| 598 | } |
| 599 | } |
| 600 | }, |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 601 | }, |
| 602 | }, |
| 603 | |
| 604 | .power_ctrl = cxusb_bluebird_power_ctrl, |
| 605 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 606 | .i2c_algo = &cxusb_i2c_algo, |
| 607 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 608 | .rc_interval = 100, |
| 609 | .rc_key_map = dvico_portable_rc_keys, |
| 610 | .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys), |
| 611 | .rc_query = cxusb_rc_query, |
| 612 | |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 613 | .generic_bulk_ctrl_endpoint = 0x01, |
Michael Krufky | effee03 | 2006-01-09 15:25:47 -0200 | [diff] [blame] | 614 | |
| 615 | .num_device_descs = 1, |
| 616 | .devices = { |
| 617 | { "DViCO FusionHDTV5 USB Gold", |
| 618 | { &cxusb_table[1], NULL }, |
| 619 | { &cxusb_table[2], NULL }, |
| 620 | }, |
| 621 | } |
| 622 | }; |
| 623 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 624 | static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = { |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 625 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 626 | |
Patrick Boettcher | f537378 | 2006-01-09 18:21:38 -0200 | [diff] [blame] | 627 | .usb_ctrl = DEVICE_SPECIFIC, |
| 628 | .firmware = "dvb-usb-bluebird-01.fw", |
| 629 | .download_firmware = bluebird_patch_dvico_firmware_download, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 630 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 631 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 632 | |
| 633 | .size_of_priv = sizeof(struct cxusb_state), |
| 634 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 635 | .num_adapters = 1, |
| 636 | .adapter = { |
| 637 | { |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 638 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 639 | .frontend_attach = cxusb_dee1601_frontend_attach, |
| 640 | .tuner_attach = cxusb_dee1601_tuner_attach, |
| 641 | /* parameter for the MPEG2-data transfer */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 642 | .stream = { |
| 643 | .type = USB_BULK, |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 644 | .count = 5, |
| 645 | .endpoint = 0x04, |
| 646 | .u = { |
| 647 | .bulk = { |
| 648 | .buffersize = 8192, |
| 649 | } |
| 650 | } |
| 651 | }, |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 652 | }, |
| 653 | }, |
| 654 | |
| 655 | .power_ctrl = cxusb_bluebird_power_ctrl, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 656 | |
| 657 | .i2c_algo = &cxusb_i2c_algo, |
| 658 | |
Chris Pascoe | 7c23970 | 2006-01-09 18:21:29 -0200 | [diff] [blame] | 659 | .rc_interval = 150, |
| 660 | .rc_key_map = dvico_mce_rc_keys, |
| 661 | .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys), |
| 662 | .rc_query = cxusb_rc_query, |
| 663 | |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 664 | .generic_bulk_ctrl_endpoint = 0x01, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 665 | |
Michael Krufky | 587c03d | 2006-09-28 02:16:01 -0300 | [diff] [blame] | 666 | .num_device_descs = 3, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 667 | .devices = { |
| 668 | { "DViCO FusionHDTV DVB-T Dual USB", |
| 669 | { &cxusb_table[3], NULL }, |
| 670 | { &cxusb_table[4], NULL }, |
| 671 | }, |
Michael Krufky | ac9ffb9 | 2006-01-11 23:21:00 -0200 | [diff] [blame] | 672 | { "DigitalNow DVB-T Dual USB", |
| 673 | { &cxusb_table[9], NULL }, |
| 674 | { &cxusb_table[10], NULL }, |
| 675 | }, |
Michael Krufky | 587c03d | 2006-09-28 02:16:01 -0300 | [diff] [blame] | 676 | { "DViCO FusionHDTV DVB-T Dual Digital 2", |
| 677 | { &cxusb_table[11], NULL }, |
| 678 | { &cxusb_table[12], NULL }, |
| 679 | }, |
Chris Pascoe | 0029ee1 | 2006-01-09 18:21:28 -0200 | [diff] [blame] | 680 | } |
| 681 | }; |
| 682 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 683 | static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 684 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 685 | |
| 686 | .usb_ctrl = DEVICE_SPECIFIC, |
| 687 | .firmware = "dvb-usb-bluebird-01.fw", |
| 688 | .download_firmware = bluebird_patch_dvico_firmware_download, |
| 689 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 690 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 691 | |
| 692 | .size_of_priv = sizeof(struct cxusb_state), |
| 693 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 694 | .num_adapters = 2, |
| 695 | .adapter = { |
| 696 | { |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 697 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 698 | .frontend_attach = cxusb_mt352_frontend_attach, |
| 699 | .tuner_attach = cxusb_lgz201_tuner_attach, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 700 | |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 701 | /* parameter for the MPEG2-data transfer */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 702 | .stream = { |
| 703 | .type = USB_BULK, |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 704 | .count = 5, |
| 705 | .endpoint = 0x04, |
| 706 | .u = { |
| 707 | .bulk = { |
| 708 | .buffersize = 8192, |
| 709 | } |
| 710 | } |
| 711 | }, |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 712 | }, |
| 713 | }, |
| 714 | .power_ctrl = cxusb_bluebird_power_ctrl, |
| 715 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 716 | .i2c_algo = &cxusb_i2c_algo, |
| 717 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 718 | .rc_interval = 100, |
| 719 | .rc_key_map = dvico_portable_rc_keys, |
| 720 | .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys), |
| 721 | .rc_query = cxusb_rc_query, |
| 722 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 723 | .generic_bulk_ctrl_endpoint = 0x01, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 724 | .num_device_descs = 1, |
| 725 | .devices = { |
| 726 | { "DViCO FusionHDTV DVB-T USB (LGZ201)", |
| 727 | { &cxusb_table[5], NULL }, |
| 728 | { &cxusb_table[6], NULL }, |
| 729 | }, |
| 730 | } |
| 731 | }; |
| 732 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 733 | static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = { |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 734 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 735 | |
| 736 | .usb_ctrl = DEVICE_SPECIFIC, |
| 737 | .firmware = "dvb-usb-bluebird-01.fw", |
| 738 | .download_firmware = bluebird_patch_dvico_firmware_download, |
| 739 | /* use usb alt setting 0 for EP4 transfer (dvb-t), |
| 740 | use usb alt setting 7 for EP2 transfer (atsc) */ |
| 741 | |
| 742 | .size_of_priv = sizeof(struct cxusb_state), |
| 743 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 744 | .num_adapters = 1, |
| 745 | .adapter = { |
| 746 | { |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 747 | .streaming_ctrl = cxusb_streaming_ctrl, |
| 748 | .frontend_attach = cxusb_mt352_frontend_attach, |
| 749 | .tuner_attach = cxusb_dtt7579_tuner_attach, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 750 | |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 751 | /* parameter for the MPEG2-data transfer */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 752 | .stream = { |
| 753 | .type = USB_BULK, |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 754 | .count = 5, |
| 755 | .endpoint = 0x04, |
| 756 | .u = { |
| 757 | .bulk = { |
| 758 | .buffersize = 8192, |
| 759 | } |
| 760 | } |
| 761 | }, |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 762 | }, |
| 763 | }, |
| 764 | .power_ctrl = cxusb_bluebird_power_ctrl, |
| 765 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 766 | .i2c_algo = &cxusb_i2c_algo, |
| 767 | |
Michael Krufky | c150178 | 2006-03-26 05:43:36 -0300 | [diff] [blame] | 768 | .rc_interval = 100, |
| 769 | .rc_key_map = dvico_portable_rc_keys, |
| 770 | .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys), |
| 771 | .rc_query = cxusb_rc_query, |
| 772 | |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 773 | .generic_bulk_ctrl_endpoint = 0x01, |
Michael Krufky | 6f44725 | 2006-01-11 19:40:33 -0200 | [diff] [blame] | 774 | |
| 775 | .num_device_descs = 1, |
| 776 | .devices = { |
| 777 | { "DViCO FusionHDTV DVB-T USB (TH7579)", |
| 778 | { &cxusb_table[7], NULL }, |
| 779 | { &cxusb_table[8], NULL }, |
| 780 | }, |
| 781 | } |
| 782 | }; |
| 783 | |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 784 | static struct usb_driver cxusb_driver = { |
Patrick Boettcher | 63b5c1c | 2005-07-07 17:58:30 -0700 | [diff] [blame] | 785 | .name = "dvb_usb_cxusb", |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 786 | .probe = cxusb_probe, |
Michael Krufky | f35db23 | 2006-12-05 14:53:39 -0300 | [diff] [blame] | 787 | .disconnect = dvb_usb_device_exit, |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 788 | .id_table = cxusb_table, |
| 789 | }; |
| 790 | |
| 791 | /* module stuff */ |
| 792 | static int __init cxusb_module_init(void) |
| 793 | { |
| 794 | int result; |
| 795 | if ((result = usb_register(&cxusb_driver))) { |
| 796 | err("usb_register failed. Error number %d",result); |
| 797 | return result; |
| 798 | } |
| 799 | |
| 800 | return 0; |
| 801 | } |
| 802 | |
| 803 | static void __exit cxusb_module_exit(void) |
| 804 | { |
| 805 | /* deregister this driver from the USB subsystem */ |
| 806 | usb_deregister(&cxusb_driver); |
| 807 | } |
| 808 | |
| 809 | module_init (cxusb_module_init); |
| 810 | module_exit (cxusb_module_exit); |
| 811 | |
| 812 | MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>"); |
Michael Krufky | 5b9ed28 | 2006-10-15 14:51:08 -0300 | [diff] [blame] | 813 | MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>"); |
Michael Krufky | f4efb4d | 2006-01-13 14:10:25 -0200 | [diff] [blame] | 814 | MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>"); |
Patrick Boettcher | 22c6d93 | 2005-07-07 17:58:10 -0700 | [diff] [blame] | 815 | MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design"); |
| 816 | MODULE_VERSION("1.0-alpha"); |
| 817 | MODULE_LICENSE("GPL"); |