| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-06-14 | cherry pick PR399 commit : Interrupt time improvements | Jan Dümpelmann | |
| 2020-06-14 | overwrite setup packet | hathach | |
| 2020-06-09 | Add DCD for Dialog DA1469x MCU | Jerzy Kasenberg | |
| Dialog Semiconductor's BLE MCU DA1469x comes with full speed USB. It's base on National Semiconductor discrete USB controller USBN9603/4. This adds support for: - control/interrupt/bulk endpoints (up to 64 bytes) - ISO endpoint were not tested and may not work correctly - reset/sleep/wakeup are handled - code for VBUS changes is provided | |||
| 2020-06-01 | allow hs ep open with 512 bytes | hathach | |
| 2020-05-31 | fixed EP0 size to 64 since LS is not supported in device mode | hathach | |
| - set turn-around and report actual speed in Enum Done - add dcd_event_bus_reset() helper to report speed | |||
| 2020-05-31 | able to detect as hs | hathach | |
| 2020-05-27 | try to get synopsys work with OTG HS + external PHY | hathach | |
| 2020-05-26 | random clean up for tdi | hathach | |
| 2020-05-26 | multiple port support for global otg base | hathach | |
| 2020-05-26 | suporting multiple port (OTG FS + HS) for stm32 | hathach | |
| 2020-05-21 | fix nrf hanged (blocking wait) when called within critical section | hathach | |
| 2020-05-18 | fix cast-align warning for nuc505 | hathach | |
| 2020-05-17 | enable -Wcast-align | hathach | |
| suppress vendor sdk driver at board.mk | |||
| 2020-05-15 | Allow EP0 to use xfer sizes larger than one packet | Jan Dümpelmann | |
| 2020-05-15 | Interrupt time improvements | Jan Dümpelmann | |
| 2020-05-08 | Synopsys OUT EP improvements: | Jan Dümpelmann | |
| - Use register based XFRSIZ to determine transfer complete (xfer->queued_len and xfer->short_packet were deleted) - Pop out as many RxFIFO data entries as available within a IRQ call - less application interruption due to XFRC calls | |||
| 2020-05-05 | detect if SD is actually present on the flash using SD magic | hathach | |
| even with SOFTDEVICE_PRESENT defined, SD may not be present on actual flash. | |||
| 2020-05-04 | Merge pull request #387 from duempel/redesign_transmit_synopsys | Ha Thach | |
| Redesign of Synopsys device transmission | |||
| 2020-05-04 | clean up | Jan Dümpelmann | |
| renaming function and variables changing indent size | |||
| 2020-05-02 | abstract all UDP_CSR | hathach | |
| 2020-05-02 | clean up | hathach | |
| 2020-05-02 | fix EP0 data toggle issue | hathach | |
| 2020-05-02 | remove toggle walkaround, fix control stall race condition | hathach | |
| 2020-04-30 | fix dcd samd race condition with setup packet | hathach | |
| setup packet can complete together with previous status (in & out). Always make sure to prepare valid buffer for holding setup packet when queuing control status. | |||
| 2020-04-29 | Changed switch into if statements | Jan Dümpelmann | |
| 2020-04-29 | Redesign of Synopsys device transmission | Jan Dümpelmann | |
| Changes: - checking if tx buffer empty interrupt is masked - process more than one packet in isr - mask tx buffer empty just after all bytes were written - use of transmit_fifo_packet instead of transmit_packet | |||
| 2020-04-27 | added comment for hw clearing TXFE | hathach | |
| 2020-04-27 | TXFE is read only bit | hathach | |
| 2020-04-26 | sync synopsis fix for esp32s2 | hathach | |
| 2020-04-26 | turn off TX FIFO Empty for EPIN if all bytes are written | hathach | |
| fix dcd synopsys issue with usbnet #289 | |||
| 2020-04-24 | synopsys: Reduce interrupt time for IN ZLP | Jerzy Kasenberg | |
| For IN endpoints output FIFO is filled in interrupt, therefor before endpoint is enabled, DIEPTSIZ is set with correct size of packet. Then endpoint is enabled and FIFO empty interrupt is enabled. This works fine except for the ZLP. Enabling FIFO empty interrupt results in interrupt handler being called all the time because there is nothing to put in the FIFO. Eventually it ends when IN token is received and empty packed is transmitted out. This change does not enable FIFO empty interrupt for ZLP reducing CPU load. | |||
| 2020-04-22 | Added support for STM32F1 Connectivity Line MCU | Jan Dümpelmann | |
| STM32F105 and STM32F107 are using the Synopsys IP | |||
| 2020-04-18 | also add wakeup event | hathach | |
| 2020-04-18 | session end interrupt doesn't trigger on esp32 saola board | hathach | |
| it is possibly due to the board design without vbus sense. Revisit later. | |||
| 2020-04-18 | implement disconnection detection for stm32 synopsys | hathach | |
| - disconnection is OTG INT session end bit - add USE_SOF to disable 1ms interrupt on mcu which isn't used now by the stack - add suspend detection | |||
| 2020-04-17 | complete remove dcd_set_config(), fix unit test | hathach | |
| 2020-04-17 | Merge branch 'master' into remove-dcd-set-config | hathach | |
| 2020-04-17 | Merge pull request #347 from majbthrd/nuc505_config | Ha Thach | |
| nuc505: change dcd_set_config() behavior | |||
| 2020-04-17 | Merge pull request #354 from hathach/cxd56-disconnect-connect | Ha Thach | |
| Cxd56 disconnect connect | |||
| 2020-04-17 | added disconnect for spresense | hathach | |
| 2020-04-17 | mass rename tud/dcd_irq_handler to tud/dcd_init_handler | hathach | |
| 2020-04-17 | add code for disconnect/connect (not tested) | hathach | |
| 2020-04-17 | Merge pull request #351 from hathach/valentyusb-dcd-disconnect-connect | Ha Thach | |
| Valentyusb dcd disconnect connect | |||
| 2020-04-17 | Merge pull request #350 from hathach/synopsys-msp430-dcd-disconnect-connect | Ha Thach | |
| Synopsys msp430 dcd disconnect connect | |||
| 2020-04-16 | Merge pull request #352 from hathach/samg-dcd-disconnect-connect | Ha Thach | |
| samg implement dcd connect/disconnect | |||
| 2020-04-16 | Merge pull request #336 from pigrew/edpt_close | Ha Thach | |
| > If you notice my chain of events above, the bulk transfer was started BEFORE the SET_INTERFACE call. The USB device hardware swaps the order of them being delivered. On STM32, it gives priority to the lower-numbered EP index. It shouldn't be a matter, control is 2+ stage, before sending the setup. Host should stop all communication to the endpoint that It wants to close. | |||
| 2020-04-16 | samg implement dcd connect/disconnect | hathach | |
| 2020-04-16 | implement dcd disconnect connect | hathach | |
| 2020-04-16 | add int enable/disable for pullup | hathach | |
| 2020-04-16 | msp430 disconnect/connect | hathach | |
