summaryrefslogtreecommitdiff
path: root/src/portable/synopsys
diff options
context:
space:
mode:
authorRoman Leonov <[email protected]>2024-11-28 11:58:20 +0100
committerRoman Leonov <[email protected]>2024-11-28 13:01:07 +0100
commit741fdaaee7b346815546a8e5be2cae9dd015d64a (patch)
tree86cd8a4e0a6cc76acfe84ded8b1982986fdfc16a /src/portable/synopsys
parent6b36df3e396c2eaec5d741ca00b1cdf3d19baffb (diff)
fix(dcd_dwc2): Reset allocated_epin_count on bus reset and close all ep
Diffstat (limited to 'src/portable/synopsys')
-rw-r--r--src/portable/synopsys/dwc2/dcd_dwc2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portable/synopsys/dwc2/dcd_dwc2.c b/src/portable/synopsys/dwc2/dcd_dwc2.c
index 63d2e5bb1..91c006e01 100644
--- a/src/portable/synopsys/dwc2/dcd_dwc2.c
+++ b/src/portable/synopsys/dwc2/dcd_dwc2.c
@@ -539,7 +539,7 @@ void dcd_edpt_close_all(uint8_t rhport) {
dwc2_regs_t* dwc2 = DWC2_REG(rhport);
uint8_t const ep_count = _dwc2_controller[rhport].ep_count;
- _dcd_data.allocated_epin_count = 1;
+ _dcd_data.allocated_epin_count = 0;
// Disable non-control interrupt
dwc2->daintmsk = (1 << DAINTMSK_OEPM_Pos) | (1 << DAINTMSK_IEPM_Pos);
@@ -646,7 +646,7 @@ static void handle_bus_reset(uint8_t rhport) {
tu_memclr(xfer_status, sizeof(xfer_status));
_dcd_data.sof_en = false;
- _dcd_data.allocated_epin_count = 1;
+ _dcd_data.allocated_epin_count = 0;
// 1. NAK for all OUT endpoints
for (uint8_t n = 0; n < ep_count; n++) {