blob: 13e96b0aeb0fc400869a0baecc13184b07acdd29 [file] [log] [blame]
Alan Nisota9bbe0762006-05-14 13:23:56 -03001/* DVB USB compliant Linux driver for the
Alan Nisota458b6342007-08-18 17:52:35 -03002 * - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module
Alan Nisota9bbe0762006-05-14 13:23:56 -03003 *
Alan Nisota458b6342007-08-18 17:52:35 -03004 * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com)
5 * Copyright (C) 2006,2007 Genpix Electronics (genpix@genpix-electronics.com)
Alan Nisota9bbe0762006-05-14 13:23:56 -03006 *
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 Chehab670d7adb2018-05-08 18:29:30 -030015 * see Documentation/media/dvb-drivers/dvb-usb.rst for more information
Alan Nisota9bbe0762006-05-14 13:23:56 -030016 */
17#include "gp8psk.h"
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -020018#include "gp8psk-fe.h"
Alan Nisota9bbe0762006-05-14 13:23:56 -030019
20/* debug */
21static char bcm4500_firmware[] = "dvb-usb-gp8psk-02.fw";
22int dvb_usb_gp8psk_debug;
23module_param_named(debug,dvb_usb_gp8psk_debug, int, 0644);
24MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,rc=4 (or-able))." DVB_USB_DEBUG_STATUS);
25
Janne Grunau78e920062008-04-09 19:13:13 -030026DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
27
Mauro Carvalho Chehabfa86c9a2016-10-07 11:24:21 -030028struct gp8psk_state {
29 unsigned char data[80];
30};
31
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -020032static int gp8psk_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value,
33 u16 index, u8 *b, int blen)
Alan Nisota9bbe0762006-05-14 13:23:56 -030034{
Mauro Carvalho Chehabfa86c9a2016-10-07 11:24:21 -030035 struct gp8psk_state *st = d->priv;
Alan Nisota9bbe0762006-05-14 13:23:56 -030036 int ret = 0,try = 0;
37
Mauro Carvalho Chehabf1a503d2016-10-07 14:12:48 -030038 if (blen > sizeof(st->data))
39 return -EIO;
40
Alan Nisota9bbe0762006-05-14 13:23:56 -030041 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 Chehabfa86c9a2016-10-07 11:24:21 -030049 value, index, st->data, blen,
Alan Nisota9bbe0762006-05-14 13:23:56 -030050 2000);
51 deb_info("reading number %d (ret: %d)\n",try,ret);
52 try++;
53 }
54
55 if (ret < 0 || ret != blen) {
Alan Nisota458b6342007-08-18 17:52:35 -030056 warn("usb in %d operation failed.", req);
Alan Nisota9bbe0762006-05-14 13:23:56 -030057 ret = -EIO;
Mauro Carvalho Chehab1596c382016-11-12 12:46:27 -020058 } else {
Alan Nisota9bbe0762006-05-14 13:23:56 -030059 ret = 0;
Mauro Carvalho Chehab1596c382016-11-12 12:46:27 -020060 memcpy(b, st->data, blen);
61 }
Alan Nisota9bbe0762006-05-14 13:23:56 -030062
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 Chehab7a0786c2016-11-12 12:46:28 -020071static int gp8psk_usb_out_op(struct dvb_usb_device *d, u8 req, u16 value,
Alan Nisota9bbe0762006-05-14 13:23:56 -030072 u16 index, u8 *b, int blen)
73{
Mauro Carvalho Chehabfa86c9a2016-10-07 11:24:21 -030074 struct gp8psk_state *st = d->priv;
Alan Nisota9bbe0762006-05-14 13:23:56 -030075 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 Chehabf1a503d2016-10-07 14:12:48 -030080 if (blen > sizeof(st->data))
81 return -EIO;
82
Alan Nisota9bbe0762006-05-14 13:23:56 -030083 if ((ret = mutex_lock_interruptible(&d->usb_mutex)))
84 return ret;
85
Mauro Carvalho Chehabfa86c9a2016-10-07 11:24:21 -030086 memcpy(st->data, b, blen);
Alan Nisota9bbe0762006-05-14 13:23:56 -030087 if (usb_control_msg(d->udev,
88 usb_sndctrlpipe(d->udev,0),
89 req,
90 USB_TYPE_VENDOR | USB_DIR_OUT,
Mauro Carvalho Chehabfa86c9a2016-10-07 11:24:21 -030091 value, index, st->data, blen,
Alan Nisota9bbe0762006-05-14 13:23:56 -030092 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 Chehab7a0786c2016-11-12 12:46:28 -0200102
103static 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
108static 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
113static 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 Nisota9bbe0762006-05-14 13:23:56 -0300130static int gp8psk_load_bcm4500fw(struct dvb_usb_device *d)
131{
132 int ret;
133 const struct firmware *fw = NULL;
David Woodhouse3a9282c2008-05-24 00:13:08 +0100134 const u8 *ptr;
135 u8 *buf;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300136 if ((ret = request_firmware(&fw, bcm4500_firmware,
137 &d->udev->dev)) != 0) {
Mauro Carvalho Chehabfe63a1a2018-05-08 18:10:05 -0300138 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 Nisota9bbe0762006-05-14 13:23:56 -0300139 bcm4500_firmware,ret);
140 return ret;
141 }
142
Patrick Boettcher976e3482006-05-14 13:29:48 -0300143 ret = -EINVAL;
144
145 if (gp8psk_usb_out_op(d, LOAD_BCM4500,1,0,NULL, 0))
146 goto out_rel_fw;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300147
Alan Nisota458b6342007-08-18 17:52:35 -0300148 info("downloading bcm4500 firmware from file '%s'",bcm4500_firmware);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300149
150 ptr = fw->data;
Mauro Carvalho Chehabb2353e12018-05-05 12:09:46 -0400151 buf = kmalloc(64, GFP_KERNEL);
Jiri Slaby205161e2010-04-27 18:11:20 -0300152 if (!buf) {
153 ret = -ENOMEM;
154 goto out_rel_fw;
155 }
Alan Nisota9bbe0762006-05-14 13:23:56 -0300156
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 Boettcher976e3482006-05-14 13:29:48 -0300161 goto out_free;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300162 }
Mauro Carvalho Chehabf1a503d2016-10-07 14:12:48 -0300163 if (buflen > 64) {
Colin Ian King7289cf42016-12-30 12:46:19 -0200164 err("firmware chunk size bigger than 64 bytes.");
Mauro Carvalho Chehabf1a503d2016-10-07 14:12:48 -0300165 goto out_free;
166 }
167
Alan Nisota9bbe0762006-05-14 13:23:56 -0300168 memcpy(buf, ptr, buflen);
169 if (dvb_usb_generic_write(d, buf, buflen)) {
170 err("failed to load bcm4500 firmware.");
Patrick Boettcher976e3482006-05-14 13:29:48 -0300171 goto out_free;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300172 }
173 ptr += buflen;
174 }
Patrick Boettcher976e3482006-05-14 13:29:48 -0300175
176 ret = 0;
177
178out_free:
Alan Nisota9bbe0762006-05-14 13:23:56 -0300179 kfree(buf);
Patrick Boettcher976e3482006-05-14 13:29:48 -0300180out_rel_fw:
181 release_firmware(fw);
182
183 return ret;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300184}
185
186static int gp8psk_power_ctrl(struct dvb_usb_device *d, int onoff)
187{
188 u8 status, buf;
Alan Nisota458b6342007-08-18 17:52:35 -0300189 int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct);
190
Alan Nisota9bbe0762006-05-14 13:23:56 -0300191 if (onoff) {
192 gp8psk_usb_in_op(d, GET_8PSK_CONFIG,0,0,&status,1);
Alan Nisota458b6342007-08-18 17:52:35 -0300193 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 Nisota9bbe0762006-05-14 13:23:56 -0300196 if (gp8psk_usb_in_op(d, BOOT_8PSK, 1, 0, &buf, 1))
197 return -EINVAL;
VDR User9e21cca2010-10-30 15:49:49 -0300198 gp8psk_info(d);
Alan Nisota458b6342007-08-18 17:52:35 -0300199 }
Alan Nisota9bbe0762006-05-14 13:23:56 -0300200
Alan Nisota458b6342007-08-18 17:52:35 -0300201 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 Slusarz7fa7b852008-05-11 19:53:39 -0300204 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300205
Alan Nisota458b6342007-08-18 17:52:35 -0300206 if (! (status & bmIntersilOn)) /* LNB Power */
Alan Nisota9bbe0762006-05-14 13:23:56 -0300207 if (gp8psk_usb_in_op(d, START_INTERSIL, 1, 0,
208 &buf, 1))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300209 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300210
Alan Nisota458b6342007-08-18 17:52:35 -0300211 /* 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 Slusarz7fa7b852008-05-11 19:53:39 -0300214 return -EINVAL;
Alan Nisota458b6342007-08-18 17:52:35 -0300215 /* Abort possible TS (if previous tune crashed) */
216 if (gp8psk_usb_out_op(d, ARM_TRANSFER, 0, 0, NULL, 0))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300217 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300218 } else {
219 /* Turn off LNB power */
220 if (gp8psk_usb_in_op(d, START_INTERSIL, 0, 0, &buf, 1))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300221 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300222 /* Turn off 8psk power */
223 if (gp8psk_usb_in_op(d, BOOT_8PSK, 0, 0, &buf, 1))
224 return -EINVAL;
Alan Nisota458b6342007-08-18 17:52:35 -0300225 if(gp_product_id == USB_PID_GENPIX_SKYWALKER_CW3K)
226 gp8psk_usb_out_op(d, CW3K_INIT, 0, 0, NULL, 0);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300227 }
228 return 0;
229}
230
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -0200231static int gp8psk_bcm4500_reload(struct dvb_usb_device *d)
Alan Nisota02ebf232008-12-20 12:03:06 -0300232{
233 u8 buf;
234 int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct);
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -0200235
236 deb_xfer("reloading firmware\n");
237
Alan Nisota02ebf232008-12-20 12:03:06 -0300238 /* 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 Verkuilda1b5c92008-12-30 07:07:53 -0300247 return -EINVAL;
Alan Nisota02ebf232008-12-20 12:03:06 -0300248 return 0;
249}
Alan Nisota9bbe0762006-05-14 13:23:56 -0300250
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300251static int gp8psk_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Alan Nisota9bbe0762006-05-14 13:23:56 -0300252{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300253 return gp8psk_usb_out_op(adap->dev, ARM_TRANSFER, onoff, 0 , NULL, 0);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300254}
255
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -0200256/* Callbacks for gp8psk-fe.c */
257
258static 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
266static 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
274static int gp8psk_fe_reload(void *priv)
275{
276 struct dvb_usb_device *d = priv;
277
278 return gp8psk_bcm4500_reload(d);
279}
280
Wei Yongjund46e0a82017-01-12 13:32:29 -0200281static const struct gp8psk_fe_ops gp8psk_fe_ops = {
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -0200282 .in = gp8psk_fe_in,
283 .out = gp8psk_fe_out,
284 .reload = gp8psk_fe_reload,
285};
286
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300287static int gp8psk_frontend_attach(struct dvb_usb_adapter *adap)
Alan Nisota9bbe0762006-05-14 13:23:56 -0300288{
Mauro Carvalho Chehab7a0786c2016-11-12 12:46:28 -0200289 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 Nisota9bbe0762006-05-14 13:23:56 -0300297 return 0;
298}
299
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300300static struct dvb_usb_device_properties gp8psk_properties;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300301
302static int gp8psk_usb_probe(struct usb_interface *intf,
303 const struct usb_device_id *id)
304{
Alan Nisota458b6342007-08-18 17:52:35 -0300305 int ret;
306 struct usb_device *udev = interface_to_usbdev(intf);
Janne Grunau78e920062008-04-09 19:13:13 -0300307 ret = dvb_usb_device_init(intf, &gp8psk_properties,
308 THIS_MODULE, NULL, adapter_nr);
Alan Nisota458b6342007-08-18 17:52:35 -0300309 if (ret == 0) {
310 info("found Genpix USB device pID = %x (hex)",
311 le16_to_cpu(udev->descriptor.idProduct));
312 }
313 return ret;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300314}
315
316static struct usb_device_id gp8psk_usb_table [] = {
Alan Nisota458b6342007-08-18 17:52:35 -0300317 { 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 Kellybdd17512010-10-16 14:23:51 -0300321 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_2) },
Alan Nisota86cf5f82009-05-20 05:52:13 -0300322/* { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_CW3K) }, */
Alan Nisota9bbe0762006-05-14 13:23:56 -0300323 { 0 },
324};
325MODULE_DEVICE_TABLE(usb, gp8psk_usb_table);
326
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300327static struct dvb_usb_device_properties gp8psk_properties = {
Alan Nisota9bbe0762006-05-14 13:23:56 -0300328 .usb_ctrl = CYPRESS_FX2,
329 .firmware = "dvb-usb-gp8psk-01.fw",
330
Mauro Carvalho Chehabfa86c9a2016-10-07 11:24:21 -0300331 .size_of_priv = sizeof(struct gp8psk_state),
332
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300333 .num_adapters = 1,
334 .adapter = {
335 {
Michael Krufky77eed212011-09-06 09:31:57 -0300336 .num_frontends = 1,
337 .fe = {{
Patrick Boettcher01451e72006-10-13 11:34:46 -0300338 .streaming_ctrl = gp8psk_streaming_ctrl,
339 .frontend_attach = gp8psk_frontend_attach,
340 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300341 .stream = {
342 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300343 .count = 7,
344 .endpoint = 0x82,
345 .u = {
346 .bulk = {
347 .buffersize = 8192,
348 }
349 }
350 },
Michael Krufky77eed212011-09-06 09:31:57 -0300351 }},
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300352 }
353 },
354 .power_ctrl = gp8psk_power_ctrl,
355
356 .generic_bulk_ctrl_endpoint = 0x01,
Alan Nisota9bbe0762006-05-14 13:23:56 -0300357
Derek Kellybdd17512010-10-16 14:23:51 -0300358 .num_device_descs = 4,
Alan Nisota9bbe0762006-05-14 13:23:56 -0300359 .devices = {
Alan Nisota458b6342007-08-18 17:52:35 -0300360 { .name = "Genpix 8PSK-to-USB2 Rev.1 DVB-S receiver",
Alan Nisota9bbe0762006-05-14 13:23:56 -0300361 .cold_ids = { &gp8psk_usb_table[0], NULL },
362 .warm_ids = { &gp8psk_usb_table[1], NULL },
363 },
Alan Nisota458b6342007-08-18 17:52:35 -0300364 { .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 Kellybdd17512010-10-16 14:23:51 -0300372 { .name = "Genpix SkyWalker-2 DVB-S receiver",
373 .cold_ids = { NULL },
374 .warm_ids = { &gp8psk_usb_table[4], NULL },
375 },
Randy Dunlapab9caf92006-09-28 14:03:26 -0300376 { NULL },
Alan Nisota9bbe0762006-05-14 13:23:56 -0300377 }
378};
379
380/* usb specific object needed to register this driver with the usb subsystem */
381static 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-Hartmanecb3b2b2011-11-18 09:46:12 -0800388module_usb_driver(gp8psk_usb_driver);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300389
390MODULE_AUTHOR("Alan Nisota <alannisota@gamil.com>");
Derek Kellyd12da8e2010-10-16 16:18:15 -0300391MODULE_DESCRIPTION("Driver for Genpix DVB-S");
Alan Nisota458b6342007-08-18 17:52:35 -0300392MODULE_VERSION("1.1");
Alan Nisota9bbe0762006-05-14 13:23:56 -0300393MODULE_LICENSE("GPL");