summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkkitayam <[email protected]>2021-08-17 23:13:11 +0900
committerkkitayam <[email protected]>2021-08-19 22:51:10 +0900
commit351581537f47a9cca84e1b4f13af704c0effaa78 (patch)
tree61c3d1593523c39b34a852d2fad48a74c0fe8ce9 /src
parent219d186c4d6fd386310fd7aae441d919e41b4219 (diff)
Removes redundant SOF processing from the Renesas RX family.
The same logic regarding the resume signal was implemented by usbd. See also: #1023
Diffstat (limited to 'src')
-rw-r--r--src/portable/renesas/usba/dcd_usba.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/portable/renesas/usba/dcd_usba.c b/src/portable/renesas/usba/dcd_usba.c
index 1db1fdb32..cdc66079a 100644
--- a/src/portable/renesas/usba/dcd_usba.c
+++ b/src/portable/renesas/usba/dcd_usba.c
@@ -139,7 +139,6 @@ typedef struct
{
pipe_state_t pipe[10];
uint8_t ep[2][16]; /* a lookup table for a pipe index from an endpoint address */
- uint8_t suspended;
} dcd_data_t;
//--------------------------------------------------------------------+
@@ -815,20 +814,9 @@ void dcd_int_handler(uint8_t rhport)
}
if (is0 & USB_IS0_RESM) {
dcd_event_bus_signal(rhport, DCD_EVENT_RESUME, true);
- _dcd.suspended = 0;
}
if (is0 & USB_IS0_SOFR) {
- if (_dcd.suspended) {
- /* When USB host resumes caused by `dcd_remote_wakeup()`,
- * RESM interrupt does not rise.
- * Therefore we need to manually send resume event.
- * Of course, when USB host resumes on its own,
- * RESM interrupt rise properly, then this statements are ignored. */
- // TODO can be dropped since this logic is implemented by usbd
- // USBD will exit suspended mode when SOF event is received
- dcd_event_bus_signal(rhport, DCD_EVENT_RESUME, true);
- _dcd.suspended = 0;
- }
+ // USBD will exit suspended mode when SOF event is received
dcd_event_bus_signal(rhport, DCD_EVENT_SOF, true);
}
if (is0 & USB_IS0_DVST) {
@@ -844,7 +832,6 @@ void dcd_int_handler(uint8_t rhport)
case USB_IS0_DVSQ_SUSP2:
case USB_IS0_DVSQ_SUSP3:
dcd_event_bus_signal(rhport, DCD_EVENT_SUSPEND, true);
- _dcd.suspended = 1;
default:
break;
}