1 /* DVB USB compliant Linux driver for the
2 * - GENPIX 8pks/qpsk/DCII USB2.0 DVB-S module
4 * Copyright (C) 2006,2007 Alan Nisota (alannisota@gmail.com)
5 * Copyright (C) 2006,2007 Genpix Electronics (genpix@genpix-electronics.com)
7 * Thanks to GENPIX for the sample code used to implement this module.
9 * This module is based off the vp7045 and vp702x modules
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.
15 * see Documentation/media/dvb-drivers/dvb-usb.rst for more information
18 #include "gp8psk-fe.h"
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
);
26 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
29 unsigned char data
[80];
32 static int gp8psk_usb_in_op(struct dvb_usb_device
*d
, u8 req
, u16 value
,
33 u16 index
, u8
*b
, int blen
)
35 struct gp8psk_state
*st
= d
->priv
;
38 if (blen
> sizeof(st
->data
))
41 if ((ret
= mutex_lock_interruptible(&d
->usb_mutex
)))
44 while (ret
>= 0 && ret
!= blen
&& try < 3) {
45 ret
= usb_control_msg(d
->udev
,
46 usb_rcvctrlpipe(d
->udev
,0),
48 USB_TYPE_VENDOR
| USB_DIR_IN
,
49 value
, index
, st
->data
, blen
,
51 deb_info("reading number %d (ret: %d)\n",try,ret
);
55 if (ret
< 0 || ret
!= blen
) {
56 warn("usb in %d operation failed.", req
);
60 memcpy(b
, st
->data
, blen
);
63 deb_xfer("in: req. %x, val: %x, ind: %x, buffer: ",req
,value
,index
);
64 debug_dump(b
,blen
,deb_xfer
);
66 mutex_unlock(&d
->usb_mutex
);
71 static int gp8psk_usb_out_op(struct dvb_usb_device
*d
, u8 req
, u16 value
,
72 u16 index
, u8
*b
, int blen
)
74 struct gp8psk_state
*st
= d
->priv
;
77 deb_xfer("out: req. %x, val: %x, ind: %x, buffer: ",req
,value
,index
);
78 debug_dump(b
,blen
,deb_xfer
);
80 if (blen
> sizeof(st
->data
))
83 if ((ret
= mutex_lock_interruptible(&d
->usb_mutex
)))
86 memcpy(st
->data
, b
, blen
);
87 if (usb_control_msg(d
->udev
,
88 usb_sndctrlpipe(d
->udev
,0),
90 USB_TYPE_VENDOR
| USB_DIR_OUT
,
91 value
, index
, st
->data
, blen
,
93 warn("usb out operation failed.");
97 mutex_unlock(&d
->usb_mutex
);
103 static int gp8psk_get_fw_version(struct dvb_usb_device
*d
, u8
*fw_vers
)
105 return gp8psk_usb_in_op(d
, GET_FW_VERS
, 0, 0, fw_vers
, 6);
108 static int gp8psk_get_fpga_version(struct dvb_usb_device
*d
, u8
*fpga_vers
)
110 return gp8psk_usb_in_op(d
, GET_FPGA_VERS
, 0, 0, fpga_vers
, 1);
113 static void gp8psk_info(struct dvb_usb_device
*d
)
115 u8 fpga_vers
, fw_vers
[6];
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]);
122 info("failed to get FW version");
124 if (!gp8psk_get_fpga_version(d
, &fpga_vers
))
125 info("FPGA Version = %i", fpga_vers
);
127 info("failed to get FPGA version");
130 static int gp8psk_load_bcm4500fw(struct dvb_usb_device
*d
)
133 const struct firmware
*fw
= NULL
;
136 if ((ret
= request_firmware(&fw
, bcm4500_firmware
,
137 &d
->udev
->dev
)) != 0) {
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",
139 bcm4500_firmware
,ret
);
145 if (gp8psk_usb_out_op(d
, LOAD_BCM4500
,1,0,NULL
, 0))
148 info("downloading bcm4500 firmware from file '%s'",bcm4500_firmware
);
151 buf
= kmalloc(64, GFP_KERNEL
);
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.");
164 err("firmware chunk size bigger than 64 bytes.");
168 memcpy(buf
, ptr
, buflen
);
169 if (dvb_usb_generic_write(d
, buf
, buflen
)) {
170 err("failed to load bcm4500 firmware.");
181 release_firmware(fw
);
186 static int gp8psk_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
189 int gp_product_id
= le16_to_cpu(d
->udev
->descriptor
.idProduct
);
192 gp8psk_usb_in_op(d
, GET_8PSK_CONFIG
,0,0,&status
,1);
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);
196 if (gp8psk_usb_in_op(d
, BOOT_8PSK
, 1, 0, &buf
, 1))
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
))
206 if (! (status
& bmIntersilOn
)) /* LNB Power */
207 if (gp8psk_usb_in_op(d
, START_INTERSIL
, 1, 0,
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))
215 /* Abort possible TS (if previous tune crashed) */
216 if (gp8psk_usb_out_op(d
, ARM_TRANSFER
, 0, 0, NULL
, 0))
219 /* Turn off LNB power */
220 if (gp8psk_usb_in_op(d
, START_INTERSIL
, 0, 0, &buf
, 1))
222 /* Turn off 8psk power */
223 if (gp8psk_usb_in_op(d
, BOOT_8PSK
, 0, 0, &buf
, 1))
225 if(gp_product_id
== USB_PID_GENPIX_SKYWALKER_CW3K
)
226 gp8psk_usb_out_op(d
, CW3K_INIT
, 0, 0, NULL
, 0);
231 static int gp8psk_bcm4500_reload(struct dvb_usb_device
*d
)
234 int gp_product_id
= le16_to_cpu(d
->udev
->descriptor
.idProduct
);
236 deb_xfer("reloading firmware\n");
238 /* Turn off 8psk power */
239 if (gp8psk_usb_in_op(d
, BOOT_8PSK
, 0, 0, &buf
, 1))
241 /* Turn On 8psk power */
242 if (gp8psk_usb_in_op(d
, BOOT_8PSK
, 1, 0, &buf
, 1))
244 /* load BCM4500 firmware */
245 if (gp_product_id
== USB_PID_GENPIX_8PSK_REV_1_WARM
)
246 if (gp8psk_load_bcm4500fw(d
))
251 static int gp8psk_streaming_ctrl(struct dvb_usb_adapter
*adap
, int onoff
)
253 return gp8psk_usb_out_op(adap
->dev
, ARM_TRANSFER
, onoff
, 0 , NULL
, 0);
256 /* Callbacks for gp8psk-fe.c */
258 static int gp8psk_fe_in(void *priv
, u8 req
, u16 value
,
259 u16 index
, u8
*b
, int blen
)
261 struct dvb_usb_device
*d
= priv
;
263 return gp8psk_usb_in_op(d
, req
, value
, index
, b
, blen
);
266 static int gp8psk_fe_out(void *priv
, u8 req
, u16 value
,
267 u16 index
, u8
*b
, int blen
)
269 struct dvb_usb_device
*d
= priv
;
271 return gp8psk_usb_out_op(d
, req
, value
, index
, b
, blen
);
274 static int gp8psk_fe_reload(void *priv
)
276 struct dvb_usb_device
*d
= priv
;
278 return gp8psk_bcm4500_reload(d
);
281 static const struct gp8psk_fe_ops gp8psk_fe_ops
= {
283 .out
= gp8psk_fe_out
,
284 .reload
= gp8psk_fe_reload
,
287 static int gp8psk_frontend_attach(struct dvb_usb_adapter
*adap
)
289 struct dvb_usb_device
*d
= adap
->dev
;
290 int id
= le16_to_cpu(d
->udev
->descriptor
.idProduct
);
293 is_rev1
= (id
== USB_PID_GENPIX_8PSK_REV_1_WARM
) ? true : false;
295 adap
->fe_adap
[0].fe
= dvb_attach(gp8psk_fe_attach
,
296 &gp8psk_fe_ops
, d
, is_rev1
);
300 static struct dvb_usb_device_properties gp8psk_properties
;
302 static int gp8psk_usb_probe(struct usb_interface
*intf
,
303 const struct usb_device_id
*id
)
306 struct usb_device
*udev
= interface_to_usbdev(intf
);
307 ret
= dvb_usb_device_init(intf
, &gp8psk_properties
,
308 THIS_MODULE
, NULL
, adapter_nr
);
310 info("found Genpix USB device pID = %x (hex)",
311 le16_to_cpu(udev
->descriptor
.idProduct
));
316 static struct usb_device_id gp8psk_usb_table
[] = {
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
) },
321 { USB_DEVICE(USB_VID_GENPIX
, USB_PID_GENPIX_SKYWALKER_2
) },
322 /* { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_CW3K) }, */
325 MODULE_DEVICE_TABLE(usb
, gp8psk_usb_table
);
327 static struct dvb_usb_device_properties gp8psk_properties
= {
328 .usb_ctrl
= CYPRESS_FX2
,
329 .firmware
= "dvb-usb-gp8psk-01.fw",
331 .size_of_priv
= sizeof(struct gp8psk_state
),
338 .streaming_ctrl
= gp8psk_streaming_ctrl
,
339 .frontend_attach
= gp8psk_frontend_attach
,
340 /* parameter for the MPEG2-data transfer */
354 .power_ctrl
= gp8psk_power_ctrl
,
356 .generic_bulk_ctrl_endpoint
= 0x01,
358 .num_device_descs
= 4,
360 { .name
= "Genpix 8PSK-to-USB2 Rev.1 DVB-S receiver",
361 .cold_ids
= { &gp8psk_usb_table
[0], NULL
},
362 .warm_ids
= { &gp8psk_usb_table
[1], NULL
},
364 { .name
= "Genpix 8PSK-to-USB2 Rev.2 DVB-S receiver",
365 .cold_ids
= { NULL
},
366 .warm_ids
= { &gp8psk_usb_table
[2], NULL
},
368 { .name
= "Genpix SkyWalker-1 DVB-S receiver",
369 .cold_ids
= { NULL
},
370 .warm_ids
= { &gp8psk_usb_table
[3], NULL
},
372 { .name
= "Genpix SkyWalker-2 DVB-S receiver",
373 .cold_ids
= { NULL
},
374 .warm_ids
= { &gp8psk_usb_table
[4], NULL
},
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
,
388 module_usb_driver(gp8psk_usb_driver
);
390 MODULE_AUTHOR("Alan Nisota <alannisota@gamil.com>");
391 MODULE_DESCRIPTION("Driver for Genpix DVB-S");
392 MODULE_VERSION("1.1");
393 MODULE_LICENSE("GPL");