summaryrefslogtreecommitdiff
path: root/tinyusb/host/ehci
AgeCommit message (Collapse)Author
2013-03-24period_frame_list0 is not existed if period list is not requiredhathach
2013-03-24refractorhathach
- rename usbh_device_info_pool to usbh_devices - create a struct for control pipe in usbh_device_info_t
2013-03-23clean uphathach
2013-03-23- add control_pipe_status for usbh_device_info_t to reflect the status ↵hathach
transfer of control pipe - fix bug with hcd_port_reset + remove regs->portsc_bit.port_enable in the wait loop as device unplugged can cause this to always fails - correct the timeout for hcd_controll_stop/reset 16 uframes ~ 2 ms - potentially fix bugs device unplugged when new address is not assigned
2013-03-23enhance some testshathach
add test for usbh_isr error invoke fix bug if device unplugged before is set to new address - clean up & close control addr0 in usbh_device_unplugged_isr
2013-03-23change signature usbh_isr to add tusb_bus_event_t parameterhathach
change singature of call_isr as well
2013-03-23refractorhathach
- rename TUSB_DEVICE_STATE_READY to TUSB_DEVICE_STATE_CONFIGURED - move device_state to core/tusb_types.h - remove usbh_device_hcd_data_cleaned_up_cb, hcd now set the state directly
2013-03-23continue clean up ehcihathach
2013-03-23clean up ehcihathach
2013-03-23clean uphathach
2013-03-23refractor extract to function qtd_remove_1st_from_qhdhathach
2013-03-23fix issue with Interrupt Async Advancehathach
- only acknowledge interrupt that we check
2013-03-22use DO PING for highspeed out bulkhathach
2013-03-22fix bug: adjust all bulk queue head from ehci_data.devicehathach
2013-03-22add callback for hcd when it cleaned up all cache data for a device ↵hathach
(previously mark as removing).
2013-03-22- fix bug when unplugged unmounted-already device (mostly plugged when power on)hathach
- add hal_debugger_is_attached & hal_debugger_breakpoint - assert will suspend (place breakpoint) if the condition is failed and debugger is attached. Otherwise, a message to uart is printed - fix get control qhd function when dev_addr is not zero (shifted 1) - fix wrong logic for unsupported class
2013-03-13add some test for usbh_hcd integrationhathach
- add tests for pipe_close (while TDs are active) - add tests for device unplugged add tesst & implement the async_advance_isr to clean up "REMOVING" queue head - add helper find previous qhd - add remove qhd from async list - add is_removing field for async advance isr to clean up add pipe close for control pipe & bulk pipe (with tests) add helper get qhd from pipe_handle
2013-03-13refractor rename field inactive_next_xact of ehci_qhd_thathach
2013-03-13refractor ehci test fileshathach
adding some code for async_advance_isr add test for async_advance_isr
2013-03-13add usbh_pipe_control_close (in conjunction with usbh pipe control open)hathach
close control pipe when unplugged
2013-03-13add hard fault handler to bsp.chathach
rename class_install_subtask to class_open_subtask add class_close for unmount adding code for usbh_device_unplugged_isr & invoke it in hcd_isr
2013-03-13go through all the enumeration (up to get full configuration)hathach
- fix init_qhd for address 0 (clear queue head --> ehci controller halted) - fix bug in usbh_init missing address0 for semaphore create TUSB_CFG_DEBUG == 3: --> ATTR_ALWAYS_INLINE is null --> allow gcc to export "normal inline" function
2013-03-12add semaphore post in usbh_isr for control pipehathach
add osal_queue_send in usbh_device_plugged add macro for placing breakpoint macros fix ehci init: - regs->cmd or (add run_stop) - enable port power in portsc add tusb_task_runner in main loop
2013-03-12implement port hcd_port_connect_statushathach
clean up
2013-03-12add isr api for usbh_hcdhathach
- void usbh_device_plugged_isr(uint8_t hostid, tusb_speed_t speed); - void usbh_device_unplugged_isr(uint8_t hostid); implement port_connect_status_isr
2013-03-12add project file for keilhathach
fix binary.h compiler specific add hal_init code to reset & set usbmode --> able to get USB ISR remove const qualifier from return function of - get_operational_register - get_period_frame_list - get_async_head - get_period_head - get_control_qhd add stub for - hcd_port_connect_status - hcd_port_speed
2013-03-11add semphore reset & queue flush APIhathach
modify test to check control pipe semaphore created with usbh_init
2013-03-10add code for ehci interrupt handlerhathach
- interrupt source identifying - for async list process refractor control_xfer to use insert_qtd_to_qhd - add test for control xfer interrupt processing - add code for faking ehci controller async list scheduling & processing - add prototype for void usbh_isr(pipe_handle_t pipe_hdl, uint8_t class_code);
2013-03-09add class code to hcd_pipe_open to facilitate usb_complete callbackhathach
2013-03-09rename init_qtd, init_qhdhathach
2013-03-09house keepinghathach
2013-03-09- fix wrong class code for TUSB_CLASS_APPLICATION_SPECIFIChathach
2013-03-09add int_on_complete parameter to hcd_pipe_xfer for TD chain class requesthathach
fix control transfer request: remove get_control_request_ptr()
2013-03-09- addd p_qtd_list_tail to qhd structure for easy queue TDhathach
- move control_request from ehci_data to usbh_device_info_pool - add test for bulk transfer double (2 consecutive xfers) - use table (array) structure for class driver, currently included - refractor extract to function insert_qtd_to_qhd + init function + install_subtask --> all class driver function must be declared with WEAK
2013-03-07add test code & hcd_pipe_xfer for bulk transferhathach
- test cross 4k boundary test for bulk transfer rename p_qtd_list to p_qtd_list_head
2013-03-07make "used" member of ehci_qtd_t into reserved place of buffer[1] (with ↵hathach
assert check in hcd init)
2013-03-07refractor list_inserthathach
2013-03-07guard check for open iso pipehathach
2013-03-07re-layout ehci_data_t to get better memory consumptionhathach
2013-03-06add prototype for hcd_pipe(control)_closehathach
- update test code for enum task respectively
2013-03-06add code & test for hcd_pipe_open interrupthathach
high and non-highspeed
2013-03-06basically finish code for control transfer & test codehathach
2013-03-06pass test for setup TDhathach
2013-03-06rename fields in ehci_qtd_thathach
2013-03-06refractorhathach
- rename some field in ehci_qhd/qtd_t - code test for open pipe
2013-03-06refractor ehci_data_thathach
separate tests for pipe open & pipe xfer
2013-03-06refractorhathach
- remove unnecessary assign next pointer of asyn/period head in hcd_controller_init
2013-03-06add some code & testcode for hcd_pipe_control_xferhathach
2013-03-06fix errorhathach
- remove p_qhd->qtd_overlay.halted = 1;
2013-03-06refractor hcd_openhathach