hal_hci.h 437 B

1234567891011121314151617181920212223
  1. #ifndef SUNXI_HAL_HCI_H
  2. #define SUNXI_HAL_HCI_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. int hal_usb_core_init(void);
  7. int hal_usb_core_exit(void);
  8. void hal_usb_hci_init(void);
  9. int hal_usb_hcd_init(int hci_num);
  10. int hal_usb_hcd_deinit(int hci_num);
  11. unsigned int ehci_ed_test(int hci_num, const char *buf, unsigned int count);
  12. unsigned int ehci_usb_driverlevel_adjust(int hci_num, int driverlevel);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif