Attention is currently required from: Jason Glenesk, Matt DeVillier, Fred Reitberger.
Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74658 )
Change subject: soc/amd/phoenix/include/xhci: add USB4 XHCI device pointers ......................................................................
soc/amd/phoenix/include/xhci: add USB4 XHCI device pointers
Beware that there's no XHCI2 controller and the USB4 controller device pointers were added right after the xhci_0 and xhci_1 controller device pointers.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I14725d4b546ffcca42e21bbe7756babaaff8fea3 --- M src/soc/amd/phoenix/include/soc/xhci.h 1 file changed, 16 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/74658/1
diff --git a/src/soc/amd/phoenix/include/soc/xhci.h b/src/soc/amd/phoenix/include/soc/xhci.h index ec71ece..870228e 100644 --- a/src/soc/amd/phoenix/include/soc/xhci.h +++ b/src/soc/amd/phoenix/include/soc/xhci.h @@ -7,8 +7,8 @@
#define SOC_XHCI_0 DEV_PTR(xhci_0) #define SOC_XHCI_1 DEV_PTR(xhci_1) -#define SOC_XHCI_2 NULL -#define SOC_XHCI_3 NULL +#define SOC_XHCI_2 DEV_PTR(usb4_xhci_0) +#define SOC_XHCI_3 DEV_PTR(usb4_xhci_1) #define SOC_XHCI_4 NULL #define SOC_XHCI_5 NULL #define SOC_XHCI_6 NULL