add support for ise 8.1i
This commit is contained in:
parent
010cbaa6cd
commit
f152c04870
@ -252,6 +252,7 @@ int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
|
|||||||
DPRINTF("LICENSE\n");
|
DPRINTF("LICENSE\n");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case CARD_REGISTER_OLD:
|
||||||
case CARD_REGISTER:
|
case CARD_REGISTER:
|
||||||
/* TODO: Implement for LPT-support */
|
/* TODO: Implement for LPT-support */
|
||||||
#if 0
|
#if 0
|
||||||
@ -321,6 +322,7 @@ int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case INT_ENABLE_OLD:
|
||||||
case INT_ENABLE:
|
case INT_ENABLE:
|
||||||
DPRINTF("INT_ENABLE\n");
|
DPRINTF("INT_ENABLE\n");
|
||||||
{
|
{
|
||||||
@ -403,6 +405,7 @@ int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case USB_GET_DEVICE_DATA_OLD:
|
||||||
case USB_GET_DEVICE_DATA:
|
case USB_GET_DEVICE_DATA:
|
||||||
DPRINTF("USB_GET_DEVICE_DATA\n");
|
DPRINTF("USB_GET_DEVICE_DATA\n");
|
||||||
{
|
{
|
||||||
@ -424,6 +427,7 @@ int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EVENT_REGISTER_OLD:
|
||||||
case EVENT_REGISTER:
|
case EVENT_REGISTER:
|
||||||
DPRINTF("EVENT_REGISTER\n");
|
DPRINTF("EVENT_REGISTER\n");
|
||||||
{
|
{
|
||||||
@ -516,6 +520,7 @@ int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case TRANSFER_OLD:
|
||||||
case TRANSFER:
|
case TRANSFER:
|
||||||
DPRINTF("TRANSFER\n");
|
DPRINTF("TRANSFER\n");
|
||||||
#ifndef NO_WINDRVR
|
#ifndef NO_WINDRVR
|
||||||
|
10
usb-driver.h
10
usb-driver.h
@ -13,6 +13,11 @@
|
|||||||
#define INT_ENABLE 0x98e
|
#define INT_ENABLE 0x98e
|
||||||
#define EVENT_PULL 0x988
|
#define EVENT_PULL 0x988
|
||||||
#define USB_SET_INTERFACE 0x981
|
#define USB_SET_INTERFACE 0x981
|
||||||
|
#define CARD_REGISTER_OLD 0x97d
|
||||||
|
#define INT_ENABLE_OLD 0x91e
|
||||||
|
#define USB_GET_DEVICE_DATA_OLD 0x980
|
||||||
|
#define EVENT_REGISTER_OLD 0x986
|
||||||
|
#define TRANSFER_OLD 0x903
|
||||||
#else
|
#else
|
||||||
#define VERSION 0xc0000910
|
#define VERSION 0xc0000910
|
||||||
#define LICENSE 0xc0000952
|
#define LICENSE 0xc0000952
|
||||||
@ -28,6 +33,11 @@
|
|||||||
#define INT_ENABLE 0xc000098e
|
#define INT_ENABLE 0xc000098e
|
||||||
#define EVENT_PULL 0xc0000988
|
#define EVENT_PULL 0xc0000988
|
||||||
#define USB_SET_INTERFACE 0xc0000981
|
#define USB_SET_INTERFACE 0xc0000981
|
||||||
|
#define CARD_REGISTER_OLD 0xc000097d
|
||||||
|
#define INT_ENABLE_OLD 0xc000091e
|
||||||
|
#define USB_GET_DEVICE_DATA_OLD 0xc0000980
|
||||||
|
#define EVENT_REGISTER_OLD 0xc0000986
|
||||||
|
#define TRANSFER_OLD 0xc0000903
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MAGIC 0xa410b413UL
|
#define MAGIC 0xa410b413UL
|
||||||
|
Reference in New Issue
Block a user