summaryrefslogtreecommitdiff
path: root/tinyusb/host/ehci
AgeCommit message (Collapse)Author
2018-06-18rename subfolder source to srchathach
2018-04-14rename CFG_TUSB_CONTROLLER_0_MODE to CFG_TUSB_RHPORT0_MODEhathach
2018-04-12rename ASSERT_ERR to TU_ASSERT_ERR to prevent conflict with user codehathach
2018-04-12rename OPT_MODE_hathach
2018-04-12rename MCU_ to OPT_MCUhathach
2018-04-10mass rename TUSB_CFG to CFG_TUSBhathach
2018-03-29rename ASSERT_STATUS to ASSERT_ERR, merge assertion.h to verify.hhathach
2018-03-29more verify and assert clean uphathach
2018-03-28add verify_breakpoint hw independencehathach
2018-03-28rename ASSERT to TU_ASSERT to avoid name conflicthathach
2018-03-28rename STATIC_ASSERT to VERIFY_STATIC to avoid name conflict with other codeshathach
2018-03-23shorten descriptor typehathach
2018-03-12more renamehathach
2018-03-11rename TUSB_DIR_OUT, TUSB_DIR_INhathach
2018-03-11rename hal_* to tusb_hal_*hathach
2018-03-06remove tusb_isr(), rename hal_hcd_isr() and hal_dcd_isr()hathach
2018-03-02clean up compilerhathach
2014-04-29fix/correct the max_loop (upper bound for EHCI & OHCI) endpoint list. This ↵hathach
causes multiple devices hub mounting problems previously
2014-04-18move osal_queue_send of osal_none to osal_none.chathach
2014-04-17move STRING & XSTRING & STATIC_ASSERT to compiler.hhathach
disable test for a class of cdc host temporarily disable test for test_osal_none.c change include in some core files remove osal.h from common.h
2014-04-17clean up STATIC_VARhathach
2014-04-13merge EHCI_MAX_QHD/QTD and OHCI_MAX_QHD/QTD to HCD_MAX_ENDPOINT/XFER and ↵hathach
scale with number of enabled classes. default config to support up to 5 device (hub + 4 others)
2014-03-24doxygen documentinghathach
2014-03-16doxygen documenthathach
2014-03-13remove legacy code of msc_device.c read10 & write10hathach
clean up some warnings
2014-03-13fix some warningshathach
2014-03-10change IAR TUSB_CFG_ATTR_USBRAM to _Pragma("location=\".ahb_sram1\"") ↵hathach
instead of @ .ahb_sram1 so that we can place it before the variable for a cleaner code change pipe xfer API buffer from void* to uint8_t* change FIFO_DEF to have a separated buffer to be compatible with IAR\ refractor IAR data alignment pragma
2014-03-04change lpc17xx cmsis file & ohci to be able to build with IARhathach
2014-02-28EHCI: immediately reset port when device connected. This proves to help ↵hathach
prevent duplication connection event (also with OHCI) increase delay after reset to 100 ms (NXP's EHCI does not work with 50ms) --> fix all duplication connection with OHCI & EHCI
2014-02-20use hcd_pipe_is_busy instead of hcd_pipe_is_idlehathach
remove hcd_pipe_is_idle
2014-02-19re-enable blocking waiting in ehci controller reset (otherwise it wont works)hathach
2013-12-19remove immediately reset when device plug.hathach
check to make sure device is still plug after initial delay (200ms) before reset remove blocking waiting when reset in ehci.c
2013-12-18able to run MSC host demo on lpc17xxhathach
implement walk around for halted ED in OHCI
2013-12-16implement ohcihathach
- hcd_port_reset - hcd_port_connect_status - hcd_port_speed_get - hcd_pipe_control_open - hcd_pipe_control_xfer - done_queue_isr for control xfer able to go through enumeration with MSC device
2013-12-11add structure & define for ohcihathach
2013-11-25change MCU to TUSB_CFG_MCUhathach
2013-11-22clean uphathach
add some doxygen work finalize device disconnection & suspend - suspend & resume & remote wake up is not supported yet
2013-11-06refractor dcd_controller_reset & hcd_controller_reset to hal_controller_resethathach
2013-11-01implement msc device classhathach
usbd auto stall control for not supported return from class control request usbd implement xfer isr callback mechanism DCD - implement dcd multiple qtd support - dcd dcd_pipe_stall - implement dcd_pipe_queue_xfer - xfer_complete_isr - flush control endpoint if received new setup while previous transfer is not complete change msc_cmd_block_wrapper_t flags field to dir force full speed for easy testing NOTEs: somehow unable to get endpoint IN interrupt with ioc
2013-10-29implementing sw device stackhathach
2013-10-27static assert to check OSAL_QUEUE_DEF's queue_depth parameter < 256hathach
enable HOST_HCD_XFER_INTERRUPT by default (previously only enabled with HID), as it is widely used implement tusbh_cdc_is_busy add compilation switch in usbh enumeration for hub rewrite CDC serial application to address usb-serial race condition
2013-10-25more doxygen workhathach
2013-10-24change TUSB_CFG_CONTROLLER0/1_MODE to TUSB_CFG_CONTROLLER_0/1_MODE for clearancehathach
adding configuration docs for tinyusb_config.h document HID mouse & keyboard API
2013-10-16refractor hub apihathach
fix all test build errors
2013-10-02clean up warnings here and therehathach
2013-10-01- move disconnection handle to enum task --> move tusbh_xxx_unmount is ↵hathach
invoked in non-isr context
2013-10-01refractor hubhathach
2013-09-30hack ehci advance async to handle disconnect via hubhathach
2013-09-30able to mount one device on the hubhathach
2013-09-27house keepinghathach