Skip to content

Commit

Permalink
[ehci] Add support for EHCI host controllers
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Mar 18, 2015
1 parent ec0e2a7 commit 8370f87
Show file tree
Hide file tree
Showing 7 changed files with 2,370 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/config/config_usb.c
Expand Up @@ -37,3 +37,6 @@ PROVIDE_REQUIRING_SYMBOL();
#ifdef USB_HCD_XHCI
REQUIRE_OBJECT ( xhci );
#endif
#ifdef USB_HCD_EHCI
REQUIRE_OBJECT ( ehci );
#endif
1 change: 1 addition & 0 deletions src/config/defaults/pcbios.h
Expand Up @@ -37,6 +37,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#define SANBOOT_PROTO_FCP /* Fibre Channel protocol */

#define USB_HCD_XHCI /* xHCI USB host controller */
#define USB_HCD_EHCI /* EHCI USB host controller */

#define REBOOT_CMD /* Reboot command */
#define CPUID_CMD /* x86 CPU feature detection command */
Expand Down
1 change: 1 addition & 0 deletions src/config/usb.h
Expand Up @@ -16,6 +16,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
*
*/
//#undef USB_HCD_XHCI /* xHCI USB host controller */
//#undef USB_HCD_EHCI /* EHCI USB host controller */

#include <config/named.h>
#include NAMED_CONFIG(usb.h)
Expand Down

0 comments on commit 8370f87

Please sign in to comment.