V4L/DVB (11833): dvb-usb: Remove support for Genpix-CW3K (damages hardware)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / dvb / dvb-usb / gp8psk.c
blobafb444db43ad971df82b810ad09485cefc5c8a9b
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/dvb/README.dvb-usb for more information
17 #include "gp8psk.h"
19 /* debug */
20 static char bcm4500_firmware[] = "dvb-usb-gp8psk-02.fw";
21 int dvb_usb_gp8psk_debug;
22 module_param_named(debug,dvb_usb_gp8psk_debug, int, 0644);
23 MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,rc=4 (or-able))." DVB_USB_DEBUG_STATUS);
25 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
27 int gp8psk_usb_in_op(struct dvb_usb_device *d, u8 req, u16 value, u16 index, u8 *b, int blen)
29 int ret = 0,try = 0;
31 if ((ret = mutex_lock_interruptible(&d->usb_mutex)))
32 return ret;
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++;
45 if (ret < 0 || ret != blen) {
46 warn("usb in %d operation failed.", req);
47 ret = -EIO;
48 } else
49 ret = 0;
51 deb_xfer("in: req. %x, val: %x, ind: %x, buffer: ",req,value,index);
52 debug_dump(b,blen,deb_xfer);
54 mutex_unlock(&d->usb_mutex);
56 return ret;
59 int gp8psk_usb_out_op(struct dvb_usb_device *d, u8 req, u16 value,
60 u16 index, u8 *b, int blen)
62 int ret;
64 deb_xfer("out: req. %x, val: %x, ind: %x, buffer: ",req,value,index);
65 debug_dump(b,blen,deb_xfer);
67 if ((ret = mutex_lock_interruptible(&d->usb_mutex)))
68 return ret;
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);
82 return ret;
85 static int gp8psk_load_bcm4500fw(struct dvb_usb_device *d)
87 int ret;
88 const struct firmware *fw = NULL;
89 const u8 *ptr;
90 u8 *buf;
91 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;
99 ret = -EINVAL;
101 if (gp8psk_usb_out_op(d, LOAD_BCM4500,1,0,NULL, 0))
102 goto out_rel_fw;
104 info("downloading bcm4500 firmware from file '%s'",bcm4500_firmware);
106 ptr = fw->data;
107 buf = kmalloc(64, GFP_KERNEL | GFP_DMA);
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.");
113 goto out_free;
115 memcpy(buf, ptr, buflen);
116 if (dvb_usb_generic_write(d, buf, buflen)) {
117 err("failed to load bcm4500 firmware.");
118 goto out_free;
120 ptr += buflen;
123 ret = 0;
125 out_free:
126 kfree(buf);
127 out_rel_fw:
128 release_firmware(fw);
130 return ret;
133 static int gp8psk_power_ctrl(struct dvb_usb_device *d, int onoff)
135 u8 status, buf;
136 int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct);
138 if (onoff) {
139 gp8psk_usb_in_op(d, GET_8PSK_CONFIG,0,0,&status,1);
140 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);
143 if (gp8psk_usb_in_op(d, BOOT_8PSK, 1, 0, &buf, 1))
144 return -EINVAL;
147 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))
150 return -EINVAL;
152 if (! (status & bmIntersilOn)) /* LNB Power */
153 if (gp8psk_usb_in_op(d, START_INTERSIL, 1, 0,
154 &buf, 1))
155 return -EINVAL;
157 /* 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))
160 return -EINVAL;
161 /* Abort possible TS (if previous tune crashed) */
162 if (gp8psk_usb_out_op(d, ARM_TRANSFER, 0, 0, NULL, 0))
163 return -EINVAL;
164 } else {
165 /* Turn off LNB power */
166 if (gp8psk_usb_in_op(d, START_INTERSIL, 0, 0, &buf, 1))
167 return -EINVAL;
168 /* Turn off 8psk power */
169 if (gp8psk_usb_in_op(d, BOOT_8PSK, 0, 0, &buf, 1))
170 return -EINVAL;
171 if(gp_product_id == USB_PID_GENPIX_SKYWALKER_CW3K)
172 gp8psk_usb_out_op(d, CW3K_INIT, 0, 0, NULL, 0);
174 return 0;
177 int gp8psk_bcm4500_reload(struct dvb_usb_device *d)
179 u8 buf;
180 int gp_product_id = le16_to_cpu(d->udev->descriptor.idProduct);
181 /* Turn off 8psk power */
182 if (gp8psk_usb_in_op(d, BOOT_8PSK, 0, 0, &buf, 1))
183 return -EINVAL;
184 /* Turn On 8psk power */
185 if (gp8psk_usb_in_op(d, BOOT_8PSK, 1, 0, &buf, 1))
186 return -EINVAL;
187 /* load BCM4500 firmware */
188 if (gp_product_id == USB_PID_GENPIX_8PSK_REV_1_WARM)
189 if (gp8psk_load_bcm4500fw(d))
190 return -EINVAL;
191 return 0;
194 static int gp8psk_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
196 return gp8psk_usb_out_op(adap->dev, ARM_TRANSFER, onoff, 0 , NULL, 0);
199 static int gp8psk_frontend_attach(struct dvb_usb_adapter *adap)
201 adap->fe = gp8psk_fe_attach(adap->dev);
202 return 0;
205 static struct dvb_usb_device_properties gp8psk_properties;
207 static int gp8psk_usb_probe(struct usb_interface *intf,
208 const struct usb_device_id *id)
210 int ret;
211 struct usb_device *udev = interface_to_usbdev(intf);
212 ret = dvb_usb_device_init(intf, &gp8psk_properties,
213 THIS_MODULE, NULL, adapter_nr);
214 if (ret == 0) {
215 info("found Genpix USB device pID = %x (hex)",
216 le16_to_cpu(udev->descriptor.idProduct));
218 return ret;
221 static struct usb_device_id gp8psk_usb_table [] = {
222 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_1_COLD) },
223 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_1_WARM) },
224 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_8PSK_REV_2) },
225 { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_1) },
226 /* { USB_DEVICE(USB_VID_GENPIX, USB_PID_GENPIX_SKYWALKER_CW3K) }, */
227 { 0 },
229 MODULE_DEVICE_TABLE(usb, gp8psk_usb_table);
231 static struct dvb_usb_device_properties gp8psk_properties = {
232 .usb_ctrl = CYPRESS_FX2,
233 .firmware = "dvb-usb-gp8psk-01.fw",
235 .num_adapters = 1,
236 .adapter = {
238 .streaming_ctrl = gp8psk_streaming_ctrl,
239 .frontend_attach = gp8psk_frontend_attach,
240 /* parameter for the MPEG2-data transfer */
241 .stream = {
242 .type = USB_BULK,
243 .count = 7,
244 .endpoint = 0x82,
245 .u = {
246 .bulk = {
247 .buffersize = 8192,
253 .power_ctrl = gp8psk_power_ctrl,
255 .generic_bulk_ctrl_endpoint = 0x01,
257 .num_device_descs = 3,
258 .devices = {
259 { .name = "Genpix 8PSK-to-USB2 Rev.1 DVB-S receiver",
260 .cold_ids = { &gp8psk_usb_table[0], NULL },
261 .warm_ids = { &gp8psk_usb_table[1], NULL },
263 { .name = "Genpix 8PSK-to-USB2 Rev.2 DVB-S receiver",
264 .cold_ids = { NULL },
265 .warm_ids = { &gp8psk_usb_table[2], NULL },
267 { .name = "Genpix SkyWalker-1 DVB-S receiver",
268 .cold_ids = { NULL },
269 .warm_ids = { &gp8psk_usb_table[3], NULL },
271 { NULL },
275 /* usb specific object needed to register this driver with the usb subsystem */
276 static struct usb_driver gp8psk_usb_driver = {
277 .name = "dvb_usb_gp8psk",
278 .probe = gp8psk_usb_probe,
279 .disconnect = dvb_usb_device_exit,
280 .id_table = gp8psk_usb_table,
283 /* module stuff */
284 static int __init gp8psk_usb_module_init(void)
286 int result;
287 if ((result = usb_register(&gp8psk_usb_driver))) {
288 err("usb_register failed. (%d)",result);
289 return result;
292 return 0;
295 static void __exit gp8psk_usb_module_exit(void)
297 /* deregister this driver from the USB subsystem */
298 usb_deregister(&gp8psk_usb_driver);
301 module_init(gp8psk_usb_module_init);
302 module_exit(gp8psk_usb_module_exit);
304 MODULE_AUTHOR("Alan Nisota <alannisota@gamil.com>");
305 MODULE_DESCRIPTION("Driver for Genpix 8psk-to-USB2 DVB-S");
306 MODULE_VERSION("1.1");
307 MODULE_LICENSE("GPL");