libpayload: ehci: Set explicit terminate bits in dummy_qh next pointers.
The EHCI host controllers in Samsung Exynos SoC seem to be a little more
picky than Intel ones. When they reach the dummy_qh in the periodic
frame list, they try to access the next qTD pointer even though it's
NULL, and run into a HostSystemError. This patch explicitly sets the
Terminate bit on those pointers to mark them invalid.
Change-Id: I50fa79bbf1c5fab306d7885c01efd66b13e279b8
Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/66884
Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
(cherry picked from commit c575a5c958)
Signed-off-by: Isaac Christensen <isaac.christensen@se-eng.com>
Reviewed-on: http://review.coreboot.org/6608
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
parent
3ffdafdfa4
commit
4610f0e64f
1 changed files with 2 additions and 0 deletions
|
|
@ -793,6 +793,8 @@ ehci_init (unsigned long physical_bar)
|
|||
memset((void *)EHCI_INST(controller)->dummy_qh, 0,
|
||||
sizeof(*EHCI_INST(controller)->dummy_qh));
|
||||
EHCI_INST(controller)->dummy_qh->horiz_link_ptr = QH_TERMINATE;
|
||||
EHCI_INST(controller)->dummy_qh->td.next_qtd = QH_TERMINATE;
|
||||
EHCI_INST(controller)->dummy_qh->td.alt_next_qtd = QH_TERMINATE;
|
||||
for (i = 0; i < 1024; ++i)
|
||||
periodic_list[i] = virt_to_phys(EHCI_INST(controller)->dummy_qh)
|
||||
| PS_TYPE_QH;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue