Skip to content

Commit

Permalink
usb_init() allow it to ignore a device and show no message
Browse files Browse the repository at this point in the history
  • Loading branch information
kanoi committed Apr 28, 2013
1 parent 1806602 commit 2c97b8b
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 24 deletions.
7 changes: 1 addition & 6 deletions driver-bflsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,13 +807,8 @@ static bool bflsc_detect_one(struct libusb_device *dev, struct usb_find_devices
// TODO: fix ... everywhere ...
bflsc->device_file = (FILE *)sc_info;

if (!usb_init(bflsc, dev, found)) {
applog(LOG_ERR, "%s detect (%d:%d) failed to initialise (incorrect device?)",
bflsc->drv->dname,
(int)(bflsc->usbinfo.bus_number),
(int)(bflsc->usbinfo.device_address));
if (!usb_init(bflsc, dev, found))
goto shin;
}

sprintf(devpath, "%d:%d",
(int)(bflsc->usbinfo.bus_number),
Expand Down
8 changes: 1 addition & 7 deletions driver-bitforce.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,19 +179,13 @@ static bool bitforce_detect_one(struct libusb_device *dev, struct usb_find_devic
bitforce->deven = DEV_ENABLED;
bitforce->threads = 1;

if (!usb_init(bitforce, dev, found)) {
applog(LOG_ERR, "%s detect (%d:%d) failed to initialise (incorrect device?)",
bitforce->drv->dname,
(int)(bitforce->usbinfo.bus_number),
(int)(bitforce->usbinfo.device_address));
if (!usb_init(bitforce, dev, found))
goto shin;
}

sprintf(devpath, "%d:%d",
(int)(bitforce->usbinfo.bus_number),
(int)(bitforce->usbinfo.device_address));


// Allow 2 complete attempts if the 1st time returns an unrecognised reply
ident_first = true;
retry:
Expand Down
7 changes: 1 addition & 6 deletions driver-modminer.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,8 @@ static bool modminer_detect_one(struct libusb_device *dev, struct usb_find_devic
mutex_init(modminer->modminer_mutex);
modminer->fpgaid = (char)0;

if (!usb_init(modminer, dev, found)) {
applog(LOG_ERR, "%s detect (%d:%d) failed to initialise (incorrect device?)",
modminer->drv->dname,
(int)(modminer->usbinfo.bus_number),
(int)(modminer->usbinfo.device_address));
if (!usb_init(modminer, dev, found))
goto shin;
}

sprintf(devpath, "%d:%d",
(int)(modminer->usbinfo.bus_number),
Expand Down
34 changes: 29 additions & 5 deletions usbutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,11 @@ static void release_cgpu(struct cgpu_info *cgpu)
cgminer_usb_unlock_bd(cgpu->drv, cgpu->usbinfo.bus_number, cgpu->usbinfo.device_address);
}

bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find_devices *found)
#define USB_INIT_FAIL 0
#define USB_INIT_OK 1
#define USB_INIT_IGNORE 2

static int _usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find_devices *found)
{
struct cg_usb_device *cgusb = NULL;
struct libusb_config_descriptor *config = NULL;
Expand All @@ -1226,6 +1230,7 @@ bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find
unsigned char strbuf[STRBUFLEN+1];
char devstr[STRBUFLEN+1];
int err, i, j, k;
int bad = USB_INIT_FAIL;

cgpu->usbinfo.bus_number = libusb_get_bus_number(dev);
cgpu->usbinfo.device_address = libusb_get_device_address(dev);
Expand Down Expand Up @@ -1301,8 +1306,10 @@ bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find
err, devstr);
goto cldame;
}
if (strcmp((char *)man, found->iManufacturer))
if (strcmp((char *)man, found->iManufacturer)) {
bad = USB_INIT_IGNORE;
goto cldame;
}
}

if (found->iProduct) {
Expand All @@ -1317,8 +1324,10 @@ bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find
err, devstr);
goto cldame;
}
if (strcmp((char *)prod, found->iProduct))
if (strcmp((char *)prod, found->iProduct)) {
bad = USB_INIT_IGNORE;
goto cldame;
}
}

err = libusb_set_configuration(cgusb->handle, found->config);
Expand Down Expand Up @@ -1435,7 +1444,7 @@ bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find
cgpu->drv->name = (char *)(found->name);
}

return true;
return USB_INIT_OK;

cldame:

Expand All @@ -1448,7 +1457,22 @@ bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find

cgusb = free_cgusb(cgusb);

return false;
return bad;
}

bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find_devices *found)
{
int ret;

ret = _usb_init(cgpu, dev, found);

if (ret == USB_INIT_FAIL)
applog(LOG_ERR, "%s detect (%d:%d) failed to initialise (incorrect device?)",
cgpu->drv->dname,
(int)(cgpu->usbinfo.bus_number),
(int)(cgpu->usbinfo.device_address));

return (ret == USB_INIT_OK);
}

static bool usb_check_device(struct device_drv *drv, struct libusb_device *dev, struct usb_find_devices *look)
Expand Down

0 comments on commit 2c97b8b

Please sign in to comment.