Cleanup in preparation for merge
[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 int
61 _get_usb_string_descriptor (struct usb_dev_handle *udh, int index,
62                            unsigned char* data, int length)
63 {
64   return usb_get_string_simple (udh, index, (char*) data, length);
65 }
66
67 int
68 _usb_control_transfer (struct usb_dev_handle *udh, int request_type,
69                       int request, int value, int index,
70                       unsigned char *data, int length, unsigned int timeout)
71 {
72   return usb_control_msg (udh, request_type,request, value, index,
73                           (char*) data, length, (int) timeout);
74 }
75
76
77 // ----------------------------------------------------------------
78
79
80 void
81 usrp_one_time_init (libusb_context **ctx)
82 {
83   static bool first = true;
84
85   if (first) {
86     first = false;
87     usb_init ();                        // usb library init
88     usb_find_busses ();
89     usb_find_devices ();
90   }
91 }
92
93 void
94 usrp_rescan ()
95 {
96   usb_find_busses ();
97   usb_find_devices ();
98 }
99
100
101 // ----------------------------------------------------------------
102
103
104 struct usb_device *
105 usrp_find_device (int nth, bool fx2_ok_p, libusb_context *ctx)
106 {
107   struct usb_bus *p;
108   struct usb_device *q;
109   int    n_found = 0;
110
111   usrp_one_time_init ();
112
113   p = usb_get_busses();
114   while (p != NULL){
115     q = p->devices;
116     while (q != NULL){
117       if (usrp_usrp_p (q) || (fx2_ok_p && usrp_fx2_p (q))){
118         if (n_found == nth)     // return this one
119           return q;
120         n_found++;              // keep looking
121       }
122       q = q->next;
123     }
124     p = p->next;
125   }
126   return 0;     // not found
127 }
128
129 struct usb_dev_handle *
130 usrp_open_interface (struct usb_device *dev, int interface, int altinterface)
131 {
132   struct usb_dev_handle *udh = usb_open (dev);
133   if (udh == 0)
134     return 0;
135
136   if (dev != usb_device (udh)){
137     fprintf (stderr, "%s:%d: internal error!\n", __FILE__, __LINE__);
138     abort ();
139   }
140
141 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
142   // There's no get get_configuration function, and with some of the newer kernels
143   // setting the configuration, even if to the same value, hoses any other processes
144   // that have it open.  Hence we opt to not set it at all (We've only
145   // got a single configuration anyway).  This may hose the win32 stuff...
146
147   // Appears to be required for libusb-win32 and Cygwin -- dew 09/20/06
148   if (usb_set_configuration (udh, 1) < 0){
149     /*
150      * Ignore this error.
151      *
152      * Seems that something changed in drivers/usb/core/devio.c:proc_setconfig such that
153      * it returns -EBUSY if _any_ of the interfaces of a device are open.
154      * We've only got a single configuration, so setting it doesn't even seem
155      * like it should be required.
156      */
157   }
158 #endif
159
160   if (usb_claim_interface (udh, interface) < 0){
161     fprintf (stderr, "%s:usb_claim_interface: failed interface %d\n", __FUNCTION__,interface);
162     fprintf (stderr, "%s\n", usb_strerror());
163     usb_close (udh);
164     return 0;
165   }
166
167   if (usb_set_altinterface (udh, altinterface) < 0){
168     fprintf (stderr, "%s:usb_set_alt_interface: failed\n", __FUNCTION__);
169     fprintf (stderr, "%s\n", usb_strerror());
170     usb_release_interface (udh, interface);
171     usb_close (udh);
172     return 0;
173   }
174
175   return udh;
176 }
177
178 bool
179 usrp_close_interface (struct usb_dev_handle *udh)
180 {
181   // we're assuming that closing an interface automatically releases it.
182   return usb_close (udh) == 0;
183 }
184
185
186 // ----------------------------------------------------------------
187 // write vendor extension command to USRP
188
189
190 int
191 write_cmd (struct usb_dev_handle *udh,
192            int request, int value, int index,
193            unsigned char *bytes, int len)
194 {
195   int   requesttype = (request & 0x80) ? VRT_VENDOR_IN : VRT_VENDOR_OUT;
196
197   int r = usb_control_msg (udh, requesttype, request, value, index,
198                            (char *) bytes, len, 1000);
199   if (r < 0){
200     // we get EPIPE if the firmware stalls the endpoint.
201     if (errno != EPIPE)
202       fprintf (stderr, "usb_control_msg failed: %s\n", usb_strerror ());
203   }
204
205   return r;
206 }
207