You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

usb.h 758B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef CONFIG_USB_H
  2. #define CONFIG_USB_H
  3. /** @file
  4. *
  5. * USB configuration
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #include <config/defaults.h>
  10. /*
  11. * USB host controllers (all enabled by default)
  12. *
  13. */
  14. //#undef USB_HCD_XHCI /* xHCI USB host controller */
  15. //#undef USB_HCD_EHCI /* EHCI USB host controller */
  16. //#undef USB_HCD_UHCI /* UHCI USB host controller */
  17. //#define USB_HCD_USBIO /* Very slow EFI USB host controller */
  18. /*
  19. * USB peripherals
  20. *
  21. */
  22. //#undef USB_KEYBOARD /* USB keyboards */
  23. /*
  24. * USB external interfaces
  25. *
  26. */
  27. //#undef USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
  28. #include <config/named.h>
  29. #include NAMED_CONFIG(usb.h)
  30. #include <config/local/usb.h>
  31. #include LOCAL_NAMED_CONFIG(usb.h)
  32. #endif /* CONFIG_USB_H */