forked from craigshelley/SiUSBXp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SiUSBXp.c
458 lines (369 loc) · 14.3 KB
/
SiUSBXp.c
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/**************************************************************************
* SiUSBXp.c *
* *
* This library provides an API compatible with SiUSBXp.dll supplied *
* with SiLabs USBXpress, except that this library has a libusb *
* back-end and is therefore cross-platform (including Linux). *
* This library has been proven to function correctly with .NET *
* applications running under MONO. *
* This implementation is incomplete, however the most commonly used *
* functions are implemented. *
* *
* Home Page: *
* http://www.etheus.net/SiUSBXp_Linux_Driver *
* *
* Compile with: *
* gcc -shared -lusb -o libSiUSBXp.so SiUSBXp.c -Wall -fPIC *
* *
* Copyright (C) 2010 Craig Shelley <[email protected]> *
* This program 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 2, or (at your option) *
* any later version. *
* *
* This program 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 this program; if not, write to the Free Software *
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
* *
* Credits: *
* Many thanks to Michael Heubeck for all of the testing, debugging *
* feedback, and for the original project idea. *
* *
* Version History: *
* 2019-01 Additional cosmetic work by *
* Rudo Thomas <[email protected]> *
* 0.01 2010-10-20 Initial release *
* Craig Shelley <[email protected]> *
* *
**************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <usb.h>
#include "SiUSBXp.h"
/*Un-comment this line to see debug info*/
//#define DEBUG
/*Vendor ID / Product ID*/
#define SI_USB_VID 0x10c4
#define SI_USB_PID 0x8149
#ifdef DEBUG
#define DBG(...) printf (__VA_ARGS__)
#else
#define DBG(...) do{}while(0)
#endif
#define ERR(...) printf (__VA_ARGS__)
#define MAGIC 12939485
#define BUF_SIZE 4096
static int RXTimeout=1000;
static int TXTimeout=1000;
static int USBInitialised=0;
struct SI_Private {
int magic;
usb_dev_handle *udev;
int interface;
int ep_out;
int ep_in;
int bufsize;
char buffer[BUF_SIZE];
};
static void init(void) {
if (!USBInitialised) {
DBG("Initialising USB\n");
usb_init();
USBInitialised=1;
}
}
/* Scan USB for given device number. Return total number of devices. */
static int scanBusses(int deviceNum, struct usb_device **out_found) {
int devcount = 0;
usb_find_busses();
usb_find_devices();
for (struct usb_bus *bus = usb_get_busses(); bus; bus = bus->next) {
for (struct usb_device *dev = bus->devices; dev; dev = dev->next) {
if (dev->descriptor.idVendor == SI_USB_VID &&
dev->descriptor.idProduct == SI_USB_PID) {
if (devcount == deviceNum && out_found) {
*out_found = dev;
}
devcount++;
}
}
}
return devcount;
}
int SI_GetNumDevices(int *NumDevices) {
DBG("SI_GetNumDevices()\n");
init();
*NumDevices = scanBusses(-1, NULL);
DBG(" NumDevices=%i\n", *NumDevices);
return SI_SUCCESS;
}
int SI_GetProductString(int DeviceNum, char * DeviceString, int Flags) {
struct usb_device *pdev;
usb_dev_handle *udev;
int ret, descriptor;
char tbuf[256];
DBG("SI_GetProductString(DeviceNum=%i, DeviceString=%p, Flags=%i)\n", DeviceNum, DeviceString, Flags);
init();
if (DeviceString==NULL) return SI_INVALID_PARAMETER;
strcpy(DeviceString,"");
switch (Flags) {
case SI_RETURN_SERIAL_NUMBER:
descriptor=3;
break;
case SI_RETURN_DESCRIPTION:
descriptor=2;
break;
case SI_RETURN_LINK_NAME:
descriptor=1;
break;
case SI_RETURN_VID:
return SI_USB_VID;
case SI_RETURN_PID:
return SI_USB_PID;
default:
return SI_INVALID_PARAMETER;
}
pdev=NULL;
scanBusses(DeviceNum, &pdev);
if (pdev!=NULL) {
DBG(" Vendor=0x%04X Product=0x%04X\n", pdev->descriptor.idVendor, pdev->descriptor.idProduct);
if (pdev->descriptor.idVendor == SI_USB_VID &&
pdev->descriptor.idProduct == SI_USB_PID
) {
DBG(" Device Found!\n");
udev = usb_open(pdev);
if (udev) {
ret = usb_get_string_simple(udev, descriptor, tbuf, sizeof(tbuf));
if (ret>0) {
DBG(" Descriptor[%i]=\"%s\"\n",descriptor,tbuf);
strcpy(DeviceString,tbuf);
} else {
ERR(" Unable to read Descriptor[%i]\n", descriptor);
}
usb_close(udev);
} else {
ERR(" Unable to open USB device\n");
}
}
}
DBG(" DeviceString=\"%s\"\n", DeviceString);
return SI_SUCCESS;
}
static void SI_FillBuffer(struct SI_Private * Handle, int timeout) {
int bytestoread, nread;
bytestoread=BUF_SIZE - Handle->bufsize;
DBG(" SI_FillBuffer BytesToRead=%i\n", bytestoread);
nread=usb_bulk_read(Handle->udev, Handle->ep_in, &(Handle->buffer[Handle->bufsize]), bytestoread, timeout);
DBG(" SI_FillBuffer Read=%i\n", nread);
if (nread>0) {
Handle->bufsize+=nread;
}
DBG(" SI_FillBuffer Handle->bufsize=%i\n", Handle->bufsize);
}
static int SI_GetBuffer(struct SI_Private * Handle, char * Buffer, int BytesToGet) {
int retval;
retval=0;
DBG(" SI_GetBuffer BytesToGet=%i Handle->bufsize=%i\n", BytesToGet, Handle->bufsize);
if (Handle->bufsize>=BytesToGet) {
retval=BytesToGet;
Handle->bufsize -= retval;
memcpy(Buffer, Handle->buffer, retval);
memmove(Handle->buffer, Handle->buffer + retval, Handle->bufsize);
} else if (Handle->bufsize>0) {
retval=Handle->bufsize;
Handle->bufsize=0;
memcpy(Buffer, Handle->buffer, retval);
}
DBG(" SI_GetBuffer retval=%i Handle->bufsize=%i\n", retval, Handle->bufsize);
return retval;
}
int SI_Open(int DeviceNum, struct SI_Private ** pHandle) {
struct usb_device *pdev;
struct SI_Private * Handle;
int i;
DBG("SI_Open(DeviceNum=%i, pHandle=%p)\n",DeviceNum, pHandle);
init();
if (pHandle==NULL) return SI_INVALID_PARAMETER;
pdev=NULL;
scanBusses(DeviceNum, &pdev);
Handle=NULL;
if (pdev!=NULL) {
Handle=(struct SI_Private *) malloc(sizeof(struct SI_Private));
}
/*Find the bulk in/out endpoints*/
if (Handle!=NULL) {
Handle->ep_out=-1;
Handle->ep_in=-1;
for (i=0; i<pdev->config[0].interface[0].altsetting[0].bNumEndpoints; i++) {
if (pdev->config[0].interface[0].altsetting[0].endpoint[i].bmAttributes==USB_ENDPOINT_TYPE_BULK) {
if ((pdev->config[0].interface[0].altsetting[0].endpoint[i].bEndpointAddress&USB_ENDPOINT_DIR_MASK)!=0) {
Handle->ep_in=pdev->config[0].interface[0].altsetting[0].endpoint[i].bEndpointAddress;
} else {
Handle->ep_out=pdev->config[0].interface[0].altsetting[0].endpoint[i].bEndpointAddress;
}
}
}
DBG(" EP_Out=0x%02x EP_In=0x%02x\n", Handle->ep_out, Handle->ep_in);
if (Handle->ep_out==-1 || Handle->ep_in==-1) {
free(Handle);
Handle=NULL;
ERR(" **ERROR** Unable to identify BULK IN/OUT endpoints\n");
}
}
if (Handle!=NULL) {
Handle->udev = usb_open(pdev);
if (Handle->udev==NULL) {
free(Handle);
Handle=NULL;
ERR(" **ERROR** Unable to open USB device\n");
}
}
/*Claim the interface*/
if (Handle!=NULL) {
Handle->interface=pdev->config[0].interface[0].altsetting[0].bInterfaceNumber;
if (usb_claim_interface(Handle->udev, Handle->interface)) {
usb_close(Handle->udev);
free(Handle);
Handle=NULL;
ERR(" **ERROR** Unable to claim interface. Ensure device is not claimed by any kernel modules. Check permissions of /dev/bus/usb/...\n");
}
}
if (Handle!=NULL) {
int retval;
(void)retval; /* "Use" the variable even when DEBUG not set. */
retval = usb_control_msg(Handle->udev, 0x40, 0x00, 0xFFFF, 0, NULL, 0, TXTimeout);
DBG(" USB Ctrl Message1 retval=%i\n", retval);
retval = usb_resetep(Handle->udev, Handle->ep_in);
DBG(" USB Reset Endpoint IN retval=%i\n", retval);
retval = usb_resetep(Handle->udev, Handle->ep_out);
DBG(" USB Reset Endpoint OUT retval=%i\n", retval);
retval = usb_clear_halt(Handle->udev, Handle->ep_in);
DBG(" USB Clear Halt IN retval=%i\n", retval);
retval = usb_clear_halt(Handle->udev, Handle->ep_out);
DBG(" USB Clear Halt OUT retval=%i\n", retval);
retval = usb_control_msg(Handle->udev, 0x40, 0x02, 0x0002, 0, NULL, 0, TXTimeout);
DBG(" USB Ctrl Message2 retval=%i\n", retval);
Handle->bufsize=0;
SI_FillBuffer(Handle, 100);
Handle->magic=MAGIC;
*pHandle=Handle;
DBG(" Success!\n");
return SI_SUCCESS;
} else {
return SI_SYSTEM_ERROR_CODE;
}
}
int SI_Close(struct SI_Private * Handle) {
DBG("SI_Close(Handle=%p)\n",Handle);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
DBG(" USB Ctrl Message retval=%i\n", usb_control_msg(Handle->udev, 0x40, 0x02, 0x0004, 0, NULL, 0, TXTimeout));
usb_release_interface(Handle->udev, Handle->interface);
usb_close(Handle->udev);
Handle->magic=0;
free(Handle);
return SI_SUCCESS;
}
int SI_Read(struct SI_Private * Handle, char * Buffer, int BytesToRead, int * BytesReturned, void * o) {
int i;
DBG("SI_Read(Handle=%p, Buffer=%p, BytesToRead=%i, BytesReturned=%p)\n",Handle,Buffer,BytesToRead,BytesReturned);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
if (Buffer==NULL) return SI_INVALID_PARAMETER;
if (Buffer==NULL || BytesReturned==NULL) return SI_INVALID_PARAMETER;
if (Handle->bufsize<BytesToRead) SI_FillBuffer(Handle, RXTimeout);
*BytesReturned=SI_GetBuffer(Handle, Buffer, BytesToRead);
DBG(" ReadBytes \"");
for (i=0; i< *BytesReturned; i++) {
if (i>0) DBG(",");
DBG("%02X", (unsigned char) Buffer[i]);
}
DBG("\"\n");
DBG(" Read %i bytes\n", *BytesReturned);
return *BytesReturned>0?SI_SUCCESS:SI_READ_TIMED_OUT;
}
int SI_Write(struct SI_Private * Handle, char * Buffer, int BytesToWrite, int * BytesWritten, void * o) {
int i;
DBG("SI_Write(Handle=%p, Buffer=%p, BytesToWrite=%i, BytesWritten=%p)\n",Handle,Buffer,BytesToWrite,BytesWritten);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
if (Buffer==NULL || BytesWritten==NULL) return SI_INVALID_PARAMETER;
DBG(" Writing \"");
for (i=0; i< BytesToWrite; i++) {
if (i>0) DBG(",");
DBG("%02X", (unsigned char) Buffer[i]);
}
DBG("\"\n");
SI_FillBuffer(Handle, 100);
DBG(" Writing to device...\n");
*BytesWritten=usb_bulk_write(Handle->udev, Handle->ep_out, Buffer, BytesToWrite, TXTimeout);
SI_FillBuffer(Handle, 100);
DBG(" Wrote %i bytes\n", *BytesWritten);
return SI_SUCCESS;
}
int SI_ResetDevice(struct SI_Private * Handle) {
DBG("SI_ResetDevice(Handle=%p)\n",Handle);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
return SI_SUCCESS;
}
int SI_DeviceIOControl(struct SI_Private * Handle, int IoControlCode, char * InBuffer, int BytesToRead, char * OutBuffer, int BytesToWrite) {
DBG("SI_DeviceIOControl(Handle=%p, IoControlCode=%i, InBuffer=%p, BytesToRead=%i, OutBuffer=%p, BytesToWrite=%i)\n",Handle, IoControlCode, InBuffer, BytesToRead, OutBuffer, BytesToWrite);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
return SI_SUCCESS;
}
int SI_FlushBuffers(struct SI_Private * Handle, char FlushTransmit, char FlushReceive) {
DBG("SI_FlushTransmit(Handle=%p, FlushTransmit=%i, FlushReceive=%i)\n",Handle,FlushTransmit,FlushReceive);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
Handle->bufsize=0;
return SI_SUCCESS;
}
int SI_SetTimeouts(int ReadTimeout, int WriteTimeout) {
DBG("SI_SetTimeouts(ReadTimeout=%i, WriteTimeout=%i)\n",ReadTimeout,WriteTimeout);
init();
RXTimeout=ReadTimeout;
TXTimeout=WriteTimeout;
return SI_SUCCESS;
}
int SI_GetTimeouts(int *ReadTimeout, int *WriteTimeout) {
DBG("SI_GetTimeouts(ReadTimeout=%p, WriteTimeout=%p)\n",ReadTimeout,WriteTimeout);
init();
if (ReadTimeout==NULL || WriteTimeout==NULL) return SI_INVALID_PARAMETER;
*ReadTimeout=RXTimeout;
*WriteTimeout=TXTimeout;
return SI_SUCCESS;
}
int SI_CheckRXQueue(struct SI_Private * Handle, int *NumBytesInQueue, int *QueueStatus) {
DBG("SI_CheckRXQueue(Handle=%p, NumBytesInQueue=%p, QueueStatus=%p)\n", Handle, NumBytesInQueue, QueueStatus);
init();
if (Handle==NULL) return SI_INVALID_HANDLE;
if (Handle->magic!=MAGIC) return SI_INVALID_HANDLE;
DBG(" Valid Handle\n");
if (NumBytesInQueue==NULL || QueueStatus==NULL) return SI_INVALID_PARAMETER;
*NumBytesInQueue=Handle->bufsize;
*QueueStatus=SI_RX_NO_OVERRUN | (Handle->bufsize?SI_RX_READY:SI_RX_EMPTY);
DBG(" NumBytesInQueue=%i QueueStatus=%i\n",*NumBytesInQueue,*QueueStatus);
return SI_SUCCESS;
}