usrp: Reorg of libusb error reporting
[debian/gnuradio] / usrp / host / lib / usrp_prims_libusb0.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2003,2004,2006,2009 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include "usrp_primsi.h"
28 #include "usrp_commands.h"
29 #include <usb.h>
30 #include <errno.h>
31 #include <stdio.h>
32 #include <unistd.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <ctype.h>
36 #include <ad9862.h>
37 #include <assert.h>
38
39 extern "C" {
40 #include "md5.h"
41 };
42
43 using namespace ad9862;
44
45 /*
46  * libusb 0.12 / 1.0 compatibility
47  */
48
49 struct usb_device *
50 _get_usb_device (struct usb_dev_handle *udh)
51 {
52   return usb_device (udh);
53 }
54
55 struct usb_device_descriptor
56 _get_usb_device_descriptor (struct usb_device *q)
57 {
58   return q->descriptor;
59 }
60
61 int
62 _get_usb_string_descriptor (struct usb_dev_handle *udh, int index,
63                            unsigned char* data, int length)
64 {
65   int ret;
66   ret =  usb_get_string_simple (udh, index, (char*) data, length);
67
68   if (ret < 0) {
69     fprintf (stderr, "usrp: usb_get_string_descriptor failed: %s\n",
70              usb_strerror());
71   }
72 }
73
74 int
75 _usb_control_transfer (struct usb_dev_handle *udh, int request_type,
76                       int request, int value, int index,
77                       unsigned char *data, int length, unsigned int timeout)
78 {
79   int ret;
80
81   ret = usb_control_msg (udh, request_type,request, value, index,
82                          (char*) data, length, (int) timeout);
83   if (ret < 0) 
84     fprintf (stderr, "usrp: usb_claim_interface failed: %s\n", usb_strerror());
85 }
86
87
88 // ----------------------------------------------------------------
89
90
91 void
92 usrp_one_time_init (libusb_context **ctx)
93 {
94   static bool first = true;
95
96   if (first) {
97     first = false;
98     usb_init ();                        // usb library init
99     usb_find_busses ();
100     usb_find_devices ();
101   }
102 }
103
104 void
105 usrp_rescan ()
106 {
107   usb_find_busses ();
108   usb_find_devices ();
109 }
110
111
112 // ----------------------------------------------------------------
113
114
115 struct usb_device *
116 usrp_find_device (int nth, bool fx2_ok_p, libusb_context *ctx)
117 {
118   struct usb_bus *p;
119   struct usb_device *q;
120   int    n_found = 0;
121
122   usrp_one_time_init ();
123
124   p = usb_get_busses();
125   while (p != NULL){
126     q = p->devices;
127     while (q != NULL){
128       if (usrp_usrp_p (q) || (fx2_ok_p && usrp_fx2_p (q))){
129         if (n_found == nth)     // return this one
130           return q;
131         n_found++;              // keep looking
132       }
133       q = q->next;
134     }
135     p = p->next;
136   }
137   return 0;     // not found
138 }
139
140 struct usb_dev_handle *
141 usrp_open_interface (struct usb_device *dev, int interface, int altinterface)
142 {
143   struct usb_dev_handle *udh = usb_open (dev);
144   if (udh == 0)
145     return 0;
146
147   if (dev != usb_device (udh)){
148     fprintf (stderr, "%s:%d: internal error!\n", __FILE__, __LINE__);
149     abort ();
150   }
151
152 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
153   // There's no get get_configuration function, and with some of the newer kernels
154   // setting the configuration, even if to the same value, hoses any other processes
155   // that have it open.  Hence we opt to not set it at all (We've only
156   // got a single configuration anyway).  This may hose the win32 stuff...
157
158   // Appears to be required for libusb-win32 and Cygwin -- dew 09/20/06
159   if (usb_set_configuration (udh, 1) < 0){
160     /*
161      * Ignore this error.
162      *
163      * Seems that something changed in drivers/usb/core/devio.c:proc_setconfig such that
164      * it returns -EBUSY if _any_ of the interfaces of a device are open.
165      * We've only got a single configuration, so setting it doesn't even seem
166      * like it should be required.
167      */
168   }
169 #endif
170
171   if (usb_claim_interface (udh, interface) < 0){
172     fprintf (stderr, "%s:usb_claim_interface: failed interface %d\n", __FUNCTION__,interface);
173     fprintf (stderr, "%s\n", usb_strerror());
174     usb_close (udh);
175     return 0;
176   }
177
178   if (usb_set_altinterface (udh, altinterface) < 0){
179     fprintf (stderr, "%s:usb_set_alt_interface: failed\n", __FUNCTION__);
180     fprintf (stderr, "%s\n", usb_strerror());
181     usb_release_interface (udh, interface);
182     usb_close (udh);
183     return 0;
184   }
185
186   return udh;
187 }
188
189 bool
190 usrp_close_interface (struct usb_dev_handle *udh)
191 {
192   // we're assuming that closing an interface automatically releases it.
193   return usb_close (udh) == 0;
194 }
195
196
197 // ----------------------------------------------------------------
198 // write vendor extension command to USRP
199
200
201 int
202 write_cmd (struct usb_dev_handle *udh,
203            int request, int value, int index,
204            unsigned char *bytes, int len)
205 {
206   int   requesttype = (request & 0x80) ? VRT_VENDOR_IN : VRT_VENDOR_OUT;
207
208   int r = usb_control_msg (udh, requesttype, request, value, index,
209                            (char *) bytes, len, 1000);
210   if (r < 0){
211     // we get EPIPE if the firmware stalls the endpoint.
212     if (errno != EPIPE) {
213       fprintf (stderr, "usb_control_msg failed: %s\n", usb_strerror ());
214       fprintf (stderr, "write_cmd failed\n");
215     }
216   }
217
218   return r;
219 }
220