feature(tusb): Added teardown API

This commit is contained in:
Roman Leonov
2024-12-11 11:35:52 +01:00
parent 76fe0393ed
commit dee6b36923
2 changed files with 46 additions and 2 deletions

View File

@@ -136,6 +136,40 @@ void tusb_int_handler(uint8_t rhport, bool in_isr) {
#endif #endif
} }
bool tusb_rhport_teardown(uint8_t rhport) {
// backward compatible call with tusb_init(void)
#if defined(TUD_OPT_RHPORT) || defined(TUH_OPT_RHPORT)
#if CFG_TUD_ENABLED && defined(TUD_OPT_RHPORT)
// deinit device stack, CFG_TUSB_RHPORTx_MODE must be defined
TU_ASSERT( tud_deinit(TUD_OPT_RHPORT) );
_tusb_rhport_role[TUD_OPT_RHPORT] = TUSB_ROLE_INVALID;
#endif
#if CFG_TUH_ENABLED && defined(TUH_OPT_RHPORT)
// deinit host stack CFG_TUSB_RHPORTx_MODE must be defined
TU_ASSERT( tuh_deinit(TUH_OPT_RHPORT) );
_tusb_rhport_role[TUH_OPT_RHPORT] = TUSB_ROLE_INVALID;
#endif
return true;
#endif
// new API with explicit rhport and role
TU_ASSERT(rhport < TUP_USBIP_CONTROLLER_NUM);
#if CFG_TUD_ENABLED
TU_ASSERT( tud_deinit(rhport) );
_tusb_rhport_role[rhport] = TUSB_ROLE_INVALID;
#endif
#if CFG_TUH_ENABLED
TU_ASSERT( tuh_deinit(rhport) );
_tusb_rhport_role[rhport] = TUSB_ROLE_INVALID;
#endif
return true;
}
//--------------------------------------------------------------------+ //--------------------------------------------------------------------+
// Descriptor helper // Descriptor helper
//--------------------------------------------------------------------+ //--------------------------------------------------------------------+

View File

@@ -154,14 +154,24 @@ bool tusb_inited(void);
// Called to handle usb interrupt/event. tusb_init(rhport, role) must be called before // Called to handle usb interrupt/event. tusb_init(rhport, role) must be called before
void tusb_int_handler(uint8_t rhport, bool in_isr); void tusb_int_handler(uint8_t rhport, bool in_isr);
// TODO // Internal helper for backward compatibility with tusb_init(void)
// bool tusb_teardown(void); bool tusb_rhport_teardown(uint8_t rhport);
#if defined(TUD_OPT_RHPORT) || defined(TUH_OPT_RHPORT)
#define _tusb_teardown_arg0() tusb_rhport_teardown(0)
#else
#define _tusb_teardown_arg0() TU_VERIFY_STATIC(false, "CFG_TUSB_RHPORT0_MODE/CFG_TUSB_RHPORT1_MODE must be defined")
#endif
#define _tusb_teardown_arg1(_rhport) tusb_rhport_teardown(_rhport)
#define tusb_teardown(...) TU_FUNC_OPTIONAL_ARG(_tusb_teardown, __VA_ARGS__)
#else #else
#define tusb_init(...) (false) #define tusb_init(...) (false)
#define tusb_int_handler(...) do {}while(0) #define tusb_int_handler(...) do {}while(0)
#define tusb_inited() (false) #define tusb_inited() (false)
#define tusb_teardown(...) (false)
#endif #endif