Adding folders for future USB IP

This commit is contained in:
xj 2024-06-18 05:20:32 -07:00
parent 75e1299ac7
commit 01a0f62f78
1 changed files with 18 additions and 1 deletions

View File

@ -535,4 +535,21 @@ void USBH_IRQHandler(void *param)
writel (runtime, xhci->run + XHCI_RUN_IR_IMAN ( 0 )); writel (runtime, xhci->run + XHCI_RUN_IR_IMAN ( 0 ));
(void)xhci_event_process(xhci); (void)xhci_event_process(xhci);
} }
/*
* Functions for xHCI drivers. These functions are called by USB core.
*/
int xhci_usb_hc_init(uint32_t id){
return 0;
}
uint16_t xhci_usbh_get_frame_number(void){
return 0;
}