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