summaryrefslogtreecommitdiff
path: root/src/portable
AgeCommit message (Collapse)Author
2021-09-09dcd_edpt_xfer_fifo: use qtd_init if restriction not met.Mengsk
2021-09-09nxp tdi: enhance qhd using DCD_ATTR_ENDPOINT_MAXhathach
2021-09-09nxp tdi implement remote wakeuphathach
enhance bus reset, unplugged, suspend, resume detection
2021-09-09remove connected check for DCD_EVENT_UNPLUGGED since previous bus reset can ↵hathach
clear this implement unplugged detection for trans dimension dcd
2021-09-09Fix stall handlingkkitayam
2021-09-08Implement dcd_edpt_close_all for NXP khcikkitayam
2021-09-08Merge pull request #1080 from hathach/rx-msc-complianceHa Thach
Renesas RX reset PID to DATA0 when open endpoint
2021-09-08Merge pull request #1077 from hathach/st-synopsy-complianceHa Thach
St synopsy compliance
2021-09-08reset PID to DATA0 when open endpointhathach
2021-09-08fix build with gd32vf103hathach
2021-09-08implement remote wakeup for stm synopsyshathach
2021-09-07make synopsys usbcv compliancehathach
- implement dcd_edpt_close_all() - reset dtoggle when open endpoint - correct dev interrupt mask on bus reset
2021-09-07Implement dcd_edpt_close_all() for Renesas RX familykkitayam
2021-09-01rp2040 implement dcd_edpt_close_all()hathach
aslo rename reset_ep0_pid() and clean up. We only need to reset pid when setup packet received
2021-09-01rp2040 correct ep set/clear stallhathach
- stall will remove pending (not complete) transfer. Correct reset data toggle when clear stall. - remove buf ctrl debug code
2021-08-31fix rp2040 chapter 9 TD 9.6 testhathach
2021-08-31add dcd_edpt_close and iso xfer.MasterPhi
2021-08-31dcd_transmission xfer_fifo support.MasterPhi
2021-08-31clear stall and reset data toggle when open edpthathach
required to pass one of msc test.
2021-08-29fix nrf clear data toggle sequence when clearing stallhathach
2021-08-29fix a couple of nrf dcd issuehathach
- limit out xact dma to prevent usbd overflow in certain situation after stalled - drained already acked data when stalling an OUT endpoint
2021-08-27explicitly clear stall and data toggle for edpoint upon open()hathach
2021-08-27implement dcd_edpt_close_all() for nrf52840hathach
2021-08-26add dcd_edpt_close_all() for clear existing configured statehathach
correctly responded to TD 9.13 Set Configuration Test
2021-08-24rename host API to be consistent with naming on device stackhathach
- tuh_device_get_speed() to tuh_speed_get() - tuh_device_configured() to tuh_mounted() - tuh_device_ready() to tuh_ready()
2021-08-24Merge pull request #1043 from hathach/more-host-improvementHa Thach
More host improvement
2021-08-23initial commit of support for K32L2BGreg Steiert
2021-08-24fix rp2040 buildhathach
2021-08-23sepearate CFG_TUH_DEVICE_MAX and CFG_TUH_HUBhathach
separate dev0 from _usbh_devices pool to save sram
2021-08-23add hcd_devtree_get_info()hathach
remove usbh_hcd.h
2021-08-23add hcd attr, add note for ehci framelist on NXP derivativehathach
2021-08-23refactor ehci init apihathach
2021-08-23rename CFG_TUSB_HOST_DEVICE_MAX to CFG_TUH_DEVICE_MAXhathach
2021-08-21Fix CI.MasterPhi
2021-08-21nuc126: fix set_address & disable sofMasterPhi
2021-08-19Add compile switch to enable SOF during suspend onlykkitayam
2021-08-19Removes redundant SOF processing from the Renesas RX family.kkitayam
The same logic regarding the resume signal was implemented by usbd. See also: #1023
2021-08-18Merge pull request #1024 from HiFiPhile/nucHa Thach
Fix nuc126 buffer copy with IAR
2021-08-18Merge pull request #1020 from hathach/rp2040-disconnect-suspendHa Thach
Add Rp2040 suspend & resume support
2021-08-18correct usb memcpy for nuc120 as wellhathach
2021-08-17use USBD_MemCopy.Mengsk
2021-08-16add note for renesas rx remote wakeuphathach
2021-08-16complete suspend, resume, remote wakeup for nrf52hathach
2021-08-15Merge pull request #959 from KarlK90/gd32vf103-support-tiny-usbHa Thach
[PORT] Add GD32VF103 support and Sipeed Longan Nano Board support
2021-08-15move gd32vf103 to its own familyhathach
2021-08-14synopsys clear DAD on bus_resethathach
2021-08-13Fix dcd_set_address bug when called more than once with differentTobias Ringström
addresses (e.g. after plugging the device into a different port).
2021-08-12add ready check for edpt claimhathach
2021-08-12bus_reset will reset all endpointshathach
allow for dynamic configuration as well as state-less enumeration
2021-08-12da1469x: Fix no VBUS startupJerzy Kasenberg
For self powered device if device started without VBUS present it would not be correctly attached to USB bus even if tusb_vbus_changed() was later called. This modifies dcd_init() so it starts USB state machine without checking if VBUS is present or not, like all others drivers do. tusb_vbus_changed() function is also removed its content was moved to dcd_init.