diff options
Diffstat (limited to 'tinyusb/host')
| -rw-r--r-- | tinyusb/host/ehci/ehci.c | 37 | ||||
| -rw-r--r-- | tinyusb/host/usbh.c | 4 |
2 files changed, 24 insertions, 17 deletions
diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c index cc2c5738e..df3faebcb 100644 --- a/tinyusb/host/ehci/ehci.c +++ b/tinyusb/host/ehci/ehci.c @@ -471,8 +471,13 @@ void async_list_process_isr(ehci_qhd_t * const async_head) // free all TDs from the head td to the first active TD while(p_qhd->p_qtd_list_head != NULL && !p_qhd->p_qtd_list_head->active) { - // TODO check halted TD - if (p_qhd->p_qtd_list_head->int_on_complete) // end of request + // TD need to be freed and removed from qhd, before invoking callback + bool is_ioc = (p_qhd->p_qtd_list_head->int_on_complete != 0); + + p_qhd->p_qtd_list_head->used = 0; // free QTD + qtd_remove_1st_from_qhd(p_qhd); + + if (is_ioc) // end of request { pipe_handle_t pipe_hdl = { .dev_addr = p_qhd->device_address }; if (p_qhd->endpoint_number) // if not Control, can only be Bulk @@ -483,8 +488,6 @@ void async_list_process_isr(ehci_qhd_t * const async_head) usbh_isr( pipe_hdl, p_qhd->class_code, TUSB_EVENT_XFER_COMPLETE); // call USBH callback } - p_qhd->p_qtd_list_head->used = 0; // free QTD - qtd_remove_1st_from_qhd(p_qhd); } } p_qhd = (ehci_qhd_t*) align32(p_qhd->next.address); @@ -511,20 +514,24 @@ void period_list_process_isr(ehci_qhd_t const * const period_head) // free all TDs from the head td to the first active TD while(p_qhd_int->p_qtd_list_head != NULL && !p_qhd_int->p_qtd_list_head->active) { - // TODO check halted TD - if (p_qhd_int->p_qtd_list_head->int_on_complete) // end of request - { - pipe_handle_t pipe_hdl = { .dev_addr = p_qhd_int->device_address }; - if (p_qhd_int->endpoint_number) // if not Control, can only be Bulk - { - pipe_hdl.xfer_type = TUSB_XFER_INTERRUPT; - pipe_hdl.index = qhd_get_index(p_qhd_int); - } - usbh_isr( pipe_hdl, p_qhd_int->class_code, TUSB_EVENT_XFER_COMPLETE); // call USBH callback - } + // TD need to be freed and removed from qhd, before invoking callback + bool is_ioc = (p_qhd_int->p_qtd_list_head->int_on_complete != 0); p_qhd_int->p_qtd_list_head->used = 0; // free QTD qtd_remove_1st_from_qhd(p_qhd_int); + + if (is_ioc) // end of request + { + usbh_isr( (pipe_handle_t) + { + .dev_addr = p_qhd_int->device_address, + .xfer_type = TUSB_XFER_INTERRUPT, + .index = qhd_get_index(p_qhd_int) + }, + p_qhd_int->class_code, + TUSB_EVENT_XFER_COMPLETE); // call USBH callback + } + } } next_item = p_qhd_int->next; diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c index ccf1af249..e26ec5b46 100644 --- a/tinyusb/host/usbh.c +++ b/tinyusb/host/usbh.c @@ -248,7 +248,6 @@ void usbh_device_unplugged_isr(uint8_t hostid) //--------------------------------------------------------------------+ // ENUMERATION TASK //--------------------------------------------------------------------+ -//TODO reduce Cyclomatic Complexity OSAL_TASK_DECLARE(usbh_enumeration_task) { tusb_error_t error; @@ -398,6 +397,8 @@ OSAL_TASK_DECLARE(usbh_enumeration_task) ) ); + usbh_devices[new_addr].state = TUSB_DEVICE_STATE_CONFIGURED; + //------------- parse configuration & install drivers -------------// p_desc = enum_data_buffer + sizeof(tusb_descriptor_configuration_t); @@ -440,7 +441,6 @@ OSAL_TASK_DECLARE(usbh_enumeration_task) } } - usbh_devices[new_addr].state = TUSB_DEVICE_STATE_CONFIGURED; tusbh_device_mount_succeed_cb(new_addr); OSAL_TASK_LOOP_END |
