Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 1 | /* DVB USB compliant Linux driver for the |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 2 | * - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 3 | * |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 4 | * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com) |
| 5 | * Copyright (C) 2006,2007 Genpix Electronics (genpix@genpix-electronics.com) |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 6 | * |
| 7 | * Thanks to GENPIX for the sample code used to implement this module. |
| 8 | * |
| 9 | * This module is based off the vp7045 and vp702x modules |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the Free |
| 13 | * Software Foundation, version 2. |
| 14 | * |
Mauro Carvalho Chehab | 670d7adb | 2018-05-08 18:29:30 -0300 | [diff] [blame] | 15 | * see Documentation/media/dvb-drivers/dvb-usb.rst for more information |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 16 | */ |
| 17 | #include "gp8psk.h" |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 18 | #include "gp8psk-fe.h" |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 19 | |
| 20 | /* debug */ |
| 21 | static char bcm4500_firmware[] = "dvb-usb-gp8psk-02.fw"; |
| 22 | int dvb_usb_gp8psk_debug; |
| 23 | module_param_named(debug,dvb_usb_gp8psk_debug, int, 0644); |
| 24 | MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,rc=4 (or-able))." DVB_USB_DEBUG_STATUS); |
| 25 | |
Janne Grunau | 78e92006 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 26 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 27 | |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 28 | struct gp8psk_state { |
| 29 | unsigned char data[80]; |
| 30 | }; |
| 31 | |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 32 | static int gp8psk_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value, |
| 33 | u16 index, u8 *b, int blen) |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 34 | { |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 35 | struct gp8psk_state *st = d->priv; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 36 | int ret = 0,try = 0; |
| 37 | |
Mauro Carvalho Chehab | f1a503d | 2016-10-07 14:12:48 -0300 | [diff] [blame] | 38 | if (blen > sizeof(st->data)) |
| 39 | return -EIO; |
| 40 | |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 41 | if ((ret = mutex_lock_interruptible(&d->usb_mutex))) |
| 42 | return ret; |
| 43 | |
| 44 | while (ret >= 0 && ret != blen && try < 3) { |
| 45 | ret = usb_control_msg(d->udev, |
| 46 | usb_rcvctrlpipe(d->udev,0), |
| 47 | req, |
| 48 | USB_TYPE_VENDOR | USB_DIR_IN, |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 49 | value, index, st->data, blen, |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 50 | 2000); |
| 51 | deb_info("reading number %d (ret: %d)\n",try,ret); |
| 52 | try++; |
| 53 | } |
| 54 | |
| 55 | if (ret < 0 || ret != blen) { |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 56 | warn("usb in %d operation failed.", req); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 57 | ret = -EIO; |
Mauro Carvalho Chehab | 1596c38 | 2016-11-12 12:46:27 -0200 | [diff] [blame] | 58 | } else { |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 59 | ret = 0; |
Mauro Carvalho Chehab | 1596c38 | 2016-11-12 12:46:27 -0200 | [diff] [blame] | 60 | memcpy(b, st->data, blen); |
| 61 | } |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 62 | |
| 63 | deb_xfer("in: req. %x, val: %x, ind: %x, buffer: ",req,value,index); |
| 64 | debug_dump(b,blen,deb_xfer); |
| 65 | |
| 66 | mutex_unlock(&d->usb_mutex); |
| 67 | |
| 68 | return ret; |
| 69 | } |
| 70 | |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 71 | static int gp8psk_usb_out_op(struct dvb_usb_device *d, u8 req, u16 value, |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 72 | u16 index, u8 *b, int blen) |
| 73 | { |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 74 | struct gp8psk_state *st = d->priv; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 75 | int ret; |
| 76 | |
| 77 | deb_xfer("out: req. %x, val: %x, ind: %x, buffer: ",req,value,index); |
| 78 | debug_dump(b,blen,deb_xfer); |
| 79 | |
Mauro Carvalho Chehab | f1a503d | 2016-10-07 14:12:48 -0300 | [diff] [blame] | 80 | if (blen > sizeof(st->data)) |
| 81 | return -EIO; |
| 82 | |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 83 | if ((ret = mutex_lock_interruptible(&d->usb_mutex))) |
| 84 | return ret; |
| 85 | |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 86 | memcpy(st->data, b, blen); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 87 | if (usb_control_msg(d->udev, |
| 88 | usb_sndctrlpipe(d->udev,0), |
| 89 | req, |
| 90 | USB_TYPE_VENDOR | USB_DIR_OUT, |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 91 | value, index, st->data, blen, |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 92 | 2000) != blen) { |
| 93 | warn("usb out operation failed."); |
| 94 | ret = -EIO; |
| 95 | } else |
| 96 | ret = 0; |
| 97 | mutex_unlock(&d->usb_mutex); |
| 98 | |
| 99 | return ret; |
| 100 | } |
| 101 | |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 102 | |
| 103 | static int gp8psk_get_fw_version(struct dvb_usb_device *d, u8 *fw_vers) |
| 104 | { |
| 105 | return gp8psk_usb_in_op(d, GET_FW_VERS, 0, 0, fw_vers, 6); |
| 106 | } |
| 107 | |
| 108 | static int gp8psk_get_fpga_version(struct dvb_usb_device *d, u8 *fpga_vers) |
| 109 | { |
| 110 | return gp8psk_usb_in_op(d, GET_FPGA_VERS, 0, 0, fpga_vers, 1); |
| 111 | } |
| 112 | |
| 113 | static void gp8psk_info(struct dvb_usb_device *d) |
| 114 | { |
| 115 | u8 fpga_vers, fw_vers[6]; |
| 116 | |
| 117 | if (!gp8psk_get_fw_version(d, fw_vers)) |
| 118 | info("FW Version = %i.%02i.%i (0x%x) Build %4i/%02i/%02i", |
| 119 | fw_vers[2], fw_vers[1], fw_vers[0], GP8PSK_FW_VERS(fw_vers), |
| 120 | 2000 + fw_vers[5], fw_vers[4], fw_vers[3]); |
| 121 | else |
| 122 | info("failed to get FW version"); |
| 123 | |
| 124 | if (!gp8psk_get_fpga_version(d, &fpga_vers)) |
| 125 | info("FPGA Version = %i", fpga_vers); |
| 126 | else |
| 127 | info("failed to get FPGA version"); |
| 128 | } |
| 129 | |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 130 | static int gp8psk_load_bcm4500fw(struct dvb_usb_device *d) |
| 131 | { |
| 132 | int ret; |
| 133 | const struct firmware *fw = NULL; |
David Woodhouse | 3a9282c | 2008-05-24 00:13:08 +0100 | [diff] [blame] | 134 | const u8 *ptr; |
| 135 | u8 *buf; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 136 | if ((ret = request_firmware(&fw, bcm4500_firmware, |
| 137 | &d->udev->dev)) != 0) { |
Mauro Carvalho Chehab | fe63a1a | 2018-05-08 18:10:05 -0300 | [diff] [blame] | 138 | err("did not find the bcm4500 firmware file '%s' (status %d). You can use <kernel_dir>/scripts/get_dvb_firmware to get the firmware", |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 139 | bcm4500_firmware,ret); |
| 140 | return ret; |
| 141 | } |
| 142 | |
Patrick Boettcher | 976e348 | 2006-05-14 13:29:48 -0300 | [diff] [blame] | 143 | ret = -EINVAL; |
| 144 | |
| 145 | if (gp8psk_usb_out_op(d, LOAD_BCM4500,1,0,NULL, 0)) |
| 146 | goto out_rel_fw; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 147 | |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 148 | info("downloading bcm4500 firmware from file '%s'",bcm4500_firmware); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 149 | |
| 150 | ptr = fw->data; |
Mauro Carvalho Chehab | b2353e1 | 2018-05-05 12:09:46 -0400 | [diff] [blame] | 151 | buf = kmalloc(64, GFP_KERNEL); |
Jiri Slaby | 205161e | 2010-04-27 18:11:20 -0300 | [diff] [blame] | 152 | if (!buf) { |
| 153 | ret = -ENOMEM; |
| 154 | goto out_rel_fw; |
| 155 | } |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 156 | |
| 157 | while (ptr[0] != 0xff) { |
| 158 | u16 buflen = ptr[0] + 4; |
| 159 | if (ptr + buflen >= fw->data + fw->size) { |
| 160 | err("failed to load bcm4500 firmware."); |
Patrick Boettcher | 976e348 | 2006-05-14 13:29:48 -0300 | [diff] [blame] | 161 | goto out_free; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 162 | } |
Mauro Carvalho Chehab | f1a503d | 2016-10-07 14:12:48 -0300 | [diff] [blame] | 163 | if (buflen > 64) { |
Colin Ian King | 7289cf4 | 2016-12-30 12:46:19 -0200 | [diff] [blame] | 164 | err("firmware chunk size bigger than 64 bytes."); |
Mauro Carvalho Chehab | f1a503d | 2016-10-07 14:12:48 -0300 | [diff] [blame] | 165 | goto out_free; |
| 166 | } |
| 167 | |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 168 | memcpy(buf, ptr, buflen); |
| 169 | if (dvb_usb_generic_write(d, buf, buflen)) { |
| 170 | err("failed to load bcm4500 firmware."); |
Patrick Boettcher | 976e348 | 2006-05-14 13:29:48 -0300 | [diff] [blame] | 171 | goto out_free; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 172 | } |
| 173 | ptr += buflen; |
| 174 | } |
Patrick Boettcher | 976e348 | 2006-05-14 13:29:48 -0300 | [diff] [blame] | 175 | |
| 176 | ret = 0; |
| 177 | |
| 178 | out_free: |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 179 | kfree(buf); |
Patrick Boettcher | 976e348 | 2006-05-14 13:29:48 -0300 | [diff] [blame] | 180 | out_rel_fw: |
| 181 | release_firmware(fw); |
| 182 | |
| 183 | return ret; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | static int gp8psk_power_ctrl(struct dvb_usb_device *d, int onoff) |
| 187 | { |
| 188 | u8 status, buf; |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 189 | int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct); |
| 190 | |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 191 | if (onoff) { |
| 192 | gp8psk_usb_in_op(d, GET_8PSK_CONFIG,0,0,&status,1); |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 193 | if (! (status & bm8pskStarted)) { /* started */ |
| 194 | if(gp_product_id == USB_PID_GENPIX_SKYWALKER_CW3K) |
| 195 | gp8psk_usb_out_op(d, CW3K_INIT, 1, 0, NULL, 0); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 196 | if (gp8psk_usb_in_op(d, BOOT_8PSK, 1, 0, &buf, 1)) |
| 197 | return -EINVAL; |
VDR User | 9e21cca | 2010-10-30 15:49:49 -0300 | [diff] [blame] | 198 | gp8psk_info(d); |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 199 | } |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 200 | |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 201 | if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM) |
| 202 | if (! (status & bm8pskFW_Loaded)) /* BCM4500 firmware loaded */ |
| 203 | if(gp8psk_load_bcm4500fw(d)) |
Marcin Slusarz | 7fa7b85 | 2008-05-11 19:53:39 -0300 | [diff] [blame] | 204 | return -EINVAL; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 205 | |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 206 | if (! (status & bmIntersilOn)) /* LNB Power */ |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 207 | if (gp8psk_usb_in_op(d, START_INTERSIL, 1, 0, |
| 208 | &buf, 1)) |
Marcin Slusarz | 7fa7b85 | 2008-05-11 19:53:39 -0300 | [diff] [blame] | 209 | return -EINVAL; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 210 | |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 211 | /* Set DVB mode to 1 */ |
| 212 | if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM) |
| 213 | if (gp8psk_usb_out_op(d, SET_DVB_MODE, 1, 0, NULL, 0)) |
Marcin Slusarz | 7fa7b85 | 2008-05-11 19:53:39 -0300 | [diff] [blame] | 214 | return -EINVAL; |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 215 | /* Abort possible TS (if previous tune crashed) */ |
| 216 | if (gp8psk_usb_out_op(d, ARM_TRANSFER, 0, 0, NULL, 0)) |
Marcin Slusarz | 7fa7b85 | 2008-05-11 19:53:39 -0300 | [diff] [blame] | 217 | return -EINVAL; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 218 | } else { |
| 219 | /* Turn off LNB power */ |
| 220 | if (gp8psk_usb_in_op(d, START_INTERSIL, 0, 0, &buf, 1)) |
Marcin Slusarz | 7fa7b85 | 2008-05-11 19:53:39 -0300 | [diff] [blame] | 221 | return -EINVAL; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 222 | /* Turn off 8psk power */ |
| 223 | if (gp8psk_usb_in_op(d, BOOT_8PSK, 0, 0, &buf, 1)) |
| 224 | return -EINVAL; |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 225 | if(gp_product_id == USB_PID_GENPIX_SKYWALKER_CW3K) |
| 226 | gp8psk_usb_out_op(d, CW3K_INIT, 0, 0, NULL, 0); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 227 | } |
| 228 | return 0; |
| 229 | } |
| 230 | |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 231 | static int gp8psk_bcm4500_reload(struct dvb_usb_device *d) |
Alan Nisota | 02ebf23 | 2008-12-20 12:03:06 -0300 | [diff] [blame] | 232 | { |
| 233 | u8 buf; |
| 234 | int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct); |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 235 | |
| 236 | deb_xfer("reloading firmware\n"); |
| 237 | |
Alan Nisota | 02ebf23 | 2008-12-20 12:03:06 -0300 | [diff] [blame] | 238 | /* Turn off 8psk power */ |
| 239 | if (gp8psk_usb_in_op(d, BOOT_8PSK, 0, 0, &buf, 1)) |
| 240 | return -EINVAL; |
| 241 | /* Turn On 8psk power */ |
| 242 | if (gp8psk_usb_in_op(d, BOOT_8PSK, 1, 0, &buf, 1)) |
| 243 | return -EINVAL; |
| 244 | /* load BCM4500 firmware */ |
| 245 | if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM) |
| 246 | if (gp8psk_load_bcm4500fw(d)) |
Hans Verkuil | da1b5c9 | 2008-12-30 07:07:53 -0300 | [diff] [blame] | 247 | return -EINVAL; |
Alan Nisota | 02ebf23 | 2008-12-20 12:03:06 -0300 | [diff] [blame] | 248 | return 0; |
| 249 | } |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 250 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 251 | static int gp8psk_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff) |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 252 | { |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 253 | return gp8psk_usb_out_op(adap->dev, ARM_TRANSFER, onoff, 0 , NULL, 0); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 254 | } |
| 255 | |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 256 | /* Callbacks for gp8psk-fe.c */ |
| 257 | |
| 258 | static int gp8psk_fe_in(void *priv, u8 req, u16 value, |
| 259 | u16 index, u8 *b, int blen) |
| 260 | { |
| 261 | struct dvb_usb_device *d = priv; |
| 262 | |
| 263 | return gp8psk_usb_in_op(d, req, value, index, b, blen); |
| 264 | } |
| 265 | |
| 266 | static int gp8psk_fe_out(void *priv, u8 req, u16 value, |
| 267 | u16 index, u8 *b, int blen) |
| 268 | { |
| 269 | struct dvb_usb_device *d = priv; |
| 270 | |
| 271 | return gp8psk_usb_out_op(d, req, value, index, b, blen); |
| 272 | } |
| 273 | |
| 274 | static int gp8psk_fe_reload(void *priv) |
| 275 | { |
| 276 | struct dvb_usb_device *d = priv; |
| 277 | |
| 278 | return gp8psk_bcm4500_reload(d); |
| 279 | } |
| 280 | |
Wei Yongjun | d46e0a8 | 2017-01-12 13:32:29 -0200 | [diff] [blame] | 281 | static const struct gp8psk_fe_ops gp8psk_fe_ops = { |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 282 | .in = gp8psk_fe_in, |
| 283 | .out = gp8psk_fe_out, |
| 284 | .reload = gp8psk_fe_reload, |
| 285 | }; |
| 286 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 287 | static int gp8psk_frontend_attach(struct dvb_usb_adapter *adap) |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 288 | { |
Mauro Carvalho Chehab | 7a0786c | 2016-11-12 12:46:28 -0200 | [diff] [blame] | 289 | struct dvb_usb_device *d = adap->dev; |
| 290 | int id = le16_to_cpu(d->udev->descriptor.idProduct); |
| 291 | int is_rev1; |
| 292 | |
| 293 | is_rev1 = (id == USB_PID_GENPIX_8PSK_REV_1_WARM) ? true : false; |
| 294 | |
| 295 | adap->fe_adap[0].fe = dvb_attach(gp8psk_fe_attach, |
| 296 | &gp8psk_fe_ops, d, is_rev1); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 297 | return 0; |
| 298 | } |
| 299 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 300 | static struct dvb_usb_device_properties gp8psk_properties; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 301 | |
| 302 | static int gp8psk_usb_probe(struct usb_interface *intf, |
| 303 | const struct usb_device_id *id) |
| 304 | { |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 305 | int ret; |
| 306 | struct usb_device *udev = interface_to_usbdev(intf); |
Janne Grunau | 78e92006 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 307 | ret = dvb_usb_device_init(intf, &gp8psk_properties, |
| 308 | THIS_MODULE, NULL, adapter_nr); |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 309 | if (ret == 0) { |
| 310 | info("found Genpix USB device pID = %x (hex)", |
| 311 | le16_to_cpu(udev->descriptor.idProduct)); |
| 312 | } |
| 313 | return ret; |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static struct usb_device_id gp8psk_usb_table [] = { |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 317 | { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_1_COLD) }, |
| 318 | { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_1_WARM) }, |
| 319 | { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_2) }, |
| 320 | { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_1) }, |
Derek Kelly | bdd1751 | 2010-10-16 14:23:51 -0300 | [diff] [blame] | 321 | { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_2) }, |
Alan Nisota | 86cf5f8 | 2009-05-20 05:52:13 -0300 | [diff] [blame] | 322 | /* { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_CW3K) }, */ |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 323 | { 0 }, |
| 324 | }; |
| 325 | MODULE_DEVICE_TABLE(usb, gp8psk_usb_table); |
| 326 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 327 | static struct dvb_usb_device_properties gp8psk_properties = { |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 328 | .usb_ctrl = CYPRESS_FX2, |
| 329 | .firmware = "dvb-usb-gp8psk-01.fw", |
| 330 | |
Mauro Carvalho Chehab | fa86c9a | 2016-10-07 11:24:21 -0300 | [diff] [blame] | 331 | .size_of_priv = sizeof(struct gp8psk_state), |
| 332 | |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 333 | .num_adapters = 1, |
| 334 | .adapter = { |
| 335 | { |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 336 | .num_frontends = 1, |
| 337 | .fe = {{ |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 338 | .streaming_ctrl = gp8psk_streaming_ctrl, |
| 339 | .frontend_attach = gp8psk_frontend_attach, |
| 340 | /* parameter for the MPEG2-data transfer */ |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 341 | .stream = { |
| 342 | .type = USB_BULK, |
Patrick Boettcher | 01451e7 | 2006-10-13 11:34:46 -0300 | [diff] [blame] | 343 | .count = 7, |
| 344 | .endpoint = 0x82, |
| 345 | .u = { |
| 346 | .bulk = { |
| 347 | .buffersize = 8192, |
| 348 | } |
| 349 | } |
| 350 | }, |
Michael Krufky | 77eed21 | 2011-09-06 09:31:57 -0300 | [diff] [blame] | 351 | }}, |
Patrick Boettcher | 4d43e13 | 2006-09-30 06:53:48 -0300 | [diff] [blame] | 352 | } |
| 353 | }, |
| 354 | .power_ctrl = gp8psk_power_ctrl, |
| 355 | |
| 356 | .generic_bulk_ctrl_endpoint = 0x01, |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 357 | |
Derek Kelly | bdd1751 | 2010-10-16 14:23:51 -0300 | [diff] [blame] | 358 | .num_device_descs = 4, |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 359 | .devices = { |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 360 | { .name = "Genpix 8PSK-to-USB2 Rev.1 DVB-S receiver", |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 361 | .cold_ids = { &gp8psk_usb_table[0], NULL }, |
| 362 | .warm_ids = { &gp8psk_usb_table[1], NULL }, |
| 363 | }, |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 364 | { .name = "Genpix 8PSK-to-USB2 Rev.2 DVB-S receiver", |
| 365 | .cold_ids = { NULL }, |
| 366 | .warm_ids = { &gp8psk_usb_table[2], NULL }, |
| 367 | }, |
| 368 | { .name = "Genpix SkyWalker-1 DVB-S receiver", |
| 369 | .cold_ids = { NULL }, |
| 370 | .warm_ids = { &gp8psk_usb_table[3], NULL }, |
| 371 | }, |
Derek Kelly | bdd1751 | 2010-10-16 14:23:51 -0300 | [diff] [blame] | 372 | { .name = "Genpix SkyWalker-2 DVB-S receiver", |
| 373 | .cold_ids = { NULL }, |
| 374 | .warm_ids = { &gp8psk_usb_table[4], NULL }, |
| 375 | }, |
Randy Dunlap | ab9caf9 | 2006-09-28 14:03:26 -0300 | [diff] [blame] | 376 | { NULL }, |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 377 | } |
| 378 | }; |
| 379 | |
| 380 | /* usb specific object needed to register this driver with the usb subsystem */ |
| 381 | static struct usb_driver gp8psk_usb_driver = { |
| 382 | .name = "dvb_usb_gp8psk", |
| 383 | .probe = gp8psk_usb_probe, |
| 384 | .disconnect = dvb_usb_device_exit, |
| 385 | .id_table = gp8psk_usb_table, |
| 386 | }; |
| 387 | |
Greg Kroah-Hartman | ecb3b2b | 2011-11-18 09:46:12 -0800 | [diff] [blame] | 388 | module_usb_driver(gp8psk_usb_driver); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 389 | |
| 390 | MODULE_AUTHOR("Alan Nisota <alannisota@gamil.com>"); |
Derek Kelly | d12da8e | 2010-10-16 16:18:15 -0300 | [diff] [blame] | 391 | MODULE_DESCRIPTION("Driver for Genpix DVB-S"); |
Alan Nisota | 458b634 | 2007-08-18 17:52:35 -0300 | [diff] [blame] | 392 | MODULE_VERSION("1.1"); |
Alan Nisota | 9bbe076 | 2006-05-14 13:23:56 -0300 | [diff] [blame] | 393 | MODULE_LICENSE("GPL"); |