]>
Commit | Line | Data |
---|---|---|
54357994 | 1 | /* libusb/ppdev connector for XILINX impact |
f1405f13 | 2 | * |
3 | * Copyright (c) 2007 Michael Gernoth <michael@gernoth.net> | |
4 | * | |
5 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
6 | * of this software and associated documentation files (the "Software"), to | |
7 | * deal in the Software without restriction, including without limitation the | |
8 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
9 | * sell copies of the Software, and to permit persons to whom the Software is | |
10 | * furnished to do so, subject to the following conditions: | |
11 | * | |
12 | * The above copyright notice and this permission notice shall be included in | |
13 | * all copies or substantial portions of the Software. | |
14 | * | |
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
18 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |
21 | * IN THE SOFTWARE. | |
22 | */ | |
cdc711dc | 23 | |
24 | #define _GNU_SOURCE 1 | |
25 | ||
cdc711dc | 26 | #include <dlfcn.h> |
27 | #include <stdarg.h> | |
28 | #include <stdlib.h> | |
29 | #include <string.h> | |
30 | #include <unistd.h> | |
31 | #include <fcntl.h> | |
32 | #include <sys/types.h> | |
33 | #include <sys/stat.h> | |
34 | #include <sys/time.h> | |
35 | #include <stdio.h> | |
f10480d1 | 36 | #include <usb.h> |
2a7af812 | 37 | #include <signal.h> |
533f4b68 | 38 | #include <pthread.h> |
9ba1e383 | 39 | #include <errno.h> |
11d01742 | 40 | #include <inttypes.h> |
54357994 | 41 | #include <sys/ioctl.h> |
42 | #include <linux/parport.h> | |
43 | #include <linux/ppdev.h> | |
2c0c1255 | 44 | #include "usb-driver.h" |
cdc711dc | 45 | |
9c9fd67c | 46 | static int (*ioctl_func) (int, int, void *) = NULL; |
332ced7a | 47 | static int windrvrfd = -1; |
54357994 | 48 | static int parportfd = -1; |
49 | static int parportnum = 0; | |
50 | static unsigned long ppbase = 0; | |
51 | static unsigned long ecpbase = 0; | |
332ced7a | 52 | FILE *modulesfp = NULL; |
723d9aa0 | 53 | static int modules_read = 0; |
f10480d1 | 54 | static struct usb_bus *busses = NULL; |
2a7af812 | 55 | static struct usb_device *usbdevice; |
56 | static usb_dev_handle *usb_devhandle = NULL; | |
010cbaa6 | 57 | static int usbinterface = -1; |
b72b86b4 | 58 | static unsigned long card_type; |
ca18111b | 59 | static int ints_enabled = 0; |
533f4b68 | 60 | static pthread_mutex_t int_wait = PTHREAD_MUTEX_INITIALIZER; |
292160ed | 61 | |
795992ad | 62 | #define NO_WINDRVR 1 |
723d9aa0 | 63 | |
be452175 | 64 | #ifdef DEBUG |
f1405f13 | 65 | #define DPRINTF(format, args...) fprintf(stderr, format, ##args) |
723d9aa0 | 66 | void hexdump(unsigned char *buf, int len) { |
67 | int i; | |
68 | ||
69 | for(i=0; i<len; i++) { | |
70 | fprintf(stderr,"%02x ", buf[i]); | |
71 | if ((i % 16) == 15) | |
72 | fprintf(stderr,"\n"); | |
73 | } | |
f1405f13 | 74 | fprintf(stderr,"\n"); |
723d9aa0 | 75 | } |
f1405f13 | 76 | #else |
77 | #define DPRINTF(format, args...) | |
be452175 | 78 | #endif |
cdc711dc | 79 | |
f95f1d2e | 80 | int usb_deviceinfo(unsigned char *buf) { |
81 | int i,j,k,l; | |
82 | int len = 0; | |
3664a3e3 | 83 | WDU_CONFIGURATION **pConfigs, **pActiveConfig; |
84 | WDU_INTERFACE **pActiveInterface; | |
f95f1d2e | 85 | |
86 | if (buf) { | |
87 | struct usb_device_info *udi = (struct usb_device_info*)(buf+len); | |
88 | ||
89 | udi->Descriptor.bLength = sizeof(WDU_DEVICE_DESCRIPTOR); | |
2a7af812 | 90 | udi->Descriptor.bDescriptorType = usbdevice->descriptor.bDescriptorType; |
91 | udi->Descriptor.bcdUSB = usbdevice->descriptor.bcdUSB; | |
92 | udi->Descriptor.bDeviceClass = usbdevice->descriptor.bDeviceClass; | |
93 | udi->Descriptor.bDeviceSubClass = usbdevice->descriptor.bDeviceSubClass; | |
94 | udi->Descriptor.bDeviceProtocol = usbdevice->descriptor.bDeviceProtocol; | |
95 | udi->Descriptor.bMaxPacketSize0 = usbdevice->descriptor.bMaxPacketSize0; | |
96 | udi->Descriptor.idVendor = usbdevice->descriptor.idVendor; | |
97 | udi->Descriptor.idProduct = usbdevice->descriptor.idProduct; | |
98 | udi->Descriptor.bcdDevice = usbdevice->descriptor.bcdDevice; | |
99 | udi->Descriptor.iManufacturer = usbdevice->descriptor.iManufacturer; | |
100 | udi->Descriptor.iProduct = usbdevice->descriptor.iProduct; | |
101 | udi->Descriptor.iSerialNumber = usbdevice->descriptor.iSerialNumber; | |
102 | udi->Descriptor.bNumConfigurations = usbdevice->descriptor.bNumConfigurations; | |
f95f1d2e | 103 | |
104 | /* TODO: Fix Pipe0! */ | |
105 | udi->Pipe0.dwNumber = 0x00; | |
2a7af812 | 106 | udi->Pipe0.dwMaximumPacketSize = usbdevice->descriptor.bMaxPacketSize0; |
f95f1d2e | 107 | udi->Pipe0.type = 0; |
8923df66 | 108 | udi->Pipe0.direction = WDU_DIR_IN_OUT; |
f95f1d2e | 109 | udi->Pipe0.dwInterval = 0; |
3664a3e3 | 110 | |
111 | pConfigs = &(udi->pConfigs); | |
112 | pActiveConfig = &(udi->pActiveConfig); | |
113 | pActiveInterface = &(udi->pActiveInterface[0]); | |
f95f1d2e | 114 | } |
115 | ||
116 | len = sizeof(struct usb_device_info); | |
117 | ||
2a7af812 | 118 | for (i=0; i<usbdevice->descriptor.bNumConfigurations; i++) |
f95f1d2e | 119 | { |
2a7af812 | 120 | struct usb_config_descriptor *conf_desc = &usbdevice->config[i]; |
3664a3e3 | 121 | WDU_INTERFACE **pInterfaces; |
122 | WDU_ALTERNATE_SETTING **pAlternateSettings[conf_desc->bNumInterfaces]; | |
123 | WDU_ALTERNATE_SETTING **pActiveAltSetting[conf_desc->bNumInterfaces]; | |
124 | ||
f95f1d2e | 125 | if (buf) { |
126 | WDU_CONFIGURATION *cfg = (WDU_CONFIGURATION*)(buf+len); | |
127 | ||
3664a3e3 | 128 | *pConfigs = cfg; |
129 | *pActiveConfig = cfg; | |
130 | ||
f95f1d2e | 131 | cfg->Descriptor.bLength = conf_desc->bLength; |
132 | cfg->Descriptor.bDescriptorType = conf_desc->bDescriptorType; | |
133 | cfg->Descriptor.wTotalLength = conf_desc->wTotalLength; | |
134 | cfg->Descriptor.bNumInterfaces = conf_desc->bNumInterfaces; | |
135 | cfg->Descriptor.bConfigurationValue = conf_desc->bConfigurationValue; | |
136 | cfg->Descriptor.iConfiguration = conf_desc->iConfiguration; | |
137 | cfg->Descriptor.bmAttributes = conf_desc->bmAttributes; | |
138 | cfg->Descriptor.MaxPower = conf_desc->MaxPower; | |
139 | ||
140 | cfg->dwNumInterfaces = conf_desc->bNumInterfaces; | |
3664a3e3 | 141 | |
142 | pInterfaces = &(cfg->pInterfaces); | |
f95f1d2e | 143 | } |
144 | len += sizeof(WDU_CONFIGURATION); | |
3664a3e3 | 145 | |
f95f1d2e | 146 | if (buf) { |
3664a3e3 | 147 | *pInterfaces = (WDU_INTERFACE*)(buf+len); |
f95f1d2e | 148 | for (j=0; j<conf_desc->bNumInterfaces; j++) { |
149 | WDU_INTERFACE *iface = (WDU_INTERFACE*)(buf+len); | |
3664a3e3 | 150 | |
151 | pActiveInterface[j] = iface; | |
152 | ||
153 | pAlternateSettings[j] = &(iface->pAlternateSettings); | |
2a7af812 | 154 | iface->dwNumAltSettings = usbdevice->config[i].interface[j].num_altsetting; |
3664a3e3 | 155 | pActiveAltSetting[j] = &(iface->pActiveAltSetting); |
f95f1d2e | 156 | |
157 | len += sizeof(WDU_INTERFACE); | |
158 | } | |
159 | } else { | |
160 | len += sizeof(WDU_INTERFACE) * conf_desc->bNumInterfaces; | |
161 | } | |
162 | ||
163 | for (j=0; j<conf_desc->bNumInterfaces; j++) | |
164 | { | |
2a7af812 | 165 | struct usb_interface *interface = &usbdevice->config[i].interface[j]; |
3664a3e3 | 166 | |
167 | if (buf) { | |
168 | *pAlternateSettings[j] = (WDU_ALTERNATE_SETTING*)(buf+len); | |
169 | /* FIXME: */ | |
170 | *pActiveAltSetting[j] = (WDU_ALTERNATE_SETTING*)(buf+len); | |
171 | } | |
172 | ||
f95f1d2e | 173 | for(k=0; k<interface->num_altsetting; k++) |
174 | { | |
3664a3e3 | 175 | unsigned char bNumEndpoints = interface->altsetting[k].bNumEndpoints; |
176 | WDU_ENDPOINT_DESCRIPTOR **pEndpointDescriptors; | |
177 | WDU_PIPE_INFO **pPipes; | |
178 | ||
f95f1d2e | 179 | if (buf) { |
180 | WDU_ALTERNATE_SETTING *altset = (WDU_ALTERNATE_SETTING*)(buf+len); | |
181 | ||
182 | altset->Descriptor.bLength = interface->altsetting[k].bLength; | |
183 | altset->Descriptor.bDescriptorType = interface->altsetting[k].bDescriptorType; | |
184 | altset->Descriptor.bInterfaceNumber = interface->altsetting[k].bInterfaceNumber; | |
185 | altset->Descriptor.bAlternateSetting = interface->altsetting[k].bAlternateSetting; | |
186 | altset->Descriptor.bNumEndpoints = interface->altsetting[k].bNumEndpoints; | |
187 | altset->Descriptor.bInterfaceClass = interface->altsetting[k].bInterfaceClass; | |
188 | altset->Descriptor.bInterfaceSubClass = interface->altsetting[k].bInterfaceSubClass; | |
189 | altset->Descriptor.bInterfaceProtocol = interface->altsetting[k].bInterfaceProtocol; | |
190 | altset->Descriptor.iInterface = interface->altsetting[k].iInterface; | |
3664a3e3 | 191 | pEndpointDescriptors = &(altset->pEndpointDescriptors); |
192 | pPipes = &(altset->pPipes); | |
f95f1d2e | 193 | |
194 | } | |
195 | len +=sizeof(WDU_ALTERNATE_SETTING); | |
196 | ||
197 | if (buf) { | |
3664a3e3 | 198 | *pEndpointDescriptors = (WDU_ENDPOINT_DESCRIPTOR*)(buf+len); |
f95f1d2e | 199 | for (l = 0; l < bNumEndpoints; l++) { |
200 | WDU_ENDPOINT_DESCRIPTOR *ed = (WDU_ENDPOINT_DESCRIPTOR*)(buf+len); | |
f95f1d2e | 201 | |
202 | ed->bLength = interface->altsetting[k].endpoint[l].bLength; | |
203 | ed->bDescriptorType = interface->altsetting[k].endpoint[l].bDescriptorType; | |
204 | ed->bEndpointAddress = interface->altsetting[k].endpoint[l].bEndpointAddress; | |
205 | ed->bmAttributes = interface->altsetting[k].endpoint[l].bmAttributes; | |
206 | ed->wMaxPacketSize = interface->altsetting[k].endpoint[l].wMaxPacketSize; | |
207 | ed->bInterval = interface->altsetting[k].endpoint[l].bInterval; | |
208 | ||
209 | len += sizeof(WDU_ENDPOINT_DESCRIPTOR); | |
792bf5f2 | 210 | } |
f95f1d2e | 211 | |
3664a3e3 | 212 | *pPipes = (WDU_PIPE_INFO*)(buf+len); |
792bf5f2 | 213 | for (l = 0; l < bNumEndpoints; l++) { |
214 | WDU_PIPE_INFO *pi = (WDU_PIPE_INFO*)(buf+len); | |
f95f1d2e | 215 | |
216 | pi->dwNumber = interface->altsetting[k].endpoint[l].bEndpointAddress; | |
217 | pi->dwMaximumPacketSize = WDU_GET_MAX_PACKET_SIZE(interface->altsetting[k].endpoint[l].wMaxPacketSize); | |
218 | pi->type = interface->altsetting[k].endpoint[l].bmAttributes & USB_ENDPOINT_TYPE_MASK; | |
219 | if (pi->type == PIPE_TYPE_CONTROL) | |
220 | pi->direction = WDU_DIR_IN_OUT; | |
221 | else | |
222 | { | |
223 | pi->direction = interface->altsetting[k].endpoint[l].bEndpointAddress & USB_ENDPOINT_DIR_MASK ? WDU_DIR_IN : WDU_DIR_OUT; | |
224 | } | |
225 | ||
226 | pi->dwInterval = interface->altsetting[k].endpoint[l].bInterval; | |
227 | ||
228 | len += sizeof(WDU_PIPE_INFO); | |
229 | } | |
230 | } else { | |
231 | len +=(sizeof(WDU_ENDPOINT_DESCRIPTOR)+sizeof(WDU_PIPE_INFO))*bNumEndpoints; | |
232 | } | |
233 | } | |
234 | } | |
235 | } | |
236 | ||
237 | return len; | |
238 | } | |
239 | ||
ac9e3f59 | 240 | int pp_transfer(WD_TRANSFER *tr, int fd, unsigned int request, unsigned char *wdioctl) { |
241 | int ret = 0; | |
28e7c368 | 242 | unsigned long port = (unsigned long)tr->dwPort; |
54357994 | 243 | unsigned char val; |
ac9e3f59 | 244 | |
245 | DPRINTF("dwPort: 0x%lx, cmdTrans: %lu, dwbytes: %ld, fautoinc: %ld, dwoptions: %ld\n", | |
246 | (unsigned long)tr->dwPort, tr->cmdTrans, tr->dwBytes, | |
247 | tr->fAutoinc, tr->dwOptions); | |
54357994 | 248 | |
249 | val = tr->Data.Byte; | |
ac9e3f59 | 250 | |
251 | #ifdef DEBUG | |
252 | if (tr->cmdTrans == 13) | |
54357994 | 253 | DPRINTF("write byte: %d\n", val); |
ac9e3f59 | 254 | #endif |
255 | ||
256 | #ifndef NO_WINDRVR | |
257 | ret = (*ioctl_func) (fd, request, wdioctl); | |
54357994 | 258 | #else |
259 | if (parportfd < 0) | |
260 | return ret; | |
261 | ||
28e7c368 | 262 | if (port == ppbase + PP_DATA) { |
263 | DPRINTF("data port\n"); | |
264 | switch(tr->cmdTrans) { | |
265 | case PP_READ: | |
266 | ret = 0; /* We don't support reading of the data port */ | |
267 | break; | |
268 | ||
269 | case PP_WRITE: | |
270 | ret = ioctl(parportfd, PPWDATA, &val); | |
271 | break; | |
272 | ||
273 | default: | |
274 | fprintf(stderr,"!!!Unsupported TRANSFER command: %lu!!!\n", tr->cmdTrans); | |
275 | ret = -1; | |
276 | break; | |
277 | } | |
278 | } else if (port == ppbase + PP_STATUS) { | |
279 | DPRINTF("status port\n"); | |
280 | switch(tr->cmdTrans) { | |
281 | case PP_READ: | |
282 | ret = ioctl(parportfd, PPRSTATUS, &val); | |
283 | break; | |
284 | ||
285 | case PP_WRITE: | |
286 | ret = 0; /* Status Port is readonly */ | |
287 | break; | |
288 | ||
289 | default: | |
290 | fprintf(stderr,"!!!Unsupported TRANSFER command: %lu!!!\n", tr->cmdTrans); | |
291 | ret = -1; | |
292 | break; | |
293 | } | |
294 | } else if (port == ppbase + PP_CONTROL) { | |
295 | DPRINTF("control port\n"); | |
296 | switch(tr->cmdTrans) { | |
297 | case PP_READ: | |
298 | ret = ioctl(parportfd, PPRCONTROL, &val); | |
299 | break; | |
300 | ||
301 | case PP_WRITE: | |
302 | ret = ioctl(parportfd, PPWCONTROL, &val); | |
303 | break; | |
304 | ||
305 | default: | |
306 | fprintf(stderr,"!!!Unsupported TRANSFER command: %lu!!!\n", tr->cmdTrans); | |
307 | ret = -1; | |
308 | break; | |
309 | } | |
54fc4508 | 310 | } else if ((port == ecpbase + PP_ECP_CFGA) && ecpbase) { |
311 | DPRINTF("ECP_CFGA port\n"); | |
312 | } else if ((port == ecpbase + PP_ECP_CFGB) && ecpbase) { | |
313 | DPRINTF("ECP_CFGB port\n"); | |
314 | } else if ((port == ecpbase + PP_ECP_ECR) && ecpbase) { | |
315 | DPRINTF("ECP_ECR port\n"); | |
28e7c368 | 316 | } else { |
54fc4508 | 317 | DPRINTF("access to unsupported address range!\n"); |
28e7c368 | 318 | ret = 0; |
54357994 | 319 | } |
320 | ||
321 | tr->Data.Byte = val; | |
ac9e3f59 | 322 | #endif |
323 | ||
324 | DPRINTF("dwPortReturn: 0x%lx, cmdTrans: %lu, dwbytes: %ld, fautoinc: %ld, dwoptions: %ld\n", | |
325 | (unsigned long)tr->dwPort, tr->cmdTrans, tr->dwBytes, | |
326 | tr->fAutoinc, tr->dwOptions); | |
327 | #ifdef DEBUG | |
328 | if (tr->cmdTrans == 10) | |
329 | DPRINTF("read byte: %d\n", tr->Data.Byte); | |
330 | #endif | |
331 | ||
332 | return ret; | |
333 | } | |
334 | ||
9c9fd67c | 335 | int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) { |
cdc711dc | 336 | struct header_struct* wdheader = (struct header_struct*)wdioctl; |
9c9fd67c | 337 | struct version_struct *version; |
338 | int ret = 0; | |
cdc711dc | 339 | |
da3ba95a | 340 | if (wdheader->magic != MAGIC) { |
2c2119eb | 341 | fprintf(stderr,"!!!ERROR: magic header does not match!!!\n"); |
342 | return (*ioctl_func) (fd, request, wdioctl); | |
cdc711dc | 343 | } |
344 | ||
bdc65937 | 345 | switch(request & ~(0xc0000000)) { |
da3ba95a | 346 | case VERSION: |
9c9fd67c | 347 | version = (struct version_struct*)(wdheader->data); |
348 | strcpy(version->version, "WinDriver no more"); | |
90831fba | 349 | version->versionul = 802; |
f1405f13 | 350 | DPRINTF("VERSION\n"); |
cdc711dc | 351 | break; |
2c2119eb | 352 | |
353 | case LICENSE: | |
f1405f13 | 354 | DPRINTF("LICENSE\n"); |
2c2119eb | 355 | break; |
356 | ||
f152c048 | 357 | case CARD_REGISTER_OLD: |
9c9fd67c | 358 | case CARD_REGISTER: |
54357994 | 359 | DPRINTF("CARD_REGISTER\n"); |
9c9fd67c | 360 | { |
533f4b68 | 361 | struct card_register* cr = (struct card_register*)(wdheader->data); |
54357994 | 362 | char ppdev[32]; |
363 | ||
364 | DPRINTF("Items: %lu, Addr: 0x%lx, bytes: %lu, bar: %lu\n", | |
365 | cr->Card.dwItems, | |
366 | (unsigned long)cr->Card.Item[0].I.IO.dwAddr, | |
367 | cr->Card.Item[0].I.IO.dwBytes, | |
368 | cr->Card.Item[0].I.IO.dwBar); | |
369 | ||
370 | DPRINTF("Items: %lu, Addr: 0x%lx, bytes: %lu, bar: %lu\n", | |
371 | cr->Card.dwItems, | |
372 | (unsigned long)cr->Card.Item[1].I.IO.dwAddr, | |
373 | cr->Card.Item[1].I.IO.dwBytes, | |
374 | cr->Card.Item[1].I.IO.dwBar); | |
576995a8 | 375 | #ifndef NO_WINDRVR |
376 | ret = (*ioctl_func) (fd, request, wdioctl); | |
ac9e3f59 | 377 | #else |
54357994 | 378 | if (parportfd < 0) { |
1f62c14e | 379 | if (ppbase && ((unsigned long)cr->Card.Item[0].I.IO.dwAddr != ppbase)) |
380 | parportnum++; | |
381 | ||
54357994 | 382 | snprintf(ppdev, sizeof(ppdev), "/dev/parport%d", parportnum); |
383 | DPRINTF("opening %s\n", ppdev); | |
384 | parportfd = open(ppdev, O_RDWR|O_EXCL); | |
459c6ef7 | 385 | |
386 | if (parportfd < 0) | |
387 | fprintf(stderr,"Can't open %s: %s\n", ppdev, strerror(errno)); | |
54357994 | 388 | } |
389 | ||
390 | if (parportfd >= 0) { | |
391 | int pmode; | |
392 | ||
393 | if (ioctl(parportfd, PPCLAIM) == -1) | |
394 | return ret; | |
395 | ||
57fade8e | 396 | ecpbase = 0; |
54357994 | 397 | pmode = IEEE1284_MODE_COMPAT; |
398 | if (ioctl(parportfd, PPNEGOT, &pmode) == -1) | |
399 | return ret; | |
400 | ||
54fc4508 | 401 | if (cr->Card.dwItems > 1 && cr->Card.Item[1].I.IO.dwAddr) { |
889bee69 | 402 | DPRINTF("ECP mode requested\n"); |
54fc4508 | 403 | ecpbase = (unsigned long)cr->Card.Item[1].I.IO.dwAddr; |
54357994 | 404 | /* TODO: Implement ECP mode */ |
405 | #if 0 | |
406 | pmode = IEEE1284_MODE_ECP; | |
407 | ||
408 | if (ioctl(parportfd, PPNEGOT, &pmode) == -1) { | |
57fade8e | 409 | ecpbase = 0; |
54357994 | 410 | pmode = IEEE1284_MODE_COMPAT; |
411 | if (ioctl(parportfd, PPNEGOT, &pmode) == -1) | |
412 | return ret; | |
413 | } | |
414 | #endif | |
415 | } | |
416 | ||
417 | cr->hCard = parportfd; | |
418 | ppbase = (unsigned long)cr->Card.Item[0].I.IO.dwAddr; | |
419 | } | |
576995a8 | 420 | #endif |
ac9e3f59 | 421 | DPRINTF("hCard: %lu\n", cr->hCard); |
9c9fd67c | 422 | } |
da3ba95a | 423 | break; |
2c2119eb | 424 | |
da3ba95a | 425 | case USB_TRANSFER: |
f1405f13 | 426 | DPRINTF("in USB_TRANSFER"); |
da3ba95a | 427 | { |
428 | struct usb_transfer *ut = (struct usb_transfer*)(wdheader->data); | |
429 | ||
723d9aa0 | 430 | #ifdef DEBUG |
f1405f13 | 431 | DPRINTF(" unique: %lu, pipe: %lu, read: %lu, options: %lx, size: %lu, timeout: %lx\n", |
432 | ut->dwUniqueID, ut->dwPipeNum, ut->fRead, | |
433 | ut->dwOptions, ut->dwBufferSize, ut->dwTimeout); | |
434 | DPRINTF("setup packet: "); | |
9c9fd67c | 435 | hexdump(ut->SetupPacket, 8); |
723d9aa0 | 436 | |
9c9fd67c | 437 | if (!ut->fRead && ut->dwBufferSize) |
438 | { | |
439 | hexdump(ut->pBuffer, ut->dwBufferSize); | |
9c9fd67c | 440 | } |
723d9aa0 | 441 | #endif |
9c9fd67c | 442 | |
795992ad | 443 | #ifndef NO_WINDRVR |
9c9fd67c | 444 | ret = (*ioctl_func) (fd, request, wdioctl); |
411af373 | 445 | #else |
446 | /* http://www.jungo.com/support/documentation/windriver/802/wdusb_man_mhtml/node55.html#SECTION001213000000000000000 */ | |
a70f4f38 | 447 | if (ut->dwPipeNum == 0) { /* control pipe */ |
448 | int requesttype, request, value, index, size; | |
449 | requesttype = ut->SetupPacket[0]; | |
450 | request = ut->SetupPacket[1]; | |
451 | value = ut->SetupPacket[2] | (ut->SetupPacket[3] << 8); | |
452 | index = ut->SetupPacket[4] | (ut->SetupPacket[5] << 8); | |
453 | size = ut->SetupPacket[6] | (ut->SetupPacket[7] << 8); | |
f1405f13 | 454 | DPRINTF("requesttype: %x, request: %x, value: %u, index: %u, size: %u\n", requesttype, request, value, index, size); |
a70f4f38 | 455 | ret = usb_control_msg(usb_devhandle, requesttype, request, value, index, ut->pBuffer, size, ut->dwTimeout); |
456 | } else { | |
457 | if (ut->fRead) { | |
458 | ret = usb_bulk_read(usb_devhandle, ut->dwPipeNum, ut->pBuffer, ut->dwBufferSize, ut->dwTimeout); | |
459 | ||
460 | } else { | |
461 | ret = usb_bulk_write(usb_devhandle, ut->dwPipeNum, ut->pBuffer, ut->dwBufferSize, ut->dwTimeout); | |
462 | } | |
463 | } | |
464 | ||
411af373 | 465 | if (ret < 0) { |
a70f4f38 | 466 | fprintf(stderr, "usb_transfer: %d (%s)\n", ret, usb_strerror()); |
411af373 | 467 | } else { |
468 | ut->dwBytesTransferred = ret; | |
469 | ret = 0; | |
470 | } | |
292160ed | 471 | #endif |
9c9fd67c | 472 | |
723d9aa0 | 473 | #ifdef DEBUG |
f1405f13 | 474 | DPRINTF("Transferred: %lu (%s)\n",ut->dwBytesTransferred, (ut->fRead?"read":"write")); |
9c9fd67c | 475 | if (ut->fRead && ut->dwBytesTransferred) |
476 | { | |
f1405f13 | 477 | DPRINTF("Read: "); |
9c9fd67c | 478 | hexdump(ut->pBuffer, ut->dwBytesTransferred); |
479 | } | |
723d9aa0 | 480 | #endif |
da3ba95a | 481 | } |
cdc711dc | 482 | break; |
2c2119eb | 483 | |
f152c048 | 484 | case INT_ENABLE_OLD: |
da3ba95a | 485 | case INT_ENABLE: |
f1405f13 | 486 | DPRINTF("INT_ENABLE\n"); |
da3ba95a | 487 | { |
9c9fd67c | 488 | struct interrupt *it = (struct interrupt*)(wdheader->data); |
cdc711dc | 489 | |
f1405f13 | 490 | DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n", |
491 | it->hInterrupt, it->dwOptions, | |
492 | it->dwCmds, it->fEnableOk, it->dwCounter, | |
493 | it->dwLost, it->fStopped); | |
cdc711dc | 494 | |
9c9fd67c | 495 | it->fEnableOk = 1; |
9ba1e383 | 496 | it->fStopped = 0; |
ca18111b | 497 | ints_enabled = 1; |
533f4b68 | 498 | pthread_mutex_trylock(&int_wait); |
9c9fd67c | 499 | } |
cdc711dc | 500 | |
cdc711dc | 501 | break; |
9c9fd67c | 502 | |
da3ba95a | 503 | case INT_DISABLE: |
f1405f13 | 504 | DPRINTF("INT_DISABLE\n"); |
da3ba95a | 505 | { |
9c9fd67c | 506 | struct interrupt *it = (struct interrupt*)(wdheader->data); |
da3ba95a | 507 | |
f1405f13 | 508 | DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n", |
509 | it->hInterrupt, it->dwOptions, | |
510 | it->dwCmds, it->fEnableOk, it->dwCounter, | |
511 | it->dwLost, it->fStopped); | |
795992ad | 512 | #ifndef NO_WINDRVR |
9c9fd67c | 513 | ret = (*ioctl_func) (fd, request, wdioctl); |
e71b6bf3 | 514 | #else |
515 | it->dwCounter = 0; | |
516 | it->fStopped = 1; | |
ca18111b | 517 | ints_enabled = 0; |
9ba1e383 | 518 | if (pthread_mutex_trylock(&int_wait) == EBUSY) |
519 | pthread_mutex_unlock(&int_wait); | |
292160ed | 520 | #endif |
f1405f13 | 521 | DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n", |
522 | it->hInterrupt, it->dwOptions, | |
523 | it->dwCmds, it->fEnableOk, it->dwCounter, | |
524 | it->dwLost, it->fStopped); | |
da3ba95a | 525 | } |
da3ba95a | 526 | break; |
da3ba95a | 527 | |
9c9fd67c | 528 | case USB_SET_INTERFACE: |
f1405f13 | 529 | DPRINTF("USB_SET_INTERFACE\n"); |
da3ba95a | 530 | { |
9c9fd67c | 531 | struct usb_set_interface *usi = (struct usb_set_interface*)(wdheader->data); |
532 | ||
f1405f13 | 533 | DPRINTF("unique: %lu, interfacenum: %lu, alternatesetting: %lu, options: %lx\n", |
534 | usi->dwUniqueID, usi->dwInterfaceNum, | |
535 | usi->dwAlternateSetting, usi->dwOptions); | |
795992ad | 536 | #ifndef NO_WINDRVR |
9c9fd67c | 537 | ret = (*ioctl_func) (fd, request, wdioctl); |
2a7af812 | 538 | #else |
539 | if (usbdevice) { | |
2a7af812 | 540 | if (!usb_devhandle) |
541 | usb_devhandle = usb_open(usbdevice); | |
d0676964 | 542 | |
543 | /* FIXME: Select right interface! */ | |
544 | ret = usb_claim_interface(usb_devhandle, usbdevice->config[0].interface[usi->dwInterfaceNum].altsetting[usi->dwAlternateSetting].bInterfaceNumber); | |
545 | if (!ret) { | |
411af373 | 546 | if(!ret) { |
010cbaa6 | 547 | usbinterface = usbdevice->config[0].interface[usi->dwInterfaceNum].altsetting[usi->dwAlternateSetting].bInterfaceNumber; |
411af373 | 548 | ret = usb_set_altinterface(usb_devhandle, usi->dwAlternateSetting); |
549 | if (ret) | |
550 | fprintf(stderr, "usb_set_altinterface: %d\n", ret); | |
551 | } else { | |
552 | fprintf(stderr, "usb_set_configuration: %d (%s)\n", ret, usb_strerror()); | |
553 | } | |
d0676964 | 554 | } else { |
f1405f13 | 555 | fprintf(stderr, "usb_claim_interface: %d -> %d (%s)\n", |
556 | usbdevice->config[0].interface[usi->dwInterfaceNum].altsetting[usi->dwAlternateSetting].bInterfaceNumber, | |
557 | ret, usb_strerror()); | |
d0676964 | 558 | } |
2a7af812 | 559 | } |
292160ed | 560 | #endif |
f1405f13 | 561 | DPRINTF("unique: %lu, interfacenum: %lu, alternatesetting: %lu, options: %lx\n", |
562 | usi->dwUniqueID, usi->dwInterfaceNum, | |
563 | usi->dwAlternateSetting, usi->dwOptions); | |
da3ba95a | 564 | } |
cdc711dc | 565 | break; |
da3ba95a | 566 | |
f152c048 | 567 | case USB_GET_DEVICE_DATA_OLD: |
9c9fd67c | 568 | case USB_GET_DEVICE_DATA: |
f1405f13 | 569 | DPRINTF("USB_GET_DEVICE_DATA\n"); |
9c9fd67c | 570 | { |
571 | struct usb_get_device_data *ugdd = (struct usb_get_device_data*)(wdheader->data); | |
572 | int pSize; | |
573 | ||
f1405f13 | 574 | DPRINTF("unique: %lu, bytes: %lu, options: %lx\n", |
575 | ugdd->dwUniqueID, ugdd->dwBytes, | |
576 | ugdd->dwOptions); | |
577 | ||
9c9fd67c | 578 | pSize = ugdd->dwBytes; |
e71b6bf3 | 579 | if (!ugdd->dwBytes) { |
2a7af812 | 580 | if (usbdevice) { |
f95f1d2e | 581 | ugdd->dwBytes = usb_deviceinfo(NULL); |
e71b6bf3 | 582 | } |
583 | } else { | |
f95f1d2e | 584 | usb_deviceinfo((unsigned char*)ugdd->pBuf); |
e71b6bf3 | 585 | } |
da3ba95a | 586 | } |
9c9fd67c | 587 | break; |
588 | ||
f152c048 | 589 | case EVENT_REGISTER_OLD: |
b0f621dd | 590 | case EVENT_REGISTER: |
f1405f13 | 591 | DPRINTF("EVENT_REGISTER\n"); |
b0f621dd | 592 | { |
593 | struct event *e = (struct event*)(wdheader->data); | |
ac22d975 | 594 | struct usb_bus *bus; |
b0f621dd | 595 | int i; |
596 | ||
f1405f13 | 597 | DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lu, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n", |
598 | e->handle, e->dwAction, | |
599 | e->dwStatus, e->dwEventId, e->dwCardType, | |
600 | e->hKernelPlugIn, e->dwOptions, | |
601 | e->u.Usb.deviceId.dwVendorId, | |
602 | e->u.Usb.deviceId.dwProductId, | |
603 | e->u.Usb.dwUniqueID, e->dwEventVer, | |
604 | e->dwNumMatchTables); | |
605 | ||
ac22d975 | 606 | for (i = 0; i < e->dwNumMatchTables; i++) { |
f1405f13 | 607 | |
608 | DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n", | |
609 | e->matchTables[i].VendorId, | |
610 | e->matchTables[i].ProductId, | |
611 | e->matchTables[i].bDeviceClass, | |
612 | e->matchTables[i].bDeviceSubClass, | |
613 | e->matchTables[i].bInterfaceClass, | |
614 | e->matchTables[i].bInterfaceSubClass, | |
615 | e->matchTables[i].bInterfaceProtocol); | |
b0f621dd | 616 | |
ac22d975 | 617 | for (bus = busses; bus; bus = bus->next) { |
618 | struct usb_device *dev; | |
619 | ||
620 | for (dev = bus->devices; dev; dev = dev->next) { | |
621 | struct usb_device_descriptor *desc = &(dev->descriptor); | |
622 | ||
623 | if((desc->idVendor == e->matchTables[i].VendorId) && | |
624 | (desc->idProduct == e->matchTables[i].ProductId) && | |
625 | (desc->bDeviceClass == e->matchTables[i].bDeviceClass) && | |
626 | (desc->bDeviceSubClass == e->matchTables[i].bDeviceSubClass)) { | |
2a7af812 | 627 | int ac; |
628 | for (ac = 0; ac < desc->bNumConfigurations; ac++) { | |
629 | struct usb_interface *interface = dev->config[ac].interface; | |
630 | int ai; | |
631 | ||
632 | for (ai = 0; ai < interface->num_altsetting; ai++) { | |
f1405f13 | 633 | |
634 | DPRINTF("intclass: %x, intsubclass: %x, intproto: %x\n", | |
635 | interface->altsetting[i].bInterfaceClass, | |
636 | interface->altsetting[i].bInterfaceSubClass, | |
637 | interface->altsetting[i].bInterfaceProtocol); | |
638 | ||
2a7af812 | 639 | if ((interface->altsetting[ai].bInterfaceSubClass == e->matchTables[i].bInterfaceSubClass) && |
640 | (interface->altsetting[ai].bInterfaceProtocol == e->matchTables[i].bInterfaceProtocol)){ | |
641 | /* TODO: check interfaceClass! */ | |
f1405f13 | 642 | DPRINTF("found device with libusb\n"); |
2a7af812 | 643 | usbdevice = dev; |
644 | card_type = e->dwCardType; | |
645 | } | |
646 | } | |
647 | } | |
ac22d975 | 648 | } |
649 | } | |
650 | } | |
651 | } | |
652 | ||
795992ad | 653 | #ifndef NO_WINDRVR |
b0f621dd | 654 | ret = (*ioctl_func) (fd, request, wdioctl); |
2a7af812 | 655 | #else |
2a7af812 | 656 | e->handle++; |
292160ed | 657 | #endif |
b0f621dd | 658 | |
723d9aa0 | 659 | #ifdef DEBUG |
f1405f13 | 660 | DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lu, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n", |
661 | e->handle, e->dwAction, | |
662 | e->dwStatus, e->dwEventId, e->dwCardType, | |
663 | e->hKernelPlugIn, e->dwOptions, | |
664 | e->u.Usb.deviceId.dwVendorId, | |
665 | e->u.Usb.deviceId.dwProductId, | |
666 | e->u.Usb.dwUniqueID, e->dwEventVer, | |
667 | e->dwNumMatchTables); | |
668 | ||
b0f621dd | 669 | for (i = 0; i < e->dwNumMatchTables; i++) |
f1405f13 | 670 | DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n", |
671 | e->matchTables[i].VendorId, | |
672 | e->matchTables[i].ProductId, | |
673 | e->matchTables[i].bDeviceClass, | |
674 | e->matchTables[i].bDeviceSubClass, | |
675 | e->matchTables[i].bInterfaceClass, | |
676 | e->matchTables[i].bInterfaceSubClass, | |
677 | e->matchTables[i].bInterfaceProtocol); | |
723d9aa0 | 678 | #endif |
b0f621dd | 679 | } |
680 | break; | |
681 | ||
f152c048 | 682 | case TRANSFER_OLD: |
da3ba95a | 683 | case TRANSFER: |
f1405f13 | 684 | DPRINTF("TRANSFER\n"); |
ac9e3f59 | 685 | { |
686 | WD_TRANSFER *tr = (WD_TRANSFER*)(wdheader->data); | |
687 | ||
688 | ret = pp_transfer(tr, fd, request, wdioctl); | |
689 | } | |
9c9fd67c | 690 | break; |
691 | ||
54357994 | 692 | case MULTI_TRANSFER_OLD: |
576995a8 | 693 | case MULTI_TRANSFER: |
694 | DPRINTF("MULTI_TRANSFER\n"); | |
ac9e3f59 | 695 | { |
696 | WD_TRANSFER *tr = (WD_TRANSFER*)(wdheader->data); | |
697 | unsigned long num = wdheader->size/sizeof(WD_TRANSFER); | |
698 | int i; | |
699 | ||
700 | ||
701 | for (i = 0; i < num; i++) { | |
702 | DPRINTF("Transfer %d:\n", i+1); | |
576995a8 | 703 | #ifndef NO_WINDRVR |
ac9e3f59 | 704 | wdheader->size = sizeof(WD_TRANSFER); |
705 | request = TRANSFER; | |
706 | wdheader->data = tr + i; | |
576995a8 | 707 | #endif |
ac9e3f59 | 708 | ret = pp_transfer(tr + i, fd, request, wdioctl); |
709 | } | |
710 | ||
711 | #ifndef NO_WINDRVR | |
712 | wdheader->data = tr; | |
713 | #endif | |
714 | ||
715 | return ret; | |
716 | } | |
576995a8 | 717 | break; |
718 | ||
da3ba95a | 719 | case EVENT_UNREGISTER: |
f1405f13 | 720 | DPRINTF("EVENT_UNREGISTER\n"); |
795992ad | 721 | #ifndef NO_WINDRVR |
9c9fd67c | 722 | ret = (*ioctl_func) (fd, request, wdioctl); |
292160ed | 723 | #endif |
9c9fd67c | 724 | break; |
725 | ||
da3ba95a | 726 | case INT_WAIT: |
f1405f13 | 727 | DPRINTF("INT_WAIT\n"); |
b0f621dd | 728 | { |
729 | struct interrupt *it = (struct interrupt*)(wdheader->data); | |
730 | ||
f1405f13 | 731 | DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n", |
732 | it->hInterrupt, it->dwOptions, | |
733 | it->dwCmds, it->fEnableOk, it->dwCounter, | |
734 | it->dwLost, it->fStopped); | |
b0f621dd | 735 | |
795992ad | 736 | #ifndef NO_WINDRVR |
b0f621dd | 737 | ret = (*ioctl_func) (fd, request, wdioctl); |
292160ed | 738 | #else |
2a7af812 | 739 | if (usbdevice) { |
740 | if (it->dwCounter == 0) { | |
741 | it->dwCounter = 1; | |
742 | } else { | |
533f4b68 | 743 | pthread_mutex_lock(&int_wait); |
be452175 | 744 | pthread_mutex_unlock(&int_wait); |
2a7af812 | 745 | } |
94038a57 | 746 | } else { |
533f4b68 | 747 | pthread_mutex_lock(&int_wait); |
be452175 | 748 | pthread_mutex_unlock(&int_wait); |
2a7af812 | 749 | } |
292160ed | 750 | #endif |
751 | ||
f1405f13 | 752 | DPRINTF("INT_WAIT_RETURN: Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n", |
753 | it->hInterrupt, it->dwOptions, it->dwCmds, | |
754 | it->fEnableOk, it->dwCounter, it->dwLost, | |
755 | it->fStopped); | |
b0f621dd | 756 | } |
9c9fd67c | 757 | break; |
758 | ||
da3ba95a | 759 | case CARD_UNREGISTER: |
f1405f13 | 760 | DPRINTF("CARD_UNREGISTER\n"); |
54357994 | 761 | { |
762 | struct card_register* cr = (struct card_register*)(wdheader->data); | |
763 | ||
764 | DPRINTF("Addr: 0x%lx, bytes: %lu, bar: %lu\n", | |
765 | (unsigned long)cr->Card.Item[0].I.IO.dwAddr, | |
766 | cr->Card.Item[0].I.IO.dwBytes, | |
767 | cr->Card.Item[0].I.IO.dwBar); | |
768 | ||
769 | DPRINTF("hCard: %lu\n", cr->hCard); | |
770 | ||
795992ad | 771 | #ifndef NO_WINDRVR |
54357994 | 772 | ret = (*ioctl_func) (fd, request, wdioctl); |
773 | #else | |
774 | if (parportfd == cr->hCard && parportfd >= 0) { | |
775 | ioctl(parportfd, PPRELEASE); | |
776 | close(parportfd); | |
777 | parportfd = -1; | |
54357994 | 778 | } |
292160ed | 779 | #endif |
54357994 | 780 | } |
9c9fd67c | 781 | break; |
782 | ||
da3ba95a | 783 | case EVENT_PULL: |
f1405f13 | 784 | DPRINTF("EVENT_PULL\n"); |
b1831983 | 785 | { |
786 | struct event *e = (struct event*)(wdheader->data); | |
723d9aa0 | 787 | #ifdef DEBUG |
b1831983 | 788 | int i; |
789 | ||
f1405f13 | 790 | DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lx, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n", |
791 | e->handle, e->dwAction, e->dwStatus, | |
792 | e->dwEventId, e->dwCardType, e->hKernelPlugIn, | |
793 | e->dwOptions, e->u.Usb.deviceId.dwVendorId, | |
794 | e->u.Usb.deviceId.dwProductId, | |
795 | e->u.Usb.dwUniqueID, e->dwEventVer, | |
796 | e->dwNumMatchTables); | |
797 | ||
b1831983 | 798 | for (i = 0; i < e->dwNumMatchTables; i++) |
f1405f13 | 799 | DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n", |
800 | e->matchTables[i].VendorId, | |
801 | e->matchTables[i].ProductId, | |
802 | e->matchTables[i].bDeviceClass, | |
803 | e->matchTables[i].bDeviceSubClass, | |
804 | e->matchTables[i].bInterfaceClass, | |
805 | e->matchTables[i].bInterfaceSubClass, | |
806 | e->matchTables[i].bInterfaceProtocol); | |
723d9aa0 | 807 | #endif |
b1831983 | 808 | |
795992ad | 809 | #ifndef NO_WINDRVR |
b1831983 | 810 | ret = (*ioctl_func) (fd, request, wdioctl); |
292160ed | 811 | #else |
2a7af812 | 812 | if (usbdevice) { |
813 | struct usb_interface *interface = usbdevice->config->interface; | |
292160ed | 814 | |
815 | e->dwCardType = card_type; | |
816 | e->dwAction = 1; | |
817 | e->dwEventId = 109; | |
ca18111b | 818 | e->u.Usb.dwUniqueID = 110; |
2a7af812 | 819 | e->matchTables[0].VendorId = usbdevice->descriptor.idVendor; |
820 | e->matchTables[0].ProductId = usbdevice->descriptor.idProduct; | |
821 | e->matchTables[0].bDeviceClass = usbdevice->descriptor.bDeviceClass; | |
822 | e->matchTables[0].bDeviceSubClass = usbdevice->descriptor.bDeviceSubClass; | |
292160ed | 823 | e->matchTables[0].bInterfaceClass = interface->altsetting[0].bInterfaceClass; |
824 | e->matchTables[0].bInterfaceSubClass = interface->altsetting[0].bInterfaceSubClass; | |
825 | e->matchTables[0].bInterfaceProtocol = interface->altsetting[0].bInterfaceProtocol; | |
826 | } | |
827 | #endif | |
b1831983 | 828 | |
723d9aa0 | 829 | #ifdef DEBUG |
f1405f13 | 830 | DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lx, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n", |
831 | e->handle, e->dwAction, e->dwStatus, | |
832 | e->dwEventId, e->dwCardType, e->hKernelPlugIn, | |
833 | e->dwOptions, e->u.Usb.deviceId.dwVendorId, | |
834 | e->u.Usb.deviceId.dwProductId, | |
835 | e->u.Usb.dwUniqueID, e->dwEventVer, | |
836 | e->dwNumMatchTables); | |
837 | ||
b1831983 | 838 | for (i = 0; i < e->dwNumMatchTables; i++) |
f1405f13 | 839 | DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n", |
840 | e->matchTables[i].VendorId, | |
841 | e->matchTables[i].ProductId, | |
842 | e->matchTables[i].bDeviceClass, | |
843 | e->matchTables[i].bDeviceSubClass, | |
844 | e->matchTables[i].bInterfaceClass, | |
845 | e->matchTables[i].bInterfaceSubClass, | |
846 | e->matchTables[i].bInterfaceProtocol); | |
723d9aa0 | 847 | #endif |
ca18111b | 848 | |
b1831983 | 849 | } |
9c9fd67c | 850 | break; |
851 | ||
da3ba95a | 852 | default: |
292160ed | 853 | fprintf(stderr,"!!!Unsupported IOCTL: %x!!!\n", request); |
795992ad | 854 | #ifndef NO_WINDRVR |
9c9fd67c | 855 | ret = (*ioctl_func) (fd, request, wdioctl); |
292160ed | 856 | #endif |
857 | break; | |
cdc711dc | 858 | } |
da3ba95a | 859 | |
9c9fd67c | 860 | return ret; |
cdc711dc | 861 | } |
862 | ||
54357994 | 863 | int ioctl(int fd, unsigned long int request, ...) { |
dbda1264 | 864 | va_list args; |
865 | void *argp; | |
866 | int ret; | |
867 | ||
868 | if (!ioctl_func) | |
f1405f13 | 869 | ioctl_func = (int (*) (int, int, void *)) dlsym (RTLD_NEXT, "ioctl"); |
dbda1264 | 870 | |
871 | va_start (args, request); | |
872 | argp = va_arg (args, void *); | |
873 | va_end (args); | |
874 | ||
332ced7a | 875 | if (fd == windrvrfd) |
dbda1264 | 876 | ret = do_wdioctl(fd, request, argp); |
877 | else | |
878 | ret = (*ioctl_func) (fd, request, argp); | |
879 | ||
880 | return ret; | |
881 | } | |
cdc711dc | 882 | |
be452175 | 883 | int open (const char *pathname, int flags, ...) { |
884 | static int (*func) (const char *, int, mode_t) = NULL; | |
cdc711dc | 885 | mode_t mode = 0; |
886 | va_list args; | |
887 | int fd; | |
888 | ||
889 | if (!func) | |
f1405f13 | 890 | func = (int (*) (const char *, int, mode_t)) dlsym (RTLD_NEXT, "open"); |
cdc711dc | 891 | |
892 | if (flags & O_CREAT) { | |
893 | va_start(args, flags); | |
894 | mode = va_arg(args, mode_t); | |
895 | va_end(args); | |
896 | } | |
897 | ||
cdc711dc | 898 | if (!strcmp (pathname, "/dev/windrvr6")) { |
f1405f13 | 899 | DPRINTF("opening windrvr6\n"); |
795992ad | 900 | #ifdef NO_WINDRVR |
01b99d52 | 901 | windrvrfd = fd = (*func) ("/dev/null", flags, mode); |
902 | #else | |
903 | windrvrfd = fd = (*func) (pathname, flags, mode); | |
904 | #endif | |
f10480d1 | 905 | if (!busses) { |
906 | usb_init(); | |
907 | usb_find_busses(); | |
908 | usb_find_devices(); | |
909 | ||
910 | busses = usb_get_busses(); | |
911 | } | |
723d9aa0 | 912 | |
913 | return fd; | |
cdc711dc | 914 | } |
915 | ||
723d9aa0 | 916 | return (*func) (pathname, flags, mode); |
cdc711dc | 917 | } |
918 | ||
723d9aa0 | 919 | int close(int fd) { |
920 | static int (*func) (int) = NULL; | |
cdc711dc | 921 | |
723d9aa0 | 922 | if (!func) |
f1405f13 | 923 | func = (int (*) (int)) dlsym(RTLD_NEXT, "close"); |
723d9aa0 | 924 | |
11d01742 | 925 | if (fd == windrvrfd && windrvrfd >= 0) { |
f1405f13 | 926 | DPRINTF("close windrvrfd\n"); |
010cbaa6 | 927 | if (usbinterface >= 0) |
928 | usb_release_interface(usb_devhandle, usbinterface); | |
929 | ||
930 | if (usb_devhandle) | |
931 | usb_close(usb_devhandle); | |
932 | ||
933 | usb_devhandle = NULL; | |
934 | usbinterface = -1; | |
332ced7a | 935 | windrvrfd = -1; |
cdc711dc | 936 | } |
cdc711dc | 937 | |
723d9aa0 | 938 | return (*func) (fd); |
cdc711dc | 939 | } |
940 | ||
723d9aa0 | 941 | FILE *fopen(const char *path, const char *mode) { |
942 | FILE *ret; | |
943 | static FILE* (*func) (const char*, const char*) = NULL; | |
ca18111b | 944 | |
945 | if (!func) | |
f1405f13 | 946 | func = (FILE* (*) (const char*, const char*)) dlsym(RTLD_NEXT, "fopen"); |
ca18111b | 947 | |
723d9aa0 | 948 | ret = (*func) (path, mode); |
ca18111b | 949 | |
723d9aa0 | 950 | if (!strcmp (path, "/proc/modules")) { |
f1405f13 | 951 | DPRINTF("opening /proc/modules\n"); |
723d9aa0 | 952 | #ifdef NO_WINDRVR |
dbda1264 | 953 | modulesfp = ret; |
723d9aa0 | 954 | modules_read = 0; |
955 | #endif | |
956 | } | |
cdc711dc | 957 | |
958 | return ret; | |
959 | } | |
960 | ||
dbda1264 | 961 | char *fgets(char *s, int size, FILE *stream) { |
962 | static char* (*func) (char*, int, FILE*) = NULL; | |
16f6b164 | 963 | const char modules[][256] = {"windrvr6 1 0 - Live 0xdeadbeef\n", "parport_pc 1 0 - Live 0xdeadbeef\n"}; |
dbda1264 | 964 | char *ret = NULL; |
965 | ||
cdc711dc | 966 | |
967 | if (!func) | |
f1405f13 | 968 | func = (char* (*) (char*, int, FILE*)) dlsym(RTLD_NEXT, "fgets"); |
723d9aa0 | 969 | |
dbda1264 | 970 | if (modulesfp == stream) { |
54357994 | 971 | if (modules_read < sizeof(modules) / sizeof(modules[0])) { |
16f6b164 | 972 | strcpy(s, modules[modules_read]); |
dbda1264 | 973 | ret = s; |
16f6b164 | 974 | modules_read++; |
dbda1264 | 975 | } |
723d9aa0 | 976 | } else { |
dbda1264 | 977 | ret = (*func)(s,size,stream); |
723d9aa0 | 978 | } |
cdc711dc | 979 | |
980 | return ret; | |
981 | } | |
982 | ||
dbda1264 | 983 | int fclose(FILE *fp) { |
984 | static int (*func) (FILE*) = NULL; | |
cdc711dc | 985 | |
dbda1264 | 986 | if (!func) |
f1405f13 | 987 | func = (int (*) (FILE*)) dlsym(RTLD_NEXT, "fclose"); |
cdc711dc | 988 | |
dbda1264 | 989 | if (fp == modulesfp) { |
990 | modulesfp = NULL; | |
991 | } | |
992 | ||
993 | return (*func)(fp); | |
cdc711dc | 994 | } |
419f2c98 | 995 | |
996 | int access(const char *pathname, int mode) { | |
997 | static int (*func) (const char*, int); | |
998 | ||
999 | if (!func) | |
f1405f13 | 1000 | func = (int (*) (const char*, int)) dlsym(RTLD_NEXT, "access"); |
419f2c98 | 1001 | |
1002 | if (!strcmp(pathname, "/dev/windrvr6")) { | |
1003 | return 0; | |
1004 | } else { | |
1005 | return (*func)(pathname, mode); | |
1006 | } | |
1007 | } |