1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
/* -*- c++ -*- */
/*
* Copyright 2006,2009 Free Software Foundation, Inc.
*
* This file is part of GNU Radio.
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
/*
* The following code was taken from LIBUSB verion 0.1.10a,
* and makes the fusb_darwin codes do-able in the current GR
* programming framework. Parts and pieces were taken from
* usbi.h, darwin.c, and error.h .
*
* LIBUSB version 0.1.10a is covered by the LGPL, version 2;
* These codes are used with permission from:
* (c) 2000-2003 Johannes Erdfelt <johannes@erdfelt.com>
* (c) 2002-2005 Nathan Hjelm <hjelmn@users.sourceforge.net>
* All rights reserved.
*/
#ifndef __DARWIN_LIBUSB_H__
#define __DARWIN_LIBUSB_H__
#include <IOKit/IOCFBundle.h>
#include <IOKit/IOCFPlugIn.h>
#include <IOKit/usb/IOUSBLib.h>
#include <IOKit/IOKitLib.h>
extern "C" {
static const char* darwin_error_strings[] = {
"no error",
"device not opened for exclusive access",
"no connection to an IOService",
"no asyc port has been opened for interface",
"another process has device opened for exclusive access",
"pipe is stalled",
"could not establish a connection to Darin kernel",
"invalid argument",
"unknown error"
};
static const char *
darwin_error_str (int result)
{
switch (result) {
case kIOReturnSuccess:
return (darwin_error_strings[0]);
case kIOReturnNotOpen:
return (darwin_error_strings[1]);
case kIOReturnNoDevice:
return (darwin_error_strings[2]);
case kIOUSBNoAsyncPortErr:
return (darwin_error_strings[3]);
case kIOReturnExclusiveAccess:
return (darwin_error_strings[4]);
case kIOUSBPipeStalled:
return (darwin_error_strings[5]);
case kIOReturnError:
return (darwin_error_strings[6]);
case kIOReturnBadArgument:
return (darwin_error_strings[7]);
default:
return (darwin_error_strings[8]);
}
}
/* not a valid errorno outside darwin.c */
#define LUSBDARWINSTALL (ELAST+1)
static int
darwin_to_errno (int result)
{
switch (result) {
case kIOReturnSuccess:
return 0;
case kIOReturnNotOpen:
return EBADF;
case kIOReturnNoDevice:
case kIOUSBNoAsyncPortErr:
return ENXIO;
case kIOReturnExclusiveAccess:
return EBUSY;
case kIOUSBPipeStalled:
return LUSBDARWINSTALL;
case kIOReturnBadArgument:
return EINVAL;
case kIOReturnError:
default:
return 1;
}
}
typedef enum {
USB_ERROR_TYPE_NONE = 0,
USB_ERROR_TYPE_STRING,
USB_ERROR_TYPE_ERRNO,
} usb_error_type_t;
extern char usb_error_str[1024];
extern int usb_error_errno;
extern usb_error_type_t usb_error_type;
#define USB_ERROR(r, x) \
do { \
usb_error_type = USB_ERROR_TYPE_ERRNO; \
usb_error_errno = x; \
return r; \
} while (0)
#define USB_ERROR_STR(r, x, format, args...) \
do { \
usb_error_type = USB_ERROR_TYPE_STRING; \
snprintf(usb_error_str, sizeof(usb_error_str) - 1, format, ## args); \
if (usb_debug) \
fprintf(stderr, "USB error: %s\n", usb_error_str); \
return r; \
} while (0)
#define USB_ERROR_STR_ORIG(x, format, args...) \
do { \
usb_error_type = USB_ERROR_TYPE_STRING; \
snprintf(usb_error_str, sizeof(usb_error_str) - 1, format, ## args); \
if (usb_debug) \
fprintf(stderr, "USB error: %s\n", usb_error_str); \
return x; \
} while (0)
#define USB_ERROR_STR_NO_RET(x, format, args...) \
do { \
usb_error_type = USB_ERROR_TYPE_STRING; \
snprintf(usb_error_str, sizeof(usb_error_str) - 1, format, ## args); \
if (usb_debug) \
fprintf(stderr, "USB error: %s\n", usb_error_str); \
} while (0)
/* simple function that figures out what pipeRef is associated with an endpoint */
static int ep_to_pipeRef (darwin_dev_handle *device, int ep)
{
io_return_t ret;
UInt8 numep, direction, number;
UInt8 dont_care1, dont_care3;
UInt16 dont_care2;
int i;
if (usb_debug > 3)
fprintf(stderr, "Converting ep address to pipeRef.\n");
/* retrieve the total number of endpoints on this interface */
ret = (*(device->interface))->GetNumEndpoints(device->interface, &numep);
if ( ret ) {
if ( usb_debug > 3 )
fprintf ( stderr, "ep_to_pipeRef: interface is %p\n", device->interface );
USB_ERROR_STR_ORIG ( -ret, "ep_to_pipeRef: can't get number of endpoints for interface" );
}
/* iterate through the pipeRefs until we find the correct one */
for (i = 1 ; i <= numep ; i++) {
ret = (*(device->interface))->GetPipeProperties(device->interface, i, &direction, &number,
&dont_care1, &dont_care2, &dont_care3);
if (ret != kIOReturnSuccess) {
fprintf (stderr, "ep_to_pipeRef: an error occurred getting pipe information on pipe %d\n",
i );
USB_ERROR_STR_ORIG (-darwin_to_errno(ret), "ep_to_pipeRef(GetPipeProperties): %s", darwin_error_str(ret));
}
if (usb_debug > 3)
fprintf (stderr, "ep_to_pipeRef: Pipe %i: DIR: %i number: %i\n", i, direction, number);
/* calculate the endpoint of the pipe and check it versus the requested endpoint */
if ( ((direction << 7 & USB_ENDPOINT_DIR_MASK) | (number & USB_ENDPOINT_ADDRESS_MASK)) == ep ) {
if (usb_debug > 3)
fprintf(stderr, "ep_to_pipeRef: pipeRef for ep address 0x%02x found: 0x%02x\n", ep, i);
return i;
}
}
if (usb_debug > 3)
fprintf(stderr, "ep_to_pipeRef: No pipeRef found with endpoint address 0x%02x.\n", ep);
/* none of the found pipes match the requested endpoint */
return -1;
}
}
#endif /* __DARWIN_LIBUSB_H__ */
|