blob: d965a923f3914e626d3f1cfe35a417ceb417b5dd [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 *
15 * see Documentation/dvb/README.dvb-usb for more information
16 */
17#include "gp8psk.h"
18
19/* debug */
20static char bcm4500_firmware[] = "dvb-usb-gp8psk-02.fw";
21int dvb_usb_gp8psk_debug;
22module_param_named(debug,dvb_usb_gp8psk_debug, int, 0644);
23MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,rc=4 (or-able))." DVB_USB_DEBUG_STATUS);
24
Janne Grunau78e92002008-04-09 19:13:13 -030025DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
26
Alan Nisota9bbe0762006-05-14 13:23:56 -030027int gp8psk_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value, u16 index, u8 *b, int blen)
28{
29 int ret = 0,try = 0;
30
31 if ((ret = mutex_lock_interruptible(&d->usb_mutex)))
32 return ret;
33
34 while (ret >= 0 && ret != blen && try < 3) {
35 ret = usb_control_msg(d->udev,
36 usb_rcvctrlpipe(d->udev,0),
37 req,
38 USB_TYPE_VENDOR | USB_DIR_IN,
39 value,index,b,blen,
40 2000);
41 deb_info("reading number %d (ret: %d)\n",try,ret);
42 try++;
43 }
44
45 if (ret < 0 || ret != blen) {
Alan Nisota458b6342007-08-18 17:52:35 -030046 warn("usb in %d operation failed.", req);
Alan Nisota9bbe0762006-05-14 13:23:56 -030047 ret = -EIO;
48 } else
49 ret = 0;
50
51 deb_xfer("in: req. %x, val: %x, ind: %x, buffer: ",req,value,index);
52 debug_dump(b,blen,deb_xfer);
53
54 mutex_unlock(&d->usb_mutex);
55
56 return ret;
57}
58
59int gp8psk_usb_out_op(struct dvb_usb_device *d, u8 req, u16 value,
60 u16 index, u8 *b, int blen)
61{
62 int ret;
63
64 deb_xfer("out: req. %x, val: %x, ind: %x, buffer: ",req,value,index);
65 debug_dump(b,blen,deb_xfer);
66
67 if ((ret = mutex_lock_interruptible(&d->usb_mutex)))
68 return ret;
69
70 if (usb_control_msg(d->udev,
71 usb_sndctrlpipe(d->udev,0),
72 req,
73 USB_TYPE_VENDOR | USB_DIR_OUT,
74 value,index,b,blen,
75 2000) != blen) {
76 warn("usb out operation failed.");
77 ret = -EIO;
78 } else
79 ret = 0;
80 mutex_unlock(&d->usb_mutex);
81
82 return ret;
83}
84
85static int gp8psk_load_bcm4500fw(struct dvb_usb_device *d)
86{
87 int ret;
88 const struct firmware *fw = NULL;
David Woodhouse3a9282c2008-05-24 00:13:08 +010089 const u8 *ptr;
90 u8 *buf;
Alan Nisota9bbe0762006-05-14 13:23:56 -030091 if ((ret = request_firmware(&fw, bcm4500_firmware,
92 &d->udev->dev)) != 0) {
93 err("did not find the bcm4500 firmware file. (%s) "
94 "Please see linux/Documentation/dvb/ for more details on firmware-problems. (%d)",
95 bcm4500_firmware,ret);
96 return ret;
97 }
98
Patrick Boettcher976e3482006-05-14 13:29:48 -030099 ret = -EINVAL;
100
101 if (gp8psk_usb_out_op(d, LOAD_BCM4500,1,0,NULL, 0))
102 goto out_rel_fw;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300103
Alan Nisota458b6342007-08-18 17:52:35 -0300104 info("downloading bcm4500 firmware from file '%s'",bcm4500_firmware);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300105
106 ptr = fw->data;
Alan Nisota458b6342007-08-18 17:52:35 -0300107 buf = kmalloc(64, GFP_KERNEL | GFP_DMA);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300108
109 while (ptr[0] != 0xff) {
110 u16 buflen = ptr[0] + 4;
111 if (ptr + buflen >= fw->data + fw->size) {
112 err("failed to load bcm4500 firmware.");
Patrick Boettcher976e3482006-05-14 13:29:48 -0300113 goto out_free;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300114 }
115 memcpy(buf, ptr, buflen);
116 if (dvb_usb_generic_write(d, buf, buflen)) {
117 err("failed to load bcm4500 firmware.");
Patrick Boettcher976e3482006-05-14 13:29:48 -0300118 goto out_free;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300119 }
120 ptr += buflen;
121 }
Patrick Boettcher976e3482006-05-14 13:29:48 -0300122
123 ret = 0;
124
125out_free:
Alan Nisota9bbe0762006-05-14 13:23:56 -0300126 kfree(buf);
Patrick Boettcher976e3482006-05-14 13:29:48 -0300127out_rel_fw:
128 release_firmware(fw);
129
130 return ret;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300131}
132
133static int gp8psk_power_ctrl(struct dvb_usb_device *d, int onoff)
134{
135 u8 status, buf;
Alan Nisota458b6342007-08-18 17:52:35 -0300136 int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct);
137
Alan Nisota9bbe0762006-05-14 13:23:56 -0300138 if (onoff) {
139 gp8psk_usb_in_op(d, GET_8PSK_CONFIG,0,0,&status,1);
Alan Nisota458b6342007-08-18 17:52:35 -0300140 if (! (status & bm8pskStarted)) { /* started */
141 if(gp_product_id == USB_PID_GENPIX_SKYWALKER_CW3K)
142 gp8psk_usb_out_op(d, CW3K_INIT, 1, 0, NULL, 0);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300143 if (gp8psk_usb_in_op(d, BOOT_8PSK, 1, 0, &buf, 1))
144 return -EINVAL;
Alan Nisota458b6342007-08-18 17:52:35 -0300145 }
Alan Nisota9bbe0762006-05-14 13:23:56 -0300146
Alan Nisota458b6342007-08-18 17:52:35 -0300147 if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM)
148 if (! (status & bm8pskFW_Loaded)) /* BCM4500 firmware loaded */
149 if(gp8psk_load_bcm4500fw(d))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300150 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300151
Alan Nisota458b6342007-08-18 17:52:35 -0300152 if (! (status & bmIntersilOn)) /* LNB Power */
Alan Nisota9bbe0762006-05-14 13:23:56 -0300153 if (gp8psk_usb_in_op(d, START_INTERSIL, 1, 0,
154 &buf, 1))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300155 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300156
Alan Nisota458b6342007-08-18 17:52:35 -0300157 /* Set DVB mode to 1 */
158 if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM)
159 if (gp8psk_usb_out_op(d, SET_DVB_MODE, 1, 0, NULL, 0))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300160 return -EINVAL;
Alan Nisota458b6342007-08-18 17:52:35 -0300161 /* Abort possible TS (if previous tune crashed) */
162 if (gp8psk_usb_out_op(d, ARM_TRANSFER, 0, 0, NULL, 0))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300163 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300164 } else {
165 /* Turn off LNB power */
166 if (gp8psk_usb_in_op(d, START_INTERSIL, 0, 0, &buf, 1))
Marcin Slusarz7fa7b852008-05-11 19:53:39 -0300167 return -EINVAL;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300168 /* Turn off 8psk power */
169 if (gp8psk_usb_in_op(d, BOOT_8PSK, 0, 0, &buf, 1))
170 return -EINVAL;
Alan Nisota458b6342007-08-18 17:52:35 -0300171 if(gp_product_id == USB_PID_GENPIX_SKYWALKER_CW3K)
172 gp8psk_usb_out_op(d, CW3K_INIT, 0, 0, NULL, 0);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300173 }
174 return 0;
175}
176
177
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300178static int gp8psk_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Alan Nisota9bbe0762006-05-14 13:23:56 -0300179{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300180 return gp8psk_usb_out_op(adap->dev, ARM_TRANSFER, onoff, 0 , NULL, 0);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300181}
182
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300183static int gp8psk_frontend_attach(struct dvb_usb_adapter *adap)
Alan Nisota9bbe0762006-05-14 13:23:56 -0300184{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300185 adap->fe = gp8psk_fe_attach(adap->dev);
Alan Nisota9bbe0762006-05-14 13:23:56 -0300186 return 0;
187}
188
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300189static struct dvb_usb_device_properties gp8psk_properties;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300190
191static int gp8psk_usb_probe(struct usb_interface *intf,
192 const struct usb_device_id *id)
193{
Alan Nisota458b6342007-08-18 17:52:35 -0300194 int ret;
195 struct usb_device *udev = interface_to_usbdev(intf);
Janne Grunau78e92002008-04-09 19:13:13 -0300196 ret = dvb_usb_device_init(intf, &gp8psk_properties,
197 THIS_MODULE, NULL, adapter_nr);
Alan Nisota458b6342007-08-18 17:52:35 -0300198 if (ret == 0) {
199 info("found Genpix USB device pID = %x (hex)",
200 le16_to_cpu(udev->descriptor.idProduct));
201 }
202 return ret;
Alan Nisota9bbe0762006-05-14 13:23:56 -0300203}
204
205static struct usb_device_id gp8psk_usb_table [] = {
Alan Nisota458b6342007-08-18 17:52:35 -0300206 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_1_COLD) },
207 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_1_WARM) },
208 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_2) },
209 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_1) },
210 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_CW3K) },
Alan Nisota9bbe0762006-05-14 13:23:56 -0300211 { 0 },
212};
213MODULE_DEVICE_TABLE(usb, gp8psk_usb_table);
214
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300215static struct dvb_usb_device_properties gp8psk_properties = {
Alan Nisota9bbe0762006-05-14 13:23:56 -0300216 .usb_ctrl = CYPRESS_FX2,
217 .firmware = "dvb-usb-gp8psk-01.fw",
218
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300219 .num_adapters = 1,
220 .adapter = {
221 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300222 .streaming_ctrl = gp8psk_streaming_ctrl,
223 .frontend_attach = gp8psk_frontend_attach,
224 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300225 .stream = {
226 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300227 .count = 7,
228 .endpoint = 0x82,
229 .u = {
230 .bulk = {
231 .buffersize = 8192,
232 }
233 }
234 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300235 }
236 },
237 .power_ctrl = gp8psk_power_ctrl,
238
239 .generic_bulk_ctrl_endpoint = 0x01,
Alan Nisota9bbe0762006-05-14 13:23:56 -0300240
Alan Nisota458b6342007-08-18 17:52:35 -0300241 .num_device_descs = 4,
Alan Nisota9bbe0762006-05-14 13:23:56 -0300242 .devices = {
Alan Nisota458b6342007-08-18 17:52:35 -0300243 { .name = "Genpix 8PSK-to-USB2 Rev.1 DVB-S receiver",
Alan Nisota9bbe0762006-05-14 13:23:56 -0300244 .cold_ids = { &gp8psk_usb_table[0], NULL },
245 .warm_ids = { &gp8psk_usb_table[1], NULL },
246 },
Alan Nisota458b6342007-08-18 17:52:35 -0300247 { .name = "Genpix 8PSK-to-USB2 Rev.2 DVB-S receiver",
248 .cold_ids = { NULL },
249 .warm_ids = { &gp8psk_usb_table[2], NULL },
250 },
251 { .name = "Genpix SkyWalker-1 DVB-S receiver",
252 .cold_ids = { NULL },
253 .warm_ids = { &gp8psk_usb_table[3], NULL },
254 },
255 { .name = "Genpix SkyWalker-CW3K DVB-S receiver",
256 .cold_ids = { NULL },
257 .warm_ids = { &gp8psk_usb_table[4], NULL },
258 },
Randy Dunlapab9caf92006-09-28 14:03:26 -0300259 { NULL },
Alan Nisota9bbe0762006-05-14 13:23:56 -0300260 }
261};
262
263/* usb specific object needed to register this driver with the usb subsystem */
264static struct usb_driver gp8psk_usb_driver = {
265 .name = "dvb_usb_gp8psk",
266 .probe = gp8psk_usb_probe,
267 .disconnect = dvb_usb_device_exit,
268 .id_table = gp8psk_usb_table,
269};
270
271/* module stuff */
272static int __init gp8psk_usb_module_init(void)
273{
274 int result;
275 if ((result = usb_register(&gp8psk_usb_driver))) {
276 err("usb_register failed. (%d)",result);
277 return result;
278 }
279
280 return 0;
281}
282
283static void __exit gp8psk_usb_module_exit(void)
284{
285 /* deregister this driver from the USB subsystem */
286 usb_deregister(&gp8psk_usb_driver);
287}
288
289module_init(gp8psk_usb_module_init);
290module_exit(gp8psk_usb_module_exit);
291
292MODULE_AUTHOR("Alan Nisota <alannisota@gamil.com>");
Alan Nisota458b6342007-08-18 17:52:35 -0300293MODULE_DESCRIPTION("Driver for Genpix 8psk-to-USB2 DVB-S");
294MODULE_VERSION("1.1");
Alan Nisota9bbe0762006-05-14 13:23:56 -0300295MODULE_LICENSE("GPL");