Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 1 | /* DVB USB compliant linux driver for IT9137 |
| 2 | * |
| 3 | * Copyright (C) 2011 Malcolm Priestley (tvboxspy@gmail.com) |
| 4 | * IT9137 (C) ITE Tech Inc. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License Version 2, as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 18 | * |
| 19 | * |
| 20 | * see Documentation/dvb/README.dvb-usb for more information |
| 21 | * see Documentation/dvb/it9137.txt for firmware information |
| 22 | * |
| 23 | */ |
| 24 | #define DVB_USB_LOG_PREFIX "it913x" |
| 25 | |
| 26 | #include <linux/usb.h> |
| 27 | #include <linux/usb/input.h> |
| 28 | #include <media/rc-core.h> |
| 29 | |
| 30 | #include "dvb-usb.h" |
| 31 | #include "it913x-fe.h" |
| 32 | |
| 33 | /* debug */ |
| 34 | static int dvb_usb_it913x_debug; |
| 35 | #define l_dprintk(var, level, args...) do { \ |
| 36 | if ((var >= level)) \ |
| 37 | printk(KERN_DEBUG DVB_USB_LOG_PREFIX ": " args); \ |
| 38 | } while (0) |
| 39 | |
| 40 | #define deb_info(level, args...) l_dprintk(dvb_usb_it913x_debug, level, args) |
| 41 | #define debug_data_snipet(level, name, p) \ |
| 42 | deb_info(level, name" (%02x%02x%02x%02x%02x%02x%02x%02x)", \ |
| 43 | *p, *(p+1), *(p+2), *(p+3), *(p+4), \ |
| 44 | *(p+5), *(p+6), *(p+7)); |
| 45 | |
| 46 | |
| 47 | module_param_named(debug, dvb_usb_it913x_debug, int, 0644); |
| 48 | MODULE_PARM_DESC(debug, "set debugging level (1=info (or-able))." |
| 49 | DVB_USB_DEBUG_STATUS); |
| 50 | |
| 51 | static int pid_filter; |
| 52 | module_param_named(pid, pid_filter, int, 0644); |
| 53 | MODULE_PARM_DESC(pid, "set default 0=on 1=off"); |
| 54 | |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 55 | static int dvb_usb_it913x_firmware; |
| 56 | module_param_named(firmware, dvb_usb_it913x_firmware, int, 0644); |
| 57 | MODULE_PARM_DESC(firmware, "set firmware 0=auto 1=IT9137 2=IT9135V1"); |
| 58 | |
| 59 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 60 | int cmd_counter; |
| 61 | |
| 62 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 63 | |
| 64 | struct it913x_state { |
| 65 | u8 id; |
Malcolm Priestley | 5081570 | 2011-12-04 08:20:37 -0300 | [diff] [blame] | 66 | struct ite_config it913x_config; |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 67 | u8 pid_filter_onoff; |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | struct ite_config it913x_config; |
| 71 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 72 | #define IT913X_RETRY 10 |
| 73 | #define IT913X_SND_TIMEOUT 100 |
| 74 | #define IT913X_RCV_TIMEOUT 200 |
| 75 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 76 | static int it913x_bulk_write(struct usb_device *dev, |
| 77 | u8 *snd, int len, u8 pipe) |
| 78 | { |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 79 | int ret, actual_l, i; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 80 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 81 | for (i = 0; i < IT913X_RETRY; i++) { |
| 82 | ret = usb_bulk_msg(dev, usb_sndbulkpipe(dev, pipe), |
| 83 | snd, len , &actual_l, IT913X_SND_TIMEOUT); |
| 84 | if (ret == 0 || ret != -EBUSY || ret != -ETIMEDOUT) |
| 85 | break; |
| 86 | } |
| 87 | |
| 88 | if (len != actual_l && ret == 0) |
| 89 | ret = -EAGAIN; |
| 90 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 91 | return ret; |
| 92 | } |
| 93 | |
| 94 | static int it913x_bulk_read(struct usb_device *dev, |
| 95 | u8 *rev, int len, u8 pipe) |
| 96 | { |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 97 | int ret, actual_l, i; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 98 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 99 | for (i = 0; i < IT913X_RETRY; i++) { |
| 100 | ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, pipe), |
| 101 | rev, len , &actual_l, IT913X_RCV_TIMEOUT); |
| 102 | if (ret == 0 || ret != -EBUSY || ret != -ETIMEDOUT) |
| 103 | break; |
| 104 | } |
| 105 | |
| 106 | if (len != actual_l && ret == 0) |
| 107 | ret = -EAGAIN; |
| 108 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 109 | return ret; |
| 110 | } |
| 111 | |
| 112 | static u16 check_sum(u8 *p, u8 len) |
| 113 | { |
| 114 | u16 sum = 0; |
| 115 | u8 i = 1; |
| 116 | while (i < len) |
| 117 | sum += (i++ & 1) ? (*p++) << 8 : *p++; |
| 118 | return ~sum; |
| 119 | } |
| 120 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 121 | static int it913x_usb_talk(struct usb_device *udev, u8 mode, u8 pro, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 122 | u8 cmd, u32 reg, u8 addr, u8 *data, u8 len) |
| 123 | { |
| 124 | int ret = 0, i, buf_size = 1; |
| 125 | u8 *buff; |
| 126 | u8 rlen; |
| 127 | u16 chk_sum; |
| 128 | |
| 129 | buff = kzalloc(256, GFP_KERNEL); |
| 130 | if (!buff) { |
| 131 | info("USB Buffer Failed"); |
| 132 | return -ENOMEM; |
| 133 | } |
| 134 | |
| 135 | buff[buf_size++] = pro; |
| 136 | buff[buf_size++] = cmd; |
| 137 | buff[buf_size++] = cmd_counter; |
| 138 | |
| 139 | switch (mode) { |
| 140 | case READ_LONG: |
| 141 | case WRITE_LONG: |
| 142 | buff[buf_size++] = len; |
| 143 | buff[buf_size++] = 2; |
| 144 | buff[buf_size++] = (reg >> 24); |
| 145 | buff[buf_size++] = (reg >> 16) & 0xff; |
| 146 | buff[buf_size++] = (reg >> 8) & 0xff; |
| 147 | buff[buf_size++] = reg & 0xff; |
| 148 | break; |
| 149 | case READ_SHORT: |
| 150 | buff[buf_size++] = addr; |
| 151 | break; |
| 152 | case WRITE_SHORT: |
| 153 | buff[buf_size++] = len; |
| 154 | buff[buf_size++] = addr; |
| 155 | buff[buf_size++] = (reg >> 8) & 0xff; |
| 156 | buff[buf_size++] = reg & 0xff; |
| 157 | break; |
| 158 | case READ_DATA: |
| 159 | case WRITE_DATA: |
| 160 | break; |
| 161 | case WRITE_CMD: |
| 162 | mode = 7; |
| 163 | break; |
| 164 | default: |
| 165 | kfree(buff); |
| 166 | return -EINVAL; |
| 167 | } |
| 168 | |
| 169 | if (mode & 1) { |
| 170 | for (i = 0; i < len ; i++) |
| 171 | buff[buf_size++] = data[i]; |
| 172 | } |
| 173 | chk_sum = check_sum(&buff[1], buf_size); |
| 174 | |
| 175 | buff[buf_size++] = chk_sum >> 8; |
| 176 | buff[0] = buf_size; |
| 177 | buff[buf_size++] = (chk_sum & 0xff); |
| 178 | |
| 179 | ret = it913x_bulk_write(udev, buff, buf_size , 0x02); |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 180 | if (ret < 0) |
| 181 | goto error; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 182 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 183 | ret = it913x_bulk_read(udev, buff, (mode & 1) ? |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 184 | 5 : len + 5 , 0x01); |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 185 | if (ret < 0) |
| 186 | goto error; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 187 | |
| 188 | rlen = (mode & 0x1) ? 0x1 : len; |
| 189 | |
| 190 | if (mode & 1) |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 191 | ret = buff[2]; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 192 | else |
| 193 | memcpy(data, &buff[3], rlen); |
| 194 | |
| 195 | cmd_counter++; |
| 196 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 197 | error: kfree(buff); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 198 | |
Malcolm Priestley | 15157c5 | 2011-12-01 17:35:48 -0300 | [diff] [blame] | 199 | return ret; |
| 200 | } |
| 201 | |
| 202 | static int it913x_io(struct usb_device *udev, u8 mode, u8 pro, |
| 203 | u8 cmd, u32 reg, u8 addr, u8 *data, u8 len) |
| 204 | { |
| 205 | int ret, i; |
| 206 | |
| 207 | for (i = 0; i < IT913X_RETRY; i++) { |
| 208 | ret = it913x_usb_talk(udev, mode, pro, |
| 209 | cmd, reg, addr, data, len); |
| 210 | if (ret != -EAGAIN) |
| 211 | break; |
| 212 | } |
| 213 | |
| 214 | return ret; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | static int it913x_wr_reg(struct usb_device *udev, u8 pro, u32 reg , u8 data) |
| 218 | { |
| 219 | int ret; |
| 220 | u8 b[1]; |
| 221 | b[0] = data; |
| 222 | ret = it913x_io(udev, WRITE_LONG, pro, |
| 223 | CMD_DEMOD_WRITE, reg, 0, b, sizeof(b)); |
| 224 | |
| 225 | return ret; |
| 226 | } |
| 227 | |
| 228 | static int it913x_read_reg(struct usb_device *udev, u32 reg) |
| 229 | { |
| 230 | int ret; |
| 231 | u8 data[1]; |
| 232 | |
| 233 | ret = it913x_io(udev, READ_LONG, DEV_0, |
| 234 | CMD_DEMOD_READ, reg, 0, &data[0], 1); |
| 235 | |
| 236 | return (ret < 0) ? ret : data[0]; |
| 237 | } |
| 238 | |
| 239 | static u32 it913x_query(struct usb_device *udev, u8 pro) |
| 240 | { |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 241 | int ret, i; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 242 | u8 data[4]; |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 243 | u8 ver; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 244 | |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 245 | for (i = 0; i < 5; i++) { |
| 246 | ret = it913x_io(udev, READ_LONG, pro, CMD_DEMOD_READ, |
| 247 | 0x1222, 0, &data[0], 3); |
| 248 | ver = data[0]; |
| 249 | if (ver > 0 && ver < 3) |
| 250 | break; |
| 251 | msleep(100); |
| 252 | } |
| 253 | |
| 254 | if (ver < 1 || ver > 2) { |
| 255 | info("Failed to identify chip version applying 1"); |
| 256 | it913x_config.chip_ver = 0x1; |
| 257 | it913x_config.chip_type = 0x9135; |
| 258 | return 0; |
| 259 | } |
| 260 | |
| 261 | it913x_config.chip_ver = ver; |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 262 | it913x_config.chip_type = (u16)(data[2] << 8) + data[1]; |
| 263 | |
| 264 | info("Chip Version=%02x Chip Type=%04x", it913x_config.chip_ver, |
| 265 | it913x_config.chip_type); |
| 266 | |
| 267 | ret |= it913x_io(udev, READ_SHORT, pro, |
| 268 | CMD_QUERYINFO, 0, 0x1, &data[0], 4); |
| 269 | |
| 270 | it913x_config.firmware = (data[0] << 24) + (data[1] << 16) + |
| 271 | (data[2] << 8) + data[3]; |
| 272 | |
| 273 | return (ret < 0) ? 0 : it913x_config.firmware; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | static int it913x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff) |
| 277 | { |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 278 | struct it913x_state *st = adap->dev->priv; |
Malcolm Priestley | d4d5a40 | 2012-01-02 14:46:32 -0300 | [diff] [blame] | 279 | struct usb_device *udev = adap->dev->udev; |
| 280 | int ret; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 281 | u8 pro = (adap->id == 0) ? DEV_0_DMOD : DEV_1_DMOD; |
| 282 | |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 283 | mutex_lock(&adap->dev->i2c_mutex); |
| 284 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 285 | deb_info(1, "PID_C (%02x)", onoff); |
| 286 | |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 287 | ret = it913x_wr_reg(udev, pro, PID_EN, st->pid_filter_onoff); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 288 | |
| 289 | mutex_unlock(&adap->dev->i2c_mutex); |
| 290 | return ret; |
| 291 | } |
| 292 | |
| 293 | static int it913x_pid_filter(struct dvb_usb_adapter *adap, |
| 294 | int index, u16 pid, int onoff) |
| 295 | { |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 296 | struct it913x_state *st = adap->dev->priv; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 297 | struct usb_device *udev = adap->dev->udev; |
Malcolm Priestley | d4d5a40 | 2012-01-02 14:46:32 -0300 | [diff] [blame] | 298 | int ret; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 299 | u8 pro = (adap->id == 0) ? DEV_0_DMOD : DEV_1_DMOD; |
| 300 | |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 301 | mutex_lock(&adap->dev->i2c_mutex); |
| 302 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 303 | deb_info(1, "PID_F (%02x)", onoff); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 304 | |
Malcolm Priestley | d4d5a40 | 2012-01-02 14:46:32 -0300 | [diff] [blame] | 305 | ret = it913x_wr_reg(udev, pro, PID_LSB, (u8)(pid & 0xff)); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 306 | |
Malcolm Priestley | d4d5a40 | 2012-01-02 14:46:32 -0300 | [diff] [blame] | 307 | ret |= it913x_wr_reg(udev, pro, PID_MSB, (u8)(pid >> 8)); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 308 | |
Malcolm Priestley | d4d5a40 | 2012-01-02 14:46:32 -0300 | [diff] [blame] | 309 | ret |= it913x_wr_reg(udev, pro, PID_INX_EN, (u8)onoff); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 310 | |
Malcolm Priestley | d4d5a40 | 2012-01-02 14:46:32 -0300 | [diff] [blame] | 311 | ret |= it913x_wr_reg(udev, pro, PID_INX, (u8)(index & 0x1f)); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 312 | |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 313 | if (udev->speed == USB_SPEED_HIGH && pid == 0x2000) { |
| 314 | ret |= it913x_wr_reg(udev, pro, PID_EN, !onoff); |
| 315 | st->pid_filter_onoff = !onoff; |
| 316 | } else |
| 317 | st->pid_filter_onoff = |
| 318 | adap->fe_adap[adap->active_fe].pid_filtering; |
| 319 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 320 | mutex_unlock(&adap->dev->i2c_mutex); |
| 321 | return 0; |
| 322 | } |
| 323 | |
| 324 | |
| 325 | static int it913x_return_status(struct usb_device *udev) |
| 326 | { |
| 327 | u32 firm = 0; |
| 328 | |
| 329 | firm = it913x_query(udev, DEV_0); |
| 330 | if (firm > 0) |
| 331 | info("Firmware Version %d", firm); |
| 332 | |
| 333 | return (firm > 0) ? firm : 0; |
| 334 | } |
| 335 | |
| 336 | static int it913x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], |
| 337 | int num) |
| 338 | { |
| 339 | struct dvb_usb_device *d = i2c_get_adapdata(adap); |
| 340 | static u8 data[256]; |
| 341 | int ret; |
| 342 | u32 reg; |
| 343 | u8 pro; |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 344 | |
| 345 | mutex_lock(&d->i2c_mutex); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 346 | |
| 347 | debug_data_snipet(1, "Message out", msg[0].buf); |
| 348 | deb_info(2, "num of messages %d address %02x", num, msg[0].addr); |
| 349 | |
| 350 | pro = (msg[0].addr & 0x2) ? DEV_0_DMOD : 0x0; |
| 351 | pro |= (msg[0].addr & 0x20) ? DEV_1 : DEV_0; |
| 352 | memcpy(data, msg[0].buf, msg[0].len); |
| 353 | reg = (data[0] << 24) + (data[1] << 16) + |
| 354 | (data[2] << 8) + data[3]; |
| 355 | if (num == 2) { |
| 356 | ret = it913x_io(d->udev, READ_LONG, pro, |
| 357 | CMD_DEMOD_READ, reg, 0, data, msg[1].len); |
| 358 | memcpy(msg[1].buf, data, msg[1].len); |
| 359 | } else |
| 360 | ret = it913x_io(d->udev, WRITE_LONG, pro, CMD_DEMOD_WRITE, |
| 361 | reg, 0, &data[4], msg[0].len - 4); |
| 362 | |
| 363 | mutex_unlock(&d->i2c_mutex); |
| 364 | |
| 365 | return ret; |
| 366 | } |
| 367 | |
| 368 | static u32 it913x_i2c_func(struct i2c_adapter *adapter) |
| 369 | { |
| 370 | return I2C_FUNC_I2C; |
| 371 | } |
| 372 | |
| 373 | static struct i2c_algorithm it913x_i2c_algo = { |
| 374 | .master_xfer = it913x_i2c_xfer, |
| 375 | .functionality = it913x_i2c_func, |
| 376 | }; |
| 377 | |
| 378 | /* Callbacks for DVB USB */ |
tvboxspy | 2ba0f94 | 2011-09-21 18:57:41 -0300 | [diff] [blame] | 379 | #define IT913X_POLL 250 |
| 380 | static int it913x_rc_query(struct dvb_usb_device *d) |
| 381 | { |
| 382 | u8 ibuf[4]; |
| 383 | int ret; |
| 384 | u32 key; |
| 385 | /* Avoid conflict with frontends*/ |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 386 | mutex_lock(&d->i2c_mutex); |
tvboxspy | 2ba0f94 | 2011-09-21 18:57:41 -0300 | [diff] [blame] | 387 | |
| 388 | ret = it913x_io(d->udev, READ_LONG, PRO_LINK, CMD_IR_GET, |
| 389 | 0, 0, &ibuf[0], sizeof(ibuf)); |
| 390 | |
| 391 | if ((ibuf[2] + ibuf[3]) == 0xff) { |
| 392 | key = ibuf[2]; |
Malcolm Priestley | c725ff6 | 2011-11-28 18:22:41 -0300 | [diff] [blame] | 393 | key += ibuf[0] << 16; |
| 394 | key += ibuf[1] << 8; |
| 395 | deb_info(1, "NEC Extended Key =%08x", key); |
tvboxspy | 2ba0f94 | 2011-09-21 18:57:41 -0300 | [diff] [blame] | 396 | if (d->rc_dev != NULL) |
| 397 | rc_keydown(d->rc_dev, key, 0); |
| 398 | } |
Malcolm Priestley | c725ff6 | 2011-11-28 18:22:41 -0300 | [diff] [blame] | 399 | |
tvboxspy | 2ba0f94 | 2011-09-21 18:57:41 -0300 | [diff] [blame] | 400 | mutex_unlock(&d->i2c_mutex); |
| 401 | |
| 402 | return ret; |
| 403 | } |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 404 | |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 405 | /* Firmware sets raw */ |
| 406 | const char fw_it9135_v1[] = "dvb-usb-it9135-01.fw"; |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 407 | const char fw_it9135_v2[] = "dvb-usb-it9135-02.fw"; |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 408 | const char fw_it9137[] = "dvb-usb-it9137-01.fw"; |
| 409 | |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 410 | static int ite_firmware_select(struct usb_device *udev, |
| 411 | struct dvb_usb_device_properties *props) |
| 412 | { |
| 413 | int sw; |
| 414 | /* auto switch */ |
Malcolm Priestley | a8ea021 | 2012-01-20 19:07:18 -0300 | [diff] [blame] | 415 | if (le16_to_cpu(udev->descriptor.idVendor) == USB_VID_KWORLD_2) |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 416 | sw = IT9137_FW; |
Malcolm Priestley | a8ea021 | 2012-01-20 19:07:18 -0300 | [diff] [blame] | 417 | else if (it913x_config.chip_ver == 1) |
| 418 | sw = IT9135_V1_FW; |
| 419 | else |
| 420 | sw = IT9135_V2_FW; |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 421 | |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 422 | /* force switch */ |
| 423 | if (dvb_usb_it913x_firmware != IT9135_AUTO) |
| 424 | sw = dvb_usb_it913x_firmware; |
| 425 | |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 426 | switch (sw) { |
| 427 | case IT9135_V1_FW: |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 428 | it913x_config.firmware_ver = 1; |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 429 | it913x_config.adc_x2 = 1; |
Malcolm Priestley | 6c5637e | 2012-02-12 09:03:06 -0300 | [diff] [blame] | 430 | it913x_config.read_slevel = false; |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 431 | props->firmware = fw_it9135_v1; |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 432 | break; |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 433 | case IT9135_V2_FW: |
| 434 | it913x_config.firmware_ver = 1; |
| 435 | it913x_config.adc_x2 = 1; |
Malcolm Priestley | 6c5637e | 2012-02-12 09:03:06 -0300 | [diff] [blame] | 436 | it913x_config.read_slevel = false; |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 437 | props->firmware = fw_it9135_v2; |
Malcolm Priestley | fc594e3 | 2012-01-28 18:02:34 -0300 | [diff] [blame] | 438 | switch (it913x_config.tuner_id_0) { |
| 439 | case IT9135_61: |
| 440 | case IT9135_62: |
| 441 | break; |
| 442 | default: |
| 443 | info("Unknown tuner ID applying default 0x60"); |
| 444 | case IT9135_60: |
Malcolm Priestley | a8ea021 | 2012-01-20 19:07:18 -0300 | [diff] [blame] | 445 | it913x_config.tuner_id_0 = IT9135_60; |
Malcolm Priestley | fc594e3 | 2012-01-28 18:02:34 -0300 | [diff] [blame] | 446 | } |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 447 | break; |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 448 | case IT9137_FW: |
| 449 | default: |
| 450 | it913x_config.firmware_ver = 0; |
| 451 | it913x_config.adc_x2 = 0; |
Malcolm Priestley | 6c5637e | 2012-02-12 09:03:06 -0300 | [diff] [blame] | 452 | it913x_config.read_slevel = true; |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 453 | props->firmware = fw_it9137; |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 459 | static void it913x_select_remote(struct usb_device *udev, |
| 460 | struct dvb_usb_device_properties *props) |
| 461 | { |
| 462 | switch (le16_to_cpu(udev->descriptor.idProduct)) { |
| 463 | case USB_PID_ITETECH_IT9135_9005: |
| 464 | props->rc.core.rc_codes = RC_MAP_IT913X_V2; |
| 465 | return; |
| 466 | default: |
| 467 | props->rc.core.rc_codes = RC_MAP_IT913X_V1; |
| 468 | } |
| 469 | return; |
| 470 | } |
| 471 | |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 472 | #define TS_MPEG_PKT_SIZE 188 |
| 473 | #define EP_LOW 21 |
| 474 | #define TS_BUFFER_SIZE_PID (EP_LOW*TS_MPEG_PKT_SIZE) |
| 475 | #define EP_HIGH 348 |
| 476 | #define TS_BUFFER_SIZE_MAX (EP_HIGH*TS_MPEG_PKT_SIZE) |
| 477 | |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 478 | static int it913x_select_config(struct usb_device *udev, |
| 479 | struct dvb_usb_device_properties *props) |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 480 | { |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 481 | int ret = 0, reg; |
| 482 | bool proprietary_ir = false; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 483 | |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 484 | if (it913x_config.chip_ver == 0x02 |
| 485 | && it913x_config.chip_type == 0x9135) |
| 486 | reg = it913x_read_reg(udev, 0x461d); |
| 487 | else |
| 488 | reg = it913x_read_reg(udev, 0x461b); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 489 | |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 490 | if (reg < 0) |
| 491 | return reg; |
| 492 | |
| 493 | if (reg == 0) { |
| 494 | it913x_config.dual_mode = 0; |
| 495 | it913x_config.tuner_id_0 = IT9135_38; |
| 496 | proprietary_ir = true; |
| 497 | } else { |
| 498 | /* TS mode */ |
| 499 | reg = it913x_read_reg(udev, 0x49c5); |
| 500 | if (reg < 0) |
| 501 | return reg; |
| 502 | it913x_config.dual_mode = reg; |
| 503 | |
| 504 | /* IR mode type */ |
| 505 | reg = it913x_read_reg(udev, 0x49ac); |
| 506 | if (reg < 0) |
| 507 | return reg; |
| 508 | if (reg == 5) { |
| 509 | info("Remote propriety (raw) mode"); |
| 510 | proprietary_ir = true; |
| 511 | } else if (reg == 1) { |
| 512 | info("Remote HID mode NOT SUPPORTED"); |
| 513 | proprietary_ir = false; |
| 514 | props->rc.core.rc_codes = NULL; |
| 515 | } else |
| 516 | props->rc.core.rc_codes = NULL; |
| 517 | |
| 518 | /* Tuner_id */ |
| 519 | reg = it913x_read_reg(udev, 0x49d0); |
| 520 | if (reg < 0) |
| 521 | return reg; |
| 522 | it913x_config.tuner_id_0 = reg; |
| 523 | } |
| 524 | |
| 525 | if (proprietary_ir) |
| 526 | it913x_select_remote(udev, props); |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 527 | |
Malcolm Priestley | 3822c7c | 2011-11-06 10:24:30 -0300 | [diff] [blame] | 528 | if (udev->speed != USB_SPEED_HIGH) { |
| 529 | props->adapter[0].fe[0].pid_filter_count = 5; |
| 530 | info("USB 1 low speed mode - connect to USB 2 port"); |
| 531 | if (pid_filter > 0) |
| 532 | pid_filter = 0; |
| 533 | if (it913x_config.dual_mode) { |
| 534 | it913x_config.dual_mode = 0; |
| 535 | info("Dual mode not supported in USB 1"); |
| 536 | } |
| 537 | } else /* For replugging */ |
| 538 | if(props->adapter[0].fe[0].pid_filter_count == 5) |
| 539 | props->adapter[0].fe[0].pid_filter_count = 31; |
| 540 | |
Malcolm Priestley | ed3189c | 2011-12-30 18:48:00 -0300 | [diff] [blame] | 541 | /* Select Stream Buffer Size and pid filter option*/ |
| 542 | if (pid_filter) { |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 543 | props->adapter[0].fe[0].stream.u.bulk.buffersize = |
| 544 | TS_BUFFER_SIZE_MAX; |
Malcolm Priestley | ed3189c | 2011-12-30 18:48:00 -0300 | [diff] [blame] | 545 | props->adapter[0].fe[0].caps &= |
| 546 | ~DVB_USB_ADAP_NEED_PID_FILTERING; |
| 547 | } else |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 548 | props->adapter[0].fe[0].stream.u.bulk.buffersize = |
| 549 | TS_BUFFER_SIZE_PID; |
Malcolm Priestley | ed3189c | 2011-12-30 18:48:00 -0300 | [diff] [blame] | 550 | |
Malcolm Priestley | f36472d | 2011-12-11 17:09:46 -0300 | [diff] [blame] | 551 | if (it913x_config.dual_mode) { |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 552 | props->adapter[1].fe[0].stream.u.bulk.buffersize = |
| 553 | props->adapter[0].fe[0].stream.u.bulk.buffersize; |
Malcolm Priestley | f36472d | 2011-12-11 17:09:46 -0300 | [diff] [blame] | 554 | props->num_adapters = 2; |
Malcolm Priestley | ed3189c | 2011-12-30 18:48:00 -0300 | [diff] [blame] | 555 | if (pid_filter) |
| 556 | props->adapter[1].fe[0].caps = |
| 557 | props->adapter[0].fe[0].caps; |
Malcolm Priestley | f36472d | 2011-12-11 17:09:46 -0300 | [diff] [blame] | 558 | } else |
| 559 | props->num_adapters = 1; |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 560 | |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 561 | info("Dual mode=%x Tuner Type=%x", it913x_config.dual_mode, |
| 562 | it913x_config.tuner_id_0); |
| 563 | |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 564 | ret = ite_firmware_select(udev, props); |
| 565 | |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 566 | return ret; |
| 567 | } |
| 568 | |
| 569 | static int it913x_identify_state(struct usb_device *udev, |
| 570 | struct dvb_usb_device_properties *props, |
| 571 | struct dvb_usb_device_description **desc, |
| 572 | int *cold) |
| 573 | { |
| 574 | int ret = 0, firm_no; |
| 575 | u8 reg; |
| 576 | |
| 577 | firm_no = it913x_return_status(udev); |
| 578 | |
| 579 | /* Read and select config */ |
| 580 | ret = it913x_select_config(udev, props); |
| 581 | if (ret < 0) |
| 582 | return ret; |
| 583 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 584 | if (firm_no > 0) { |
| 585 | *cold = 0; |
| 586 | return 0; |
| 587 | } |
| 588 | |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 589 | if (it913x_config.dual_mode) { |
| 590 | it913x_config.tuner_id_1 = it913x_read_reg(udev, 0x49e0); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 591 | ret = it913x_wr_reg(udev, DEV_0, GPIOH1_EN, 0x1); |
| 592 | ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_ON, 0x1); |
| 593 | ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_O, 0x1); |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 594 | msleep(50); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 595 | ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_O, 0x0); |
| 596 | msleep(50); |
| 597 | reg = it913x_read_reg(udev, GPIOH1_O); |
| 598 | if (reg == 0) { |
| 599 | ret |= it913x_wr_reg(udev, DEV_0, GPIOH1_O, 0x1); |
| 600 | ret |= it913x_return_status(udev); |
| 601 | if (ret != 0) |
| 602 | ret = it913x_wr_reg(udev, DEV_0, |
| 603 | GPIOH1_O, 0x0); |
| 604 | } |
Malcolm Priestley | f36472d | 2011-12-11 17:09:46 -0300 | [diff] [blame] | 605 | } |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 606 | |
| 607 | reg = it913x_read_reg(udev, IO_MUX_POWER_CLK); |
| 608 | |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 609 | if (it913x_config.dual_mode) { |
| 610 | ret |= it913x_wr_reg(udev, DEV_0, 0x4bfb, CHIP2_I2C_ADDR); |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 611 | if (it913x_config.firmware_ver == 1) |
| 612 | ret |= it913x_wr_reg(udev, DEV_0, 0xcfff, 0x1); |
| 613 | else |
| 614 | ret |= it913x_wr_reg(udev, DEV_0, CLK_O_EN, 0x1); |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 615 | } else { |
| 616 | ret |= it913x_wr_reg(udev, DEV_0, 0x4bfb, 0x0); |
Malcolm Priestley | 990f49a | 2011-11-28 18:04:21 -0300 | [diff] [blame] | 617 | if (it913x_config.firmware_ver == 1) |
| 618 | ret |= it913x_wr_reg(udev, DEV_0, 0xcfff, 0x0); |
| 619 | else |
| 620 | ret |= it913x_wr_reg(udev, DEV_0, CLK_O_EN, 0x0); |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 621 | } |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 622 | |
| 623 | *cold = 1; |
| 624 | |
| 625 | return (ret < 0) ? -ENODEV : 0; |
| 626 | } |
| 627 | |
| 628 | static int it913x_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff) |
| 629 | { |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 630 | struct it913x_state *st = adap->dev->priv; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 631 | int ret = 0; |
| 632 | u8 pro = (adap->id == 0) ? DEV_0_DMOD : DEV_1_DMOD; |
| 633 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 634 | deb_info(1, "STM (%02x)", onoff); |
| 635 | |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 636 | if (!onoff) { |
| 637 | mutex_lock(&adap->dev->i2c_mutex); |
| 638 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 639 | ret = it913x_wr_reg(adap->dev->udev, pro, PID_RST, 0x1); |
| 640 | |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 641 | mutex_unlock(&adap->dev->i2c_mutex); |
Malcolm Priestley | aaa589f | 2012-02-12 07:31:41 -0300 | [diff] [blame] | 642 | st->pid_filter_onoff = |
| 643 | adap->fe_adap[adap->active_fe].pid_filtering; |
| 644 | |
Malcolm Priestley | 46f3da9 | 2012-02-12 07:29:38 -0300 | [diff] [blame] | 645 | } |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 646 | |
| 647 | return ret; |
| 648 | } |
| 649 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 650 | static int it913x_download_firmware(struct usb_device *udev, |
| 651 | const struct firmware *fw) |
| 652 | { |
Malcolm Priestley | b699029 | 2011-11-30 17:14:47 -0300 | [diff] [blame] | 653 | int ret = 0, i = 0, pos = 0; |
Malcolm Priestley | f0e07d7 | 2011-12-15 18:43:44 -0300 | [diff] [blame] | 654 | u8 packet_size, min_pkt; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 655 | u8 *fw_data; |
| 656 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 657 | ret = it913x_wr_reg(udev, DEV_0, I2C_CLK, I2C_CLK_100); |
| 658 | |
| 659 | info("FRM Starting Firmware Download"); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 660 | |
Malcolm Priestley | b699029 | 2011-11-30 17:14:47 -0300 | [diff] [blame] | 661 | /* Multi firmware loader */ |
| 662 | /* This uses scatter write firmware headers */ |
| 663 | /* The firmware must start with 03 XX 00 */ |
| 664 | /* and be the extact firmware length */ |
| 665 | |
Malcolm Priestley | f0e07d7 | 2011-12-15 18:43:44 -0300 | [diff] [blame] | 666 | if (it913x_config.chip_ver == 2) |
| 667 | min_pkt = 0x11; |
| 668 | else |
| 669 | min_pkt = 0x19; |
| 670 | |
Malcolm Priestley | b699029 | 2011-11-30 17:14:47 -0300 | [diff] [blame] | 671 | while (i <= fw->size) { |
| 672 | if (((fw->data[i] == 0x3) && (fw->data[i + 2] == 0x0)) |
| 673 | || (i == fw->size)) { |
| 674 | packet_size = i - pos; |
Malcolm Priestley | f0e07d7 | 2011-12-15 18:43:44 -0300 | [diff] [blame] | 675 | if ((packet_size > min_pkt) || (i == fw->size)) { |
Malcolm Priestley | b699029 | 2011-11-30 17:14:47 -0300 | [diff] [blame] | 676 | fw_data = (u8 *)(fw->data + pos); |
| 677 | pos += packet_size; |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 678 | if (packet_size > 0) { |
| 679 | ret = it913x_io(udev, WRITE_DATA, |
Malcolm Priestley | b699029 | 2011-11-30 17:14:47 -0300 | [diff] [blame] | 680 | DEV_0, CMD_SCATTER_WRITE, 0, |
| 681 | 0, fw_data, packet_size); |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 682 | if (ret < 0) |
| 683 | break; |
| 684 | } |
Malcolm Priestley | b699029 | 2011-11-30 17:14:47 -0300 | [diff] [blame] | 685 | udelay(1000); |
| 686 | } |
| 687 | } |
| 688 | i++; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 689 | } |
| 690 | |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 691 | if (ret < 0) |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 692 | info("FRM Firmware Download Failed (%d)" , ret); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 693 | else |
| 694 | info("FRM Firmware Download Completed - Resetting Device"); |
| 695 | |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 696 | msleep(30); |
| 697 | |
| 698 | ret = it913x_io(udev, WRITE_CMD, DEV_0, CMD_BOOT, 0, 0, NULL, 0); |
| 699 | if (ret < 0) |
| 700 | info("FRM Device not responding to reboot"); |
| 701 | |
| 702 | ret = it913x_return_status(udev); |
| 703 | if (ret == 0) { |
| 704 | info("FRM Failed to reboot device"); |
| 705 | return -ENODEV; |
| 706 | } |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 707 | |
| 708 | msleep(30); |
| 709 | |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 710 | ret = it913x_wr_reg(udev, DEV_0, I2C_CLK, I2C_CLK_400); |
| 711 | |
| 712 | msleep(30); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 713 | |
| 714 | /* Tuner function */ |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 715 | if (it913x_config.dual_mode) |
| 716 | ret |= it913x_wr_reg(udev, DEV_0_DMOD , 0xec4c, 0xa0); |
Malcolm Priestley | b7d425d39 | 2011-10-31 12:02:08 -0300 | [diff] [blame] | 717 | else |
| 718 | ret |= it913x_wr_reg(udev, DEV_0_DMOD , 0xec4c, 0x68); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 719 | |
Malcolm Priestley | b7d425d39 | 2011-10-31 12:02:08 -0300 | [diff] [blame] | 720 | if ((it913x_config.chip_ver == 1) && |
| 721 | (it913x_config.chip_type == 0x9135)) { |
| 722 | ret |= it913x_wr_reg(udev, DEV_0, PADODPU, 0x0); |
| 723 | ret |= it913x_wr_reg(udev, DEV_0, AGC_O_D, 0x0); |
| 724 | if (it913x_config.dual_mode) { |
| 725 | ret |= it913x_wr_reg(udev, DEV_1, PADODPU, 0x0); |
| 726 | ret |= it913x_wr_reg(udev, DEV_1, AGC_O_D, 0x0); |
| 727 | } |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | return (ret < 0) ? -ENODEV : 0; |
| 731 | } |
| 732 | |
| 733 | static int it913x_name(struct dvb_usb_adapter *adap) |
| 734 | { |
| 735 | const char *desc = adap->dev->desc->name; |
| 736 | char *fe_name[] = {"_1", "_2", "_3", "_4"}; |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 737 | char *name = adap->fe_adap[0].fe->ops.info.name; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 738 | |
| 739 | strlcpy(name, desc, 128); |
| 740 | strlcat(name, fe_name[adap->id], 128); |
| 741 | |
| 742 | return 0; |
| 743 | } |
| 744 | |
| 745 | static int it913x_frontend_attach(struct dvb_usb_adapter *adap) |
| 746 | { |
| 747 | struct usb_device *udev = adap->dev->udev; |
Malcolm Priestley | 5081570 | 2011-12-04 08:20:37 -0300 | [diff] [blame] | 748 | struct it913x_state *st = adap->dev->priv; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 749 | int ret = 0; |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 750 | u8 adap_addr = I2C_BASE_ADDR + (adap->id << 5); |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 751 | u16 ep_size = adap->props.fe[0].stream.u.bulk.buffersize / 4; |
Malcolm Priestley | 3822c7c | 2011-11-06 10:24:30 -0300 | [diff] [blame] | 752 | u8 pkt_size = 0x80; |
| 753 | |
| 754 | if (adap->dev->udev->speed != USB_SPEED_HIGH) |
| 755 | pkt_size = 0x10; |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 756 | |
Malcolm Priestley | b7d425d39 | 2011-10-31 12:02:08 -0300 | [diff] [blame] | 757 | it913x_config.adf = it913x_read_reg(udev, IO_MUX_POWER_CLK); |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 758 | |
| 759 | if (adap->id == 0) |
Malcolm Priestley | 5081570 | 2011-12-04 08:20:37 -0300 | [diff] [blame] | 760 | memcpy(&st->it913x_config, &it913x_config, |
| 761 | sizeof(struct ite_config)); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 762 | |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 763 | adap->fe_adap[0].fe = dvb_attach(it913x_fe_attach, |
Malcolm Priestley | 5081570 | 2011-12-04 08:20:37 -0300 | [diff] [blame] | 764 | &adap->dev->i2c_adap, adap_addr, &st->it913x_config); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 765 | |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 766 | if (adap->id == 0 && adap->fe_adap[0].fe) { |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 767 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2_SW_RST, 0x1); |
| 768 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_SW_RST, 0x1); |
| 769 | ret = it913x_wr_reg(udev, DEV_0, EP0_TX_EN, 0x0f); |
| 770 | ret = it913x_wr_reg(udev, DEV_0, EP0_TX_NAK, 0x1b); |
| 771 | ret = it913x_wr_reg(udev, DEV_0, EP0_TX_EN, 0x2f); |
| 772 | ret = it913x_wr_reg(udev, DEV_0, EP4_TX_LEN_LSB, |
| 773 | ep_size & 0xff); |
| 774 | ret = it913x_wr_reg(udev, DEV_0, EP4_TX_LEN_MSB, ep_size >> 8); |
Malcolm Priestley | 3822c7c | 2011-11-06 10:24:30 -0300 | [diff] [blame] | 775 | ret = it913x_wr_reg(udev, DEV_0, EP4_MAX_PKT, pkt_size); |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 776 | } else if (adap->id == 1 && adap->fe_adap[0].fe) { |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 777 | ret = it913x_wr_reg(udev, DEV_0, EP0_TX_EN, 0x6f); |
| 778 | ret = it913x_wr_reg(udev, DEV_0, EP5_TX_LEN_LSB, |
| 779 | ep_size & 0xff); |
| 780 | ret = it913x_wr_reg(udev, DEV_0, EP5_TX_LEN_MSB, ep_size >> 8); |
Malcolm Priestley | 3822c7c | 2011-11-06 10:24:30 -0300 | [diff] [blame] | 781 | ret = it913x_wr_reg(udev, DEV_0, EP5_MAX_PKT, pkt_size); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 782 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_EN, 0x1); |
| 783 | ret = it913x_wr_reg(udev, DEV_1_DMOD, MP2IF_SERIAL, 0x1); |
| 784 | ret = it913x_wr_reg(udev, DEV_1, TOP_HOSTB_SER_MODE, 0x1); |
| 785 | ret = it913x_wr_reg(udev, DEV_0_DMOD, TSIS_ENABLE, 0x1); |
| 786 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2_SW_RST, 0x0); |
| 787 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_SW_RST, 0x0); |
| 788 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF2_HALF_PSB, 0x0); |
| 789 | ret = it913x_wr_reg(udev, DEV_0_DMOD, MP2IF_STOP_EN, 0x1); |
| 790 | ret = it913x_wr_reg(udev, DEV_1_DMOD, MPEG_FULL_SPEED, 0x0); |
| 791 | ret = it913x_wr_reg(udev, DEV_1_DMOD, MP2IF_STOP_EN, 0x0); |
| 792 | } else |
| 793 | return -ENODEV; |
| 794 | |
| 795 | ret = it913x_name(adap); |
| 796 | |
| 797 | return ret; |
| 798 | } |
| 799 | |
| 800 | /* DVB USB Driver */ |
| 801 | static struct dvb_usb_device_properties it913x_properties; |
| 802 | |
| 803 | static int it913x_probe(struct usb_interface *intf, |
| 804 | const struct usb_device_id *id) |
| 805 | { |
| 806 | cmd_counter = 0; |
| 807 | if (0 == dvb_usb_device_init(intf, &it913x_properties, |
| 808 | THIS_MODULE, NULL, adapter_nr)) { |
| 809 | info("DEV registering device driver"); |
| 810 | return 0; |
| 811 | } |
| 812 | |
| 813 | info("DEV it913x Error"); |
| 814 | return -ENODEV; |
| 815 | |
| 816 | } |
| 817 | |
| 818 | static struct usb_device_id it913x_table[] = { |
| 819 | { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_KWORLD_UB499_2T_T09) }, |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 820 | { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135) }, |
Malcolm Priestley | fdb5a91 | 2011-11-06 18:30:26 -0300 | [diff] [blame] | 821 | { USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV22_IT9137) }, |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 822 | { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135_9005) }, |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 823 | { USB_DEVICE(USB_VID_ITETECH, USB_PID_ITETECH_IT9135_9006) }, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 824 | {} /* Terminating entry */ |
| 825 | }; |
| 826 | |
| 827 | MODULE_DEVICE_TABLE(usb, it913x_table); |
| 828 | |
| 829 | static struct dvb_usb_device_properties it913x_properties = { |
| 830 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, |
| 831 | .usb_ctrl = DEVICE_SPECIFIC, |
| 832 | .download_firmware = it913x_download_firmware, |
| 833 | .firmware = "dvb-usb-it9137-01.fw", |
| 834 | .no_reconnect = 1, |
| 835 | .size_of_priv = sizeof(struct it913x_state), |
| 836 | .num_adapters = 2, |
| 837 | .adapter = { |
| 838 | { |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 839 | .num_frontends = 1, |
| 840 | .fe = {{ |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 841 | .caps = DVB_USB_ADAP_HAS_PID_FILTER| |
| 842 | DVB_USB_ADAP_NEED_PID_FILTERING| |
| 843 | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF, |
| 844 | .streaming_ctrl = it913x_streaming_ctrl, |
| 845 | .pid_filter_count = 31, |
| 846 | .pid_filter = it913x_pid_filter, |
| 847 | .pid_filter_ctrl = it913x_pid_filter_ctrl, |
| 848 | .frontend_attach = it913x_frontend_attach, |
| 849 | /* parameter for the MPEG2-data transfer */ |
| 850 | .stream = { |
| 851 | .type = USB_BULK, |
| 852 | .count = 10, |
| 853 | .endpoint = 0x04, |
| 854 | .u = {/* Keep Low if PID filter on */ |
| 855 | .bulk = { |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 856 | .buffersize = |
| 857 | TS_BUFFER_SIZE_PID, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 858 | } |
| 859 | } |
| 860 | } |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 861 | }}, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 862 | }, |
| 863 | { |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 864 | .num_frontends = 1, |
| 865 | .fe = {{ |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 866 | .caps = DVB_USB_ADAP_HAS_PID_FILTER| |
| 867 | DVB_USB_ADAP_NEED_PID_FILTERING| |
| 868 | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF, |
| 869 | .streaming_ctrl = it913x_streaming_ctrl, |
| 870 | .pid_filter_count = 31, |
| 871 | .pid_filter = it913x_pid_filter, |
| 872 | .pid_filter_ctrl = it913x_pid_filter_ctrl, |
| 873 | .frontend_attach = it913x_frontend_attach, |
| 874 | /* parameter for the MPEG2-data transfer */ |
| 875 | .stream = { |
| 876 | .type = USB_BULK, |
| 877 | .count = 5, |
| 878 | .endpoint = 0x05, |
| 879 | .u = { |
| 880 | .bulk = { |
Malcolm Priestley | 9c1133c | 2011-11-27 17:35:06 -0300 | [diff] [blame] | 881 | .buffersize = |
| 882 | TS_BUFFER_SIZE_PID, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 883 | } |
| 884 | } |
| 885 | } |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 886 | }}, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 887 | } |
| 888 | }, |
| 889 | .identify_state = it913x_identify_state, |
tvboxspy | 2ba0f94 | 2011-09-21 18:57:41 -0300 | [diff] [blame] | 890 | .rc.core = { |
| 891 | .protocol = RC_TYPE_NEC, |
| 892 | .module_name = "it913x", |
| 893 | .rc_query = it913x_rc_query, |
| 894 | .rc_interval = IT913X_POLL, |
| 895 | .allowed_protos = RC_TYPE_NEC, |
Malcolm Priestley | 3691a0d | 2012-02-01 18:27:42 -0300 | [diff] [blame] | 896 | .rc_codes = RC_MAP_IT913X_V1, |
tvboxspy | 2ba0f94 | 2011-09-21 18:57:41 -0300 | [diff] [blame] | 897 | }, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 898 | .i2c_algo = &it913x_i2c_algo, |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 899 | .num_device_descs = 5, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 900 | .devices = { |
| 901 | { "Kworld UB499-2T T09(IT9137)", |
| 902 | { &it913x_table[0], NULL }, |
| 903 | }, |
Malcolm Priestley | bc54919 | 2011-10-14 19:54:11 -0300 | [diff] [blame] | 904 | { "ITE 9135 Generic", |
| 905 | { &it913x_table[1], NULL }, |
| 906 | }, |
Malcolm Priestley | fdb5a91 | 2011-11-06 18:30:26 -0300 | [diff] [blame] | 907 | { "Sveon STV22 Dual DVB-T HDTV(IT9137)", |
| 908 | { &it913x_table[2], NULL }, |
| 909 | }, |
Malcolm Priestley | 5e642c0 | 2011-11-30 17:16:09 -0300 | [diff] [blame] | 910 | { "ITE 9135(9005) Generic", |
| 911 | { &it913x_table[3], NULL }, |
| 912 | }, |
Malcolm Priestley | 53844c4 | 2011-12-12 15:53:00 -0300 | [diff] [blame] | 913 | { "ITE 9135(9006) Generic", |
| 914 | { &it913x_table[4], NULL }, |
| 915 | }, |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 916 | } |
| 917 | }; |
| 918 | |
| 919 | static struct usb_driver it913x_driver = { |
| 920 | .name = "it913x", |
| 921 | .probe = it913x_probe, |
| 922 | .disconnect = dvb_usb_device_exit, |
| 923 | .id_table = it913x_table, |
| 924 | }; |
| 925 | |
Greg Kroah-Hartman | ecb3b2b | 2011-11-18 09:46:12 -0800 | [diff] [blame] | 926 | module_usb_driver(it913x_driver); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 927 | |
| 928 | MODULE_AUTHOR("Malcolm Priestley <tvboxspy@gmail.com>"); |
| 929 | MODULE_DESCRIPTION("it913x USB 2 Driver"); |
Malcolm Priestley | 4da2876 | 2012-03-25 06:57:49 -0300 | [diff] [blame] | 930 | MODULE_VERSION("1.28"); |
Malcolm Priestley | f6d8735 | 2011-07-25 15:35:03 -0300 | [diff] [blame] | 931 | MODULE_LICENSE("GPL"); |