#include <sys/stat.h>
#include <sys/time.h>
#include <stdio.h>
-#include <usb.h>
#include <signal.h>
#include <errno.h>
#include <inttypes.h>
static unsigned long ppbase = 0;
static unsigned long ecpbase = 0;
static struct parport_config *pport = NULL;
-static struct xpcu_s *xpcu = NULL;
static FILE *modulesfp = NULL;
static FILE *baseaddrfp = NULL;
static int baseaddrnum = 0;
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_transfer(xpcu, ut);
+ ret = xpcu_transfer(ut);
#endif
#ifdef DEBUG
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_int_state(xpcu, it, ENABLE_INTERRUPT);
+ ret = xpcu_int_state(it, ENABLE_INTERRUPT);
#endif
DPRINTF("<- Handle: 0x%lx, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_int_state(xpcu, it, DISABLE_INTERRUPT);
+ ret = xpcu_int_state(it, DISABLE_INTERRUPT);
#endif
DPRINTF("<- Handle: 0x%lx, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
it->hInterrupt, it->dwOptions,
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_set_interface(xpcu, usi);
+ ret = xpcu_set_interface(usi);
#endif
DPRINTF("<- unique: 0x%lx, interfacenum: %lu, alternatesetting: %lu, options: %lx\n",
usi->dwUniqueID, usi->dwInterfaceNum,
ugdd->dwUniqueID, ugdd->dwBytes,
ugdd->dwOptions);
- ret = xpcu_deviceinfo(xpcu, ugdd);
+ ret = xpcu_deviceinfo(ugdd);
}
break;
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- xpcu = xpcu_find(e);
+ ret = xpcu_find(e);
#endif
#ifdef DEBUG
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_close(xpcu, e);
+ ret = xpcu_close(e);
#endif
}
break;
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_int_wait(xpcu, it);
+ ret = xpcu_int_wait(it);
#endif
DPRINTF("<- INT_WAIT_RETURN: Handle: 0x%lx, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
#ifndef NO_WINDRVR
ret = (*ioctl_func) (fd, request, wdioctl);
#else
- ret = xpcu_found(xpcu, e);
+ ret = xpcu_found(e);
#endif
#ifdef DEBUG
if (fd == windrvrfd && windrvrfd >= 0) {
DPRINTF("close windrvrfd\n");
-
- xpcu = NULL;
windrvrfd = -1;
}
#include "usb-driver.h"
#include "xpcu.h"
+struct xpcu_s {
+ struct usb_device *dev;
+ usb_dev_handle *handle;
+ int interface;
+ int alternate;
+ unsigned long card_type;
+ pthread_mutex_t interrupt;
+};
+
static struct usb_bus *busses = NULL;
static pthread_mutex_t dummy_interrupt = PTHREAD_MUTEX_INITIALIZER;
-int xpcu_deviceinfo(struct xpcu_s *xpcu, struct usb_get_device_data *ugdd) {
+int xpcu_deviceinfo(struct usb_get_device_data *ugdd) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)ugdd->dwUniqueID;
int i,j,k,l;
int len = 0;
unsigned char *buf = NULL;
WDU_CONFIGURATION **pConfigs, **pActiveConfig;
WDU_INTERFACE **pActiveInterface;
- if (ugdd->dwUniqueID != (unsigned long)xpcu)
- return -ENODEV;
-
if (!xpcu)
return -ENODEV;
return ret;
}
-int xpcu_transfer(struct xpcu_s *xpcu, struct usb_transfer *ut) {
+int xpcu_transfer(struct usb_transfer *ut) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)ut->dwUniqueID;
int ret = 0;
- if (ut->dwUniqueID != (unsigned long)xpcu)
- return -ENODEV;
-
if (!xpcu)
return -ENODEV;
return ret;
}
-int xpcu_set_interface(struct xpcu_s *xpcu, struct usb_set_interface *usi) {
- if (usi->dwUniqueID != (unsigned long)xpcu)
- return -ENODEV;
-
+int xpcu_set_interface(struct usb_set_interface *usi) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)usi->dwUniqueID;
+
if (!xpcu)
return -ENODEV;
}
-struct xpcu_s *xpcu_find(struct event *e) {
- static struct xpcu_s xpcu;
+int xpcu_find(struct event *e) {
+ struct xpcu_s *xpcu = NULL;
char* devpos;
struct usb_bus *bus;
int busnum = -1, devnum = -1;
int i;
- bzero(&xpcu, sizeof(xpcu));
xpcu_init();
devpos = getenv("XILINX_USB_DEV");
/* TODO: check interfaceClass! */
DPRINTF("found device with libusb\n");
- xpcu.interface = -1;
- xpcu.alternate = -1;
- xpcu.dev = dev;
- xpcu.card_type = e->dwCardType;
- pthread_mutex_init(&xpcu.interrupt, NULL);
+ xpcu = malloc(sizeof(struct xpcu_s));
+ if (!xpcu)
+ return -ENOMEM;
+
+ bzero(xpcu, sizeof(struct xpcu_s));
+ xpcu->interface = -1;
+ xpcu->alternate = -1;
+ xpcu->dev = dev;
+ xpcu->card_type = e->dwCardType;
+ pthread_mutex_init(&xpcu->interrupt, NULL);
e->handle = (unsigned long)&xpcu;
}
}
}
}
- if (!xpcu.dev) {
- e->handle = 0;
- return NULL;
- }
+ e->handle = (unsigned long)xpcu;
- return &xpcu;
+ return 0;
}
-int xpcu_found(struct xpcu_s *xpcu, struct event *e) {
- if (e->handle && e->handle == (unsigned long)xpcu && xpcu->dev) {
+int xpcu_found(struct event *e) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)e->handle;
+
+ if (xpcu && xpcu->dev) {
struct usb_interface *interface = xpcu->dev->config->interface;
e->dwCardType = xpcu->card_type;
return 0;
}
-int xpcu_close(struct xpcu_s *xpcu, struct event *e) {
- if (e->handle != (unsigned long)xpcu)
- return -ENODEV;
-
+int xpcu_close(struct event *e) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)e->handle;
+
if (!xpcu)
return -ENODEV;
usb_close(xpcu->handle);
}
- xpcu->handle = NULL;
- xpcu->interface = -1;
- xpcu->alternate = -1;
busses = NULL;
+ free(xpcu);
}
return 0;
}
-int xpcu_int_state(struct xpcu_s *xpcu, struct interrupt *it, int enable) {
- static pthread_mutex_t *interrupt = &dummy_interrupt;
+int xpcu_int_state(struct interrupt *it, int enable) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)it->hInterrupt;
+ pthread_mutex_t *interrupt = &dummy_interrupt;
- if (it->hInterrupt != (unsigned long)xpcu)
- return -ENODEV;
-
if (xpcu)
interrupt = &xpcu->interrupt;
return 0;
}
-int xpcu_int_wait(struct xpcu_s *xpcu, struct interrupt *it) {
+int xpcu_int_wait(struct interrupt *it) {
+ struct xpcu_s *xpcu = (struct xpcu_s*)it->hInterrupt;
+
if (it->hInterrupt != (unsigned long)xpcu)
return -ENODEV;
#define ENABLE_INTERRUPT 1
#define DISABLE_INTERRUPT 0
-struct xpcu_s {
- struct usb_device *dev;
- usb_dev_handle *handle;
- int interface;
- int alternate;
- unsigned long card_type;
- pthread_mutex_t interrupt;
-};
-
-int __attribute__ ((visibility ("hidden"))) xpcu_deviceinfo(struct xpcu_s *xpcu, struct usb_get_device_data *ugdd);
-int __attribute__ ((visibility ("hidden"))) xpcu_transfer(struct xpcu_s *xpcu, struct usb_transfer *ut);
-int __attribute__ ((visibility ("hidden"))) xpcu_set_interface(struct xpcu_s *xpcu, struct usb_set_interface *usi);
-struct xpcu_s __attribute__ ((visibility ("hidden"))) *xpcu_find(struct event *e);
-int __attribute__ ((visibility ("hidden"))) xpcu_found(struct xpcu_s *xpcu, struct event *e);
-int __attribute__ ((visibility ("hidden"))) xpcu_close(struct xpcu_s *xpcu, struct event *e);
-int __attribute__ ((visibility ("hidden"))) xpcu_int_state(struct xpcu_s *xpcu, struct interrupt *it, int enable);
-int __attribute__ ((visibility ("hidden"))) xpcu_int_wait(struct xpcu_s *xpcu, struct interrupt *it);
+int __attribute__ ((visibility ("hidden"))) xpcu_deviceinfo(struct usb_get_device_data *ugdd);
+int __attribute__ ((visibility ("hidden"))) xpcu_transfer(struct usb_transfer *ut);
+int __attribute__ ((visibility ("hidden"))) xpcu_set_interface(struct usb_set_interface *usi);
+int __attribute__ ((visibility ("hidden"))) xpcu_find(struct event *e);
+int __attribute__ ((visibility ("hidden"))) xpcu_found(struct event *e);
+int __attribute__ ((visibility ("hidden"))) xpcu_close(struct event *e);
+int __attribute__ ((visibility ("hidden"))) xpcu_int_state(struct interrupt *it, int enable);
+int __attribute__ ((visibility ("hidden"))) xpcu_int_wait(struct interrupt *it);