From: michael Date: Sun, 1 Apr 2007 15:47:52 +0000 (+0000) Subject: really support multiple parallel ports X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/usb-driver/commitdiff_plain/e6293f4578d239b5616a72b6658804b7420c473a really support multiple parallel ports --- diff --git a/usb-driver.c b/usb-driver.c index a7d14bf..fa2611e 100644 --- a/usb-driver.c +++ b/usb-driver.c @@ -46,9 +46,9 @@ static int (*ioctl_func) (int, int, void *) = NULL; static int windrvrfd = -1; static int parportfd = -1; -static int parportnum = 0; static unsigned long ppbase = 0; static unsigned long ecpbase = 0; +static struct pports *pplist = NULL; FILE *modulesfp = NULL; static int modules_read = 0; static struct usb_bus *busses = NULL; @@ -376,10 +376,36 @@ int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) { ret = (*ioctl_func) (fd, request, wdioctl); #else if (parportfd < 0) { - if (ppbase && ((unsigned long)cr->Card.Item[0].I.IO.dwAddr != ppbase)) - parportnum++; + int max = -1; + struct pports **port = &pplist; - snprintf(ppdev, sizeof(ppdev), "/dev/parport%d", parportnum); + while (*port) { + DPRINTF("Looking up parallel port in linked list, entry: %d\n", (*port)->num); + if (max < (*port)->num) + max = (*port)->num; + + if ((*port)->base == (unsigned long)cr->Card.Item[0].I.IO.dwAddr) { + break; + } + + port = &((*port)->next); + } + + if (!(*port)) { /* not found */ + (*port) = malloc(sizeof(struct pports)); + if (!(*port)) { + perror("malloc"); + exit(EXIT_FAILURE); + } + + (*port)->base = (unsigned long)cr->Card.Item[0].I.IO.dwAddr; + (*port)->num = max+1; + (*port)->next = NULL; + + DPRINTF("parallel port not in linked list, new entry: %d\n", (*port)->num); + } + + snprintf(ppdev, sizeof(ppdev), "/dev/parport%d", (*port)->num); DPRINTF("opening %s\n", ppdev); parportfd = open(ppdev, O_RDWR|O_EXCL); diff --git a/usb-driver.h b/usb-driver.h index 3487b7b..5bfd937 100644 --- a/usb-driver.h +++ b/usb-driver.h @@ -33,6 +33,12 @@ #define WDU_GET_MAX_PACKET_SIZE(x) ((unsigned short) (((x) & 0x7ff) * (1 + (((x) & 0x1800) >> 11)))) +struct pports { + unsigned long base; + int num; + struct pports *next; +}; + /* http://www.jungo.com/support/documentation/windriver/811/wdusb_man_mhtml/node78.html#SECTION001734000000000000000 */ struct header_struct {