libpayload: Tell EHCI to re-enable USB1 controllers

EHCI can take over all ports (and then reroute devices to
companion controllers if needs be). We do that, and then never
reset it.

Consequence:
Systems with only USB1 HC drivers (OHCI/UHCI) never see any devices.

Change-Id: If1d91e9142a6618289b0b3f6b56587ec857158e3
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/396
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Patrick Georgi 2011-11-04 11:57:46 +01:00 committed by Stefan Reinauer
parent 2e768e7f17
commit 01178bb03b
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ static void ehci_reset (hci_t *controller)
static void ehci_shutdown (hci_t *controller)
{
EHCI_INST(controller)->operation->configflag = 0;
}
enum { EHCI_OUT=0, EHCI_IN=1, EHCI_SETUP=2 };