summaryrefslogtreecommitdiff
path: root/src/portable/synopsys
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2025-04-29 21:36:18 +0700
committerGitHub <[email protected]>2025-04-29 21:36:18 +0700
commit1a783b357343d053eb861ae783922371ce9e1b17 (patch)
tree036c9f399c2562891f1681fa40a0958a2c6fbfe5 /src/portable/synopsys
parenta22e45b8168fd6ef5a3253e54f8400b4cc9928b8 (diff)
parent2abd3c54c4141e5e6e0bd4fea38849cb150fb161 (diff)
Merge pull request #3104 from hathach/usbh-attach-debounce
Usbh attach debounce
Diffstat (limited to 'src/portable/synopsys')
-rw-r--r--src/portable/synopsys/dwc2/hcd_dwc2.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/portable/synopsys/dwc2/hcd_dwc2.c b/src/portable/synopsys/dwc2/hcd_dwc2.c
index 7c29a03cf..2de15068a 100644
--- a/src/portable/synopsys/dwc2/hcd_dwc2.c
+++ b/src/portable/synopsys/dwc2/hcd_dwc2.c
@@ -107,7 +107,6 @@ typedef struct {
typedef struct {
hcd_xfer_t xfer[DWC2_CHANNEL_COUNT_MAX];
hcd_endpoint_t edpt[CFG_TUH_DWC2_ENDPOINT_MAX];
- bool attach_debounce; // if true: wait for the debounce delay before issuing new attach events
} hcd_data_t;
hcd_data_t _hcd_data;
@@ -423,11 +422,6 @@ uint32_t hcd_frame_number(uint8_t rhport) {
// Get the current connect status of roothub port
bool hcd_port_connect_status(uint8_t rhport) {
- // this is called from enum_new_device() - after the debouncing delays
- if (_hcd_data.attach_debounce) {
- _hcd_data.attach_debounce = false; // allow new attach events again
- }
-
dwc2_regs_t* dwc2 = DWC2_REG(rhport);
return dwc2->hprt & HPRT_CONN_STATUS;
}
@@ -1328,10 +1322,7 @@ static void handle_hprt_irq(uint8_t rhport, bool in_isr) {
hprt |= HPRT_CONN_DETECT;
if (hprt_bm.conn_status) {
- if (!_hcd_data.attach_debounce) {
- _hcd_data.attach_debounce = true; // block new attach events until the debounce delay is over
- hcd_event_device_attach(rhport, in_isr);
- }
+ hcd_event_device_attach(rhport, in_isr);
}
}
@@ -1398,12 +1389,8 @@ void hcd_int_handler(uint8_t rhport, bool in_isr) {
// Device disconnected
dwc2->gintsts = GINTSTS_DISCINT;
- // ignore device removal if attach debounce is active
- // it will evaluate the port status after the debounce delay
- if (!_hcd_data.attach_debounce) {
- if (!(dwc2->hprt & HPRT_CONN_STATUS)) {
- hcd_event_device_remove(rhport, in_isr);
- }
+ if (!(dwc2->hprt & HPRT_CONN_STATUS)) {
+ hcd_event_device_remove(rhport, in_isr);
}
}