
Working version on STM32F411. Test for CLI
Dependencies: FATFileSystem mbed-rtos mbed
Fork of USBHost by
Diff: USBHost/USBHost.cpp
- Revision:
- 37:f1e388e7b752
- Parent:
- 34:028508fd50fa
--- a/USBHost/USBHost.cpp Sun Apr 30 04:17:16 2017 +0000 +++ b/USBHost/USBHost.cpp Thu Jul 20 10:13:56 2017 +0100 @@ -46,7 +46,8 @@ * - when the usb_thread receives the event, it: * - call the callback attached to the endpoint where the td is attached */ -void USBHost::usb_process() { +void USBHost::usb_process() +{ bool controlListState; bool bulkListState; @@ -79,110 +80,130 @@ too_many_hub = false; buf[4] = 0; - do - { - Lock lock(this); + do { + Lock lock(this); + bool hub_unplugged = true; - for (i = 0; i < MAX_DEVICE_CONNECTED; i++) { - if (!deviceInUse[i]) { - USB_DBG_EVENT("new device connected: %p\r\n", &devices[i]); - devices[i].init(usb_msg->hub, usb_msg->port, usb_msg->lowSpeed); - deviceReset[i] = false; - deviceInited[i] = true; - break; - } - } + int idx = findDevice(usb_msg->hub, usb_msg->port, (USBHostHub *)(usb_msg->hub_parent)); + /* check that hub is connected to root port */ + if (usb_msg->hub_parent) { + /* a hub device must be present */ + for (k = 0; k < MAX_HUB_NB; k++) { + if ((&hubs[k] == usb_msg->hub_parent) && (hub_in_use[k])) { + hub_unplugged=false; + } + } + } else { + hub_unplugged = false; + } - if (i == MAX_DEVICE_CONNECTED) { - USB_ERR("Too many device connected!!\r\n"); - continue; - } + if (((idx!=-1) && deviceInUse[idx] ) || ((idx == -1) && hub_unplugged)) { + break; + } - if (!controlEndpointAllocated) { - control = newEndpoint(CONTROL_ENDPOINT, OUT, 0x08, 0x00); - addEndpoint(NULL, 0, (USBEndpoint*)control); - controlEndpointAllocated = true; - } + for (i =0 ; i < MAX_DEVICE_CONNECTED; i++) { + if (!deviceInUse[i]) { + USB_DBG_EVENT("new device connected: %p\r\n", &devices[i]); + devices[i].init(usb_msg->hub, usb_msg->port, usb_msg->lowSpeed); + deviceReset[i] = false; + deviceInited[i] = true; + break; + } + } - #if MAX_HUB_NB - if (usb_msg->hub_parent) - devices[i].setHubParent((USBHostHub *)(usb_msg->hub_parent)); - #endif + if (i == MAX_DEVICE_CONNECTED) { + USB_ERR("Too many device connected!!\r\n"); + continue; + } - for (j = 0; j < timeout_set_addr; j++) { - - resetDevice(&devices[i]); - - // set size of control endpoint - devices[i].setSizeControlEndpoint(8); + if (!controlEndpointAllocated) { + control = newEndpoint(CONTROL_ENDPOINT, OUT, 0x08, 0x00); + addEndpoint(NULL, 0, (USBEndpoint*)control); + controlEndpointAllocated = true; + } - devices[i].activeAddress(false); +#if MAX_HUB_NB + if (usb_msg->hub_parent) { + devices[i].setHubParent((USBHostHub *)(usb_msg->hub_parent)); + } +#endif - // get first 8 bit of device descriptor - // and check if we deal with a hub - USB_DBG("usb_thread read device descriptor on dev: %p\r\n", &devices[i]); - res = getDeviceDescriptor(&devices[i], buf, 8); + for (j = 0; j < timeout_set_addr; j++) { + + resetDevice(&devices[i]); - if (res != USB_TYPE_OK) { - USB_ERR("usb_thread could not read dev descr"); - continue; - } + // set size of control endpoint + devices[i].setSizeControlEndpoint(8); + + devices[i].activeAddress(false); - // set size of control endpoint - devices[i].setSizeControlEndpoint(buf[7]); + // get first 8 bit of device descriptor + // and check if we deal with a hub + USB_DBG("usb_thread read device descriptor on dev: %p\r\n", &devices[i]); + res = getDeviceDescriptor(&devices[i], buf, 8); - // second step: set an address to the device - res = setAddress(&devices[i], devices[i].getAddress()); + if (res != USB_TYPE_OK) { + USB_ERR("usb_thread could not read dev descr"); + continue; + } - if (res != USB_TYPE_OK) { - USB_ERR("SET ADDR FAILED"); - continue; - } - devices[i].activeAddress(true); - USB_DBG("Address of %p: %d", &devices[i], devices[i].getAddress()); + // set size of control endpoint + devices[i].setSizeControlEndpoint(buf[7]); + + // second step: set an address to the device + res = setAddress(&devices[i], devices[i].getAddress()); - // try to read again the device descriptor to check if the device - // answers to its new address - res = getDeviceDescriptor(&devices[i], buf, 8); + if (res != USB_TYPE_OK) { + USB_ERR("SET ADDR FAILED"); + continue; + } + devices[i].activeAddress(true); + USB_DBG("Address of %p: %d", &devices[i], devices[i].getAddress()); - if (res == USB_TYPE_OK) { - break; - } + // try to read again the device descriptor to check if the device + // answers to its new address + res = getDeviceDescriptor(&devices[i], buf, 8); - Thread::wait(100); - } + if (res == USB_TYPE_OK) { + break; + } - USB_INFO("New device connected: %p [hub: %d - port: %d]", &devices[i], usb_msg->hub, usb_msg->port); + Thread::wait(100); + } + + USB_INFO("New device connected: %p [hub: %d - port: %d]", &devices[i], usb_msg->hub, usb_msg->port); - #if MAX_HUB_NB - if (buf[4] == HUB_CLASS) { - for (k = 0; k < MAX_HUB_NB; k++) { - if (hub_in_use[k] == false) { - for (uint8_t j = 0; j < MAX_TRY_ENUMERATE_HUB; j++) { - if (hubs[k].connect(&devices[i])) { - devices[i].hub = &hubs[k]; - hub_in_use[k] = true; - break; - } - } - if (hub_in_use[k] == true) - break; - } - } +#if MAX_HUB_NB + if (buf[4] == HUB_CLASS) { + for (k = 0; k < MAX_HUB_NB; k++) { + if (hub_in_use[k] == false) { + for (uint8_t j = 0; j < MAX_TRY_ENUMERATE_HUB; j++) { + if (hubs[k].connect(&devices[i])) { + devices[i].hub = &hubs[k]; + hub_in_use[k] = true; + break; + } + } + if (hub_in_use[k] == true) { + break; + } + } + } - if (k == MAX_HUB_NB) { - USB_ERR("Too many hubs connected!!\r\n"); - too_many_hub = true; - } - } + if (k == MAX_HUB_NB) { + USB_ERR("Too many hubs connected!!\r\n"); + too_many_hub = true; + } + } - if (usb_msg->hub_parent) - ((USBHostHub *)(usb_msg->hub_parent))->deviceConnected(&devices[i]); - #endif + if (usb_msg->hub_parent) { + ((USBHostHub *)(usb_msg->hub_parent))->deviceConnected(&devices[i]); + } +#endif - if ((i < MAX_DEVICE_CONNECTED) && !too_many_hub) { - deviceInUse[i] = true; - } + if ((i < MAX_DEVICE_CONNECTED) && !too_many_hub) { + deviceInUse[i] = true; + } } while(0); @@ -191,22 +212,28 @@ // a device has been disconnected case DEVICE_DISCONNECTED_EVENT: - do - { - Lock lock(this); + do { + Lock lock(this); - controlListState = disableList(CONTROL_ENDPOINT); - bulkListState = disableList(BULK_ENDPOINT); - interruptListState = disableList(INTERRUPT_ENDPOINT); + controlListState = disableList(CONTROL_ENDPOINT); + bulkListState = disableList(BULK_ENDPOINT); + interruptListState = disableList(INTERRUPT_ENDPOINT); - idx = findDevice(usb_msg->hub, usb_msg->port, (USBHostHub *)(usb_msg->hub_parent)); - if (idx != -1) { - freeDevice((USBDeviceConnected*)&devices[idx]); - } + idx = findDevice(usb_msg->hub, usb_msg->port, (USBHostHub *)(usb_msg->hub_parent)); + if (idx != -1) { + freeDevice((USBDeviceConnected*)&devices[idx]); + deviceInited[idx]=false; + } - if (controlListState) enableList(CONTROL_ENDPOINT); - if (bulkListState) enableList(BULK_ENDPOINT); - if (interruptListState) enableList(INTERRUPT_ENDPOINT); + if (controlListState) { + enableList(CONTROL_ENDPOINT); + } + if (bulkListState) { + enableList(BULK_ENDPOINT); + } + if (interruptListState) { + enableList(INTERRUPT_ENDPOINT); + } } while(0); @@ -224,8 +251,9 @@ if (ep->getDir() == IN) { buf_transfer = ep->getBufStart(); printf("READ SUCCESS [%d bytes transferred - td: 0x%08X] on ep: [%p - addr: %02X]: ", ep->getLengthTransferred(), usb_msg->td_addr, ep, ep->getAddress()); - for (int i = 0; i < ep->getLengthTransferred(); i++) + for (int i = 0; i < ep->getLengthTransferred(); i++) { printf("%02X ", buf_transfer[i]); + } printf("\r\n\r\n"); } #endif @@ -236,6 +264,12 @@ if (deviceInUse[idx]) { USB_WARN("td %p processed but not in idle state: %s [ep: %p - dev: %p - %s]", usb_msg->td_addr, ep->getStateString(), ep, ep->dev, ep->dev->getName(ep->getIntfNb())); ep->setState(USB_TYPE_IDLE); + /* as error, on interrupt endpoint can be + * reported, call the call back registered , + * if device still in use, this call back + * shall ask again an interrupt request. + */ + ep->call(); } } } @@ -247,19 +281,16 @@ } } -/* static */void USBHost::usb_process_static(void const * arg) { - ((USBHost *)arg)->usb_process(); -} - -USBHost::USBHost() : usbThread(USBHost::usb_process_static, (void *)this, osPriorityNormal, USB_THREAD_STACK) +USBHost::USBHost() : usbThread(osPriorityNormal, USB_THREAD_STACK) { +#ifndef USBHOST_OTHER headControlEndpoint = NULL; headBulkEndpoint = NULL; headInterruptEndpoint = NULL; tailControlEndpoint = NULL; tailBulkEndpoint = NULL; tailInterruptEndpoint = NULL; - +#endif lenReportDescr = 0; controlEndpointAllocated = false; @@ -269,8 +300,9 @@ devices[i].setAddress(i + 1); deviceReset[i] = false; deviceInited[i] = false; - for (uint8_t j = 0; j < MAX_INTF; j++) + for (uint8_t j = 0; j < MAX_INTF; j++) { deviceAttachedDriver[i][j] = false; + } } #if MAX_HUB_NB @@ -279,24 +311,27 @@ hub_in_use[i] = false; } #endif + + usbThread.start(this, &USBHost::usb_process); } USBHost::Lock::Lock(USBHost* pHost) : m_pHost(pHost) { - m_pHost->usb_mutex.lock(); + m_pHost->usb_mutex.lock(); } USBHost::Lock::~Lock() { - m_pHost->usb_mutex.unlock(); + m_pHost->usb_mutex.unlock(); } void USBHost::transferCompleted(volatile uint32_t addr) { uint8_t state; - if(addr == 0) + if(addr == 0) { return; + } volatile HCTD* tdList = NULL; @@ -314,13 +349,25 @@ if (td->ep != NULL) { USBEndpoint * ep = (USBEndpoint *)(td->ep); +#ifdef USBHOST_OTHER + state = ((HCTD *)td)->state; + if (state == USB_TYPE_IDLE) { + ep->setLengthTransferred((uint32_t)td->currBufPtr - (uint32_t)ep->getBufStart()); + } + +#else if (((HCTD *)td)->control >> 28) { state = ((HCTD *)td)->control >> 28; } else { - if (td->currBufPtr) + if (td->currBufPtr) { ep->setLengthTransferred((uint32_t)td->currBufPtr - (uint32_t)ep->getBufStart()); + } state = 16 /*USB_TYPE_IDLE*/; } +#endif + if (state == USB_TYPE_IDLE) { + ep->setLengthTransferred((uint32_t)td->currBufPtr - (uint32_t)ep->getBufStart()); + } ep->unqueueTransfer(td); @@ -332,7 +379,7 @@ usb_msg->td_state = state; mail_usb_event.put(usb_msg); } - ep->setState(state); + ep->setState((USB_TYPE)state); ep->ep_queue.put((uint8_t*)1); } } @@ -357,8 +404,9 @@ // be sure that the new device connected is not already connected... int idx = findDevice(hub, port, hub_parent); if (idx != -1) { - if (deviceInited[idx]) + if (deviceInited[idx]) { return; + } } message_t * usb_msg = mail_usb_event.alloc(); @@ -379,8 +427,9 @@ // be sure that the device disconnected is connected... int idx = findDevice(hub, port, hub_parent); if (idx != -1) { - if (!deviceInUse[idx]) + if (!deviceInUse[idx]) { return; + } } else { return; } @@ -414,8 +463,9 @@ } // notify hub parent that this device has been disconnected - if (dev->getHubParent()) + if (dev->getHubParent()) { dev->getHubParent()->deviceDisconnected(dev); + } #endif @@ -430,8 +480,10 @@ USB_DBG("FREE INTF %d on dev: %p, %p, nb_endpot: %d, %s", j, (void *)dev->getInterface(j), dev, dev->getInterface(j)->nb_endpoint, dev->getName(j)); for (int i = 0; i < dev->getInterface(j)->nb_endpoint; i++) { if ((ep = dev->getEndpoint(j, i)) != NULL) { +#ifndef USBHOST_OTHER ed = (HCED *)ep->getHCED(); ed->control |= (1 << 14); //sKip bit +#endif unqueueEndpoint(ep); freeTD((volatile uint8_t*)ep->getTDList()[0]); @@ -452,6 +504,9 @@ void USBHost::unqueueEndpoint(USBEndpoint * ep) { +#ifdef USBHOST_OTHER + ep->setState(USB_TYPE_FREE); +#else USBEndpoint * prec = NULL; USBEndpoint * current = NULL; @@ -501,6 +556,7 @@ current = current->nextEndpoint(); } } +#endif } @@ -565,8 +621,10 @@ return false; } +#ifndef USBHOST_OTHER HCED * prevEd; +#endif // set device address in the USBEndpoint descriptor if (dev == NULL) { ep->setDeviceAddress(0); @@ -580,6 +638,7 @@ ep->setIntfNb(intf_nb); +#ifndef USBHOST_OTHER // queue the new USBEndpoint on the ED list switch (ep->getType()) { @@ -627,6 +686,7 @@ return false; } +#endif ep->dev = dev; dev->addEndpoint(intf_nb, ep); @@ -649,8 +709,9 @@ for (int i = 0; i < MAX_DEVICE_CONNECTED; i++) { if (devices[i].getHub() == hub && devices[i].getPort() == port) { if (hub_parent != NULL) { - if (hub_parent == devices[i].getHubParent()) + if (hub_parent == devices[i].getHubParent()) { return i; + } } else { return i; } @@ -661,7 +722,7 @@ void USBHost::printList(ENDPOINT_TYPE type) { -#if DEBUG_EP_STATE +#if defined(DEBUG_EP_STATE) && !defined(USBHOST_OTHER) volatile HCED * hced; switch(type) { case CONTROL_ENDPOINT: @@ -677,14 +738,14 @@ volatile HCTD * hctd = NULL; const char * type_str = (type == BULK_ENDPOINT) ? "BULK" : ((type == INTERRUPT_ENDPOINT) ? "INTERRUPT" : - ((type == CONTROL_ENDPOINT) ? "CONTROL" : "ISOCHRONOUS")); + ((type == CONTROL_ENDPOINT) ? "CONTROL" : "ISOCHRONOUS")); printf("State of %s:\r\n", type_str); while (hced != NULL) { uint8_t dir = ((hced->control & (3 << 11)) >> 11); printf("hced: %p [ADDR: %d, DIR: %s, EP_NB: 0x%X]\r\n", hced, - hced->control & 0x7f, - (dir == 1) ? "OUT" : ((dir == 0) ? "FROM_TD":"IN"), - (hced->control & (0xf << 7)) >> 7); + hced->control & 0x7f, + (dir == 1) ? "OUT" : ((dir == 0) ? "FROM_TD":"IN"), + (hced->control & (0xf << 7)) >> 7); hctd = (HCTD *)((uint32_t)(hced->headTD) & ~(0xf)); while (hctd != hced->tailTD) { printf("\thctd: %p [DIR: %s]\r\n", hctd, ((hctd->control & (3 << 19)) >> 19) == 1 ? "OUT" : "IN"); @@ -701,6 +762,7 @@ // add a transfer on the TD linked list USB_TYPE USBHost::addTransfer(USBEndpoint * ed, uint8_t * buf, uint32_t len) { + USB_TYPE ret=USB_TYPE_PROCESSING; td_mutex.lock(); // allocate a TD which will be freed in TDcompletion @@ -709,6 +771,7 @@ return USB_TYPE_ERROR; } +#ifndef USBHOST_OTHER uint32_t token = (ed->isSetup() ? TD_SETUP : ( (ed->getDir() == IN) ? TD_IN : TD_OUT )); uint32_t td_toggle; @@ -733,10 +796,16 @@ ed->queueTransfer(); printList(type); enableList(type); +#else + /* call method specific for endpoint */ + td->currBufPtr = buf; + td->size = len; + ret = ed->queueTransfer(); +#endif td_mutex.unlock(); - return USB_TYPE_PROCESSING; + return ret; } @@ -744,12 +813,13 @@ USB_TYPE USBHost::getDeviceDescriptor(USBDeviceConnected * dev, uint8_t * buf, uint16_t max_len_buf, uint16_t * len_dev_descr) { USB_TYPE t = controlRead( dev, - USB_DEVICE_TO_HOST | USB_RECIPIENT_DEVICE, - GET_DESCRIPTOR, - (DEVICE_DESCRIPTOR << 8) | (0), - 0, buf, MIN(DEVICE_DESCRIPTOR_LENGTH, max_len_buf)); - if (len_dev_descr) + USB_DEVICE_TO_HOST | USB_RECIPIENT_DEVICE, + GET_DESCRIPTOR, + (DEVICE_DESCRIPTOR << 8) | (0), + 0, buf, MIN(DEVICE_DESCRIPTOR_LENGTH, max_len_buf)); + if (len_dev_descr) { *len_dev_descr = MIN(DEVICE_DESCRIPTOR_LENGTH, max_len_buf); + } return t; } @@ -773,8 +843,9 @@ total_conf_descr_length = buf[2] | (buf[3] << 8); total_conf_descr_length = MIN(max_len_buf, total_conf_descr_length); - if (len_conf_descr) + if (len_conf_descr) { *len_conf_descr = total_conf_descr_length; + } USB_DBG("TOTAL_LENGTH: %d \t NUM_INTERF: %d", total_conf_descr_length, buf[4]); @@ -786,7 +857,8 @@ } -USB_TYPE USBHost::setAddress(USBDeviceConnected * dev, uint8_t address) { +USB_TYPE USBHost::setAddress(USBDeviceConnected * dev, uint8_t address) +{ return controlWrite( dev, USB_HOST_TO_DEVICE | USB_RECIPIENT_DEVICE, SET_ADDRESS, @@ -804,14 +876,17 @@ 0, NULL, 0); } -uint8_t USBHost::numberDriverAttached(USBDeviceConnected * dev) { +uint8_t USBHost::numberDriverAttached(USBDeviceConnected * dev) +{ int index = findDevice(dev); uint8_t cnt = 0; - if (index == -1) + if (index == -1) { return 0; + } for (uint8_t i = 0; i < MAX_INTF; i++) { - if (deviceAttachedDriver[index][i]) + if (deviceAttachedDriver[index][i]) { cnt++; + } } return cnt; } @@ -822,76 +897,76 @@ uint16_t total_conf_descr_length = 0; USB_TYPE res; - do - { - Lock lock(this); + do { + Lock lock(this); - // don't enumerate a device which all interfaces are registered to a specific driver - int index = findDevice(dev); + // don't enumerate a device which all interfaces are registered to a specific driver + int index = findDevice(dev); - if (index == -1) { - return USB_TYPE_ERROR; - } + if (index == -1) { + return USB_TYPE_ERROR; + } - uint8_t nb_intf_attached = numberDriverAttached(dev); - USB_DBG("dev: %p nb_intf: %d", dev, dev->getNbIntf()); - USB_DBG("dev: %p nb_intf_attached: %d", dev, nb_intf_attached); - if ((nb_intf_attached != 0) && (dev->getNbIntf() == nb_intf_attached)) { - USB_DBG("Don't enumerate dev: %p because all intf are registered with a driver", dev); - return USB_TYPE_OK; - } + uint8_t nb_intf_attached = numberDriverAttached(dev); + USB_DBG("dev: %p nb_intf: %d", dev, dev->getNbIntf()); + USB_DBG("dev: %p nb_intf_attached: %d", dev, nb_intf_attached); + if ((nb_intf_attached != 0) && (dev->getNbIntf() == nb_intf_attached)) { + USB_DBG("Don't enumerate dev: %p because all intf are registered with a driver", dev); + return USB_TYPE_OK; + } + + USB_DBG("Enumerate dev: %p", dev); - USB_DBG("Enumerate dev: %p", dev); - - // third step: get the whole device descriptor to see vid, pid - res = getDeviceDescriptor(dev, data, DEVICE_DESCRIPTOR_LENGTH); + // third step: get the whole device descriptor to see vid, pid + res = getDeviceDescriptor(dev, data, DEVICE_DESCRIPTOR_LENGTH); - if (res != USB_TYPE_OK) { - USB_DBG("GET DEV DESCR FAILED"); - return res; - } + if (res != USB_TYPE_OK) { + USB_DBG("GET DEV DESCR FAILED"); + return res; + } + + dev->setClass(data[4]); + dev->setSubClass(data[5]); + dev->setProtocol(data[6]); + dev->setVid(data[8] | (data[9] << 8)); + dev->setPid(data[10] | (data[11] << 8)); + USB_DBG("CLASS: %02X \t VID: %04X \t PID: %04X", data[4], data[8] | (data[9] << 8), data[10] | (data[11] << 8)); - dev->setClass(data[4]); - dev->setSubClass(data[5]); - dev->setProtocol(data[6]); - dev->setVid(data[8] | (data[9] << 8)); - dev->setPid(data[10] | (data[11] << 8)); - USB_DBG("CLASS: %02X \t VID: %04X \t PID: %04X", data[4], data[8] | (data[9] << 8), data[10] | (data[11] << 8)); + pEnumerator->setVidPid( data[8] | (data[9] << 8), data[10] | (data[11] << 8) ); - pEnumerator->setVidPid( data[8] | (data[9] << 8), data[10] | (data[11] << 8) ); + res = getConfigurationDescriptor(dev, data, sizeof(data), &total_conf_descr_length); + if (res != USB_TYPE_OK) { + return res; + } - res = getConfigurationDescriptor(dev, data, sizeof(data), &total_conf_descr_length); - if (res != USB_TYPE_OK) { - return res; - } +#if (DEBUG > 3) + USB_DBG("CONFIGURATION DESCRIPTOR:\r\n"); + for (int i = 0; i < total_conf_descr_length; i++) { + printf("%02X ", data[i]); + } + printf("\r\n\r\n"); +#endif - #if (DEBUG > 3) - USB_DBG("CONFIGURATION DESCRIPTOR:\r\n"); - for (int i = 0; i < total_conf_descr_length; i++) - printf("%02X ", data[i]); - printf("\r\n\r\n"); - #endif + // Parse the configuration descriptor + parseConfDescr(dev, data, total_conf_descr_length, pEnumerator); - // Parse the configuration descriptor - parseConfDescr(dev, data, total_conf_descr_length, pEnumerator); + // only set configuration if not enumerated before + if (!dev->isEnumerated()) { - // only set configuration if not enumerated before - if (!dev->isEnumerated()) { - - USB_DBG("Set configuration 1 on dev: %p", dev); - // sixth step: set configuration (only 1 supported) - res = setConfiguration(dev, 1); + USB_DBG("Set configuration 1 on dev: %p", dev); + // sixth step: set configuration (only 1 supported) + res = setConfiguration(dev, 1); - if (res != USB_TYPE_OK) { - USB_DBG("SET CONF FAILED"); - return res; - } - } + if (res != USB_TYPE_OK) { + USB_DBG("SET CONF FAILED"); + return res; + } + } - dev->setEnumerated(); + dev->setEnumerated(); - // Now the device is enumerated! - USB_DBG("dev %p is enumerated\r\n", dev); + // Now the device is enumerated! + USB_DBG("dev %p is enumerated\r\n", dev); } while(0); @@ -990,7 +1065,8 @@ return generalTransfer(dev, ep, buf, len, blocking, INTERRUPT_ENDPOINT, false); } -USB_TYPE USBHost::generalTransfer(USBDeviceConnected * dev, USBEndpoint * ep, uint8_t * buf, uint32_t len, bool blocking, ENDPOINT_TYPE type, bool write) { +USB_TYPE USBHost::generalTransfer(USBDeviceConnected * dev, USBEndpoint * ep, uint8_t * buf, uint32_t len, bool blocking, ENDPOINT_TYPE type, bool write) +{ #if DEBUG_TRANSFER const char * type_str = (type == BULK_ENDPOINT) ? "BULK" : ((type == INTERRUPT_ENDPOINT) ? "INTERRUPT" : "ISOCHRONOUS"); @@ -1030,16 +1106,28 @@ #if DEBUG_TRANSFER if (write) { USB_DBG_TRANSFER("%s WRITE buffer", type_str); - for (int i = 0; i < ep->getLengthTransferred(); i++) + for (int i = 0; i < ep->getLengthTransferred(); i++) { printf("%02X ", buf[i]); + } printf("\r\n\r\n"); } #endif - addTransfer(ep, buf, len); + res = addTransfer(ep, buf, len); - if (blocking) { - + if ((blocking)&& (res == USB_TYPE_PROCESSING)) { +#ifdef USBHOST_OTHER + osEvent event = ep->ep_queue.get(TD_TIMEOUT); + if (event.status == osEventTimeout) { + /* control endpoint is confusing for merge on b */ + disableList(CONTROL_ENDPOINT); + ep->setState(USB_TYPE_ERROR); + ep->ep_queue.get(0); + ep->unqueueTransfer(ep->getProcessedTD()); + enableList(CONTROL_ENDPOINT); + } +#else ep->ep_queue.get(); +#endif res = ep->getState(); USB_DBG_TRANSFER("%s TRANSFER res: %s on ep: %p\r\n", type_str, ep->getStateString(), ep); @@ -1051,16 +1139,18 @@ return USB_TYPE_OK; } - return USB_TYPE_PROCESSING; + return res; } -USB_TYPE USBHost::controlRead(USBDeviceConnected * dev, uint8_t requestType, uint8_t request, uint32_t value, uint32_t index, uint8_t * buf, uint32_t len) { +USB_TYPE USBHost::controlRead(USBDeviceConnected * dev, uint8_t requestType, uint8_t request, uint32_t value, uint32_t index, uint8_t * buf, uint32_t len) +{ return controlTransfer(dev, requestType, request, value, index, buf, len, false); } -USB_TYPE USBHost::controlWrite(USBDeviceConnected * dev, uint8_t requestType, uint8_t request, uint32_t value, uint32_t index, uint8_t * buf, uint32_t len) { +USB_TYPE USBHost::controlWrite(USBDeviceConnected * dev, uint8_t requestType, uint8_t request, uint32_t value, uint32_t index, uint8_t * buf, uint32_t len) +{ return controlTransfer(dev, requestType, request, value, index, buf, len, true); } @@ -1086,15 +1176,30 @@ #if DEBUG_TRANSFER USB_DBG_TRANSFER("SETUP PACKET: "); - for (int i = 0; i < 8; i++) + for (int i = 0; i < 8; i++) { printf("%01X ", setupPacket[i]); + } printf("\r\n"); #endif control->setNextToken(TD_SETUP); - addTransfer(control, (uint8_t*)setupPacket, 8); + res = addTransfer(control, (uint8_t*)setupPacket, 8); - control->ep_queue.get(); + if (res == USB_TYPE_PROCESSING) +#ifdef USBHOST_OTHER + { + osEvent event = control->ep_queue.get(TD_TIMEOUT_CTRL); + if (event.status == osEventTimeout) { + disableList(CONTROL_ENDPOINT); + control->setState(USB_TYPE_ERROR); + control->ep_queue.get(0); + control->unqueueTransfer(control->getProcessedTD()); + enableList(CONTROL_ENDPOINT); + } + } +#else + control->ep_queue.get(); +#endif res = control->getState(); USB_DBG_TRANSFER("CONTROL setup stage %s", control->getStateString()); @@ -1106,22 +1211,38 @@ if (length_transfer) { token = (write) ? TD_OUT : TD_IN; control->setNextToken(token); - addTransfer(control, (uint8_t *)buf, length_transfer); + res = addTransfer(control, (uint8_t *)buf, length_transfer); - control->ep_queue.get(); + if (res == USB_TYPE_PROCESSING) +#ifdef USBHOST_OTHER + { + osEvent event = control->ep_queue.get(TD_TIMEOUT_CTRL); + if (event.status == osEventTimeout) { + disableList(CONTROL_ENDPOINT); + control->setState(USB_TYPE_ERROR); + control->ep_queue.get(0); + control->unqueueTransfer(control->getProcessedTD()); + enableList(CONTROL_ENDPOINT); + } + } +#else + control->ep_queue.get(); +#endif res = control->getState(); #if DEBUG_TRANSFER USB_DBG_TRANSFER("CONTROL %s stage %s", (write) ? "WRITE" : "READ", control->getStateString()); if (write) { USB_DBG_TRANSFER("CONTROL WRITE buffer"); - for (int i = 0; i < control->getLengthTransferred(); i++) + for (int i = 0; i < control->getLengthTransferred(); i++) { printf("%02X ", buf[i]); + } printf("\r\n\r\n"); } else { USB_DBG_TRANSFER("CONTROL READ SUCCESS [%d bytes transferred]", control->getLengthTransferred()); - for (int i = 0; i < control->getLengthTransferred(); i++) + for (int i = 0; i < control->getLengthTransferred(); i++) { printf("%02X ", buf[i]); + } printf("\r\n\r\n"); } #endif @@ -1133,15 +1254,29 @@ token = (write) ? TD_IN : TD_OUT; control->setNextToken(token); - addTransfer(control, NULL, 0); - - control->ep_queue.get(); + res = addTransfer(control, NULL, 0); + if (res == USB_TYPE_PROCESSING) +#ifdef USBHOST_OTHER + { + osEvent event = control->ep_queue.get(TD_TIMEOUT_CTRL); + if (event.status == osEventTimeout) { + disableList(CONTROL_ENDPOINT); + control->setState(USB_TYPE_ERROR); + control->ep_queue.get(0); + control->unqueueTransfer(control->getProcessedTD()); + enableList(CONTROL_ENDPOINT); + } + } +#else + control->ep_queue.get(); +#endif res = control->getState(); USB_DBG_TRANSFER("CONTROL ack stage %s", control->getStateString()); - if (res != USB_TYPE_IDLE) + if (res != USB_TYPE_IDLE) { return res; + } return USB_TYPE_OK; }